/* DT-09 public marketing site.
   Tokens v1.0.1-dt01 compiled to custom properties — the same palette
   the app uses. Light is the default; dark follows the system
   preference (no switch on the public site). Fonts fall back to the
   approved repository stacks: the display serif degrades to Georgia,
   the body sans to the system stack — no font files are shipped.
   Breakpoints 360 / 768 / 1024 / 1280 · content max 1120px ·
   gutters 16 / 24 / 32 / 80. */

:root {
  --page: #FCF0E4; --raised: #FBF3E8; --sunken: #F0E4D8;
  --field: #FBF3E8; --field-focus: #F4EADB; --illus: #FFFCF0;
  --inverse: #22392B; --scrim: rgba(34,57,43,.48);
  --ink: #22392B; --ink2: #5C6B58; --ink-label: #565F4E; --ink-muted: #5F6858;
  --on-inverse: #FCF0E4; --on-inverse2: #9FB098;
  --primary: #22392B; --primary-hover: #2C3F31; --primary-active: #1A2C21;
  --primary-ink: #FCF0E4;
  --c200: #E2CBA3; --c300: #D9BE8B; --c600: #9E8250; --c700: #7F6740; --c900: #3F3320;
  --success: #2F6B45;
  --warning-surface: #F6EBD6; --warning-ink: #6E5426;
  --error: #8C4A3A; --error-surface: #F7E4DE; --error-strong: #7A3E30;
  --rule: rgba(34,57,43,.14); --rule-strong: rgba(34,57,43,.30);
  --focus-ring: rgba(34,57,43,.12);
  --inverse-rule: rgba(252,240,228,.18); --inverse-rule-strong: rgba(252,240,228,.22);
  --inverse-panel: rgba(252,240,228,.06);
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-label: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  --font-script: "Parisienne", "Snell Roundhand", "Segoe Script", cursive;
  --gutter: 16px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #171C15; --raised: #1F2620; --sunken: #10140F;
    --field: #1F2620; --field-focus: #2A3329; --illus: #202821;
    --inverse: #F2E7D8; --scrim: rgba(8,11,8,.66);
    --ink: #F2E7D8; --ink2: #BEC9B6; --ink-label: #A3AF9B; --ink-muted: #8B9686;
    --on-inverse: #22392B; --on-inverse2: #4A5C4C;
    --primary: #B5D0A9; --primary-hover: #C4DAB9; --primary-active: #A2C095;
    --primary-ink: #14190F;
    --c200: #55432A; --c300: #7A6039; --c600: #D9BE8B; --c700: #E7D2A8; --c900: #F8F0DE;
    --success: #8FC79A;
    --warning-surface: #2C2417; --warning-ink: #DDB878;
    --error: #E5A395; --error-surface: #33201C; --error-strong: #F0C4B9;
    --rule: rgba(242,231,216,.16); --rule-strong: rgba(242,231,216,.32);
    --focus-ring: rgba(242,231,216,.22);
    --inverse-rule: rgba(34,57,43,.18); --inverse-rule-strong: rgba(34,57,43,.28);
    --inverse-panel: rgba(34,57,43,.06);
  }
}

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

body.mkt {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.mkt img { max-width: 100%; height: auto; }
.mkt a:not(.btn) { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 2px; }
.mkt a:not(.btn):hover { color: var(--c700); }

/* Focus — the DT-01 contract, identical in both themes, never removed. */
.mkt :focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px var(--focus-ring) inset, 0 0 0 3px var(--focus-ring);
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  padding: 10px 16px; background: var(--raised); color: var(--ink);
  font-weight: 600;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Type ---------- */

.display-xl {
  margin: 0 0 20px;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.1; letter-spacing: -.016em;
  text-wrap: pretty;
}
.hero-split .display-xl { font-size: clamp(34px, 5.5vw, 52px); line-height: 1.06; }
.display-lg {
  margin: 0 0 12px;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(27px, 3.6vw, 38px);
  line-height: 1.14; letter-spacing: -.012em;
  text-wrap: pretty;
}
.display-md {
  margin: 0 0 16px;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.16;
}
.eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-label);
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--c700);
}
.eyebrow--inverse { color: var(--on-inverse2); }
.script-line {
  margin: 22px 0 0;
  font-family: var(--font-script);
  font-size: clamp(26px, 3vw, 30px);
  color: var(--c300);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 22px; border-radius: 8px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: 0;
}
.btn--primary { background: var(--primary); color: var(--primary-ink); }
.btn--primary:hover { background: var(--primary-hover); color: var(--primary-ink); }
.btn--primary:active { background: var(--primary-active); }
.btn--quiet {
  background: transparent; color: var(--ink);
  border: 1px solid var(--rule-strong); border-radius: 2px;
}
.btn--quiet:hover { color: var(--ink); border-color: var(--ink); }
.btn--40 { height: 40px; font-size: 14.5px; padding: 0 16px; }
.btn--44 { height: 44px; font-size: 15px; padding: 0 20px; }
.btn--48 { height: 48px; }
.btn--52 { height: 52px; padding: 0 26px; }
.btn__icon svg { width: 15px; height: 15px; display: block; }

