/* ============================================================
   Chairside — Mobbin-informed fresh build (2026-07-17)
   Premium pass: one calm light surface, one serif scale with an
   italic teal accent, hairline-ruled numbered section heads,
   ghost numerals for process steps.
   Brand system per chairside-site/design/DIRECTION.md:
   60% clinical editorial · 25% precision noir · 15% kinetic status
   ============================================================ */

:root {
  --navy: #062137;
  --ink: #06111B;
  --teal: #17B8C7;
  --status-light: #75D4DC;
  --paper: #F8FBFC;
  --steel: #4f8db8;
  --teal-dark: #0b8e9d;
  --body: #536e80;
  --body-2: #607486; /* kit "muted slate" */
  --line: #dbe6ea;
  --line-2: #cbd9e0;
  --silver: #8E96A0;
  --white: #ffffff;

  /* dark-surface tints */
  --dk-body: #a8c0cd;
  --dk-dim: #7d97a6;
  --dk-hairline: rgba(117, 212, 220, 0.16);

  /* Type system (2026-07-17 font iteration — see README):
     Source Serif 4 = calm clinical display serif · Inter = instrument-grade
     body/UI · IBM Plex Mono = engineering metadata. Supersedes the
     Bodoni Moda / Manrope / DM Mono set from DIRECTION.md at owner request. */
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Cascadia Mono", Consolas, monospace;

  /* one type scale, used everywhere */
  --fs-hero: clamp(46px, 6vw, 84px);
  --fs-h2: clamp(34px, 4.4vw, 58px);
  --fs-h3: clamp(24px, 2.6vw, 33px);
  --fs-lede: 19px;
  --fs-body: 17px;

  --r: 4px;
  --max: 1280px;

  /* one card treatment, used everywhere */
  --card-border: 1px solid var(--line);
  --card-shadow: 0 24px 64px rgba(6, 33, 55, 0.08);

  /* motion (DIRECTION.md): status 150ms · panels 180ms · hero 600ms */
  --t-status: 150ms;
  --t-panel: 180ms;
  --t-hero: 600ms;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--navy);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul, ol { list-style: none; }

::selection { background: rgba(23, 184, 199, 0.25); }

.wrap {
  width: min(var(--max), 100% - 48px);
  margin-inline: auto;
}

/* ---------- type ---------- */

.display {
  font-family: var(--font-display);
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -0.012em;
}

h2.display {
  font-size: var(--fs-h2);
  margin: 20px 0 22px;
}
h2.display em, h1.display em {
  font-style: italic;
  font-weight: 500;
  color: var(--teal-dark);
}
.on-dark h2.display em, .on-dark h1.display em { color: var(--status-light); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}
.eyebrow .idx { color: var(--body-2); }
.on-dark .eyebrow { color: var(--status-light); }
.on-dark .eyebrow .idx { color: var(--dk-dim); }

.lede {
  font-size: var(--fs-lede);
  line-height: 1.7;
  color: var(--body);
  max-width: 56ch;
}
.on-dark .lede { color: var(--dk-body); }

.mono-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 30px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform var(--t-panel) var(--ease), background var(--t-panel) var(--ease),
    border-color var(--t-panel) var(--ease), color var(--t-panel) var(--ease),
    box-shadow var(--t-panel) var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: #0a3050; box-shadow: 0 10px 28px rgba(6, 33, 55, 0.22); }

.btn-hi { background: var(--teal); color: var(--ink); font-weight: 800; }
.btn-hi:hover { background: #2cc9d7; box-shadow: 0 10px 32px rgba(23, 184, 199, 0.38); }

.btn-ghost { border-color: var(--line-2); color: var(--navy); background: transparent; }
.btn-ghost:hover { border-color: var(--steel); }
.on-dark .btn-ghost, .btn-ghost.dark { border-color: rgba(255, 255, 255, 0.28); color: var(--white); }
.on-dark .btn-ghost:hover, .btn-ghost.dark:hover { border-color: var(--status-light); color: var(--status-light); }

.btn-arrow::after { content: "→"; font-weight: 400; transition: transform var(--t-panel) var(--ease); }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- skip link ---------- */

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r);
  font-weight: 700;
  font-size: 14px;
  transition: top var(--t-panel) var(--ease);
}
.skip-link:focus-visible { top: 12px; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(248, 251, 252, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 76px;
}
.brand { display: inline-flex; align-items: center; }
/* Open Trace lockups (logo kit): outlined paths, never retyped in HTML.
   Kit minimums: compact header lockup ≥140px wide. */
.brand-lockup {
  display: block;
  width: clamp(140px, 14vw, 172px);
  height: auto;
}
.footer-lockup { width: 168px; }

.main-nav { display: flex; gap: 30px; margin-left: auto; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--body);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--t-panel), border-color var(--t-panel);
}
.main-nav a:hover { color: var(--navy); border-color: var(--teal); }
.main-nav a.active { color: var(--navy); border-color: var(--teal); }
.header-cta { flex: none; min-height: 44px; padding: 10px 22px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  margin-left: auto;
}
.burger span {
  width: 22px; height: 2px;
  background: var(--navy);
  transition: transform var(--t-panel) var(--ease), opacity var(--t-panel);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- sections: one rhythm ---------- */

section { padding: 100px 0; }

/* every light section sits on the same paper surface, separated by
   hairlines — with a breathing ambient light layer so the page never
   goes flat after the hero. Glow positions vary per section. */
.sec-light {
  position: relative;
  background: transparent;
  border-top: 1px solid var(--line);
}
.sec-light::before {
  content: "";
  position: absolute;
  inset: -120px 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(820px 560px at var(--gx1, 84%) var(--gy1, 18%), rgba(23, 184, 199, 0.12), transparent 70%),
    radial-gradient(720px 500px at var(--gx2, 8%) var(--gy2, 82%), rgba(79, 141, 184, 0.10), transparent 70%);
  animation: ambientDrift 46s var(--ease) infinite alternate;
}
@keyframes ambientDrift {
  from { transform: translate3d(0, -16px, 0); }
  to { transform: translate3d(0, 18px, 0); }
}
/* alternate the light per section so the page breathes asymmetrically */
.journey { --gx1: 12%; --gy1: 8%; --gx2: 88%; --gy2: 55%; }
.mission { --gx1: 86%; --gy1: 22%; --gx2: 14%; --gy2: 88%; }
.routes { --gx1: 16%; --gy1: 16%; --gx2: 90%; --gy2: 84%; }
.faq { --gx1: 82%; --gy1: 12%; --gx2: 6%; --gy2: 90%; }
.start { --gx1: 74%; --gy1: 30%; --gx2: 10%; --gy2: 10%; }

/* dark mid-page beat */
.sec-dark {
  position: relative;
  border-top: 1px solid var(--dk-hairline);
}

.section-head { max-width: 780px; margin-bottom: 80px; }

/* framed text architecture: copy blocks sit in measured hairline frames
   with corner ticks; the eyebrow rides the frame like a legend */
.framed {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  padding: 44px 46px 42px;
}
.framed::before,
.framed::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background:
    linear-gradient(var(--teal-dark), var(--teal-dark)) center / 13px 1px no-repeat,
    linear-gradient(var(--teal-dark), var(--teal-dark)) center / 1px 13px no-repeat;
  opacity: 0.85;
}
.framed::before { top: 9px; left: 9px; }
.framed::after { bottom: 9px; right: 9px; }
.framed > .eyebrow {
  position: absolute;
  top: -10px;
  left: 34px;
  background: var(--paper);
  padding: 0 12px;
}
.section-head.center.framed > .eyebrow {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.framed-dark { border-color: rgba(117, 212, 220, 0.22); }
.framed-dark::before, .framed-dark::after { opacity: 1; background:
    linear-gradient(var(--status-light), var(--status-light)) center / 13px 1px no-repeat,
    linear-gradient(var(--status-light), var(--status-light)) center / 1px 13px no-repeat; }
.framed-dark > .eyebrow { background: var(--ink); border-radius: 2px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .lede { margin-inline: auto; }

.on-dark { background: var(--ink); color: var(--white); }
.on-dark h2, .on-dark h3 { color: var(--white); }

/* ---------- hero — full-bleed living background ---------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(calc(100svh - 76px), 960px);
  padding: 96px 0 200px;
  background: var(--ink);
  overflow: hidden;
}

/* media layer: the animated panorama covers the whole hero; the still
   underneath is poster, fallback, and the reduced-motion presentation */
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img,
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 72%;
}
.hero-video {
  opacity: 0;
  transition: opacity 0.8s var(--ease);
  pointer-events: none;
}
.hero.video-live .hero-video { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-bg .hero-video { display: none; }
}
/* scrim: keep the copy sovereign over the moving image */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(6, 17, 27, 0.88) 0%,
      rgba(6, 17, 27, 0.68) 36%,
      rgba(6, 17, 27, 0.38) 58%,
      rgba(6, 17, 27, 0.12) 78%,
      rgba(6, 17, 27, 0.55) 100%),
    radial-gradient(120% 90% at 50% 0%, rgba(6, 33, 55, 0.35), transparent 60%);
}

