* { box-sizing: border-box; }

:root {
  --blue: #1d4ed8;
  --blue-dark: #1e40af;
  --blue-light: #dbeafe;
  --blue-soft: #eff6ff;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --emerald-50: #ecfdf5;
  --emerald-700: #047857;
  --orange-50: #fff7ed;
  --orange-600: #ea580c;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.09);
  --shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.14);
  --radius: 18px;
  --max-w: 1120px;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--slate-900);
  background: var(--slate-50);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 18px; }

.site-header {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--slate-900);
  white-space: nowrap;
}
.brand:hover { text-decoration: none; }
.brand-icon { font-size: 1.35rem; }

.top-nav {
  display: none;
  align-items: center;
  gap: 20px;
  font-size: 0.94rem;
  font-weight: 650;
}
.top-nav a { color: var(--slate-600); }
.top-nav a:hover { color: var(--blue); text-decoration: none; }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 750;
  font-size: 0.92rem;
  white-space: nowrap;
}
.header-cta:hover { background: var(--blue-soft); text-decoration: none; }

@media (min-width: 860px) { .top-nav { display: flex; } }
@media (max-width: 520px) { .brand-name { display: none; } .header-cta { font-size: 0.85rem; padding: 8px 11px; } }

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 1.04rem;
  font-weight: 750;
  text-align: center;
  transition: transform 0.08s, background 0.16s, box-shadow 0.16s, border-color 0.16s;
}

.btn-primary { background: var(--blue); color: white; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--blue-dark); color: white; text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: white; color: var(--slate-900); border: 2px solid var(--slate-300); }
.btn-secondary:hover { background: var(--slate-100); text-decoration: none; }
.btn-large { min-height: 62px; padding: 18px 30px; font-size: 1.16rem; }

