:root {
  --bg: #08080c;
  --surface: #101018;
  --surface-2: #15151f;
  --text: #f4f5f7;
  --muted: #a0a3ad;
  --faint: #6b6f7a;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.14);
  --accent: #10b981;
  --accent-2: #34d399;
  --accent-soft: rgba(16,185,129,.12);
  --accent-line: rgba(16,185,129,.35);
  --glow: rgba(16,185,129,.28);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(900px 520px at 75% -10%, rgba(16,185,129,.14), transparent 60%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-2); }
.container { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* Hero */
.hero { text-align: center; padding: 88px 24px 64px; position: relative; }
.hero .brand {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 20px;
}
.hero .brand .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--glow); }
.hero h1 { font-size: clamp(28px, 5vw, 42px); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; max-width: 680px; margin: 0 auto 20px; }
.hero h1 .grad { background: linear-gradient(100deg, var(--accent-2), var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.sub { font-size: 17px; color: var(--muted); max-width: 580px; margin: 0 auto 32px; }
.btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; background: var(--accent); color: #04130d; font-size: 15px; font-weight: 700;
  padding: 14px 32px; border-radius: 11px; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 0 0 1px var(--accent-line), 0 14px 30px -12px var(--glow); transition: background .15s ease, transform .15s ease;
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block; background: rgba(255,255,255,.03); color: var(--text); font-size: 15px; font-weight: 700;
  padding: 14px 24px; border-radius: 11px; text-decoration: none; border: 1px solid var(--line-strong); transition: border-color .15s ease, background .15s ease;
}
.btn-ghost:hover { border-color: var(--accent-line); background: rgba(255,255,255,.06); color: var(--text); }
.trust-line { margin-top: 26px; font-size: 13px; color: var(--faint); }

.intake-wrap {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 28px;
  box-shadow: 0 24px 60px -34px rgba(0,0,0,.9); max-width: 760px; margin: 0 auto;
}
.intake-wrap h3 { font-size: 21px; margin-bottom: 8px; }
.intake-wrap p { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.intake-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.intake-grid .full { grid-column: 1 / -1; }
.intake-wrap input, .intake-wrap select, .intake-wrap textarea {
  width: 100%; padding: 12px 13px; border: 1px solid var(--line-strong); border-radius: 10px;
  font-size: 14px; font-family: inherit; resize: vertical; background: var(--surface-2); color: var(--text);
}
.intake-wrap input::placeholder, .intake-wrap textarea::placeholder { color: var(--faint); }
.intake-wrap input:focus, .intake-wrap select:focus, .intake-wrap textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.intake-wrap select option { background: var(--surface-2); color: var(--text); }
.intake-wrap button { width: 100%; }
@media (max-width: 720px) { .intake-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .hero { padding: 64px 20px 48px; }
  section { padding: 48px 20px; }
  .btn-row { flex-direction: column; }
  .btn-row .btn-primary, .btn-row .btn-ghost { width: 100%; }
  .intake-wrap { padding: 22px; }
}

/* Sections */
section { padding: 64px 24px; }
.section-label { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 8px; }
h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 32px; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 24px; }
.step-num { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 10px; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent-2); font-weight: 700; font-size: 15px; margin-bottom: 14px; }
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }

/* Benefits */
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.benefit { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 24px; }
.benefit h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.benefit p { font-size: 14px; color: var(--muted); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.pricing-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 32px 24px; text-align: center; position: relative; }
.pricing-card.featured { border-color: var(--accent); border-width: 2px; box-shadow: 0 20px 44px -24px var(--glow); }
.pricing-card.featured::before { content: "Most Popular"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #04130d; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 16px; border-radius: 100px; }
.pricing-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.pricing-card .price { font-size: 34px; font-weight: 800; color: var(--text); margin: 12px 0 4px; }
.pricing-card .price span { font-size: 15px; font-weight: 400; color: var(--muted); }
.pricing-card .best-for { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 24px; }
.pricing-card li { font-size: 13px; color: var(--text); padding: 7px 0; border-bottom: 1px solid var(--line); }
.pricing-card li::before { content: "\2713"; color: var(--accent-2); font-weight: 700; margin-right: 8px; }
.pricing-card li.no { color: var(--faint); }
.pricing-card li.no::before { content: "\2014"; color: var(--faint); }
.btn-tier { display: block; background: var(--accent); color: #04130d; font-size: 14px; font-weight: 700; padding: 12px 24px; border-radius: 10px; text-decoration: none; text-align: center; box-shadow: 0 0 0 1px var(--accent-line); transition: background .15s ease; }
.btn-tier:hover { background: var(--accent-2); color: #04130d; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: var(--muted); }

/* CTA */
.cta-section {
  text-align: center; padding: 72px 24px; border-top: 1px solid var(--line);
  background: radial-gradient(700px 360px at 50% -30%, var(--accent-soft), transparent 70%);
}
.cta-section h2 { color: var(--text); }
.cta-section p { color: var(--muted); max-width: 480px; margin: 0 auto 28px; font-size: 15px; }
.cta-section .contact { margin-top: 16px; font-size: 13px; color: var(--faint); }
.cta-section .contact a { color: var(--accent-2); text-decoration: none; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 26px; text-align: center; background: rgba(255,255,255,.015); }
footer p { font-size: 12px; color: var(--faint); }
footer a { color: var(--muted); text-decoration: none; }

.note { font-size: 13px; color: var(--faint); text-align: center; margin-top: 16px; }
.skip-link { position: absolute; left: 12px; top: -48px; z-index: 1000; background: var(--accent); color: #04130d; font-weight: 800; padding: 10px 16px; border-radius: 10px; text-decoration: none; transition: top .15s ease; }
.skip-link:focus { top: 12px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; } }
