:root {
  --bg: #f4f1ea;
  --ink: #17150f;
  --muted: #5c574e;
  --line: rgba(23,21,15,.12);
  --panel: #fffaf0;
  --dark: #11100b;
  --green: #1f9d57;
  --green-soft: #ddf7e9;
  --orange: #e9a36e;
  --shadow: 0 24px 80px rgba(17,16,11,.12);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'Geist Mono', ui-monospace, SFMono-Regular, monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input, select { font: inherit; }
button { border: 0; }
.hidden { display: none !important; }
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 5vw, 44px);
  background: rgba(244,241,234,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: var(--serif);
  font-size: 28px;
  text-decoration: none;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; color: var(--muted); }
.nav-links a { text-decoration: none; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-links .pill.dark:hover { color: var(--bg); }
.nav-toggle { display: none; background: transparent; color: var(--ink); font-weight: 600; }
.pill, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
}
.pill.dark, .button.primary { background: var(--dark); color: var(--bg); }
.button.secondary { border: 1px solid var(--line); color: var(--ink); background: transparent; }
.button.small { min-height: 38px; padding: 10px 16px; font-size: 14px; }
.button:hover, .pill:hover { transform: translateY(-1px); }
.button[disabled] { opacity: .45; cursor: not-allowed; transform: none; }
.section { max-width: 1180px; margin: 0 auto; padding: clamp(58px, 9vw, 96px) clamp(20px, 5vw, 44px); }
.section.tight { padding-top: 20px; padding-bottom: 44px; }
.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .78fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 22px;
  font: 600 12px/1.2 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.025em; }