.hero { padding: 58px 0 74px; overflow: hidden; }
.hero-user { background: radial-gradient(circle at top right, #bfdbfe 0, transparent 38%), linear-gradient(135deg, #eff6ff 0%, #ffffff 58%, #f8fafc 100%); }
.hero-business { background: radial-gradient(circle at top right, #c7d2fe 0, transparent 38%), linear-gradient(135deg, #eef2ff 0%, #ffffff 58%, #f8fafc 100%); }

.hero-grid { display: grid; gap: 42px; align-items: center; }
@media (min-width: 860px) { .hero-grid { grid-template-columns: 1.12fr 0.88fr; } }

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1, h2, h3, p { overflow-wrap: anywhere; }
.hero h1 { font-size: clamp(2.25rem, 6vw, 4rem); line-height: 1.05; margin: 0 0 18px; letter-spacing: -0.04em; }
.lede { font-size: clamp(1.12rem, 2.8vw, 1.32rem); color: var(--slate-700); margin: 0 0 28px; max-width: 720px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-note { margin: 16px 0 0; color: var(--slate-600); font-size: 0.96rem; }

.section-white { background: white; }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.section-heading h2 { margin: 0 0 12px; font-size: clamp(1.75rem, 4vw, 2.55rem); line-height: 1.12; letter-spacing: -0.03em; }
.section-heading p:not(.eyebrow) { margin: 0 auto; color: var(--slate-700); font-size: 1.08rem; }

.hero-panel { display: flex; justify-content: center; }
.phone-card {
  width: min(100%, 360px);
  background: var(--slate-950);
  border-radius: 34px;
  padding: 16px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.4deg);
}
.phone-top { width: 90px; height: 8px; background: var(--slate-800); border-radius: 999px; margin: 0 auto 18px; }
.wizard-card { background: white; border-radius: 18px; padding: 18px; margin-bottom: 12px; color: var(--slate-900); }
.wizard-card.active { border: 3px solid var(--blue); }
.wizard-card strong { display: block; font-size: 1.1rem; margin-top: 3px; }
.wizard-card p { margin: 6px 0 0; color: var(--slate-600); }
.small-label { color: var(--blue); font-size: 0.82rem; font-weight: 800; }
.mini-button { background: var(--blue); color: white; border-radius: 14px; padding: 14px; text-align: center; font-weight: 800; }

.how, .audience, .template-preview, .problem, .pricing-section, .split-cta, .privacy { padding: 72px 0; }

.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } .steps-four { grid-template-columns: repeat(4, 1fr); } }
.step { background: white; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 28px 22px; text-align: center; box-shadow: var(--shadow-sm); }
.step-num { width: 50px; height: 50px; margin: 0 auto 16px; background: var(--blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; font-weight: 850; }
.step h3 { margin: 0 0 8px; font-size: 1.18rem; }
.step p { margin: 0; color: var(--slate-700); }

.audience { background: var(--slate-100); }
.audience-grid { display: grid; gap: 16px; }
@media (min-width: 620px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .audience-grid { grid-template-columns: repeat(4, 1fr); } }
.audience-card { background: white; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.audience-icon { font-size: 2.05rem; margin-bottom: 10px; }
.audience-card h3 { margin: 0 0 7px; font-size: 1.12rem; }
.audience-card p { margin: 0; color: var(--slate-600); }

.preview-grid, .two-column, .split-card { display: grid; gap: 34px; align-items: center; }
@media (min-width: 820px) { .preview-grid, .two-column, .split-card { grid-template-columns: 1fr 1fr; } }
.preview-grid h2, .two-column h2, .split-card h2, .pricing-section h2 { margin: 0 0 14px; font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.12; letter-spacing: -0.03em; }
.preview-grid p, .two-column p, .split-card p, .pricing-section p { color: var(--slate-700); font-size: 1.06rem; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 30px; color: var(--slate-700); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--emerald-700); font-weight: 900; }
.cv-stack { min-height: 340px; position: relative; }
.cv-sheet { position: absolute; width: 235px; height: 310px; background: white; border: 1px solid var(--slate-200); border-radius: 16px; box-shadow: var(--shadow-lg); }
.cv-sheet::before { content: ""; display: block; height: 42px; margin: 22px; border-radius: 8px; background: var(--slate-900); }
.cv-sheet::after { content: ""; display: block; width: 70%; height: 120px; margin: 20px 22px; border-radius: 10px; background: repeating-linear-gradient(to bottom, var(--slate-200), var(--slate-200) 9px, transparent 9px, transparent 22px); }
.cv-sheet-one { right: 34%; top: 16px; transform: rotate(-6deg); }
.cv-sheet-two { right: 10%; top: 46px; transform: rotate(5deg); }

.privacy { background: var(--emerald-50); border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); }
.privacy-content { max-width: 760px; text-align: center; }
.privacy h2 { margin: 0 0 24px; color: var(--emerald-700); font-size: clamp(1.75rem, 4vw, 2.5rem); }
.privacy-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.privacy-list li { background: white; border-left: 5px solid var(--emerald-700); padding: 17px 20px; border-radius: 12px; box-shadow: var(--shadow-sm); text-align: left; color: var(--slate-700); }
.privacy-list strong { display: block; margin-bottom: 4px; color: var(--slate-900); }
.compact-list { align-self: stretch; }

.split-card { background: var(--blue-soft); border: 1px solid #bfdbfe; border-radius: 26px; padding: 28px; }
.split-card .btn-secondary { justify-self: start; }
@media (min-width: 820px) { .split-card .btn-secondary { justify-self: end; } }

.final-cta { padding: 72px 0; background: var(--slate-950); color: white; text-align: center; }
.final-cta h2 { margin: 0 0 10px; font-size: clamp(1.9rem, 4vw, 2.75rem); letter-spacing: -0.03em; }
.final-cta p { margin: 0 0 26px; color: var(--slate-300); font-size: 1.12rem; }

.dashboard-mock { background: white; border: 1px solid var(--slate-200); border-radius: 28px; padding: 24px; box-shadow: var(--shadow-lg); }
.dashboard-top { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--slate-200); color: var(--slate-600); }
.dashboard-top strong { color: var(--slate-900); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0; }
.stat-card { background: var(--blue-soft); border-radius: 16px; padding: 16px 12px; }
.stat-card strong { display: block; font-size: clamp(1.35rem, 4vw, 2rem); color: var(--blue-dark); }
.stat-card span { font-size: 0.86rem; color: var(--slate-600); font-weight: 700; }
.bar-list { display: grid; gap: 14px; }
.bar-list div { display: grid; gap: 7px; }
.bar-list span { font-weight: 750; font-size: 0.92rem; color: var(--slate-700); }
.bar-list i { display: block; height: 10px; background: var(--blue); border-radius: 999px; }
.dashboard-note { margin: 18px 0 0; color: var(--emerald-700); font-weight: 800; }

.pain-list { display: grid; gap: 14px; }
.pain-list div, .pricing-card { background: white; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.pain-list strong { display: block; font-size: 1.08rem; margin-bottom: 4px; }
.pain-list span { color: var(--slate-600); }
.business-how { background: var(--slate-50); }
.business-grid .audience-card { min-height: 195px; }
.privacy-business .two-column { align-items: start; }
.pricing-card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.pricing-section .btn-primary { margin-top: 10px; }

.site-footer { background: var(--slate-950); color: var(--slate-300); padding: 50px 0 24px; font-size: 0.92rem; }
.site-footer a { color: var(--slate-300); }
.site-footer a:hover { color: white; }
.footer-grid { display: grid; gap: 30px; margin-bottom: 32px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand { margin: 0 0 5px; color: white; font-weight: 850; font-size: 1.1rem; }
.footer-tagline { margin: 0; color: var(--slate-400); }
.footer-heading { margin: 0 0 10px; color: white; font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 7px; }
.footer-copy { margin: 0; padding-top: 24px; border-top: 1px solid var(--slate-800); text-align: center; color: var(--slate-500); }

@media (max-width: 759px) {
  .cta-row .btn-primary, .cta-row .btn-secondary { width: 100%; }
  .hero { padding-top: 42px; }
  .stat-grid { grid-template-columns: 1fr; }
  .cv-stack { min-height: 300px; }
  .cv-sheet-one { left: 8%; right: auto; }
  .cv-sheet-two { right: 5%; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
