:root {
  --ink: #171717;
  --ink-2: #2b2b2b;
  --paper: #f6f2ea;
  --white: #ffffff;
  --line: #d7d0c4;
  --muted: #69665f;
  --lime: #b7ff19;
  --lime-dark: #98e600;
  --yellow: #ffe62e;
  --orange: #ff7417;
  --coral: #f04438;
  --coral-soft: #ffd5cf;
  --lagoon: #ff7417;
  --sky: #f6f2ea;
  --display: "Anton", Impact, sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --text-xs: 0.76rem;
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-lg: 1.2rem;
  --text-xl: 1.85rem;
  --text-2xl: 3.35rem;
  --text-hero: 5.6rem;
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s6: 48px;
  --s8: 64px;
  --s12: 96px;
  --max: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--text-base);
  line-height: 1.6;
  letter-spacing: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

a { color: inherit; }
button, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { width: auto; height: auto; overflow: visible; clip-path: none; }

.site-header {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(calc(100% - 40px), 1200px);
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: 6px;
  background: rgba(246, 242, 234, 0.96);
  box-shadow: 0 16px 40px rgba(23, 23, 23, 0.16);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-lockup { position: relative; display: block; width: 190px; height: 42px; overflow: hidden; flex: none; }
.brand-lockup img { position: absolute; top: 50%; left: 0; width: 190px; height: 190px; max-width: none; object-fit: contain; transform: translateY(-50%); }
.brand-lockup-light img { mix-blend-mode: multiply; }
.brand-fallback { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: var(--text-sm);
  font-weight: 700;
}
.site-nav a { text-decoration: none; }
.site-nav a:not(.nav-action):hover { color: var(--orange); }
.site-nav .nav-action {
  padding: 11px 16px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
  transition: transform 180ms var(--ease), background 180ms ease;
}
.site-nav .nav-action:hover { transform: translateY(-2px); background: var(--orange); }

.hero {
  position: relative;
  display: grid;
  height: calc(100svh - 72px);
  min-height: 640px;
  overflow: hidden;
  align-items: end;
  color: var(--paper);
  background: var(--ink);
}

.hero-image, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(23, 23, 23, 0.97) 0%, rgba(23, 23, 23, 0.82) 38%, rgba(23, 23, 23, 0.18) 75%, rgba(23, 23, 23, 0.28) 100%); }

.hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 55vw);
  margin-left: max(28px, calc((100vw - var(--max)) / 2));
  padding: 138px 0 58px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: var(--text-xs);
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}
.eyebrow-dark { color: var(--lagoon); }

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: var(--text-hero);
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero h1 span { display: block; color: var(--lime); font-family: var(--display); font-weight: 400; }
.hero-copy { max-width: 610px; margin: 26px 0 0; color: rgba(255, 255, 255, 0.86); font-size: 1.08rem; line-height: 1.65; }
.hero-copy strong { color: var(--paper); }
.hero-actions { display: flex; gap: 20px; align-items: center; margin-top: 30px; }
.hero-microcopy { margin: 14px 0 0; color: rgba(255,255,255,.62); font-size: var(--text-xs); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--lime); color: var(--ink); }
.button-primary:hover { background: var(--lime-dark); }
.button-dark { background: var(--ink); color: var(--paper); }
.button-dark:hover { background: var(--orange); color: var(--ink); }
.text-link { color: var(--white); font-size: var(--text-sm); font-weight: 800; text-underline-offset: 5px; }

.operation-signals {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 44px;
  z-index: 3;
  width: 310px;
}
.operation-signals > p { margin: 10px 0 0; color: rgba(255,255,255,.7); font-size: .68rem; text-align: right; }
.signal-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(23,23,23,.14);
  border-radius: 6px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(8,20,15,.2);
  backdrop-filter: blur(12px);
}
.signal-message { transform: translateX(-28px); }
.signal-return { transform: translateX(-54px); }
.signal-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--lime); font-size: .76rem; font-weight: 800; }
.signal-booking .signal-icon { background: var(--yellow); }
.signal-return .signal-icon { background: var(--coral-soft); }
.signal-card div { display: grid; }
.signal-card small, .signal-card span { color: var(--muted); font-size: .68rem; }
.signal-card strong { font-size: .86rem; line-height: 1.35; }