.trial-note {
  margin: 12px 0 0; max-width: 46ch;
  font-size: 14px; color: var(--ink-muted); text-wrap: pretty;
}
.trial-note--inverse { color: var(--on-inverse2); }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 30;
  background: var(--page);
  border-bottom: 1px solid var(--rule);
}
.site-header.is-stuck {
  background: var(--raised);
  border-bottom-color: var(--rule-strong);
}
.site-header__bar {
  position: relative;
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
  padding: 10px var(--gutter);
  min-height: 64px;
}
.site-header__brand { display: inline-flex; }
.site-header__wordmark { height: 20px; width: auto; }
.site-header__nav { display: none; gap: 26px; font-size: 15px; }
.site-header__nav a { text-decoration: none; color: var(--ink); padding-bottom: 2px; }
.site-header__nav a[aria-current="page"] { border-bottom: 2px solid var(--c600); }
.site-header__spacer { flex: 1; }
.site-header__login { font-size: 15px; font-weight: 600; text-decoration: none; display: none; }
.site-header__avatar {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--c200); color: var(--c900);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-label); font-size: 12px; letter-spacing: .06em;
  text-decoration: none;
}
.site-header__cta-full { display: none; }
.site-header__cta-short { display: inline; }

/* Mobile menu — an in-flow disclosure below the bar. The summary is
   the 44px toggle in the bar; the open panel pushes the page down, so
   there is no overlay, no scroll lock and no focus trap. */
.site-menu { display: block; }
.site-menu__toggle {
  list-style: none;
  width: 44px; height: 44px;
  border: 1px solid var(--rule-strong); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink); background: transparent;
}
.site-menu__toggle::-webkit-details-marker { display: none; }
.site-menu[open] .site-menu__toggle {
  border-color: var(--primary); background: var(--field-focus);
}
.site-menu__glyph svg { width: 22px; height: 22px; display: block; }
.site-menu__glyph--close { display: none; }
.site-menu[open] .site-menu__glyph--open { display: none; }
.site-menu[open] .site-menu__glyph--close { display: block; }
.site-menu__panel {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--raised);
  border-bottom: 1px solid var(--rule-strong);
  animation: menu-open 180ms ease;
}
.site-menu__panel > a {
  display: flex; align-items: center;
  min-height: 56px; padding: 0 var(--gutter);
  border-bottom: 1px solid var(--rule);
  text-decoration: none; font-size: 17px;
}
.site-menu__actions { padding: 16px var(--gutter); display: flex; flex-direction: column; gap: 10px; }
.site-menu__actions .btn { width: 100%; }
@keyframes menu-open { from { opacity: 0; transform: translateY(-4px); } }

/* ---------- Bands ---------- */

