:root {
  --ink: #10233f;
  --muted: #5d6f86;
  --paper: #f6f8fb;
  --white: #fff;
  --blue: #2457e6;
  --blue-dark: #173db2;
  --mint: #dff8ef;
  --mint-dark: #0d7a5f;
  --coral: #ff6b5f;
  --gold: #f4b942;
  --line: #dce3ed;
  --shadow: 0 22px 70px rgba(16, 35, 63, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
button, input, select, textarea { font: inherit; }
a { color: inherit; }
img { max-width: 100%; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 8px; background: white; padding: 10px; z-index: 20; }
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky; top: 0; z-index: 15;
  background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { text-decoration: none; font-weight: 900; font-size: 23px; letter-spacing: -.04em; }
.logo span { color: var(--blue); }
.nav-links { display: flex; gap: 26px; align-items: center; font-size: 14px; font-weight: 700; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--blue); }
.menu-btn { display: none; border: 0; background: none; font-weight: 800; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 0; border-radius: 999px; padding: 14px 22px; cursor: pointer;
  text-decoration: none; font-weight: 800; transition: .2s ease; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--blue); box-shadow: 0 12px 28px rgba(36,87,230,.23); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-light { color: var(--ink); background: white; border: 1px solid var(--line); }
.btn-small { padding: 10px 17px; font-size: 14px; }

.hero {
  overflow: hidden; position: relative; padding: 96px 0 82px;
  background:
    radial-gradient(circle at 85% 18%, rgba(36,87,230,.18), transparent 27%),
    radial-gradient(circle at 8% 84%, rgba(13,122,95,.13), transparent 24%),
    var(--paper);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: center; }
.eyebrow {
  display: inline-flex; gap: 8px; align-items: center; padding: 7px 12px;
  border-radius: 999px; color: var(--blue-dark); background: #e9efff;
  font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em;
}
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; margin-top: 0; }
h1 { font-size: clamp(46px, 6.2vw, 78px); margin: 20px 0 22px; }
h2 { font-size: clamp(34px, 4vw, 52px); margin-bottom: 18px; }
h3 { font-size: 22px; }
.hero-copy { color: var(--muted); font-size: 20px; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.microcopy { color: var(--muted); font-size: 13px; margin-top: 14px; }

.score-card {
  position: relative; background: white; border: 1px solid var(--line); border-radius: 30px;
  padding: 34px; box-shadow: var(--shadow); transform: rotate(1deg);
}
.score-card::before {
  content: ""; position: absolute; inset: 14px -16px -16px 16px; z-index: -1;
  border-radius: 30px; background: var(--mint);
}
.score-top { display: flex; align-items: center; justify-content: space-between; }
.score-label { color: var(--muted); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .07em; }
.score-number { font-size: 88px; font-weight: 900; letter-spacing: -.08em; color: var(--blue); line-height: 1; margin: 22px 0 8px; }
.score-number small { font-size: 24px; color: var(--muted); letter-spacing: 0; }
.progress { height: 12px; background: #e8edf4; border-radius: 20px; overflow: hidden; margin: 24px 0; }
.progress span { display: block; width: 68%; height: 100%; background: linear-gradient(90deg, var(--blue), #46cba2); border-radius: inherit; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list li::before { content: "✓"; color: var(--mint-dark); font-weight: 900; }

.trust-strip { border-block: 1px solid var(--line); background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { padding: 24px 18px; text-align: center; font-size: 14px; font-weight: 800; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item span { display: block; color: var(--blue); font-size: 20px; margin-bottom: 3px; }

.section { padding: 94px 0; }
#score, #pilot, #faq, #how, #roadmap { scroll-margin-top: 88px; }
.section-soft { background: var(--paper); }
.section-dark { color: white; background: var(--ink); }
.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--muted); font-size: 18px; }
.section-dark .section-head p { color: #b8c5d6; }
.kicker { color: var(--blue); font-weight: 900; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.steps-four { grid-template-columns: repeat(4,1fr); }
.step, .feature-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: white;
}
.step-no { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: #e9efff; color: var(--blue); font-weight: 900; margin-bottom: 24px; }
.step p, .feature-card p { color: var(--muted); margin-bottom: 0; }

.quiz-shell {
  max-width: 840px; margin: 0 auto; background: white; color: var(--ink);
  border-radius: 30px; box-shadow: 0 24px 80px rgba(0,0,0,.18); overflow: hidden;
}
.quiz-top { padding: 28px 34px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.quiz-top p { margin: 0; color: var(--muted); font-size: 14px; }
.quiz-body { padding: 36px; }
.question { display: none; }
.question.active { display: block; animation: rise .28s ease; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } }
.question h3 { font-size: 28px; margin-bottom: 22px; }
.options { display: grid; gap: 12px; }
.option {
  border: 2px solid var(--line); background: white; border-radius: 16px; padding: 18px;
  display: flex; gap: 14px; text-align: left; cursor: pointer; font-weight: 800;
}
.option:hover, .option.selected { border-color: var(--blue); background: #f1f5ff; }
.option-mark { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #b6c2d2; flex: 0 0 auto; display: grid; place-items: center; }
.option.selected .option-mark { color: white; background: var(--blue); border-color: var(--blue); }
.quiz-actions { margin-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.quiz-back { border: 0; background: none; font-weight: 800; color: var(--muted); cursor: pointer; }
.quiz-next[disabled] { opacity: .4; cursor: not-allowed; transform: none; }
.quiz-progress { height: 7px; background: #e8edf4; }
.quiz-progress span { height: 100%; display: block; width: 12.5%; transition: width .25s ease; background: linear-gradient(90deg, var(--blue), #48cba3); }

.result { display: none; text-align: center; padding: 10px 0 4px; }
.result.active { display: block; }
.result-ring {
  width: 174px; height: 174px; margin: 0 auto 26px; border-radius: 50%;
  display: grid; place-items: center; background: conic-gradient(var(--blue) var(--score-angle), #e8edf4 0);
  position: relative;
}
.result-ring::after { content: ""; position: absolute; inset: 13px; border-radius: 50%; background: white; }
.result-value { position: relative; z-index: 1; font-size: 56px; font-weight: 900; color: var(--blue); letter-spacing: -.07em; }
.result-value small { font-size: 16px; color: var(--muted); letter-spacing: 0; }
.result h3 { font-size: 32px; margin-bottom: 8px; }
.result-copy { max-width: 570px; margin: 0 auto; color: var(--muted); }
.priority-box { text-align: left; margin: 28px 0; padding: 22px; border-radius: 18px; background: var(--paper); }
.priority-box ul { margin-bottom: 0; }
.boundary { font-size: 13px; color: var(--muted); padding: 14px; border: 1px solid var(--line); border-radius: 12px; margin-top: 22px; }

.features { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: var(--mint); font-size: 23px; margin-bottom: 20px; }
.pill { display: inline-flex; padding: 5px 9px; border-radius: 999px; background: #fff1cf; color: #77510a; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }

.factors { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.factor-list { display: grid; gap: 14px; }
.factor { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); padding: 18px 20px; border-radius: 16px; }
.factor strong { display: block; margin-bottom: 3px; }
.factor span { color: #b8c5d6; font-size: 14px; }

.pilot {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center;
  border: 1px solid var(--line); border-radius: 30px; padding: 46px; background: white; box-shadow: var(--shadow);
}
.pilot-price { font-size: 54px; font-weight: 900; letter-spacing: -.06em; color: var(--blue); }
.pilot-price small { display: block; font-size: 13px; color: var(--muted); letter-spacing: 0; }
.pilot-list { margin: 24px 0; }
.pilot-links { display: grid; gap: 5px; margin-top: 18px; font-size: 14px; font-weight: 800; color: var(--blue); }
.product-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: start; }
.product-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: white; box-shadow: var(--shadow); }
.product-card h2 { font-size: 30px; }
.deliverables { display: grid; gap: 14px; margin-top: 24px; }
.deliverable { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; padding: 16px; background: var(--paper); border-radius: 16px; }
.deliverable b { display: grid; place-items: center; width: 42px; height: 42px; color: var(--blue); background: #e9efff; border-radius: 12px; }
.deliverable strong { display: block; }
.deliverable p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }
.scope-table { width: 100%; border-collapse: collapse; }
.scope-table th, .scope-table td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.scope-table th { width: 34%; }
.sample-banner { padding: 18px 20px; border: 1px solid #f1d38a; border-radius: 16px; background: #fff5d8; color: #5b3d00; }
.report-page { max-width: 900px; padding: 56px 0 80px; }
.report-header { padding: 32px; border-radius: 24px; color: white; background: var(--ink); }
.report-score { font-size: 58px; font-weight: 900; line-height: 1; color: #7ca0ff; }
.report-section { margin-top: 24px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: white; }
.report-section h2 { font-size: 28px; }
.status-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.status-row:last-child { border-bottom: 0; }
.status { padding: 4px 9px; border-radius: 999px; font-size: 12px; font-weight: 900; }
.status.ready { color: #075e49; background: var(--mint); }
.status.progress { color: #77510a; background: #fff1cf; height: auto; margin: 0; }
.status.missing { color: #922c23; background: #ffe4e1; }
.number-list { counter-reset: priorities; list-style: none; padding: 0; }
.number-list li { counter-increment: priorities; display: grid; grid-template-columns: 38px 1fr; gap: 12px; margin: 14px 0; }
.number-list li::before { content: counter(priorities); display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: white; background: var(--blue); font-weight: 900; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 800; font-size: 13px; }
input, select, textarea {
  width: 100%; border: 1px solid #cbd5e2; border-radius: 12px; padding: 13px 14px; color: var(--ink); background: white;
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(36,87,230,.16); border-color: var(--blue); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: var(--muted); }
.consent input { width: auto; margin-top: 5px; }
.form-note { font-size: 12px; color: var(--muted); }
.form-success { display: none; background: var(--mint); color: #075e49; padding: 16px; border-radius: 12px; font-weight: 800; }

.intake-hero { padding: 74px 0 58px; color: white; background: var(--ink); }
.intake-hero h1 { font-size: clamp(42px, 6vw, 68px); margin-bottom: 14px; }
.intake-hero p { max-width: 760px; color: #c2cedd; font-size: 18px; }
.intake-narrow { max-width: 900px; }
.intake-form { display: grid; gap: 24px; margin-top: 28px; }
.intake-form fieldset { margin: 0; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: white; }
.intake-form legend { padding: 0 10px; font-size: 22px; font-weight: 900; letter-spacing: -.025em; }
.intake-form .field { margin-top: 16px; }
.field-help, .fieldset-copy { color: var(--muted); font-size: 13px; }
.intake-question { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.intake-question:last-child { border-bottom: 0; }
.intake-question label { font-size: 15px; }
.goal-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 18px; }
.goal-option { display: flex; align-items: center; gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: 13px; cursor: pointer; }
.goal-option input { width: auto; }
.field-error { min-height: 24px; color: #a5251c; font-size: 13px; font-weight: 800; }
.intake-form .consent { margin: 16px 0; }
.intake-submit { margin-top: 10px; }
.confirmation-shell { min-height: 100vh; display: grid; place-items: center; padding: 30px; }
.confirmation-card { width: min(680px,100%); padding: 42px; border-radius: 28px; background: white; box-shadow: var(--shadow); }
.confirmation-card h1 { font-size: 42px; margin-top: 18px; }
.confirmation-mark { display: grid; place-items: center; width: 62px; height: 62px; margin-top: 34px; border-radius: 50%; color: #075e49; background: var(--mint); font-size: 30px; font-weight: 900; }
.confirmation-steps { display: grid; gap: 8px; margin: 26px 0; }
.confirmation-steps div { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.confirmation-steps b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: white; background: var(--blue); }
.confirmation-steps strong { display: block; }
.confirmation-steps span { color: var(--muted); }

.faq { max-width: 840px; margin: auto; }
details { border-bottom: 1px solid var(--line); padding: 20px 0; }
summary { cursor: pointer; font-weight: 900; font-size: 18px; }
details p { color: var(--muted); }

.safety {
  padding: 24px; margin-top: 34px; border-radius: 18px; color: #5b3d00; background: #fff5d8; border: 1px solid #f1d38a;
}
.safety strong { display: block; }

.site-footer { color: #c2cedd; background: #0a182c; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; }
.footer-grid h3 { color: white; }
.footer-grid a { display: block; margin: 8px 0; color: #c2cedd; text-decoration: none; }
.footer-grid a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 30px; margin-top: 36px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }

.legal-hero { background: var(--paper); padding: 74px 0; border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: 50px; margin-bottom: 8px; }
.legal { max-width: 820px; padding: 64px 0; }
.legal h2 { font-size: 28px; margin-top: 42px; }
.legal h3 { font-size: 20px; margin-top: 28px; }
.legal p, .legal li { color: #40536b; }
.legal a { color: var(--blue); }
.source-list { padding-left: 20px; }

@media (max-width: 850px) {
  .hero-grid, .factors, .pilot, .product-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 68px; }
  .hero-grid { gap: 48px; }
  .score-card { transform: none; }
  .steps, .steps-four, .trust-grid { grid-template-columns: repeat(2,1fr); }
  .features { grid-template-columns: 1fr; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 72px; padding: 20px;
    background: white; border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: block; }
  .nav-cta { display: none; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, 1120px); }
  .section { padding: 70px 0; }
  .steps, .trust-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .quiz-body, .quiz-top { padding: 24px 20px; }
  .pilot { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  h1 { font-size: 46px; }
  .intake-question, .goal-grid { grid-template-columns: 1fr; }
  .confirmation-card { padding: 28px 22px; }
  .confirmation-card h1 { font-size: 36px; }
}

@media print {
  .site-header, .hero-actions, .site-footer, .menu-btn { display: none; }
  body { color: black; }
}