.facts-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.facts-band div { min-height: 112px; padding: 26px 24px; border-left: 1px solid var(--line); }
.facts-band div:last-child { border-right: 1px solid var(--line); }
.facts-band strong, .facts-band span { display: block; }
.facts-band strong { font-size: 1rem; }
.facts-band span { margin-top: 4px; color: var(--muted); font-size: var(--text-xs); line-height: 1.45; }

.case-zero { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, .7fr); gap: 0; padding-top: 0; padding-bottom: 0; border-bottom: 1px solid var(--line); background: var(--paper); }
.case-zero-main { padding: 82px 64px 82px 0; }
.case-zero-heading { display: flex; gap: 28px; align-items: flex-start; justify-content: space-between; }
.case-zero-heading h2 { max-width: 650px; margin-top: 10px; }
.case-zero-heading time { flex: 0 0 auto; margin-top: 4px; color: var(--ink-2); font-size: .72rem; font-weight: 700; }
.case-zero-copy { max-width: 760px; margin: 26px 0 42px; color: var(--ink-2); font-size: 1.06rem; }
.build-ledger { margin: 0; border-top: 1px solid var(--ink); }
.build-ledger > div { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.build-ledger dt { color: var(--conversion); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.build-ledger dd { display: grid; gap: 4px; margin: 0; }
.build-ledger dd strong { font-size: .96rem; }
.build-ledger dd span { color: var(--ink-2); font-size: .83rem; }
.operator-note { align-self: stretch; padding: 82px 44px; background: var(--lime); color: var(--ink); }
.operator-kicker { margin: 0 0 28px; font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.operator-note h3 { margin-bottom: 20px; font-size: 1.8rem; }
.operator-note p:not(.operator-kicker) { margin-bottom: 34px; color: rgba(23,23,23,.76); }
.text-link-dark { color: var(--ink); }

.section { padding: 112px max(28px, calc((100vw - var(--max)) / 2)); }
.section-heading { display: grid; grid-template-columns: 210px minmax(0, 720px); gap: 34px; margin-bottom: 70px; }
.section-heading .eyebrow { margin-top: 10px; }
.section-heading h2, .pilot-intro h2, .diagnostic-copy h2, .flow-copy h2, .final-cta h2 {
  margin: 0;
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}
.section-heading > p:last-child { grid-column: 2; max-width: 690px; margin: -10px 0 0; color: var(--muted); font-size: var(--text-lg); }

.journey-board {
  display: grid;
  grid-template-columns: 1fr 26px 1fr 26px 1fr 26px 1fr 26px 1fr;
  align-items: center;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.journey-stage { min-height: 190px; padding: 32px 10px; }
.journey-stage span, .journey-stage strong, .journey-stage small { display: block; }
.journey-stage span { color: var(--orange); font-size: var(--text-xs); font-weight: 800; }
.journey-stage strong { margin-top: 40px; font-size: 1.12rem; }
.journey-stage small { margin-top: 4px; color: var(--muted); }
.journey-board > i { position: relative; height: 1px; background: var(--ink); }
.journey-board > i::after { content: ""; position: absolute; right: 0; top: -4px; width: 8px; height: 8px; border-top: 1px solid var(--ink); border-right: 1px solid var(--ink); transform: rotate(45deg); }
.journey-board > i.leak-point { height: 10px; border: 2px solid var(--coral); border-radius: 50%; background: var(--coral); }
.journey-board > i.leak-point::after { right: -1px; top: -1px; border-color: var(--coral); }
.truth-note { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; margin-top: 48px; padding: 28px 0; border-top: 5px solid var(--orange); }
.truth-note strong { font-family: var(--display); font-size: 1.7rem; }
.truth-note p { max-width: 720px; margin: 0; color: var(--muted); }

.section-dark { background: var(--ink); color: var(--paper); }
.section-heading.light > p:last-child { color: rgba(255,255,255,.67); }
.engine-list { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.28); list-style: none; }
.engine-list li { display: grid; grid-template-columns: 64px minmax(0, 1fr) 110px; gap: 28px; align-items: center; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.28); }
.engine-number { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; color: var(--lime); font-size: var(--text-xs); }
.engine-list h3 { margin: 0; font-size: 1.3rem; }
.engine-list p { max-width: 760px; margin: 6px 0 0; color: rgba(255,255,255,.64); }
.engine-list > li > strong { color: var(--lime); font-size: var(--text-sm); text-transform: uppercase; }

.live-flow { display: grid; grid-template-columns: .9fr 1.1fr; gap: 88px; align-items: center; background: var(--paper); }
.flow-copy h2 { max-width: 570px; }
.flow-copy > p:not(.eyebrow) { max-width: 610px; color: var(--muted); }
.plain-checks { margin: 28px 0 0; padding: 0; list-style: none; }
.plain-checks li { position: relative; padding: 11px 0 11px 28px; border-top: 1px solid var(--line); }
.plain-checks li:last-child { border-bottom: 1px solid var(--line); }
.plain-checks li::before { content: ""; position: absolute; left: 2px; top: 19px; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); }

.conversation-shell { overflow: hidden; border: 1px solid #9b968d; border-radius: 7px; background: #ece7dd; box-shadow: 22px 22px 0 var(--yellow); }
.conversation-shell > header { display: flex; min-height: 70px; align-items: center; justify-content: space-between; padding: 12px 16px; background: var(--ink); color: var(--paper); }
.conversation-shell > header div { display: flex; align-items: center; gap: 11px; }
.conversation-shell > header div > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: var(--text-xs); font-weight: 800; }
.conversation-shell header p, .conversation-shell header small { margin: 0; }
.conversation-shell header p { display: grid; line-height: 1.3; }
.conversation-shell header p small { color: var(--lime); }
.chat-body { display: flex; min-height: 420px; flex-direction: column; gap: 12px; padding: 24px; background-color: #ece7dd; background-image: radial-gradient(rgba(23,23,23,.09) 1px, transparent 1px); background-size: 18px 18px; }
.chat { width: min(78%, 390px); margin: 0; padding: 12px 14px; border-radius: 6px; background: var(--white); box-shadow: 0 2px 8px rgba(23,23,23,.08); font-size: .88rem; }
.chat.outgoing { align-self: flex-end; background: #e4ffad; }
.chat time { display: block; margin-top: 5px; color: var(--muted); font-size: .64rem; text-align: right; }
.flow-status { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0 14px; background: var(--white); }
.flow-status > div { display: grid; grid-template-columns: 25px 1fr; gap: 8px; align-items: center; min-height: 76px; padding: 10px; border-right: 1px solid var(--line); }
.flow-status > div:last-child { border-right: 0; }
.flow-status span { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: var(--lime); font-size: .64rem; font-weight: 800; }
.flow-status p { display: grid; margin: 0; line-height: 1.2; }
.flow-status strong { font-size: .68rem; }
.flow-status small { margin-top: 3px; color: var(--muted); font-size: .62rem; }

.section-coral { display: grid; grid-template-columns: 1.1fr .75fr 1fr; gap: 58px; background: var(--orange); }
.pilot-intro h2 { max-width: 500px; }
.pilot-intro > p:last-child { max-width: 520px; }
.pilot-price { padding: 32px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.pilot-price > span { font-size: var(--text-xs); font-weight: 800; text-transform: uppercase; }
.pilot-price strong { display: block; margin: 12px 0 4px; font-family: var(--display); font-size: 3.4rem; line-height: 1; }
.pilot-price strong small { font-family: var(--body); font-size: .74rem; }
.pilot-price p { margin: 0 0 24px; font-size: var(--text-sm); }
.pilot-scope { border-left: 1px solid rgba(23,23,23,.5); padding-left: 38px; }
.pilot-scope h3 { margin-top: 0; }
.pilot-scope ul { padding-left: 18px; }
.pilot-scope li { margin: 8px 0; }
.pilot-scope > p { margin-top: 22px; font-size: var(--text-xs); }

.section-lime { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; background: var(--lime); }
.diagnostic-copy { position: sticky; top: 28px; align-self: start; }
.diagnostic-copy h2 { max-width: 500px; }
.diagnostic-copy > p:not(.eyebrow) { max-width: 500px; }
.diagnostic-promise { display: grid; margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--ink); }
.diagnostic-promise span { margin-top: 5px; font-size: var(--text-sm); }
.diagnostic-form { padding: 34px; border: 1px solid rgba(23,23,23,.45); border-radius: 7px; background: var(--white); box-shadow: 18px 18px 0 rgba(23,23,23,.14); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-grid > label, .form-grid fieldset { font-size: var(--text-xs); font-weight: 800; }
select { width: 100%; height: 48px; margin-top: 7px; padding: 0 12px; border: 1px solid #9aa69f; border-radius: 3px; background: var(--white); color: var(--ink); }
select:focus { border-color: var(--orange); }
fieldset { display: flex; min-height: 76px; gap: 18px; align-items: center; margin: 0; padding: 12px; border: 1px solid #9aa69f; border-radius: 3px; }
legend { padding: 0 4px; }
.radio { display: inline-flex; gap: 7px; align-items: center; font-size: var(--text-sm); font-weight: 600; }
.radio input { accent-color: var(--orange); }
.form-submit { width: 100%; margin-top: 26px; }
.form-privacy { margin: 10px 0 0; color: var(--muted); font-size: .68rem; text-align: center; }
.diagnostic-result { position: relative; z-index: 2; grid-column: 1 / -1; display: grid; grid-template-columns: 150px 1fr; gap: 34px; margin-top: 40px; padding: 34px; border: 1px solid var(--ink); background: var(--ink); color: var(--white); }
.diagnostic-result[hidden] { display: none; }
.score-ring { display: grid; width: 140px; height: 140px; place-content: center; border: 9px solid rgba(255,255,255,.22); border-top-color: var(--lime); border-radius: 50%; text-align: center; }
.score-ring strong { font-family: var(--display); font-size: 3.1rem; line-height: .9; }
.score-ring span { font-size: var(--text-sm); }
.result-label { margin: 0; color: var(--lime); font-size: var(--text-xs); font-weight: 800; text-transform: uppercase; }
.diagnostic-result h3 { margin: 5px 0 0; font-family: var(--display); font-size: 2rem; font-weight: 500; line-height: 1.1; }
.diagnostic-result li { margin: 7px 0; }
.result-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 24px; }
.text-button { padding: 4px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--white); cursor: pointer; font-weight: 800; }
.copy-status { margin-left: 12px; font-size: var(--text-sm); }
.lead-capture { position: relative; margin-top: 32px; padding-top: 30px; border-top: 1px solid rgba(246,242,234,.28); }
.lead-capture[hidden] { display: none; }
.lead-capture-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: end; margin-bottom: 24px; }
.lead-capture-heading h4 { margin: 6px 0 0; font-size: 1.35rem; line-height: 1.2; }
.lead-capture-heading > p { margin: 0; color: rgba(246,242,234,.7); font-size: .82rem; }
.lead-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form-grid label { display: grid; gap: 7px; color: var(--paper); font-size: .74rem; font-weight: 800; }
.lead-form-grid input { width: 100%; min-width: 0; padding: 12px 13px; border: 1px solid rgba(246,242,234,.35); border-radius: 3px; background: var(--paper); color: var(--ink); font: inherit; }
.lead-form-grid input:focus { border-color: var(--lime); outline: 3px solid rgba(183,255,25,.22); }
.lead-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.consent-check { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; color: rgba(246,242,234,.76); font-size: .74rem; line-height: 1.45; }
.consent-check input { flex: 0 0 auto; margin-top: 3px; accent-color: var(--lime); }
.consent-check a { color: var(--paper); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.lead-submit-row { display: flex; gap: 18px; align-items: center; margin-top: 20px; }
.lead-submit-row p { max-width: 340px; margin: 0; color: rgba(246,242,234,.65); font-size: .7rem; }
.lead-status { min-height: 20px; margin: 16px 0 0; color: var(--paper); font-size: .82rem; }
.lead-status[data-state="error"] { color: #ff968e; }
.lead-status[data-state="success"] { padding: 18px; border-left: 4px solid var(--lime); background: rgba(183,255,25,.08); color: var(--paper); }
.lead-capture.is-sent .lead-capture-heading, .lead-capture.is-sent .lead-form-grid, .lead-capture.is-sent .consent-check, .lead-capture.is-sent .lead-submit-row { display: none; }
.lead-fallback { display: inline-flex; margin-top: 8px; color: var(--paper); }
.lead-fallback[hidden] { display: none; }

.fit-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.fit-columns > div { padding-top: 24px; border-top: 5px solid var(--lime); }
.fit-columns > div:last-child { border-color: var(--coral); }
.fit-columns h3 { margin-top: 0; font-size: var(--text-xl); }
.fit-columns ul { margin: 0; padding-left: 20px; }
.fit-columns li { margin: 10px 0; }

.section-soft { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.faq-list { max-width: 900px; margin-left: auto; }
.faq-list details { border-top: 1px solid var(--ink); }
.faq-list details:last-child { border-bottom: 1px solid var(--ink); }
.faq-list summary { position: relative; padding: 23px 44px 23px 0; cursor: pointer; font-size: 1.08rem; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font-family: var(--display); font-size: 1.8rem; font-weight: 500; }
.faq-list details[open] summary::after { content: "-"; }
.faq-list details p { max-width: 760px; margin: -6px 0 24px; color: var(--ink-2); }

.final-cta { padding: 110px max(28px, calc((100vw - var(--max)) / 2)); background: var(--ink); color: var(--white); }
.final-cta p { margin: 0 0 16px; color: var(--lime); font-weight: 800; }
.final-cta h2 { max-width: 940px; margin-bottom: 36px; }
.site-footer { display: grid; grid-template-columns: 1fr repeat(5, auto); gap: 30px; align-items: center; padding: 30px max(28px, calc((100vw - var(--max)) / 2)); border-top: 1px solid rgba(246,242,234,.2); background: var(--ink); color: var(--paper); font-size: var(--text-xs); }
.site-footer p { margin: 0; color: rgba(246,242,234,.62); }
.site-footer > a:not(.brand) { color: var(--paper); font-weight: 700; }
.brand-footer { color: var(--paper); }

.legal-body { background: var(--paper); }
.legal-site-header { position: relative; top: auto; margin-top: 18px; }
.legal-page { padding: 94px max(28px, calc((100vw - 980px) / 2)) 120px; }
.legal-intro { max-width: 840px; padding-bottom: 64px; }
.legal-intro h1 { margin: 14px 0 24px; font-family: var(--display); font-size: 5.2rem; font-weight: 400; line-height: .95; text-transform: uppercase; }
.legal-intro > p:not(.eyebrow) { max-width: 720px; color: var(--ink-2); font-size: 1.12rem; }
.legal-intro time { display: block; margin-top: 26px; color: var(--muted); font-size: .76rem; font-weight: 700; }
.legal-content { border-bottom: 1px solid var(--ink); }
.legal-content section { display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 30px; padding: 38px 0; border-top: 1px solid var(--ink); }
.legal-content section > span { color: var(--conversion); font-size: .76rem; font-weight: 800; }
.legal-content h2 { margin: 0 0 12px; font-size: 1.45rem; }
.legal-content p { max-width: 760px; margin: 0 0 12px; color: var(--ink-2); }
.legal-content ul { max-width: 760px; margin: 0 0 16px; padding-left: 21px; }
.legal-content li { margin: 8px 0; }
.legal-content a { color: var(--ink); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.legal-source { margin-top: 58px; padding: 38px; border-left: 7px solid var(--ink); background: var(--lime); }
.legal-source strong { font-size: .76rem; text-transform: uppercase; }
.legal-source p { max-width: 720px; margin: 12px 0 20px; }
.legal-footer { grid-template-columns: 1fr auto auto auto; }

[data-reveal] { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  :root { --text-hero: 4.7rem; --text-2xl: 2.85rem; }
  .operation-signals { width: 270px; }
  .section-coral { grid-template-columns: 1fr 1fr; }
  .pilot-scope { grid-column: 1 / -1; border-top: 1px solid rgba(23,23,23,.5); border-left: 0; padding-top: 28px; padding-left: 0; columns: 2; }
  .pilot-scope h3, .pilot-scope > p { column-span: all; }
  .live-flow { gap: 54px; }
}

@media (max-width: 820px) {
  :root { --text-hero: 4rem; --text-2xl: 2.5rem; }
  .site-header { top: 12px; width: calc(100% - 24px); }
  .site-nav a:not(.nav-action) { display: none; }
  .hero { height: calc(100svh - 64px); min-height: 680px; }
  .hero-content { width: min(610px, calc(100vw - 56px)); margin-left: 28px; padding-bottom: 185px; }
  .hero-image { object-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(23,23,23,.96), rgba(23,23,23,.7) 68%, rgba(23,23,23,.28)); }
  .operation-signals { right: 20px; bottom: 20px; width: 260px; }
  .operation-signals .signal-message, .operation-signals .signal-return { transform: none; }
  .operation-signals .signal-message { display: none; }
  .facts-band { grid-template-columns: 1fr 1fr; padding: 0 20px; }
  .facts-band div { min-height: 96px; border-bottom: 1px solid var(--line); }
  .case-zero { grid-template-columns: 1fr; }
  .case-zero-main { padding: 72px 0; }
  .operator-note { padding: 58px 28px; }
  .section { padding: 88px 28px; }
  .section-heading { grid-template-columns: 1fr; gap: 8px; margin-bottom: 48px; }
  .section-heading > p:last-child { grid-column: 1; margin-top: 6px; }
  .journey-board { grid-template-columns: 1fr; border-bottom: 0; }
  .journey-stage { min-height: auto; padding: 22px 4px; border-bottom: 1px solid var(--line); }
  .journey-stage strong { margin-top: 10px; }
  .journey-board > i { display: none; }
  .truth-note { grid-template-columns: 1fr; gap: 14px; }
  .engine-list li { grid-template-columns: 52px 1fr; }
  .engine-list > li > strong { grid-column: 2; }
  .live-flow { grid-template-columns: 1fr; }
  .conversation-shell { max-width: 650px; box-shadow: 14px 14px 0 var(--sky); }
  .section-coral { grid-template-columns: 1fr; }
  .pilot-scope { grid-column: auto; columns: 1; }
  .section-lime { grid-template-columns: 1fr; }
  .diagnostic-copy { position: static; }
  .fit-columns { gap: 36px; }
  .faq-list { margin-left: 0; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer p:nth-child(2) { display: none; }
  .legal-page { padding-top: 72px; }
  .legal-intro h1 { font-size: 4rem; }
}

@media (max-width: 560px) {
  :root { --text-hero: 3.05rem; --text-2xl: 2.05rem; --text-xl: 1.55rem; }
  .site-header { min-height: 58px; padding-left: 12px; }
  .brand-lockup { width: 150px; height: 34px; }
  .brand-lockup img { width: 150px; height: 150px; }
  .site-nav .nav-action { padding: 9px 11px; font-size: .72rem; }
  .hero { height: calc(100svh - 58px); min-height: 650px; align-items: end; }
  .hero-image { object-position: 68% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(23,23,23,.99) 0%, rgba(23,23,23,.8) 58%, rgba(23,23,23,.36) 100%); }
  .hero-content { width: auto; margin: 0; padding: 120px 20px 164px; }
  .hero-copy { margin-top: 18px; font-size: .96rem; line-height: 1.55; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 10px; margin-top: 22px; }
  .hero-microcopy { display: none; }
  .operation-signals { right: 16px; bottom: 14px; width: calc(100% - 32px); }
  .operation-signals .signal-message, .operation-signals .signal-return, .operation-signals > p { display: none; }
  .signal-card { margin: 0; }
  .facts-band { padding: 0; }
  .facts-band div { min-height: 100px; padding: 20px 16px; }
  .facts-band div:nth-child(odd) { border-left: 0; }
  .facts-band div:last-child { border-right: 0; }
  .case-zero-main { padding: 62px 0; }
  .case-zero-heading { display: block; }
  .case-zero-heading time { display: block; margin-top: 18px; }
  .case-zero-copy { margin: 24px 0 34px; }
  .build-ledger > div { grid-template-columns: 82px 1fr; gap: 12px; }
  .operator-note { margin-right: -20px; margin-left: -20px; padding: 54px 20px; }
  .section { padding: 72px 20px; }
  .section-heading { margin-bottom: 38px; }
  .truth-note strong { font-size: 1.45rem; }
  .engine-list li { grid-template-columns: 40px 1fr; gap: 14px; padding: 24px 0; }
  .engine-number { width: 34px; height: 34px; }
  .chat-body { min-height: 370px; padding: 16px; }
  .chat { width: 88%; }
  .flow-status { grid-template-columns: 1fr; }
  .flow-status > div { min-height: 56px; border-right: 0; border-bottom: 1px solid var(--line); }
  .flow-status > div:last-child { border-bottom: 0; }
  .pilot-price strong { font-size: 2.8rem; }
  .diagnostic-form { padding: 22px 16px; box-shadow: 9px 9px 0 rgba(23,23,23,.14); }
  .form-grid { grid-template-columns: 1fr; }
  .diagnostic-result { grid-template-columns: 1fr; padding: 24px 18px; }
  .score-ring { width: 120px; height: 120px; }
  .lead-capture-heading, .lead-form-grid { grid-template-columns: 1fr; }
  .lead-capture-heading { gap: 12px; }
  .lead-submit-row { align-items: flex-start; flex-direction: column; }
  .fit-columns { grid-template-columns: 1fr; }
  .final-cta { padding: 78px 20px; }
  .site-footer { grid-template-columns: 1fr; gap: 12px; padding: 26px 20px; }
  .legal-site-header { margin-top: 12px; }
  .legal-page { padding: 62px 20px 82px; }
  .legal-intro { padding-bottom: 48px; }
  .legal-intro h1 { font-size: 3.15rem; }
  .legal-content section { grid-template-columns: 42px minmax(0, 1fr); gap: 14px; padding: 30px 0; }
  .legal-source { margin-right: -20px; margin-left: -20px; padding: 32px 20px; }
}

@media (max-width: 370px) {
  :root { --text-hero: 2.65rem; }
  .hero-content { padding-bottom: 155px; }
  .facts-band span { font-size: .68rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