.hero-head {
  position: relative;
  z-index: 2;
  max-width: 940px;
  text-align: center;
  background: rgba(6, 17, 27, 0.30);
  backdrop-filter: blur(2px);
}
.hero-head.framed { padding: 48px 56px 46px; }
.hero-head.framed > .eyebrow {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--ink);
}
.hero-head .eyebrow { justify-content: center; }
.hero h1 {
  font-size: var(--fs-hero);
  color: var(--white);
  margin: 18px auto 16px;
  max-width: 18ch;
  text-wrap: balance;
}
.hero .lede {
  font-size: 19px;
  margin-inline: auto;
  max-width: 62ch;
  color: #c3d6e0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

/* hero reveal — 600ms, staggered */
.hero-reveal { opacity: 0; transform: translateY(18px); }
.hero-loaded .hero-reveal { animation: heroIn var(--t-hero) var(--ease) forwards; }
.hero-loaded .hero-reveal:nth-child(2) { animation-delay: 90ms; }
.hero-loaded .hero-reveal:nth-child(3) { animation-delay: 180ms; }
.hero-loaded .hero-reveal:nth-child(4) { animation-delay: 270ms; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

@keyframes aurora {
  from { transform: translate3d(-4%, -3%, 0) rotate(0deg); }
  to { transform: translate3d(4%, 3%, 0) rotate(8deg); }
}

/* the record, pinned over the instrument in the lower band:
   chips sit below the body with leader lines reaching up to it */
.hero-pins .pin {
  position: absolute;
  left: var(--x);
  bottom: 88px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  opacity: 0;
  translate: 0 8px;
  transition: opacity var(--t-status) var(--ease), translate 0.3s var(--ease);
}
.hero-pins .pin.lit { opacity: 1; translate: 0 0; }
.pin-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--status-light);
  background: rgba(6, 17, 27, 0.72);
  border: 1px solid rgba(117, 212, 220, 0.28);
  border-radius: var(--r);
  padding: 9px 13px;
  backdrop-filter: blur(6px);
}
.pin-chip::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px rgba(23, 184, 199, 0.8);
  flex: none;
}
.pin-line {
  width: 1px;
  height: clamp(34px, 6vw, 76px);
}
.pin-line-up {
  background: linear-gradient(to top, rgba(23, 184, 199, 0.7), transparent);
}

.hero-track {
  position: absolute;
  left: 19%;
  right: 21%;
  bottom: 56px;
  height: 2px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 1px;
  overflow: hidden;
}
#heroTrackBar {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--teal);
  box-shadow: 0 0 12px rgba(23, 184, 199, 0.8);
}

.hero-pause {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 3;
  min-height: 44px;
  min-width: 44px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dk-dim);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r);
}
.hero-pause:hover { color: var(--status-light); border-color: rgba(117, 212, 220, 0.4); }

@media (max-width: 760px) {
  .hero { padding: 80px 0 24px; min-height: 100svh; justify-content: flex-start; }
  .hero-bg img,
  .hero-bg video { object-position: 62% 78%; }
  .hero-bg::after {
    background: linear-gradient(to bottom,
      rgba(6, 17, 27, 0.90) 0%,
      rgba(6, 17, 27, 0.72) 45%,
      rgba(6, 17, 27, 0.42) 75%,
      rgba(6, 17, 27, 0.65) 100%);
  }
  /* pins become a stacked readout beneath the copy */
  .hero-pins {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 34px 20px 8px;
  }
  .hero-pins .pin {
    position: static;
    transform: none;
    flex-direction: row;
    opacity: 0.35;
    translate: 0 0;
  }
  .hero-pins .pin.lit { opacity: 1; }
  .pin-line { display: none; }
  .hero-track { display: none; }
  .hero-pause { position: absolute; right: 14px; bottom: 12px; margin: 0; z-index: 3; }
}

/* ---------- mission — sticky manifesto + flowing who/why/how ----------
   Harvest-style editorial split: the statement stays present (sticky)
   while the three cards flow past on a status rail — the two halves
   read together instead of stacking. */

.mission { padding: 96px 0; }
.mission-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 88px;
  align-items: start;
}

.mission-sticky {
  position: sticky;
  top: 130px;
}
.mission-sticky.framed { padding: 40px 42px 38px; }
.mission-sticky.framed > .eyebrow {
  position: absolute;
  top: -10px;
  left: 30px;
  background: var(--paper);
  padding: 0 12px;
}
h2.mission-statement {
  font-size: clamp(23px, 2.1vw, 31px);
  line-height: 1.4;
  font-weight: 550;
  letter-spacing: -0.008em;
  margin: 26px 0 0;
}
.mission-statement em {
  font-style: italic;
  font-weight: 500;
  color: var(--teal-dark);
}
.mission-statement .w {
  color: var(--line-2);
  transition: color 0.35s var(--ease);
}
.mission-statement .w.on { color: var(--navy); }
.mission-statement em .w { color: #b8dde2; }
.mission-statement em .w.on { color: var(--teal-dark); }

/* the card stream, threaded on a status rail */
.mission-cards {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 34px;
}
.mission-cards::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--line);
  border-radius: 1px;
}
.mission-card {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--white);
  border: var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(6, 33, 55, 0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
}
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}
/* rail stop for each card */
.mission-card::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line-2);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.mission-card.active { border-color: rgba(23, 184, 199, 0.45); }
.mission-card.active::before {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 12px rgba(23, 184, 199, 0.7);
}