main#main { display: block; }
.band {
  padding: 34px var(--gutter);
}
.band > .display-lg, .band > .display-md, .band > .eyebrow, .band > .band__intro,
.band > .callout, .band > .band__note, .band > .band__link, .band > .steps,
.band > .pillars, .band > .compare, .band > .point-grid, .band > .point-rules,
.band > .price-cards, .band > .trial-note, .band > .includes, .band > .asked,
.band > .faq-group, .band > .community__grid, .band > .contact__grid,
.band > .contact__sent, .band > .trial-explainer__grid, .band > .safety-guides__grid,
.band > .faq-columns__grid, .band > .page-hero__sub, .band > .display-xl,
.band > form {
  max-width: 1120px; margin-left: auto; margin-right: auto;
}
.band > * { max-width: 1120px; margin-left: auto; margin-right: auto; }
.band--sunken { background: var(--sunken); }
.band--rule-top { border-top: 1px solid var(--rule); }
.band--inverse { background: var(--inverse); color: var(--on-inverse); }
.band--narrow > * { max-width: 920px; }
.band__intro {
  margin-top: 0; margin-bottom: 32px; max-width: 62ch;
  font-size: 17px; color: var(--ink2); text-wrap: pretty;
}
.band--narrow .band__intro { margin-left: auto; margin-right: auto; }
.band__note { margin-top: 26px; font-size: 16px; }
.band__link { margin-top: 30px; font-size: 15px; }
.band__link a { font-weight: 600; }
.callout {
  margin-top: 30px; padding: 14px 18px;
  background: var(--sunken); border-radius: 6px;
  font-size: 15px; max-width: 80ch; text-wrap: pretty;
}
.band--sunken .callout { background: var(--raised); border: 1px solid var(--rule); }

/* Band reveal — opacity + 12px rise, once per band, never staggered
   per card. Layered on content that is already visible: the band is
   never hidden by a resting CSS rule, so a disabled or failed script
   cannot leave the page blank, and nothing has to move for the page
   to be readable. Collapses to the final state under reduced motion. */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal].in-view { animation: band-reveal 180ms ease both; }
}
@keyframes band-reveal { from { opacity: 0; transform: translateY(12px); } }

/* ---------- Hero split ---------- */

.hero-split { padding-top: 32px; padding-bottom: 34px; }
.hero-split__sub {
  margin: 0 0 24px; max-width: 46ch;
  font-size: clamp(16.5px, 2vw, 18px); line-height: 1.6; color: var(--ink2);
  text-wrap: pretty;
}
.hero-split__para {
  margin: 0 0 14px; max-width: 54ch;
  font-size: 17.5px; line-height: 1.62; color: var(--ink2); text-wrap: pretty;
}
.hero-split__actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.hero-split__media { position: relative; margin-top: 22px; }
.hero-split__photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  object-position: 58% 48%; border-radius: 6px; display: block;
}
.hero-split__overlay { display: none; }
.hero-split__media--art { text-align: center; }
.hero-split__chuck { width: min(300px, 70vw); height: auto; }

/* ---------- Steps ---------- */

.steps--columns { display: grid; gap: 24px; margin-top: 28px; }
.steps__number {
  margin: 0 0 10px;
  font-family: var(--font-display); font-size: 30px; color: var(--c600); line-height: 1;
}
.steps__title { margin: 0 0 8px; font-family: var(--font-display); font-size: 20px; }
.steps__title--compact { font-family: var(--font-body); font-size: 17px; font-weight: 600; margin: 0 0 3px; }
.steps__body { margin: 0; font-size: 15.5px; color: var(--ink2); max-width: 42ch; text-wrap: pretty; }
.steps--list { margin: 0; padding: 0; list-style: none; display: grid; gap: 0 56px; }
.steps__row {
  display: flex; gap: 16px; padding: 18px 0;
  border-top: 1px solid var(--rule);
}
/* At 22px this number is below the large-text threshold, so it
   carries the darker c700 ink to hold 4.5:1 (C16.1). */
.steps__row .steps__number { font-size: 22px; min-width: 28px; margin: 0; color: var(--c700); }

/* ---------- Pillars ---------- */

.pillars { display: grid; gap: 12px; margin-top: 8px; }
.pillars__card {
  padding: 22px; background: var(--raised);
  border: 1px solid var(--rule); border-radius: 6px;
}
.pillars--plain .pillars__card { background: transparent; border: 0; padding: 0 0 8px; }
.pillars__icon svg { width: 26px; height: 26px; color: var(--c700); }
.pillars__title { margin: 12px 0 8px; font-family: var(--font-display); font-size: 21px; }
.pillars--plain .pillars__title { margin-top: 0; font-size: 23px; }
.pillars__body { margin: 0; font-size: 15.5px; color: var(--ink2); text-wrap: pretty; }

/* ---------- Passport band ---------- */

