*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:            oklch(98.5% 0.007 318);
  --bg-subtle:     oklch(95%   0.016 316);
  --bg-muted:      oklch(91%   0.022 314);
  --primary:       oklch(52%   0.22  312);
  --primary-mid:   oklch(66%   0.20  312);
  --primary-light: oklch(92%   0.07  314);
  --accent:        oklch(68%   0.14  80);
  --text:          oklch(18%   0.04  312);
  --text-muted:    oklch(46%   0.07  312);
  --text-subtle:   oklch(64%   0.04  312);
  --border:        oklch(89%   0.03  316);
  --border-strong: oklch(76%   0.05  314);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.display { font-family: 'Playfair Display', Georgia, serif; }
.mono { font-family: 'DM Mono', monospace; }
a { text-decoration: none; color: inherit; }

.btn-primary { display: inline-block; background: var(--primary); color: var(--bg); border: none; border-radius: var(--radius-sm); padding: 11px 24px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; transition: opacity 0.2s, transform 0.15s; letter-spacing: -0.01em; }
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-primary.btn-full { display: block; text-align: center; width: 100%; padding: 14px; }
.btn-ghost { display: inline-block; background: transparent; color: var(--text-muted); font-size: 14px; font-weight: 500; padding: 11px 16px; transition: color 0.2s; }
.btn-ghost:hover { color: var(--text); }
.btn-outline { display: inline-block; background: transparent; color: var(--primary); border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.btn-outline:hover { background: var(--primary-light); border-color: var(--primary-mid); }
.btn-outline.btn-full { display: block; text-align: center; width: 100%; padding: 14px; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: oklch(98.5% 0.007 318 / 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; height: 64px; display: flex; align-items: center; gap: 40px; }
.logo { font-size: 18px; font-weight: 700; color: var(--primary); letter-spacing: -0.02em; flex-shrink: 0; }
.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 4px; }

.hero { min-height: 100vh; padding: 160px 32px 100px; max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-eyebrow { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 24px; }
.hero-headline { font-size: clamp(52px, 6vw, 88px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.0; color: var(--text); margin-bottom: 28px; }
.hero-headline em { font-style: italic; color: var(--primary); }
.hero-sub { font-size: 17px; color: var(--text-muted); font-weight: 300; line-height: 1.7; max-width: 420px; margin-bottom: 40px; }
.hero-cta { display: flex; align-items: center; gap: 20px; }
.hero-cta-note { font-size: 13px; color: var(--text-subtle); font-weight: 300; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.dashboard-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; width: 100%; max-width: 380px; box-shadow: 0 24px 80px oklch(52% 0.22 312 / 0.10), 0 4px 16px oklch(18% 0.04 312 / 0.06); position: relative; z-index: 2; }
.dash-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-subtle); margin-bottom: 10px; }
.dash-amount { font-size: 48px; font-weight: 900; letter-spacing: -0.03em; color: var(--text); line-height: 1; }
.dash-cents { font-size: 28px; color: var(--text-muted); }
.dash-delta { font-size: 13px; font-weight: 500; margin-top: 8px; margin-bottom: 32px; }
.dash-delta.positive { color: oklch(50% 0.16 155); }
.dash-bars { display: flex; align-items: flex-end; gap: 10px; height: 80px; }
.bar-group { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.bar { width: 100%; height: var(--h); background: var(--primary-light); border-radius: 4px 4px 0 0; }
.bar.active { background: var(--primary); }
.bar-group span { font-size: 9px; letter-spacing: 0.06em; color: var(--text-subtle); }

.dashboard-pill { position: absolute; background: var(--bg); border: 1px solid var(--border); border-radius: 50px; padding: 10px 16px; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 28px oklch(18% 0.04 312 / 0.08); z-index: 3; white-space: nowrap; }
.pill-label { font-size: 13px; font-weight: 500; }
.pill-amount { font-size: 13px; color: var(--text-muted); }
.pill-amount.positive { color: oklch(50% 0.16 155); }
.pill-icon { font-size: 16px; }
.pill-1 { top: 10%; right: -8%; }
.pill-2 { top: 42%; left: -14%; }
.pill-3 { bottom: 12%; right: -6%; }

.proof-bar { background: var(--primary-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 32px; }
.proof-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.proof-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-subtle); }
.proof-stat { font-size: 22px; font-weight: 700; color: var(--primary); letter-spacing: -0.02em; }
.proof-text { font-size: 14px; color: var(--text-muted); font-weight: 300; }
.proof-divider { color: var(--border-strong); font-size: 20px; }
.proof-stars { color: var(--accent); font-size: 15px; letter-spacing: 2px; }

.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section-eyebrow { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.section-headline { font-size: clamp(32px, 4vw, 56px); font-weight: 700; letter-spacing: -0.025em; color: var(--text); line-height: 1.1; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--text-muted); font-weight: 300; margin-bottom: 64px; }

.features { padding: 120px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 36px; transition: border-color 0.2s, box-shadow 0.2s; }
.feature-card:hover { border-color: var(--border-strong); box-shadow: 0 8px 32px oklch(52% 0.22 312 / 0.08); }
.feature-large { grid-column: span 2; }
.feature-icon { font-size: 28px; margin-bottom: 20px; }
.feature-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); margin-bottom: 12px; }
.feature-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }
.feature-visual-mini { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.mini-row { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-muted); }
.mini-row span:first-child { width: 80px; }
.mini-row span:last-child { width: 60px; text-align: right; font-size: 11px; }
.mini-bar { flex: 1; height: 6px; background: var(--bg-muted); border-radius: 3px; position: relative; overflow: hidden; }
.mini-bar::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: var(--w); background: var(--primary); border-radius: 3px; }