.mission-photo {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.mission-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.mission-card:hover .mission-photo img { transform: scale(1.04); }

.mission-body { padding: 18px 22px 20px; align-self: center; }
.mission-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(23, 184, 199, 0.08);
  border: 1px solid rgba(23, 184, 199, 0.22);
  border-radius: var(--r);
  padding: 5px 10px;
}
.mission-body p {
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .mission-cols { grid-template-columns: 1fr; gap: 56px; }
  .mission-sticky { position: static; }
  .mission-statement { font-size: clamp(24px, 4.4vw, 34px); max-width: 640px; }
  .mission-cards { max-width: 620px; }
}
@media (max-width: 620px) {
  .mission-card { grid-template-columns: 1fr; }
  .mission-photo { aspect-ratio: 16 / 9; }
}

/* ---------- shared check-list ---------- */

.estimate-copy .check-list { margin-top: 32px; }

.check-list { display: grid; gap: 14px; }
.check-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
}
.check-list svg {
  width: 18px; height: 18px;
  stroke: var(--teal-dark);
  flex: none;
  margin-top: 4px;
}
.check-list strong { color: var(--navy); font-weight: 700; }

/* ---------- routes (two-card choose, Claude-style) ---------- */

.routes { overflow: hidden; }
.routes-stage { position: relative; }
.route-path {
  overflow: hidden;
  position: absolute;
  inset: -40px 0;
  width: 100%;
  height: calc(100% + 80px);
  pointer-events: none;
}
.route-line {
  stroke: #a9c3d1;
  stroke-width: 2;
  stroke-dasharray: 3 9;
  stroke-linecap: round;
  animation: routeFlow 30s linear infinite;
}
@keyframes routeFlow {
  to { stroke-dashoffset: -240; }
}
.route-stop { fill: var(--white); stroke: #a9c3d1; stroke-width: 2; }
.route-stop-hi { fill: var(--teal); stroke: var(--teal); }
.routes-grid { position: relative; }

.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1080px;
  margin-inline: auto;
}
.route-card {
  border: var(--card-border);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t-panel) var(--ease), transform var(--t-panel) var(--ease), border-color var(--t-panel);
}
.route-photo {
  margin: 0;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.route-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.route-card:hover .route-photo img { transform: scale(1.04); }
.route-body {
  padding: 34px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.route-card:hover {
  border-color: var(--line-2);
  box-shadow: var(--card-shadow);
  transform: translateY(-3px);
}
.route-card .mono-label { color: var(--teal-dark); }
.route-card h3 { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 550; letter-spacing: -0.01em; }
.route-card > p { color: var(--body); font-size: 16px; }
.route-card hr { border: 0; border-top: 1px solid var(--line); }
.route-body .check-list { flex: 1; }
.route-card .check-list li { font-size: 15.5px; }
.route-card .btn { margin-top: 12px; }

/* ---------- how it works (editorial steps w/ ghost numerals) ---------- */

.how-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 88px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.how-step:first-of-type { border-top: 0; padding-top: 0; }
.how-step:last-of-type { padding-bottom: 0; }
.how-step:nth-child(even) .how-copy { order: 2; }
.how-copy h3 { font-size: var(--fs-h3); margin: 18px 0 18px; font-weight: 500; }
.how-copy .lede { font-size: 17.5px; }
.how-copy .check-list { margin-top: 26px; }

/* ghost numeral (Pitch-style index) */
.step-head { display: flex; align-items: baseline; gap: 18px; }
.step-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 500;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-2);
}
.step-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

/* media placeholder slots — brand aurora treatment until real assets exist */
.media-slot {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background:
    radial-gradient(360px 260px at 60% 40%, rgba(23, 184, 199, 0.18), transparent 70%),
    linear-gradient(150deg, var(--navy), var(--ink));
  display: grid;
  place-items: center;
  box-shadow: var(--card-shadow);
}
.media-slot::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(closest-side at 40% 40%, rgba(23, 184, 199, 0.18), transparent 65%),
    radial-gradient(closest-side at 65% 62%, rgba(79, 141, 184, 0.16), transparent 60%);
  animation: aurora 18s ease-in-out infinite alternate;
}
.media-slot .slot-mark { width: 84px; opacity: 0.9; position: relative; }
.media-slot .slot-tag {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--status-light);
  background: rgba(6, 17, 27, 0.62);
  padding: 6px 10px;
  border-radius: var(--r);
  border: 1px solid rgba(117, 212, 220, 0.18);
  backdrop-filter: blur(6px);
}
.media-fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* photo-filled slots: quiet the placeholder chrome, unify the grade */
.media-slot .media-fill { z-index: 1; }

/* ---------- FAQ — split editorial (framed sticky left, numbered right) ---------- */

.faq-cols {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 88px;
  align-items: start;
}
.faq-sticky {
  position: sticky;
  top: 130px;
}
.faq-sticky.framed { padding: 44px 42px 40px; }
.faq-sticky.framed > .eyebrow {
  position: absolute;
  top: -10px;
  left: 30px;
  background: var(--paper);
  padding: 0 12px;
}
.faq-sticky h2 { font-size: clamp(28px, 2.6vw, 40px); margin: 10px 0 16px; }
.faq-help {
  color: var(--body);
  font-size: 15.5px;
  max-width: 40ch;
  margin-bottom: 22px;
}
.faq-ask { min-height: 48px; }

.faq-list { border-top: 1px solid var(--line-2); }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 26px 8px 26px 4px;
  min-height: 44px;
  cursor: pointer;
  transition: color var(--t-panel);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-idx {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--body-2);
  flex: none;
  transition: color var(--t-panel);
}
.faq-q {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  flex: 1;
}
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 400;
  color: var(--teal-dark);
  transition: transform var(--t-panel) var(--ease);
  flex: none;
  align-self: center;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover .faq-q { color: var(--teal-dark); }
.faq-item[open] { border-bottom-color: rgba(23, 184, 199, 0.45); }
.faq-item[open] .faq-idx { color: var(--teal-dark); }
.faq-item[open] .faq-q { color: var(--navy); }
.faq-item p {
  padding: 0 44px 26px 43px;
  color: var(--body);
  max-width: 62ch;
}

@media (max-width: 1080px) {
  .faq-cols { grid-template-columns: 1fr; gap: 48px; }
  .faq-sticky { position: relative; top: auto; }
  .faq-item p { padding-left: 4px; padding-right: 8px; }
}

/* ---------- start / intake ---------- */

.start-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 88px;
  align-items: start;
}
.start-aside { position: sticky; top: 100px; }
.start-aside .check-list { margin-top: 32px; }

.intake {
  box-shadow: 0 0 0 1px rgba(23, 184, 199, 0.12), 0 24px 64px rgba(6, 33, 55, 0.10), 0 0 80px rgba(23, 184, 199, 0.10);
  border: var(--card-border);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--card-shadow);
  padding: 44px;
  display: grid;
  gap: 22px;
}
.field { display: grid; gap: 9px; }
.field-label, .field label { font-weight: 700; font-size: 14.5px; letter-spacing: -0.005em; }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 15.5px;
  padding: 12px 15px;
  min-height: 50px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--white);
  color: var(--navy);
  transition: border-color var(--t-panel);
  width: 100%;
}
.field textarea { min-height: 112px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--steel); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.seg > span { position: relative; display: grid; }
.seg input {
  position: absolute;
  width: 1px; height: 1px;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
}
.seg label {
  display: grid;
  gap: 3px;
  padding: 15px 18px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color var(--t-panel), background var(--t-panel), box-shadow var(--t-panel);
  font-weight: 700;
  font-size: 15px;
}
.seg label small { font-weight: 500; font-size: 13px; color: var(--body-2); }
.seg input:checked + label {
  border-color: var(--teal);
  background: rgba(23, 184, 199, 0.06);
  box-shadow: 0 0 0 1px var(--teal) inset;
}
.seg input:focus-visible + label { outline: 2px solid var(--teal); outline-offset: 2px; }