.passport { padding-top: 40px; padding-bottom: 44px; }
.passport__grid { display: grid; gap: 32px; }
.passport .display-lg { max-width: 18ch; font-size: clamp(29px, 4vw, 42px); }
.passport__para {
  margin: 0 0 14px; max-width: 52ch;
  font-size: 17px; line-height: 1.65; text-wrap: pretty;
}
.passport__para--soft { color: var(--on-inverse2); }
.passport__artefact {
  background: var(--inverse-panel);
  border: 1px solid var(--inverse-rule-strong);
  border-radius: 6px; padding: 20px;
}
.passport__photo {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: 4px; display: block; margin-bottom: 18px;
}
.passport__head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px; border-bottom: 1px solid var(--inverse-rule);
}
.passport__label {
  margin: 0; font-family: var(--font-label);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--on-inverse2);
}
.passport__count { margin: 2px 0 0; font-family: var(--font-display); font-size: 19px; }
.passport__timeline { margin: 0; padding: 14px 0 0; list-style: none; }
.passport__stop { display: flex; gap: 14px; padding-bottom: 18px; position: relative; }
.passport__stop:last-child { padding-bottom: 0; }
.passport__dot {
  flex: none; width: 11px; height: 11px; border-radius: 999px;
  background: var(--c300); margin-top: 5px; position: relative; z-index: 1;
}
.passport__stop:last-child .passport__dot { background: var(--on-inverse); }
.passport__stop:not(:last-child)::before {
  content: ""; position: absolute; left: 5px; top: 16px; bottom: 0;
  width: 1px; background: var(--inverse-rule-strong);
}
.passport__entry { margin: 0; font-size: 15px; }
.passport__detail { margin: 2px 0 0; font-size: 13.5px; color: var(--on-inverse2); }
.passport__caption {
  margin: 18px 0 0; padding-top: 14px;
  border-top: 1px solid var(--inverse-rule);
  font-size: 13px; color: var(--on-inverse2); text-wrap: pretty;
}

/* Passport timeline draw-in — the three entries arrive in sequence,
   120ms apart, when the band enters view. Same rule as the band
   reveal: the resting state is visible, so the journey reads with no
   script and with reduced motion; only the arrival is animated. */
@media (prefers-reduced-motion: no-preference) {
  .in-view [data-timeline] .passport__stop {
    animation: band-reveal 120ms ease both;
  }
  .in-view [data-timeline] .passport__stop:nth-child(2) { animation-delay: 120ms; }
  .in-view [data-timeline] .passport__stop:nth-child(3) { animation-delay: 240ms; }
}

/* ---------- Community ---------- */

.community__grid { display: grid; gap: 28px; align-items: center; }
.community__para { margin: 0 0 14px; max-width: 52ch; font-size: 17px; line-height: 1.6; color: var(--ink2); text-wrap: pretty; }
.community__strong { margin: 4px 0 0; font-size: 17px; font-weight: 600; }
.community__photo { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 6px; display: block; }

/* ---------- Compare ---------- */

.compare { display: grid; gap: 12px; margin-top: 28px; }
.compare__card {
  padding: 22px; background: var(--raised);
  border: 1px solid var(--rule); border-radius: 6px;
}
.compare__icon svg { width: 24px; height: 24px; color: var(--c700); }
.compare__title { margin: 12px 0 10px; font-family: var(--font-display); font-size: 23px; }
.compare__line { margin: 0 0 10px; font-size: 15.5px; color: var(--ink2); max-width: 44ch; text-wrap: pretty; }
.compare__line:last-child { margin-bottom: 0; }
.compare__photo {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: 4px; display: block; margin-bottom: 16px;
}

/* ---------- Point grid / rules ---------- */

.point-grid { display: grid; gap: 20px 40px; margin-top: 30px; }
.point-grid__item { display: flex; gap: 12px; }
.point-grid__item p { margin: 0; font-size: 15.5px; color: var(--ink2); }
.point-grid__item strong { color: var(--ink); }
.point-grid__icon { flex: none; margin-top: 2px; }
.point-grid__icon svg { width: 20px; height: 20px; color: var(--c700); }
.point-rules { display: grid; gap: 0 56px; }
.point-rules__row { padding: 20px 0; border-top: 1px solid var(--rule); }
.point-rules__row:last-child { border-bottom: 1px solid var(--rule); }
.point-rules__title { margin: 0 0 6px; font-size: 17.5px; font-weight: 600; }
.point-rules__body { margin: 0; font-size: 16px; color: var(--ink2); max-width: 46ch; text-wrap: pretty; }