.how-it-works { padding: 120px 0; background: var(--bg-muted); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps { display: flex; align-items: flex-start; margin-top: 20px; }
.step { flex: 1; padding: 0 32px 0 0; }
.step-num { font-size: 11px; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 16px; }
.step h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); margin-bottom: 12px; }
.step p { font-size: 15px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }
.step-connector { width: 1px; height: 80px; background: var(--border-strong); margin: 8px 32px 0; flex-shrink: 0; }

.pricing { padding: 120px 0; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 780px; }
.pricing-card { background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 40px; position: relative; }
.pricing-featured { background: var(--bg); border-color: var(--primary-mid); box-shadow: 0 16px 56px oklch(52% 0.22 312 / 0.12); }
.plan-badge { display: inline-block; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bg); background: var(--primary); border-radius: 4px; padding: 4px 10px; margin-bottom: 20px; }
.plan-name { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-subtle); margin-bottom: 10px; }
.plan-price { font-size: 52px; font-weight: 900; letter-spacing: -0.03em; color: var(--text); margin-bottom: 12px; line-height: 1; }
.plan-price span { font-size: 20px; color: var(--text-muted); font-weight: 400; }
.plan-desc { font-size: 14px; color: var(--text-muted); font-weight: 300; line-height: 1.6; margin-bottom: 28px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.plan-features li { font-size: 14px; color: var(--text-muted); }

.cta-section { padding: 140px 0; background: var(--bg-muted); border-top: 1px solid var(--border); text-align: center; }
.cta-eyebrow { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; }
.cta-headline { font-size: clamp(52px, 8vw, 96px); font-weight: 900; letter-spacing: -0.03em; color: var(--text); line-height: 1; margin-bottom: 24px; }
.cta-sub { font-size: 17px; color: var(--text-muted); font-weight: 300; margin-bottom: 44px; }

.footer { padding: 28px 32px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-subtle); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 10px; letter-spacing: 0.08em; color: var(--text-subtle); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { animation: fadeUp 0.6s ease 0.1s both; }
.hero-headline { animation: fadeUp 0.6s ease 0.2s both; }
.hero-sub { animation: fadeUp 0.6s ease 0.35s both; }
.hero-cta { animation: fadeUp 0.6s ease 0.5s both; }
.hero-visual { animation: fadeUp 0.8s ease 0.4s both; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 120px; gap: 60px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 1; }
  .steps { flex-direction: column; gap: 36px; }
  .step-connector { width: 40px; height: 1px; margin: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
}

@media (max-width: 600px) {
  .section-inner { padding: 0 20px; }
  .hero { padding: 120px 20px 80px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}