.form-foot { font-size: 13px; color: var(--body-2); }

.form-success {
  display: none;
  border: 1px solid rgba(23, 160, 100, 0.3);
  background: rgba(23, 160, 100, 0.06);
  border-radius: var(--r);
  padding: 24px;
}
.form-success h3 { font-size: 19px; margin-bottom: 6px; }
.form-success p { color: var(--body); font-size: 15px; }
.intake.sent form { display: none; }
.intake.sent .form-success { display: block; }

/* ---------- final CTA (noir glow) ---------- */

.final {
  position: relative;
  text-align: center;
  padding: 112px 0;
  overflow: hidden;
}
.final-bg {
  position: absolute;
  inset: 0;
}
.final-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  opacity: 0.34;
  filter: saturate(1.1);
}
@media (prefers-reduced-motion: reduce) {
  .final-bg .final-video { display: none; }
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 420px at 50% 62%, rgba(23, 184, 199, 0.22), transparent 68%),
    var(--ink);
}
.final .wrap { position: relative; max-width: 820px; }
.final h2 { font-size: var(--fs-h2); color: var(--white); margin: 20px 0 36px; }
.final .btn-hi { min-width: 230px; }
.final-sub { margin-top: 22px; color: var(--dk-dim); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--dk-body);
  padding: 72px 0 44px;
  border-top: 1px solid var(--dk-hairline);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer .brand-word { color: var(--white); }
.footer-tag { margin-top: 16px; font-size: 14.5px; line-height: 1.7; max-width: 34ch; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dk-dim);
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 11px; font-size: 15px; }
.footer-col a:hover { color: var(--status-light); }
.footer-col .mono-label.dim { color: var(--dk-dim); }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-top: 30px;
  font-size: 13px;
  color: var(--dk-dim);
}
.footer-base .todo { color: #8a6d3b; }

/* ---------- reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- mobile sticky CTA ---------- */

.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: rgba(6, 17, 27, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(117, 212, 220, 0.2);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta .btn { flex: 1; min-height: 46px; font-size: 14.5px; }

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  section { padding: 104px 0; }
  .section-head { margin-bottom: 60px; }
  .start-grid { grid-template-columns: 1fr; gap: 56px; }
  .how-step { grid-template-columns: 1fr; gap: 36px; padding: 56px 0; }
  .how-step:nth-child(even) .how-copy { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .start-aside { position: static; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .framed { padding: 30px 22px 28px; }
  .hero-head.framed { padding: 36px 22px 32px; }
  .framed > .eyebrow {
    position: static !important;
    display: inline-flex;
    transform: none !important;
    white-space: normal;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 0 14px;
    font-size: 11px;
    letter-spacing: 0.16em;
    line-height: 1.7;
  }
  :root { --fs-lede: 17.5px; }
  .wrap { width: min(var(--max), 100% - 40px); }
  section { padding: 48px 0; }
  .section-head { margin-bottom: 44px; }
  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    z-index: 55;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .main-nav a:last-child { border-bottom: 0; }
  .burger { display: flex; }
  .header-cta { display: none; }
  .hero-actions .btn { width: 100%; }
  .routes-grid { grid-template-columns: 1fr; }
  .route-body { padding: 26px 22px 30px; }
  .field-row, .seg { grid-template-columns: 1fr; }
  .intake { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 68px; }
}

/* ---------- reduced motion (binding per DIRECTION.md) ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .hero-reveal { opacity: 1 !important; transform: none !important; }
  .mission-video { display: none !important; }
}

/* ============================================================
   Journey — the real platform, captured live (v2, 2026-07-18)
   Function-style editorial steps: stacked stage panels, mono
   step label + serif headline + checklist left, one large
   rounded visual card right. Natural scroll; no pinning.
   ============================================================ */

.journey .section-head { margin-bottom: 44px; }
.journey-cred {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  max-width: 68ch;
  line-height: 1.8;
  margin-inline: auto;
}

.journey-stages { display: grid; gap: 36px; }

/* Collapse-stack (the owner's Function reference behavior): every card
   pins at the same offset; the next card slides up OVER the pinned one,
   collapsing it away. Pure CSS sticky does the stacking; site.js adds
   the depth cue (covered cards scale down and dim as they're overlapped).
   Reduced motion: cards are static, nothing overlaps. */
.j-stage {
  position: sticky;
  top: var(--stick, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: 64px;
  align-items: center;
  min-height: min(600px, calc(100vh - 150px));
  background: var(--white);
  border: var(--card-border);
  border-radius: 16px;
  padding: 56px 60px;
  box-shadow: 0 -18px 50px rgba(6, 33, 55, 0.10);
  transform-origin: top center;
  will-change: transform, opacity;
}
.j-stage:nth-child(1) { z-index: 1; }
.j-stage:nth-child(2) { z-index: 2; }
.j-stage:nth-child(3) { z-index: 3; }
.j-stage:nth-child(4) { z-index: 4; }
.j-stage:nth-child(5) { z-index: 5; }
.j-stage:nth-child(6) { z-index: 6; }

.j-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.j-stage h3.display {
  font-size: clamp(26px, 3vw, 38px);
  margin: 14px 0 14px;
  font-weight: 550;
  letter-spacing: -0.01em;
}
.j-copy > p:not(.j-num):not(.j-status) {
  color: var(--body);
  max-width: 52ch;
}
.j-copy .check-list { margin-top: 22px; }
.j-copy .check-list li { font-size: 15.5px; }

.j-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(23, 184, 199, 0.08);
  border: 1px solid rgba(23, 184, 199, 0.22);
  border-radius: var(--r);
  padding: 9px 13px;
}
.j-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex: none; }
.j-status-action { color: #8a6d3b; background: rgba(180, 130, 30, 0.08); border-color: rgba(180, 130, 30, 0.25); }
.j-status-action .j-dot { background: #c9972c; }
.j-arrow { color: var(--teal-dark); }

/* the visual card: one rounded window filled by the real capture */
.j-visual { position: relative; margin: 0; }
.j-shot {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--paper);
  height: clamp(380px, 40vw, 520px);
}
.j-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* stage 4: the Awaiting → Approved pair */
.j-visual-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}
.j-visual-pair .j-shot { height: clamp(340px, 34vw, 460px); }
.j-pair-arrow {
  font-size: 22px;
  color: var(--teal-dark);
  font-weight: 400;
}

.journey-end { margin-top: 64px; text-align: center; }
.journey-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.journey-note {
  margin: 20px auto 0;
  font-size: 14px;
  color: var(--body-2);
  max-width: 62ch;
}

@media (max-width: 1080px) {
  .j-stage { grid-template-columns: 1fr; gap: 36px; padding: 40px 36px; min-height: 0; }
  .j-visual { max-width: 460px; }
}

@media (max-width: 760px) {
  .j-stage { padding: 28px 22px; border-radius: 12px; }
  .journey-stages { gap: 20px; }
  .j-shot { height: clamp(320px, 90vw, 420px); }
  .j-visual-pair { grid-template-columns: 1fr; }
  .j-visual-pair .j-pair-arrow { transform: rotate(90deg); justify-self: center; }
  .j-visual-pair .j-shot { height: clamp(300px, 80vw, 380px); }
}

/* --- touch targets (44px minimum) --- */
.faq-item summary { min-height: 44px; }

/* --- FAQ smooth height (JS-driven; safe without JS) --- */
.faq-item .faq-body { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .j-stage {
    position: static;
    min-height: 0;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

/* ============================================================
   Live demo embeds (2026-07-18): the journey cards upgrade
   their screenshots to the real tracker's read-only demo
   routes. A deliberate border + labeled chrome strip makes the
   boundary between page copy and embedded application obvious.
   Screenshots remain the no-JS / load-failure fallback.
   ============================================================ */

.j-demo {
  display: none;
  max-width: min(390px, 100%);
  border: 2px solid var(--steel);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--card-shadow);
}
.j-demo-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 2px solid var(--steel);
  background: #eef5f9;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.j-demo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(23, 184, 199, 0.7);
  flex: none;
}
.j-demo-tag { margin-left: auto; color: var(--teal-dark); }
.j-demo iframe {
  display: block;
  width: 100%;
  aspect-ratio: 390 / 700;
  height: auto;
  border: 0;
  background: var(--paper);
}

/* once the live embed has loaded, it replaces the screenshot */
.j-visual.has-embed .j-demo { display: block; }
.j-visual.has-embed .j-shot,
.j-visual.has-embed .j-shot-divider,
.j-visual.has-embed .j-pair-arrow { display: none; }

/* stage 4's pair grid collapses to a single embed column */
.j-visual-pair.has-embed { display: block; }

@media (prefers-reduced-motion: reduce) {
  .j-demo-dot { box-shadow: none; }
}

/* ---------- equipment noir (the mid-page dark beat) ---------- */

.equipment {
  background:
    linear-gradient(180deg, rgba(6, 17, 27, 0.35) 0%, rgba(6, 17, 27, 0) 22%),
    radial-gradient(900px 560px at 82% 12%, rgba(23, 184, 199, 0.10), transparent 62%),
    linear-gradient(172deg, var(--ink) 0%, var(--navy) 130%);
  overflow: hidden;
}
.equipment::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("../assets/textures/equip-titanium.avif") type("image/avif"),
    url("../assets/textures/equip-titanium.webp") type("image/webp"));
  background-image: url("textures/equip-titanium.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  pointer-events: none;
}
.equipment::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(117, 212, 220, 0.9), transparent);
  background-size: 50% 100%;
  background-repeat: no-repeat;
  animation: lightSweep 7s var(--ease) infinite;
}
@keyframes lightSweep {
  0% { background-position: -60% 0; }
  60%, 100% { background-position: 160% 0; }
}
.equipment .lede { color: var(--dk-body); }
.equipment .equip-note { color: var(--dk-dim); }
.equipment .equip-note a { color: var(--status-light); }
.equipment .equip-nav button {
  background: rgba(6, 17, 27, 0.5);
  border-color: rgba(117, 212, 220, 0.22);
  color: var(--dk-body);
  backdrop-filter: blur(4px);
}
.equipment .equip-nav button span { color: var(--status-light); }
.equipment .equip-nav button:hover { border-color: var(--teal); color: var(--white); }
.equipment .equip-nav button[aria-selected="true"] {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--ink);
}
.equipment .equip-nav button[aria-selected="true"] span { color: var(--ink); }
.equipment .equip-panel { border-color: rgba(117, 212, 220, 0.14); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4); }