/* ---------- Price cards ---------- */

.price-cards { display: grid; gap: 16px; max-width: 920px; margin-top: 8px; }
.price-cards__card {
  padding: 26px; background: var(--raised);
  border: 1px solid var(--rule-strong); border-radius: 6px;
  position: relative;
}
.price-cards__card--recommended { border: 2px solid var(--primary); }
.price-cards__flag {
  position: absolute; top: -11px; left: 22px;
  padding: 3px 10px; border-radius: 999px;
  background: var(--primary); color: var(--primary-ink);
  font-family: var(--font-label); font-size: 9.5px;
  letter-spacing: .18em; text-transform: uppercase;
}
.price-cards__plan {
  margin: 0 0 8px; font-family: var(--font-label);
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-label);
}
.price-cards__price {
  margin: 0 0 6px; font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-cards__price span { font-family: var(--font-body); font-size: 17px; color: var(--ink2); }
.price-cards__meta { margin: 0 0 4px; font-size: 15.5px; color: var(--ink2); }
.price-cards__meta--strong { color: var(--ink); }
.price-cards__card .btn { width: 100%; margin-top: 14px; }

/* ---------- Includes ---------- */

.includes { padding: 24px 26px; background: var(--sunken); border-radius: 6px; }
.band--sunken .includes { background: var(--raised); border: 1px solid var(--rule); }
.includes__heading { margin: 0 0 16px; font-family: var(--font-display); font-size: 24px; }
.includes__grid { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px 32px; }
.includes__grid li { display: flex; gap: 10px; font-size: 16px; }
.includes__check { flex: none; margin-top: 3px; }
.includes__check svg { width: 18px; height: 18px; color: var(--success); }
.includes__note { margin: 20px 0 0; padding-top: 16px; border-top: 1px solid var(--rule); font-size: 16px; text-wrap: pretty; }

/* ---------- Trial explainer ---------- */

.trial-explainer__grid { display: grid; gap: 32px; }
.trial-explainer__intro, .trial-explainer__outro { font-size: 16.5px; color: var(--ink2); text-wrap: pretty; }
.trial-explainer__bullets { margin: 0 0 16px; padding-left: 1.2em; font-size: 16.5px; }
.trial-explainer__bullets li { margin-bottom: 8px; }
.trial-explainer__bullets li::marker { color: var(--c600); }
.trial-explainer__panel {
  padding: 22px; background: var(--raised);
  border: 1px solid var(--rule); border-radius: 6px; align-self: start;
}
.trial-explainer__notice {
  margin-top: 4px; padding: 16px;
  background: var(--warning-surface);
  border: 1px solid var(--rule-strong); border-radius: 6px;
}
.trial-explainer__notice-title { margin: 0 0 6px; font-size: 16px; font-weight: 600; }
.trial-explainer__notice-body { margin: 0 0 12px; font-size: 15px; color: var(--ink2); text-wrap: pretty; }
.trial-explainer__notice-actions { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- Asked-about / safety guides ---------- */

.asked { display: grid; gap: 28px 56px; margin-top: 28px; }
.asked__title { margin: 0 0 8px; font-family: var(--font-display); font-size: 22px; }
.asked__body { margin: 0; font-size: 16px; color: var(--ink2); max-width: 48ch; text-wrap: pretty; }
.safety-guides__grid { display: grid; gap: 36px; }
.safety-guides__line { margin: 0 0 12px; font-size: 16px; color: var(--ink2); text-wrap: pretty; }

/* ---------- FAQ ---------- */

.faq-columns__grid { display: grid; gap: 0 56px; align-items: start; }
.faq-group { margin-bottom: 30px; }
.faq-item { border-top: 1px solid var(--rule); }
.faq-group > .faq-item:last-of-type, .faq-item--static:last-child { border-bottom: 1px solid var(--rule); }
.faq-item__q {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  min-height: 56px; padding: 14px 0; margin: 0;
  font-size: 17px; font-weight: 600; cursor: pointer;
  list-style: none;
}
.faq-item--static .faq-item__q { cursor: auto; padding-bottom: 4px; min-height: 0; }
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__caret { flex: none; }
.faq-item__caret svg { width: 18px; height: 18px; color: var(--ink2); transition: transform 120ms ease; }
.faq-item[open] .faq-item__caret svg { transform: rotate(180deg); }
.faq-item__a { margin: 0; padding: 0 0 18px; font-size: 16px; color: var(--ink2); max-width: 70ch; text-wrap: pretty; }
.faq-stuck { margin-top: 8px; padding: 22px; background: var(--sunken); border-radius: 6px; }
.faq-stuck__heading { margin: 0 0 8px; font-family: var(--font-display); font-size: 21px; }
.faq-stuck__body { margin: 0 0 14px; font-size: 15.5px; color: var(--ink2); text-wrap: pretty; }

/* ---------- Contact ---------- */

.contact__sent {
  margin-bottom: 22px; padding: 14px 18px;
  background: var(--raised); border: 1px solid var(--success);
  border-radius: 6px; font-size: 15.5px;
}
.contact__grid { display: grid; gap: 36px; }
.contact-router { margin: 0; padding: 0; border: 0; }
.contact-router__label {
  padding: 0; margin-bottom: 14px;
  font-family: var(--font-label); font-size: 10.5px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-label);
}
.contact-router__option {
  display: flex; gap: 12px; align-items: flex-start;
  min-height: 56px; padding: 14px 16px; margin-bottom: 10px;
  border: 1px solid var(--rule-strong); border-radius: 6px;
  cursor: pointer;
}
.contact-router__option:has(input:checked) {
  border: 2px solid var(--primary);
  background: var(--field-focus);
  padding: 13px 15px;
}
.contact-router__option--safety {
  border-color: var(--error);
  background: var(--error-surface);
}
.contact-router__option--safety:has(input:checked) { border-color: var(--error-strong); }
.contact-router__option--safety .contact-router__title { color: var(--error-strong); }
.contact-router__option input { margin-top: 3px; accent-color: var(--primary); }
.contact-router__title { display: block; font-size: 16px; font-weight: 600; }
.contact-router__hint { display: block; font-size: 14.5px; color: var(--ink2); }
.contact__fields { display: flex; flex-direction: column; gap: 16px; }
.contact__field label {
  display: block; margin-bottom: 6px;
  font-family: var(--font-label); font-size: 10.5px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-label);
}
.contact__field input, .contact__field textarea {
  width: 100%; padding: 12px;
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: var(--field);
  border: 1px solid var(--rule-strong); border-radius: 3px 3px 0 0;
}
.contact__field input { height: 48px; }
.contact__field input:focus, .contact__field textarea:focus { background: var(--field-focus); }
.contact__hint { margin: 6px 0 0; font-size: 13.5px; color: var(--ink-muted); }
.contact__error { margin: 6px 0 0; font-size: 14px; color: var(--error-strong); }
.contact__note { margin: 0; font-size: 13.5px; color: var(--ink-muted); text-wrap: pretty; }

