:root {
  --ink: #13222a;
  --paper: #f5f6f1;
  --surface: #ffffff;
  --accent: #176b52;
  --accent-dark: #0f4f3c;
  --warning: #8a3f1f;
  --danger: #8d2929;
  --line: #d7dad5;
  --muted: #5f696e;
  --focus: #0a67c7;
  --radius: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgb(245 246 241 / 94%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { font-weight: 850; letter-spacing: -.03em; }
.brand small {
  display: block;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}
.button:hover { background: #263844; }
.button:disabled { opacity: .65; cursor: wait; }
.button.secondary { background: transparent; color: var(--ink); }

.hero { padding: 88px 0 82px; }
.hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: start;
}
.hero-copy { min-width: 0; }
.kicker {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
}
h1 {
  max-width: 920px;
  margin: 18px 0 26px;
  font-size: clamp(2.75rem, 4.85vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.057em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin: 0 0 18px;
}
h3 { margin: 0 0 10px; font-size: 1.15rem; }
.hero p {
  max-width: 830px;
  margin: 0;
  color: #38464d;
}
.hero-scenario {
  font-size: clamp(1.13rem, 1.75vw, 1.34rem);
  line-height: 1.52;
}
.hero-consequence {
  margin-top: 16px !important;
  font-size: 1.04rem;
  line-height: 1.62;
}
.hero-consequence strong,
.hero-solution strong { color: var(--ink); }
.hero-solution {
  margin-top: 18px !important;
  padding: 17px 20px;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,.7);
  border-radius: 0 14px 14px 0;
  font-size: 1.04rem;
  line-height: 1.62;
  box-shadow: 0 12px 28px rgba(19,34,42,.035);
}
.hero-recognition {
  margin-top: 16px !important;
  color: var(--muted) !important;
  font-size: .98rem;
  line-height: 1.55;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-case {
  position: relative;
  margin-top: 62px;
  padding: 26px;
  border: 1px solid #ccd4cf;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(23,107,82,.08), transparent 34%),
    rgba(255,255,255,.82);
  box-shadow: 0 24px 52px rgba(19,34,42,.08);
}
.hero-case__eyebrow {
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-case__timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-case__timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  padding: 0 0 24px;
}
.hero-case__timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 32px;
  bottom: 4px;
  width: 1px;
  background: #cfd7d2;
}
.hero-case__timeline time {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 30px;
  border: 1px solid #b9cbc2;
  border-radius: 999px;
  background: #eef4f1;
  color: var(--accent-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .04em;
}
.hero-case__timeline strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1rem;
}
.hero-case__timeline span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}
.hero-case__costs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.hero-case__costs span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f4e8e2;
  color: #74351c;
  font-size: .73rem;
  font-weight: 800;
}
.status-grid,
.pain-grid,
.steps,
.audience-grid { display: grid; gap: 18px; }
section { padding: 76px 0; }
.dark { background: var(--ink); color: #fff; }
.dark p,
.dark .section-lead { color: #cbd2d5; }
.section-lead { max-width: 740px; color: var(--muted); margin-bottom: 36px; }
.pain-grid,
.steps { grid-template-columns: repeat(3, 1fr); }
.pain,
.step { border-top: 2px solid currentColor; padding-top: 18px; }
.step { padding: 22px 20px 12px 0; }
.step-head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  margin-bottom: 20px;
}
.step-meta {
  display: flex;
  align-items: baseline;
  gap: 9px;
  min-width: 0;
}
.step-index {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.step-label {
  color: #56786e;
  font-weight: 820;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.15;
}
.audience-grid { grid-template-columns: 1.2fr .8fr; align-items: start; }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.checklist li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  position: absolute;
  left: 0;
}
.pilot { background: #e8f1ed; }
.pilot-box {
  max-width: 780px;
  margin: 0 auto;
  padding: 34px;
  background: var(--surface);
  border: 1px solid #bdd4ca;
  border-radius: var(--radius);
}
.pilot-box p:last-child { margin-bottom: 0; }
.pilot-box strong { color: var(--accent-dark); }



.research-section {
  padding: 82px 0 88px;
}
.research-shell {
  max-width: 1080px;
  margin: 0 auto;
}
.research-section h2 {
  max-width: 1040px;
  font-size: clamp(2.8rem, 5.6vw, 4.7rem);
}
.research-section .section-lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: #cfd7da;
}
.research-section .kicker {
  color: #2fa27e;
}
.research-section label,
.research-section legend {
  color: #f7faf8;
}
.research-section .field label,
.research-section legend {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.form-shell {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.035), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.research-section form,
.research-section .form-message,
.research-section .success {
  max-width: none;
}
.research-section input,
.research-section select,
.research-section textarea {
  border-color: rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(247,248,246,.98), rgba(233,237,236,.92));
  color: #162129;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 10px 28px rgba(0,0,0,.08);
}
.research-section input::placeholder,
.research-section textarea::placeholder {
  color: #66757d;
}
.research-section .radio {
  color: #eef3f1;
}
.research-section .consent {
  color: #cbd2d5;
}
.research-section .consent a {
  color: #ffffff;
}
.research-section .field-error {
  color: #ffb49f;
}
.research-section .turnstile-wrap {
  margin-top: 24px;
}
.research-section .button {
  border-color: #d65d2c;
  background: linear-gradient(90deg, #c64924 0%, #d65d2c 55%, #e56e36 100%);
  color: #fff;
}
.research-section .button:hover {
  background: linear-gradient(90deg, #b7411f 0%, #ca5327 55%, #da6230 100%);
}
.research-section .success {
  width: 100%;
  max-width: 1080px;
  margin: 28px auto 0;
  border-color: #78b69d;
  background: #e9f6f1;
  color: #10242a;
}
.research-section .success p {
  color: #36515a;
}
.enhanced-steps {
  align-items: start;
}
.step-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid #d7e2dd;
  border-radius: 17px;
  background: #eef4f1;
  color: var(--accent-dark);
}
.step-icon .phosphor-icon {
  width: 38px;
  height: 38px;
}

.choice-card__icon svg {
  width: 100%;
  height: 100%;
}
form { width: 100%; max-width: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
label,
legend { display: block; font-weight: 750; margin-bottom: 9px; }
input,
select,
textarea {
  width: 100%;
  min-height: 58px;
  padding: 16px 16px;
  border: 1px solid #aeb5b6;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
textarea { min-height: 136px; resize: vertical; }
fieldset { border: 0; padding: 0; margin: 8px 0 22px; }
.radio { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; }
.radio input { width: auto; min-height: auto; margin-top: 6px; accent-color: var(--accent); }

.research-section fieldset {
  margin-top: 12px;
  padding: 18px 20px 8px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
}
.research-section .radio {
  padding: 12px 0;
  font-weight: 650;
}
.research-section textarea {
  line-height: 1.55;
}


.contact-preferences {
  margin-top: 26px;
  padding: 24px;
}
.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-option {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 100px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.contact-option:hover {
  border-color: rgba(255,255,255,.20);
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  transform: translateY(-1px);
}
.contact-option:has(input:checked) {
  border-color: rgba(214,93,44,.72);
  background: linear-gradient(180deg, rgba(214,93,44,.13), rgba(255,255,255,.03));
  box-shadow: 0 0 0 1px rgba(214,93,44,.20);
}
.contact-option input {
  width: 19px;
  height: 19px;
  min-height: 19px;
  margin-top: 2px;
  accent-color: #d65d2c;
}
.contact-option strong,
.contact-option small {
  display: block;
}
.contact-option strong {
  margin-bottom: 6px;
  color: #f8fbf9;
  font-size: 1rem;
}
.contact-option small {
  color: #b7c1c5;
  font-size: .9rem;
  line-height: 1.45;
}
.conditional-field {
  width: calc((100% - 14px) / 2);
  max-width: calc((100% - 14px) / 2);
  margin: 18px 0 0;
}
.conditional-field input {
  width: 100%;
}
.conditional-field[hidden] {
  display: none;
}
.privacy-consent {
  margin-top: 24px;
}
.contact-preferences[aria-invalid="true"] {
  border-color: rgba(255,180,159,.70);
}
.field-hint {
  margin: -2px 0 16px;
  color: #b6c2c7;
  font-size: .95rem;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.choice-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 2px 14px;
  align-items: start;
  min-height: 108px;
  padding: 18px 18px 18px 52px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.choice-card:hover {
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  transform: translateY(-1px);
}
.choice-card input {
  position: absolute;
  left: 18px;
  top: 22px;
  width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: #d65d2c;
}
.choice-card__icon {
  grid-row: 1 / span 2;
  grid-column: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  color: #ffefe8;
  background: linear-gradient(180deg, rgba(214,93,44,.20), rgba(214,93,44,.07));
  margin-bottom: 10px;
}
.choice-card__title {
  display: block;
  grid-column: 2;
  color: #f8fbf9;
  font-weight: 800;
}
.choice-card__meta {
  display: block;
  grid-column: 2;
  color: #b7c1c5;
  font-size: .94rem;
  line-height: 1.45;
}
.choice-card:has(input:checked) {
  border-color: rgba(214,93,44,.75);
  background: linear-gradient(180deg, rgba(214,93,44,.14), rgba(255,255,255,.035));
  box-shadow: 0 0 0 1px rgba(214,93,44,.25), 0 14px 30px rgba(0,0,0,.10);
}
.choice-card:has(input:focus-visible) {
  outline: 2px solid #2f7ed8;
  outline-offset: 2px;
}
.consent { font-size: .92rem; color: var(--muted); }
.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 26px;
}
.privacy-consent input {
  width: 19px;
  height: 19px;
  min-height: 19px;
  margin-top: 2px;
  accent-color: #d65d2c;
  flex: 0 0 19px;
}
.privacy-consent span {
  display: block;
  line-height: 1.5;
}
.consent input { width: auto; min-height: auto; }
.field-error { margin: 5px 0 0; color: var(--danger); font-size: .88rem; }
.premium-submit {
  display: flex;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  margin-top: 10px;
  letter-spacing: .03em;
  box-shadow: 0 18px 40px rgba(201,83,39,.16);
}
[aria-invalid="true"] { border-color: var(--danger); }
.form-message {
  display: none;
  margin: 0 0 18px;
  padding: 14px;
  border-radius: 8px;
}
.form-message.error {
  display: block;
  border: 1px solid #d4a486;
  background: #fff5ef;
  color: #6d3218;
}
.success {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 30px;
  border: 1px solid #78b69d;
  background: #e9f6f1;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}
.success[hidden],
.form-shell[hidden] {
  display: none !important;
}
.success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: #176b52;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}
.success__content h3 {
  margin: 1px 0 8px;
  color: #10242a;
  font-size: 1.25rem;
}
.success__content p {
  margin: 0;
  color: #36515a;
  line-height: 1.6;
}
.turnstile-wrap { margin: 22px 0; min-height: 65px; }
.privacy-note { max-width: 780px; font-size: .92rem; color: var(--muted); }
.privacy-page { max-width: 800px; padding: 72px 0; }
.privacy-page h1 { font-size: clamp(2.5rem, 7vw, 4.8rem); }
.privacy-page h2 { margin-top: 44px; font-size: 1.7rem; letter-spacing: -.025em; }
.privacy-warning {
  padding: 16px;
  border: 2px solid var(--warning);
  background: #fff7ef;
  color: #6d3218;
  border-radius: 8px;
}
footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; }

@media (max-width: 980px) {
  .conditional-field {
    width: 100%;
    max-width: none;
  }
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-case { max-width: 720px; margin-top: 0; }
}

@media (max-width: 800px) {
  .status-grid,
  .pain-grid,
  .steps,
  .audience-grid,
  .form-grid,
  .choice-grid,
  .contact-options { grid-template-columns: 1fr; }
  .hero { padding-top: 64px; }
  nav .button { display: none; }
  .form-shell { padding: 24px 18px; }
  .step-head { align-items: center; min-height: auto; }
}

@media (max-width: 520px) {
  .hero-case { padding: 22px 18px; }
  .hero-case__timeline li { grid-template-columns: 52px minmax(0, 1fr); gap: 12px; }
  .hero-case__timeline time { width: 52px; }
  .hero-case__timeline li:not(:last-child)::after { left: 25px; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* v0.2.3 — conversion and validation clarity */
.validation-path {
  background: #f1f5f2;
}
.validation-path__layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}
.validation-path__copy h2 {
  max-width: 650px;
}
.validation-path__copy p {
  max-width: 620px;
  color: var(--muted);
}
.validation-path__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.validation-path__steps li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.validation-path__number {
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  color: var(--accent-dark);
}
.validation-path__steps strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.validation-path__steps p {
  margin: 0;
  color: var(--muted);
}
.form-section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.form-section-heading span {
  color: #fff;
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.form-section-heading p {
  max-width: 560px;
  margin: 0;
  color: #b9c4c8;
  font-size: .94rem;
}
.optional-details {
  margin: 8px 0 26px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
  overflow: hidden;
}
.optional-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  color: #f7faf8;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.optional-details summary::-webkit-details-marker {
  display: none;
}
.optional-details summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: #f7faf8;
  font-size: 1.15rem;
  line-height: 1;
  transition: transform .18s ease;
}
.optional-details[open] summary::after {
  transform: rotate(45deg);
}
.optional-details summary small {
  margin-left: auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(47,162,126,.14);
  color: #8ed7bd;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.optional-details__body {
  padding: 0 22px 22px;
}
.optional-details .process-fieldset {
  margin-top: 0;
}
.submit-note {
  width: 100%;
  max-width: 100%;
  margin-top: 14px;
}
.premium-submit {
  display: flex;
  width: 100%;
  max-width: none;
  min-height: 58px;
  box-sizing: border-box;
  justify-content: center;
  font-size: 1rem;
}

@media (max-width: 800px) {
  .validation-path__layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .form-section-heading {
    display: block;
  }
  .form-section-heading p {
    margin-top: 8px;
  }
  .optional-details summary {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .optional-details summary small {
    margin-left: 0;
  }
}