/* ============================================================
   Equipment we service (2026-07-19) — replaces "The process".
   Robot.com-style type showcase: always-visible type index
   (nothing hidden behind slides), one panel at a time with
   serif type name + SEO service copy left, cleaned de-branded
   type photo right, prev/next arrows. Vanilla, accessible tabs.
   ============================================================ */

.equip-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.equip-nav button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body-2);
  transition: border-color var(--t-panel), color var(--t-panel), background var(--t-panel);
}
.equip-nav button span { color: var(--teal-dark); }
.equip-nav button:hover { border-color: var(--teal); color: var(--navy); }
.equip-nav button[aria-selected="true"] {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.equip-nav button[aria-selected="true"] span { color: var(--status-light); }

.equip-stage {
  position: relative;
  display: grid;
}
.equip-panel {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 64px;
  align-items: center;
  background: var(--white);
  border: var(--card-border);
  border-radius: 16px;
  padding: 56px 60px;
  box-shadow: 0 10px 40px rgba(6, 33, 55, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-panel) var(--ease), visibility 0s linear var(--t-panel);
  pointer-events: none;
}
.equip-panel.active {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--t-panel) var(--ease);
  pointer-events: auto;
}
.equip-panel h3.display {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 14px;
  font-weight: 550;
  letter-spacing: -0.01em;
}
.equip-copy > p {
  color: var(--body);
  max-width: 52ch;
}
.equip-copy .check-list { margin-top: 22px; }
.equip-copy .check-list li { font-size: 15.5px; }

.equip-photo {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}
.equip-photo img { width: 100%; height: auto; display: block; }

.equip-arrows {
  position: absolute;
  right: 24px;
  top: 24px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.equip-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--white);
  color: var(--navy);
  font-size: 16px;
  transition: border-color var(--t-panel), color var(--t-panel), transform var(--t-panel);
}
.equip-arrow:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-1px); }

.equip-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--body-2);
  max-width: 68ch;
}
.equip-note a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1080px) {
  .equip-panel { grid-template-columns: 1fr; gap: 32px; padding: 40px 36px; }
  .equip-photo { max-width: 420px; }
  .equip-arrows { position: static; margin-bottom: 14px; justify-content: flex-end; }
  .equip-stage { display: block; }
  .equip-panel { position: relative; }
  .equip-panel:not(.active) { display: none; }
}
@media (max-width: 760px) {
  .equip-panel { padding: 28px 22px; border-radius: 12px; }
}

/* ============================================================
   Depth pass — scroll cue, proof strip, ghost numerals,
   spec callouts, scroll progress, cursor glow (2026-07-19)
   ============================================================ */

/* hero scroll cue */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 7px;
  z-index: 3;
  text-decoration: none;
}
.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t-panel);
}
.hero-scroll:hover span { color: var(--status-light); }
.hero-scroll i {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.16);
  position: relative;
  overflow: hidden;
}
.hero-scroll i::after {
  content: "";
  position: absolute;
  left: 0;
  top: -12px;
  width: 1px;
  height: 12px;
  background: var(--status-light);
  animation: scrollDrop 1.9s var(--ease) infinite;
}
@keyframes scrollDrop { to { top: 30px; } }
@media (max-width: 768px) { .hero-scroll { display: none; } }

/* proof strip — true policy statements set like a departures board */
.proof-strip {
  background: var(--ink);
  border-top: 1px solid var(--dk-hairline);
  overflow: hidden;
  padding: 17px 0;
}
.proof-track { display: flex; width: max-content; animation: proofScroll 44s linear infinite; }
.proof-strip:hover .proof-track { animation-play-state: paused; }
.proof-run { display: flex; align-items: center; flex: none; }
.proof-run span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dk-body);
  white-space: nowrap;
}
.proof-run i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  margin: 0 28px;
  flex: none;
  opacity: 0.75;
}
@keyframes proofScroll { to { transform: translateX(-50%); } }