/* ---------- Closing CTA ---------- */

.closing { text-align: center; padding-top: 44px; padding-bottom: 48px; }
.closing__chuck { width: 104px; height: auto; margin: 0 auto 18px; display: block; }
.closing__heading { max-width: 24ch; margin-left: auto; margin-right: auto; }
.closing__sub { margin: 0 auto 24px; max-width: 52ch; font-size: 17px; color: var(--ink2); text-wrap: pretty; }
.closing__actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.closing .trial-note { max-width: none; text-align: center; }

/* ---------- Page hero ---------- */

.page-hero { padding-top: 36px; padding-bottom: 8px; }
.page-hero--centered { text-align: center; }
.page-hero__sub {
  margin: 0; max-width: 58ch;
  font-size: clamp(16.5px, 2vw, 18px); line-height: 1.6; color: var(--ink2);
  text-wrap: pretty;
}
.page-hero--centered .page-hero__sub { margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--inverse); color: var(--on-inverse);
  padding: 36px var(--gutter) 22px;
  margin-top: 0;
}
.site-footer__grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; gap: 24px;
  padding-bottom: 26px; border-bottom: 1px solid var(--inverse-rule);
}
.site-footer__brand img { display: block; margin-bottom: 12px; width: 52px; height: 52px; object-fit: contain; }
.site-footer__name { margin: 0 0 6px; font-family: var(--font-display); font-size: 20px; }
.site-footer__tagline { margin: 0; font-size: 14px; color: var(--on-inverse2); max-width: 26ch; text-wrap: pretty; }
.site-footer__label {
  margin: 0 0 12px; font-family: var(--font-label);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--on-inverse2);
}
.site-footer__group { display: flex; flex-direction: column; }
/* .mkt prefix: must out-rank the global .mkt a:not(.btn) ink color on
   the inverse surface. */