h1 { font-size: clamp(50px, 7.45vw, 86px); line-height: .92; max-width: 12ch; margin-bottom: 28px; }
h1 .line { display: block; }
h2 { font-size: clamp(38px, 5.4vw, 64px); line-height: .98; margin-bottom: 22px; }
h3 { font-size: 22px; margin-bottom: 10px; }
.lede { font-size: clamp(19px, 2.1vw, 23px); line-height: 1.48; color: #3f3a31; max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 16px; }
.microcopy, .muted, .note { color: var(--muted); line-height: 1.55; }
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(31,157,87,.12);
}
.proof-note { max-width: 560px; margin-top: 22px; font-size: 14px; }
.proof-context { margin-top: 22px; max-width: 820px; }
.proof-context ul { margin: 14px 0 0; padding-left: 1.2rem; color: var(--muted); line-height: 1.55; }
.proof-context li + li { margin-top: 8px; }
.proof-context strong { color: var(--ink); }
.hero-card { position: relative; border-radius: 18px; overflow: hidden; background: var(--dark); box-shadow: var(--shadow); }
.hero-card img { display: block; width: 100%; aspect-ratio: 1/1.08; object-fit: cover; object-position: center top; }
.hero-card-footer {
  position: absolute;
  inset: auto 0 0;
  padding: 48px 24px 22px;
  color: var(--bg);
  background: linear-gradient(to top, rgba(0,0,0,.82), transparent);
}
.hero-card-footer strong { display: block; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.hero-card-footer span { color: #9ff0bf; font: 600 11px/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.beliefs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.belief { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px; }
.belief span, .phases span { font: 600 12px/1 var(--mono); color: var(--green); }
.belief p { margin: 14px 0 0; font-size: 18px; line-height: 1.45; font-weight: 550; }
.proof { border-top: 1px solid var(--line); }
.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-heading.narrow { max-width: 690px; }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.metrics article { background: var(--dark); color: var(--bg); padding: 26px; border-radius: 16px; min-height: 150px; }
.metrics strong { display: block; font-family: var(--serif); font-size: clamp(38px, 5vw, 58px); line-height: .9; color: #8ff0b9; font-weight: 400; }
.metrics span { display: block; margin-top: 16px; color: #d4cebf; line-height: 1.45; }
.scan-shell { max-width: 1040px; }
.scan-intro, .quiz, .results, .newsletter { background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.scan-intro { padding: clamp(34px, 6vw, 64px); text-align: center; }
.scan-intro h2 { max-width: 720px; margin-left: auto; margin-right: auto; }
.scan-intro p:not(.eyebrow) { max-width: 640px; margin-left: auto; margin-right: auto; color: var(--muted); font-size: 18px; line-height: 1.55; }
.quiz { padding: clamp(24px, 5vw, 46px); }
.quiz-topline { display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--muted); font: 600 12px/1.2 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.step-dots { display: flex; gap: 7px; }
.step-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(23,21,15,.16);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.step-dots span.active {
  background: var(--green);
  transform: scale(1.16);
  box-shadow: 0 0 0 4px rgba(31,157,87,.13);
}
.step-dots span.done { background: rgba(31,157,87,.45); }
.text-button { background: transparent; color: var(--muted); cursor: pointer; padding: 0; }
.progress { height: 8px; background: rgba(31,157,87,.14); border-radius: 99px; margin: 22px 0 34px; overflow: hidden; }
.progress span { display: block; height: 100%; width: 25%; background: var(--green); border-radius: inherit; transition: width .2s ease; }
fieldset { border: 0; padding: 0; margin: 0; }
legend { display: block; width: 100%; font-family: var(--serif); font-size: clamp(34px, 5vw, 56px); line-height: 1; letter-spacing: -.02em; margin-bottom: 14px; }
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 26px 0; }
.option, .two-options label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  background: var(--panel);
  border: 2px solid rgba(23,21,15,.1);
  border-radius: 14px;
  padding: 18px;
  cursor: pointer;
  min-height: 86px;
}
.option.selected, .two-options label:has(input:checked) { border-color: var(--green); box-shadow: 0 0 0 4px rgba(31,157,87,.12); }
.option small, .two-options span { color: var(--muted); line-height: 1.4; }
.two-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 26px; }
.two-options input { position: absolute; opacity: 0; }
.field-label { display: block; margin-top: 18px; font: 600 12px/1.2 var(--mono); text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
input[type="text"], input[type="email"], select {
  width: 100%;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 15px 16px;
  font: 400 16px/1.3 var(--sans);
  text-transform: none;
  letter-spacing: 0;
}
input[type="range"] { width: 100%; margin: 20px 0 8px; accent-color: var(--green); }
.range-value { display: block; font: 400 15px/1.4 var(--sans); color: var(--ink); text-transform: none; letter-spacing: 0; }
.quiz-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 34px; }
.results { padding: clamp(26px, 5vw, 48px); }
.audit-header { margin-bottom: 24px; }
.audit-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.audit-title-row h2 { margin-bottom: 10px; }
.result-hero { display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center; background: var(--dark); color: var(--bg); border-radius: 18px; padding: clamp(24px, 5vw, 44px); }
.score { font-family: var(--serif); font-size: clamp(72px, 12vw, 112px); line-height: .8; color: #8ff0b9; }
.badge { display: inline-flex; background: rgba(143,240,185,.14); color: #8ff0b9; padding: 8px 12px; border-radius: 999px; font: 650 12px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.result-hero p { color: #ded8cc; line-height: 1.55; margin: 0; }
.result-hero h3 { color: var(--bg); font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 4.8vw, 54px); line-height: 1; margin-bottom: 12px; }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.result-box { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.result-box strong { display: block; font-size: 28px; margin-top: 8px; }
.audit-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.audit-summary article, .architecture-grid article { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.audit-summary span, .architecture-grid span { color: var(--green); font: 650 12px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.audit-summary strong { display: block; font-size: 24px; margin: 10px 0 6px; }
.audit-summary p, .architecture-grid p { color: var(--muted); line-height: 1.5; margin: 10px 0 0; }
.audit-section { margin-top: 34px; padding-top: 34px; border-top: 1px solid var(--line); }
.architecture-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.roadmap { margin-top: 18px; }
.roadmap article { border-top: 1px solid var(--line); padding: 22px 0; }
.roadmap.detailed article { display: grid; grid-template-columns: 90px minmax(0, 1fr); column-gap: 18px; row-gap: 6px; }
.roadmap span { color: var(--green); font: 650 12px/1 var(--mono); letter-spacing: .08em; }
.roadmap.detailed span { grid-row: span 3; padding-top: 5px; }
.roadmap.detailed h3 { margin-bottom: 2px; }
.roadmap.detailed p { color: var(--muted); line-height: 1.5; margin-bottom: 0; }
.roadmap.detailed small { display: block; color: var(--ink); font-weight: 650; line-height: 1.45; }
.call-card { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: clamp(24px, 5vw, 42px); }
.call-card h2 { max-width: 780px; }
.call-card p { color: var(--muted); line-height: 1.55; max-width: 760px; }
.result-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.retake-link { align-self: center; text-decoration: underline; }
.tiny-note { margin-top: 18px; font-size: 14px; }
.tiny-note a { color: var(--ink); font-weight: 650; }
.work { border-top: 1px solid var(--line); }
.phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 32px 0; }
.phases article { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px; }
.phases p { color: var(--muted); line-height: 1.55; margin-bottom: 0; }
.newsletter { display: grid; grid-template-columns: 1fr .9fr; gap: 32px; align-items: center; max-width: 1100px; }
.email-card { background: var(--dark); color: var(--bg); border-radius: 18px; padding: 24px; }
.email-card label { font: 600 12px/1.2 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: #b8b1a3; }
.email-card input { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: var(--bg); }
.email-card .button { width: 100%; margin-top: 14px; background: var(--green); color: #07120b; }
.download-link { margin-top: 10px; }
.checklist-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.checklist-actions .download-link { margin-top: 0; }
.checklist-actions .text-button { text-decoration: underline; }
.form-status, .fallback { color: #b8b1a3; font-size: 13px; line-height: 1.45; margin: 12px 0 0; }
.fallback a { color: #8ff0b9; }
.footer { display: flex; justify-content: space-between; gap: 20px; padding: 30px clamp(20px, 5vw, 44px); border-top: 1px solid var(--line); color: var(--muted); }
.footer strong { color: var(--ink); font-family: var(--serif); font-size: 24px; font-weight: 400; }
.footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer a { text-decoration: none; }
.page-hero { padding-top: clamp(72px, 10vw, 118px); }
.page-hero h1 { max-width: 13ch; }
.resource-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding-top: 0; }
.resource-block, .legal-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: clamp(24px, 4vw, 34px); }
.resource-block span { color: var(--green); font: 650 12px/1 var(--mono); letter-spacing: .08em; }
.resource-block h2 { font-size: clamp(34px, 4vw, 48px); margin: 14px 0 14px; }
.resource-block p, .resource-block li, .legal-card p { color: var(--muted); line-height: 1.58; }
.resource-block ul { padding-left: 1.2rem; margin: 18px 0 0; }
.resource-block li + li { margin-top: 10px; }
.resource-block strong, .legal-card a { color: var(--ink); }
.resource-disclosure { margin-bottom: clamp(42px, 6vw, 72px); }
.legal-page { max-width: 900px; }
.legal-card { margin-top: 18px; }
.legal-card h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 12px; }
.media-kit-hero h1 { max-width: 14ch; }
.media-kit-grid .resource-block { min-height: 240px; }
.subscribe-page { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); gap: clamp(28px, 6vw, 72px); align-items: center; }
.subscribe-card h2 { color: var(--bg); font-size: clamp(32px, 4vw, 46px); margin-bottom: 10px; }
.subscribe-card p { color: #d8d1c3; line-height: 1.5; }
.subscribe-card .fallback a { color: #8ff0b9; }
@media (max-width: 860px) {
  .nav { align-items: flex-start; }
  .nav-toggle { display: inline-flex; min-height: 36px; align-items: center; }
  .nav-links { display: none; position: absolute; left: 16px; right: 16px; top: 62px; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 54px; }
  h1 { max-width: 12ch; }
  .hero-card { max-width: 420px; margin: 0 auto; }
  .beliefs, .metrics, .phases, .newsletter, .result-grid, .audit-summary, .architecture-grid, .resource-page-grid, .subscribe-page { grid-template-columns: 1fr; }
  .audit-title-row { flex-direction: column; }
  .roadmap.detailed article { grid-template-columns: 1fr; }
  .option-grid, .two-options { grid-template-columns: 1fr; }
  .result-hero { grid-template-columns: 1fr; }
  .quiz-actions, .hero-actions, .result-actions { flex-direction: column; }
  .button { width: 100%; }
  .footer { flex-direction: column; }
}
@media (max-width: 460px) {
  .section { padding-left: 18px; padding-right: 18px; }
  h1 { font-size: 54px; }
  h2, legend { font-size: 40px; }
  .brand { font-size: 25px; }
  .scan-intro, .quiz, .results { border-radius: 16px; }
}
.checklist-page { background: #fffaf0; }
.checklist-doc { max-width: 860px; }
.checklist-doc h1 { max-width: 9ch; }
.checklist-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: clamp(22px, 4vw, 34px); margin: 18px 0; box-shadow: 0 14px 50px rgba(17,16,11,.07); }
.checklist-card ol { padding-left: 1.25rem; margin-bottom: 0; }
.checklist-card li { margin: 12px 0; line-height: 1.5; }
.dark-card { background: var(--dark); color: var(--bg); }
.dark-card p { color: #d4cebf; }
.dark-card .button.primary { background: var(--green); color: #07120b; margin-top: 12px; }

@media print {
  body { background: #fff; }
  body * { visibility: hidden; }
  .results, .results * { visibility: visible; }
  .results {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
  .results .button, .retake-link, .tiny-note { display: none !important; }
  .result-hero, .audit-summary article, .architecture-grid article, .call-card {
    break-inside: avoid;
    box-shadow: none;
  }
}