/* journey ghost numerals — the pipeline's own wayfinding */
.journey-stages { counter-reset: jstage; }
.j-stage { counter-increment: jstage; overflow: hidden; }
.j-stage::before {
  content: counter(jstage, decimal-leading-zero);
  position: absolute;
  left: 44px;
  bottom: -18px;
  font-family: var(--font-serif);
  font-size: clamp(120px, 13vw, 185px);
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(203, 217, 224, 0.85);
  letter-spacing: -0.02em;
  pointer-events: none;
  z-index: 0;
}
@supports not (-webkit-text-stroke: 1px black) {
  .j-stage::before { color: rgba(203, 217, 224, 0.4); }
}
.j-copy, .j-visual { position: relative; z-index: 1; }
@media (max-width: 1024px) { .j-stage::before { display: none; } }

/* equipment spec callouts — Rains-style part annotations */
.equip-photo { position: relative; }
.spec {
  position: absolute;
  left: var(--sx);
  top: var(--sy);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 2;
  animation-delay: var(--d, 0s);
}
.spec.flip {
  left: auto;
  right: calc(100% - var(--sx));
  flex-direction: row-reverse;
}
.spec i {
  width: 9px;
  height: 9px;
  margin-left: -4px;
  border: 2px solid var(--teal-dark);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(23, 184, 199, 0.14);
  flex: none;
}
.spec.flip i { margin-left: 0; margin-right: -4px; }
.spec b {
  width: 24px;
  height: 1px;
  background: var(--line-2);
  flex: none;
}
.spec em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body-2);
  background: rgba(255, 255, 255, 0.88);
  padding: 3px 7px;
  border-radius: 3px;
  white-space: nowrap;
}
.equip-panel.active .spec { animation-name: specIn; animation-duration: 0.5s; animation-timing-function: var(--ease); animation-fill-mode: both; }
@keyframes specIn {
  from { opacity: 0; transform: translateY(calc(-50% + 8px)); }
  to { opacity: 1; transform: translateY(-50%); }
}
@media (max-width: 640px) { .spec { display: none; } }

/* header scroll-progress hairline */
.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform-origin: left;
  transform: scaleX(var(--sp, 0));
  pointer-events: none;
}

/* cursor-reactive glow on the dark beats (pointer: fine only, via JS) */
.glow-live::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  background: radial-gradient(480px 480px at var(--mx, 50%) var(--my, 40%), rgba(23, 184, 199, 0.09), transparent 70%);
}
.glow-live.glow-on::after { opacity: 1; }

/* ============================================================
   Mobile-first pass (2026-07-19) — phone fixes after owner review
   ============================================================ */

@media (max-width: 1080px) {
  /* arrows sit on the dark section below the panel at this width */
  .equipment .equip-arrow {
    background: rgba(6, 17, 27, 0.55);
    border-color: rgba(117, 212, 220, 0.28);
    color: #cfe8ec;
  }
}

@media (max-width: 760px) {
  .mission { padding: 56px 0; }
  .final { padding: 96px 0; }
  .journey .section-head { margin-bottom: 40px; }
  .journey-stages { gap: 20px; }

  /* hero: drop the 1.8MB video on phones; frame the still on the head */
  .hero-bg .hero-video { display: none; }
  .hero-bg img { object-position: 30% 50%; }

  /* live-demo chrome: one quiet line, no wrap */
  .j-demo-chrome { font-size: 9px; letter-spacing: 0.1em; gap: 7px; padding: 7px 10px; }
  .j-demo-chrome span { white-space: nowrap; }
  .j-demo-tag { display: none; }

  /* iOS zooms any focused field under 16px — keep every field at 16 */
  #intakeForm input,
  #intakeForm select,
  #intakeForm textarea { font-size: 16px; }
}

/* ============================================================
   Alive pass 2 — scroll-drawn route, grain, magnetic CTAs,
   mission cinemagraphs (2026-07-19)
   ============================================================ */

/* film grain on the dark beats: an animated turbulence tile at whisper
   opacity — kills the flat-gradient look without touching legibility */
.grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.grain::before {
  content: "";
  position: absolute;
  inset: -140px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
  animation: grainShift 0.85s steps(8) infinite;
}
@keyframes grainShift {
  0% { transform: translate3d(0, 0, 0); }
  12.5% { transform: translate3d(-52px, 30px, 0); }
  25% { transform: translate3d(34px, -64px, 0); }
  37.5% { transform: translate3d(-28px, -40px, 0); }
  50% { transform: translate3d(60px, 22px, 0); }
  62.5% { transform: translate3d(-64px, 58px, 0); }
  75% { transform: translate3d(22px, -30px, 0); }
  87.5% { transform: translate3d(48px, 44px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* magnetic CTAs (JS sets --magx/--magy on pointer: fine only) */
.btn-mag,
.btn-mag:hover {
  transform: translate3d(var(--magx, 0px), var(--magy, 0px), 0);
  transition: transform 0.22s var(--ease), background var(--t-panel), box-shadow var(--t-panel);
}

/* mission cinemagraphs: still is the poster; video fades in over it */
.mission-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
  pointer-events: none;
}
.mission-photo.video-on .mission-video { opacity: 1; }
@media (max-width: 760px) {
  .mission-video { display: none; }
}

/* ============================================================
   Rebuild — comparison, offer, after-send, mega footer (2026-07-23)
   ============================================================ */

/* ---------- comparison: the mail-away way vs the chairside way ---------- */
.compare { --gx1: 78%; --gy1: 14%; --gx2: 10%; --gy2: 86%; }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1040px;
  margin-inline: auto;
}
.compare-col {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-2);
}
.compare-photo { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; }
.compare-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.compare-body { padding: 26px 30px 30px; }
.compare-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
}
.compare-body ul { list-style: none; display: grid; gap: 13px; }
.compare-body li {
  display: flex;
  gap: 13px;
  align-items: baseline;
  font-size: 15.5px;
  line-height: 1.55;
}
.compare-body .cx, .compare-body .ck {
  flex: none;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  align-self: center;
  font-family: var(--font-mono);
  font-size: 12px;
  border-radius: 4px;
}
.compare-old {
  background: linear-gradient(170deg, var(--ink) 0%, #0A2233 130%);
  border-color: rgba(117, 212, 220, 0.14);
}
.compare-old .compare-photo { border-bottom: 1px solid rgba(117, 212, 220, 0.12); }
.compare-old h3 { color: rgba(233, 243, 245, 0.82); }
.compare-old li { color: var(--dk-body, #a7bcC6); color: #a7bcc6; }
.compare-old .cx { border: 1px solid rgba(167, 188, 198, 0.35); color: #8ba4b0; }
.compare-new { background: var(--white); }
.compare-new h3 { color: var(--navy); }
.compare-new li { color: var(--body); }
.compare-new .ck { border: 1px solid rgba(23, 184, 199, 0.45); color: var(--teal-dark); background: rgba(23, 184, 199, 0.07); }

/* ---------- offer: the plain-sight repair ---------- */
.offer {
  position: relative;
  background:
    radial-gradient(820px 540px at 82% 10%, rgba(23, 184, 199, 0.12), transparent 62%),
    radial-gradient(660px 520px at 8% 92%, rgba(79, 141, 184, 0.10), transparent 65%),
    linear-gradient(172deg, var(--ink) 0%, var(--navy) 135%);
  overflow: hidden;
}
.offer .lede { color: var(--dk-body); }
.offer-panel { max-width: 720px; margin: 0 auto; }
.offer-steps {
  list-style: none;
  display: grid;
  gap: 24px;
  margin: 0 0 40px;
}
.offer-steps li { display: flex; gap: 20px; align-items: baseline; }
.offer-steps .bx {
  flex: none;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  align-self: center;
  border: 1.5px solid rgba(117, 212, 220, 0.5);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--status-light);
}
.offer-steps p { font-size: 18.5px; color: #E9F3F5; line-height: 1.55; }
.offer-steps strong { color: #fff; }
.offer-bonus {
  border-left: 2px solid var(--teal);
  padding: 6px 0 6px 22px;
  margin-bottom: 44px;
}
.offer-bonus-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--status-light);
  margin-bottom: 8px;
}
.offer-bonus p:not(.offer-bonus-tag) { color: var(--dk-body); font-size: 16px; line-height: 1.65; }
.offer-bonus strong { color: #fff; }
.offer-cta { text-align: center; }
.offer-fine { margin-top: 18px; font-size: 13.5px; color: var(--dk-dim, rgba(233,243,245,0.45)); color: rgba(233, 243, 245, 0.45); }

/* ---------- after-send: what happens next ---------- */
.after-send {
  margin-top: 56px;
  border-top: 1px solid var(--line-2);
  padding-top: 34px;
}
.after-title {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 22px;
}
.after-send ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.after-send li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 15px;
  color: var(--body);
  line-height: 1.55;
}
.after-send li span {
  flex: none;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal-dark);
}

/* ---------- footer mega lockup ---------- */
.footer-mega { padding: 46px 0 26px; }
.footer-mega img { width: 100%; height: auto; display: block; opacity: 0.96; }

@media (max-width: 900px) {
  .compare-grid { grid-template-columns: 1fr; }
  .after-send ol { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 760px) {
  .offer-steps p { font-size: 16.5px; }
  .footer-mega { padding: 30px 0 16px; }
}

/* ============================================================
   Service-ledger rebuild (2026-07-23) — deal ticket, compare
   ledger, footer watermark, a11y focus
   ============================================================ */

:where(a, button, summary, input, select, textarea):focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- offer: the standing-deal document ---------- */
.offer-doc {
  max-width: 620px;
  margin: 0 auto 40px;
  background: #fff;
  border: 1.5px solid var(--navy);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
  font-family: var(--font-mono);
}
.doc-head {
  background: var(--navy);
  color: #fff;
  padding: 13px 24px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.doc-body { padding: 26px 28px 30px; position: relative; }
.doc-ln {
  display: flex;
  align-items: baseline;
  font-size: 13.5px;
  color: var(--navy);
  padding: 8px 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.doc-ln .lbl { flex: none; max-width: 70%; }
.doc-ln .dots { flex: 1; border-bottom: 1.5px dotted var(--line-2); margin: 0 8px; transform: translateY(-3px); }
.doc-ln .val { flex: none; color: var(--teal-dark); font-weight: 500; text-align: right; }
.doc-sub { padding-top: 0; margin-top: -4px; color: var(--body-2); font-size: 12.5px; }
.doc-total {
  border-top: 1.5px solid var(--navy);
  margin-top: 14px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.doc-total b { font-family: var(--font-serif); font-size: 34px; font-weight: 600; color: var(--teal-dark); }
.doc-stamp {
  display: inline-block;
  border: 2px solid var(--teal-dark);
  color: var(--teal-dark);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-top: 16px;
  transform: rotate(-4deg) scale(1.3);
  opacity: 0;
  transition: opacity 0.35s var(--ease), transform 0.35s cubic-bezier(0.2, 1.4, 0.4, 1);
}
/* printed-in sequence */
.offer-doc.printed .doc-ln, .offer-doc.printed .doc-total { opacity: 1; transform: translateY(0); }
.offer-doc.printed .doc-stamp { opacity: 1; transform: rotate(-4deg) scale(1); }
.offer-doc.printed .doc-ln:nth-child(1) { transition-delay: 0.05s; }
.offer-doc.printed .doc-ln:nth-child(2) { transition-delay: 0.15s; }
.offer-doc.printed .doc-ln:nth-child(3) { transition-delay: 0.25s; }
.offer-doc.printed .doc-ln:nth-child(4) { transition-delay: 0.35s; }
.offer-doc.printed .doc-ln:nth-child(5) { transition-delay: 0.45s; }
.offer-doc.printed .doc-ln:nth-child(6) { transition-delay: 0.55s; }
.offer-doc.printed .doc-ln:nth-child(7) { transition-delay: 0.65s; }
.offer-doc.printed .doc-total { transition-delay: 0.8s; }
.offer-doc.printed .doc-stamp { transition-delay: 1.05s; }
@media (prefers-reduced-motion: reduce) {
  .doc-ln, .doc-total { opacity: 1 !important; transform: none !important; }
  .doc-stamp { opacity: 1 !important; transform: rotate(-4deg) !important; }
}

/* ---------- compare: the process ledger ---------- */
.ledger { max-width: 980px; margin-inline: auto; position: relative; }
.ledger-fig {
  position: absolute;
  top: -12px;
  left: 18px;
  z-index: 1;
  background: var(--paper);
  padding: 0 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.ledger-heads { display: grid; grid-template-columns: 44px 1fr 1fr; }
.ledger-heads::before { content: ""; }
.lh { position: relative; overflow: hidden; height: 190px; }
.lh img { width: 100%; height: 118%; object-fit: cover; display: block; will-change: transform; transform: translateY(var(--ppy, 0)); }
.lh h3 {
  position: absolute;
  left: 18px;
  bottom: 14px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 14px rgba(6, 17, 27, 0.65);
}
.lh-new h3 { color: var(--navy); text-shadow: 0 2px 14px rgba(248, 251, 252, 0.7); }
.lh-old { border: 1.5px solid var(--navy); border-right: none; }
.lh-new { border: 1.5px solid var(--navy); border-left: 1.5px solid var(--navy); }
.ledger-row {
  display: grid;
  grid-template-columns: 44px 1fr 1fr;
  border: 1.5px solid var(--navy);
  border-top: none;
  font-size: 14.5px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.2s var(--ease);
}
.ledger.on .ledger-row { opacity: 1; transform: translateY(0); }
.ledger.on .ledger-row:nth-of-type(1) { transition-delay: 0.1s; }
.ledger.on .ledger-row:nth-of-type(2) { transition-delay: 0.28s; }
.ledger.on .ledger-row:nth-of-type(3) { transition-delay: 0.46s; }
.ledger.on .ledger-row:nth-of-type(4) { transition-delay: 0.64s; }
.ledger-row .num {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
}
.ledger-row .bad, .ledger-row .good { padding: 17px 20px; display: flex; gap: 12px; align-items: baseline; line-height: 1.5; }
.ledger-row .bad { background: #ecf2f5; color: #64808e; }
.ledger-row .good { background: var(--white); color: var(--navy); border-left: 1.5px solid var(--navy); }
.ledger-row .bad span, .ledger-row .good span { font-family: var(--font-mono); font-size: 12px; flex: none; }
.ledger-row .good span { color: var(--teal-dark); }
.ledger-row:hover .bad { background: #e2eaef; }
.ledger-row:hover .good { background: rgba(23, 184, 199, 0.06); }
@media (prefers-reduced-motion: reduce) {
  .ledger-row { opacity: 1 !important; transform: none !important; }
}
@media (max-width: 820px) {
  .ledger-heads { grid-template-columns: 28px 1fr 1fr; }
  .lh { height: 120px; }
  .lh h3 { font-size: 15px; left: 12px; bottom: 10px; }
  .ledger-row { grid-template-columns: 28px 1fr; font-size: 14px; }
  .ledger-row .good { grid-column: 2; border-left: none; border-top: 1px dashed var(--line-2); }
  .ledger-row .num { grid-row: span 2; }
}

/* ---------- footer watermark (ghost mark, house numeral language) ---------- */
.site-footer { position: relative; overflow: hidden; }
.footer-watermark {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 520px;
  opacity: 0.09;
  pointer-events: none;
}
.footer-watermark img { width: 100%; height: auto; display: block; }
.site-footer .wrap { position: relative; z-index: 1; }

/* hero pins are decorative; phones skip them (journey tells the story) */
@media (max-width: 760px) {
  .hero-pins { display: none; }
  .hero { min-height: 88vh; }
}

/* form async states */
.form-error {
  margin-top: 18px;
  border: 1px solid #d9a0a0;
  background: #fdf6f6;
  border-radius: 10px;
  padding: 16px 18px;
  color: #7c3b3b;
  font-size: 15px;
}
.form-error .btn { padding: 6px 14px; min-height: 0; font-size: 14px; }
button[aria-busy="true"] { opacity: 0.7; pointer-events: none; }

/* mobile density pass (2026-07-23) */
@media (max-width: 760px) {
  .mission-card { display: grid; grid-template-columns: 116px 1fr; align-items: stretch; }
  .mission-photo { aspect-ratio: auto; height: 100%; min-height: 128px; }
  .mission-video { display: none; }
  .route-photo { max-height: 170px; overflow: hidden; }
  .route-photo img { height: 170px; object-fit: cover; }
  .faq-sticky.framed { padding: 26px 20px 24px; }
  .final { padding: 72px 0; }
  .doc-body { padding: 20px 16px 24px; }
  .doc-ln { font-size: 13px; flex-wrap: wrap; row-gap: 2px; }
  .doc-ln .dots { display: none; }
  .doc-ln .lbl { max-width: none; flex: 1 1 auto; }
  .doc-ln .val { margin-left: auto; text-align: right; max-width: 100%; }
  .doc-total { flex-wrap: wrap; }
  .doc-total b { font-size: 28px; }
}

/* ---------- offer v3: the giant-zero (Fey-style cost moment) ---------- */
.offer-zero { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.zero-kicker {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  color: #E9F3F5;
  margin-bottom: 6px;
}
.zero-figure { position: relative; display: inline-block; line-height: 1; }
.zero-num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(150px, 24vw, 280px);
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow:
    0 0 46px rgba(23, 184, 199, 0.55),
    0 0 130px rgba(23, 184, 199, 0.28);
  display: inline-block;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), text-shadow 1.4s var(--ease);
}
.zero-stamp {
  position: absolute;
  right: -30px;
  top: 16%;
  border: 2px solid var(--status-light);
  color: var(--status-light);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 12px;
  transform: rotate(8deg) scale(1.3);
  opacity: 0;
  transition: opacity 0.4s var(--ease) 1s, transform 0.4s cubic-bezier(0.2, 1.4, 0.4, 1) 1s;
  background: rgba(6, 17, 27, 0.55);
  backdrop-filter: blur(3px);
}
.offer-zero.bloom .zero-num { opacity: 1; transform: translateY(0) scale(1); }
.offer-zero.bloom .zero-stamp { opacity: 1; transform: rotate(8deg) scale(1); }
.zero-caption {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--status-light);
  margin: 18px 0 22px;
}
.zero-deal {
  color: var(--dk-body, #a7bcc6);
  color: #b9cdd6;
  font-size: 17px;
  line-height: 1.65;
  max-width: 54ch;
  margin: 0 auto 26px;
}
.zero-chips {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}
.zero-chips li {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cfe4e9;
  border: 1px solid rgba(117, 212, 220, 0.3);
  padding: 9px 16px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .zero-num, .zero-stamp { opacity: 1 !important; transform: none !important; }
}
@media (max-width: 760px) {
  .zero-stamp { right: -6px; top: auto; bottom: 10px; font-size: 9.5px; padding: 5px 9px; }
  .zero-deal { font-size: 15.5px; }
}

/* ---------- offer v4: the annotated real estimate ---------- */
.offer-proof {
  display: grid;
  /* wide gap = a reserved lane for the estimate callout labels, so the
     front layer never overlaps the deal copy at any width */
  grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  gap: 230px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 46px;
}
@media (max-width: 1150px) {
  .offer-proof { grid-template-columns: minmax(0, 1fr) minmax(0, 340px); gap: 195px; }
  .op-spec em { font-size: 9.5px; letter-spacing: 0.1em; }
}
@media (max-width: 720px) {
  .op-spec { display: none; }
}
.op-line {
  padding: 22px 0;
  border-bottom: 1px solid rgba(117, 212, 220, 0.14);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.op-line:first-child { padding-top: 0; }
.op-line:last-child { border-bottom: none; }
.offer-proof.on .op-line { opacity: 1; transform: translateY(0); }
.offer-proof.on .op-line:nth-child(1) { transition-delay: 0.05s; }
.offer-proof.on .op-line:nth-child(2) { transition-delay: 0.2s; }
.offer-proof.on .op-line:nth-child(3) { transition-delay: 0.35s; }
.op-line h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.op-line p { color: #b9cdd6; font-size: 15.5px; line-height: 1.65; max-width: 46ch; }
.op-screen { margin: 0; position: relative; }
.op-frame {
  border: 2px solid var(--steel);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
}
.op-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-bottom: 2px solid var(--steel);
  background: #eef5f9;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.op-frame img { width: 100%; height: auto; display: block; }
.op-spec { z-index: 3; }
.op-spec em {
  background: rgba(6, 17, 27, 0.88);
  color: #cfe8ec;
  border: 1px solid rgba(117, 212, 220, 0.3);
}
.op-spec i { background: var(--ink); border-color: var(--status-light); box-shadow: 0 0 0 4px rgba(23, 184, 199, 0.25); }
.op-spec b { background: rgba(117, 212, 220, 0.5); }
.offer-proof .spec { opacity: 0; }
.offer-proof.on .spec { animation: specIn 0.5s var(--ease) both; animation-delay: calc(var(--d, 0s) + 0.5s); }
@media (prefers-reduced-motion: reduce) {
  .op-line { opacity: 1 !important; transform: none !important; }
  .offer-proof .spec { opacity: 1 !important; animation: none !important; }
}
@media (max-width: 900px) {
  .offer-proof { grid-template-columns: 1fr; gap: 44px; }
  .op-screen { max-width: 340px; margin-inline: auto; }
}