.mkt .site-footer__group a {
  color: var(--on-inverse); text-decoration: none;
  font-size: 14.5px; display: flex; align-items: center; min-height: 44px;
}
.mkt .site-footer__group a:hover { color: var(--c300); }
.site-footer__bottom {
  max-width: 1120px; margin: 0 auto; padding-top: 18px;
  display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center;
}
.site-footer__bottom p { margin: 0; font-size: 13px; color: var(--on-inverse2); }
.site-footer__postage { margin-left: auto; max-width: 62ch; text-wrap: pretty; }

/* ---------- ≥768 ---------- */

@media (min-width: 768px) {
  :root { --gutter: 24px; }
  .site-header__cta-full { display: inline; }
  .site-header__cta-short { display: none; }
  .hero-split__actions { flex-direction: row; align-items: center; }
  .steps--columns { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .steps--list { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .pillars--plain { gap: 40px; }
  .compare { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
  .point-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 40px; }
  .point-rules { grid-template-columns: 1fr 1fr; }
  .point-rules__row:nth-last-child(2) { border-bottom: 1px solid var(--rule); }
  .price-cards { grid-template-columns: 1fr 1fr; gap: 26px; }
  .includes__grid { grid-template-columns: 1fr 1fr; }
  .trial-explainer__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .asked { grid-template-columns: 1fr 1fr; gap: 34px 56px; }
  .safety-guides__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .faq-columns__grid { grid-template-columns: 1fr 1fr; }
  .community__grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .passport__grid { grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .closing__actions { flex-direction: row; justify-content: center; }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; }
  .site-footer__group a { min-height: 0; padding: 4.5px 0; }
  .band { padding-left: var(--gutter); padding-right: var(--gutter); padding-top: 48px; padding-bottom: 48px; }
  .hero-split__overlay {
    display: block; position: absolute; left: -24px; bottom: -24px;
    width: 240px; padding: 10px;
    background: var(--raised); border: 1px solid var(--rule-strong); border-radius: 6px;
  }
  .hero-split__trio { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 3px; display: block; }
  .hero-split__photo { aspect-ratio: 4 / 3; object-position: 50% 42%; }
}

/* ---------- ≥1024 ---------- */

@media (min-width: 1024px) {
  :root { --gutter: 32px; }
  .site-header__nav { display: flex; }
  .site-header__login { display: inline; }
  .site-menu { display: none; }
  .site-header__wordmark { height: 24px; }
  .hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: calc(1120px + 2 * var(--gutter)); margin: 0 auto; }
  .hero-split__media { margin-top: 0; }
  .hero-split .display-xl { max-width: 15ch; }
  .band { padding-top: 56px; padding-bottom: 56px; }
}

/* ---------- ≥1280 ---------- */

@media (min-width: 1280px) {
  :root { --gutter: 80px; }
  .band { padding-top: 64px; padding-bottom: 64px; }
  .closing { padding-top: 76px; padding-bottom: 76px; }
  .closing__chuck { width: 132px; }
  .hero-split__overlay { width: 280px; left: -32px; bottom: -30px; }
}

/* Cover hover — 2px lift, hairline strengthens; no shadow. */
@media (prefers-reduced-motion: no-preference) {
  .hero-split__overlay { transition: transform 120ms ease, border-color 120ms ease; }
  .hero-split__overlay:hover { transform: translateY(-2px); border-color: var(--rule-strong); }
}

@media (prefers-reduced-motion: reduce) {
  .mkt *, .mkt *::before, .mkt *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
