/* ==========================================================================
   Framework NZ landing — rev 3 "Framework, unmistakably"
   Warm consumer product marketing in Framework's real brand language:
   white + warm cream, Framework orange, official wordmark and photography,
   Inter everywhere, mono only for tiny part-price data.
   ========================================================================== */

/* ---------- fonts ---------- */
@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/IBMPlexMono-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/IBMPlexMono-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --paper: #FFFFFF;
  --cream: #FAF5EF;
  --ink: #1B1B1B;
  --muted: #5D564E;
  --hairline: #EAE3D9;
  --brand: #F26322;        /* Framework orange — CTAs, affordances, marks */
  --brand-deep: #BB430A;   /* orange text / solid button bg on light, AA */
  --brand-tint: #FDEFE4;   /* soft orange wash for highlighted cells */
  --sage: #6E9B7B;         /* sustainability accents only (large numerals) */
  --sage-deep: #4F7A5C;    /* sage for small text, AA on white */
  --graphite: #1B1B1B;     /* footer + final CTA */
  --on-dark: #FBF8F3;
  --on-dark-muted: #B9B0A4;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 18px;
  --shadow: 0 1px 2px rgba(27, 27, 27, 0.05), 0 12px 32px -12px rgba(27, 27, 27, 0.12);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; }
img { display: block; }
a { color: var(--brand-deep); text-underline-offset: 3px; }
a:hover { color: var(--brand); }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 0.5em; font-weight: 650; }
p { margin: 0 0 1em; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 112px 0; }
.sec-light { background: var(--paper); color: var(--ink); }
.sec-dark { background: var(--cream); color: var(--ink); } /* warm cream alternation (class name kept for structure) */
.sec-dark a:not(.btn) { color: var(--brand-deep); }

.skip-link {
  position: absolute; left: 16px; top: -64px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 999px;
  text-decoration: none; transition: top 200ms var(--ease);
}
.skip-link:focus { top: 16px; color: #fff; }

.sr-live {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* friendly eyebrow (class name kept; no more mono dossier tags) */
.mono-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--muted); margin: 0 0 14px;
}
.mono-tag img { display: inline-block; border-radius: 2px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 24px; border-radius: 12px;
  font-weight: 600; font-size: 16px; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 250ms var(--ease), background 250ms var(--ease), border-color 250ms var(--ease), color 250ms var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-latch { background: var(--brand-deep); color: #fff; }
.btn-latch:hover { background: var(--brand); color: #fff; }
.btn-ghost { border-color: var(--hairline); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--brand-deep); color: #fff; }
.btn-ghost-sm {
  min-height: 44px; padding: 8px 16px; border-radius: 10px;
  border: 1.5px solid var(--hairline); background: var(--paper); color: var(--ink);
  font-weight: 600; font-size: 14px; cursor: pointer;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.btn-ghost-sm:hover { border-color: var(--brand); }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.head-bar {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand > img { display: block; }
.doc-id {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  background: var(--cream); border: 1px solid var(--hairline);
  border-radius: 999px; padding: 5px 12px;
}
.doc-id img { border-radius: 2px; }
.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.main-nav a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 8px 12px; border-radius: 10px;
  color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 550;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.main-nav a:hover { background: var(--cream); color: var(--brand-deep); }
.head-cta {
  background: var(--brand-deep); color: #fff !important;
  padding: 8px 18px !important; margin-left: 8px;
}
.head-cta:hover { background: var(--brand); }
.menu-toggle {
  display: none; margin-left: auto; min-height: 44px; min-width: 44px;
  border: 1.5px solid var(--hairline); border-radius: 10px; background: var(--paper);
  font-weight: 600; cursor: pointer;
}

/* ---------- hero ---------- */
.hero { padding: 88px 0 96px; border-bottom: 1px solid var(--hairline); }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 5.2fr) minmax(0, 6fr);
  gap: 56px; align-items: center;
}
.hero-wordmark { width: 264px; height: auto; margin-bottom: 28px; }
.hero h1 { font-size: clamp(44px, 5.4vw, 76px); font-weight: 700; letter-spacing: -0.03em; }
.hero .hl { color: var(--brand); }
.lede { font-size: 20px; line-height: 1.55; color: var(--muted); max-width: 34em; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 32px; }
.hero-specs {
  display: grid; grid-template-columns: repeat(4, auto); gap: 8px 36px;
  margin: 0; padding: 20px 0 0; border-top: 1px solid var(--hairline);
}
.hero-specs dt { font-size: 13px; color: var(--muted); }
.hero-specs dd { margin: 2px 0 0; font-weight: 650; font-size: 16px; }

/* plates: warm media cards */
.plate {
  margin: 0; background: var(--paper);
  border: 1px solid var(--hairline); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.plate-media { background: var(--cream); }
.plate-media video, .plate-media img { display: block; width: 100%; }
.fig-cap {
  padding: 14px 20px; font-size: 14px; line-height: 1.5; color: var(--muted);
  border-top: 1px solid var(--hairline);
}
.video-toggle {
  position: absolute; right: 12px; top: 12px; z-index: 5;
  min-height: 36px; padding: 6px 14px; border-radius: 999px;
  border: none; background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 600; cursor: pointer;
}
.plate { position: relative; }

/* ---------- section headers ---------- */
.sec-rule {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 14px; margin-bottom: 40px;
  border-top: 2px solid var(--ink);
  font-size: 14px; font-weight: 650; letter-spacing: 0.01em;
}
.sec-rule span:last-child { color: var(--muted); font-weight: 550; }
.sec-head { max-width: 760px; margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(32px, 3.6vw, 52px); font-weight: 700; letter-spacing: -0.025em; }
.lead { font-size: 19px; line-height: 1.6; color: var(--muted); }

/* ---------- 01 docket ---------- */
.docket {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  counter-reset: doubt;
}
.docket li a {
  display: grid; grid-template-columns: 56px 1fr; grid-template-rows: auto auto auto;
  column-gap: 18px; padding: 26px 28px; height: 100%;
  background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius);
  text-decoration: none; color: var(--ink);
  transition: border-color 250ms var(--ease), box-shadow 250ms var(--ease), transform 250ms var(--ease);
}
.docket li a:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }
.d-num {
  grid-row: 1 / 4; font-size: 15px; font-weight: 700; color: var(--brand-deep);
  padding-top: 4px;
}
.d-q { font-size: 20px; font-weight: 650; letter-spacing: -0.01em; line-height: 1.25; }
.d-a { grid-column: 2; margin-top: 10px; color: var(--muted); font-size: 15.5px; line-height: 1.55; }
.d-go { grid-column: 2; margin-top: 14px; font-weight: 650; font-size: 15px; color: var(--brand-deep); }

/* ---------- 02 expansion card bay ---------- */
.bay-grid {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 40px; align-items: start;
}
.bay-plate { background: var(--paper); }
.chassis {
  margin: 28px; padding: 26px 24px;
  background: linear-gradient(180deg, #F2EEE7, #E9E4DA);
  border: 1px solid #DED6C8; border-radius: 14px;
}
.chassis-top, .chassis-bot {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 600; color: #6B6357;
}
.chassis-bot { margin-top: 16px; justify-content: center; gap: 14px; }
.latch-mark { width: 44px; height: 8px; border-radius: 4px; background: var(--brand); }
.slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 16px; }
.slot {
  min-height: 96px; padding: 8px; border-radius: 12px; cursor: pointer;
  border: 2px dashed #C9BFAE; background: rgba(255, 255, 255, 0.55);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  transition: border-color 250ms var(--ease), background 250ms var(--ease), transform 250ms var(--ease);
}
.slot:hover { border-color: var(--brand); }
.slot.filled { border: 2px solid var(--brand); background: var(--paper); }
.slot.filled img { border-radius: 6px; }
.slot-label { font-size: 12.5px; font-weight: 650; color: var(--ink); text-align: center; }
.slot-hint { font-size: 13px; color: #5D564E; }
.bay-controls { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.preset {
  min-height: 44px; padding: 9px 18px; border-radius: 999px;
  border: 1.5px solid var(--hairline); background: var(--paper);
  font-weight: 600; font-size: 14px; cursor: pointer;
  transition: border-color 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease);
}
.preset:hover { border-color: var(--brand); color: var(--brand-deep); }
.card-palette {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.card-palette button {
  width: 100%; display: grid; grid-template-columns: 64px 1fr auto; align-items: center;
  gap: 12px; padding: 10px 14px; min-height: 56px;
  background: var(--paper); border: 1.5px solid var(--hairline); border-radius: 12px;
  cursor: pointer; text-align: left;
  transition: border-color 200ms var(--ease), background 200ms var(--ease), transform 200ms var(--ease);
}
.card-palette button:hover { border-color: var(--brand); transform: translateY(-1px); }
.card-palette button[aria-pressed="true"] { border-color: var(--brand); background: var(--brand-tint); }
.card-palette img { border-radius: 6px; }
.card-name { font-weight: 600; font-size: 14.5px; }
.card-price { font-family: "IBM Plex Mono", monospace; font-size: 13px; font-weight: 500; color: var(--brand-deep); }
.bay-readout {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 18px; padding: 16px 20px;
  background: var(--paper); border: 1px solid var(--hairline); border-radius: 12px;
  font-size: 15px; color: var(--muted);
}
.bay-readout strong { font-size: 22px; color: var(--ink); letter-spacing: -0.01em; }

/* ---------- 03 repair / score / scrub ---------- */
.score-plate {
  display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center;
  padding: 44px 48px; margin-bottom: 64px;
  background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.score-big { display: flex; flex-direction: column; gap: 10px; }
.score-num { font-size: 96px; font-weight: 750; letter-spacing: -0.04em; line-height: 1; color: var(--brand); }
.score-den { font-size: 40px; color: var(--muted); letter-spacing: -0.02em; }
.score-cap { font-size: 15px; color: var(--muted); line-height: 1.5; }
.score-plate blockquote {
  margin: 0; font-size: 24px; line-height: 1.4; font-weight: 600; letter-spacing: -0.015em;
}
.score-plate cite { display: block; margin-top: 14px; font-size: 14px; font-style: normal; color: var(--muted); }

.scrub-grid {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 40px; align-items: start;
}
.scrub-stage { position: relative; background: var(--cream); }
.scrub-frame { width: 100%; }
.hotspot {
  position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%);
  border: none; background: none; padding: 0; cursor: pointer;
}
.hs-tag {
  display: inline-block; padding: 7px 12px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-family: "IBM Plex Mono", monospace; font-size: 12px; font-weight: 500; white-space: nowrap;
  box-shadow: 0 2px 10px rgba(27, 27, 27, 0.25);
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}
.hotspot:hover .hs-tag, .hotspot[aria-pressed="true"] .hs-tag { background: var(--brand-deep); transform: translateY(-2px); }
.scrub-stage.is-overview .hotspot .hs-tag { opacity: 0.55; }
.scrub-stage.is-overview .hotspot:hover .hs-tag { opacity: 1; }
.scrub-controls { margin-top: 20px; }
.scrub-controls label { display: block; margin-bottom: 10px; }
.scrub-stepnav { display: flex; gap: 10px; margin-top: 14px; }

input[type="range"] {
  width: 100%; height: 44px; appearance: none; -webkit-appearance: none; background: transparent; cursor: pointer;
  --fill: 0%;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, var(--brand) var(--fill), var(--hairline) var(--fill));
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 28px; height: 28px; margin-top: -11px;
  border-radius: 50%; background: var(--paper); border: 3px solid var(--brand-deep);
  box-shadow: 0 1px 6px rgba(27, 27, 27, 0.25);
}
input[type="range"]::-moz-range-track {
  height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, var(--brand) var(--fill), var(--hairline) var(--fill));
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--brand-deep);
}

.part-panel {
  padding: 28px 30px; background: var(--paper);
  border: 1px solid var(--hairline); border-radius: var(--radius); box-shadow: var(--shadow);
}
.part-tag {
  display: inline-block; padding: 5px 12px; margin-bottom: 14px;
  background: var(--brand-tint); color: var(--brand-deep);
  border-radius: 999px; font-size: 13px; font-weight: 650;
}
.part-panel h3 { font-size: 24px; letter-spacing: -0.02em; }
.part-panel .price { font-size: 20px; font-weight: 700; color: var(--brand-deep); margin-bottom: 8px; }
.part-panel .meta { color: var(--muted); font-size: 15.5px; }
.part-panel .time {
  display: inline-block; font-size: 13.5px; font-weight: 600; color: var(--muted);
  border-top: 1px solid var(--hairline); padding-top: 12px; margin-top: 4px;
}
.spec-table {
  width: 100%; margin-top: 24px; border-collapse: collapse;
  background: var(--paper); border: 1px solid var(--hairline); border-radius: 12px; overflow: hidden;
  font-size: 14.5px;
}
.spec-table caption {
  text-align: left; padding: 14px 18px 0; font-size: 13px; font-weight: 650; color: var(--muted);
}
.spec-table td { padding: 10px 18px; border-bottom: 1px solid var(--hairline); }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td:last-child { text-align: right; font-weight: 650; white-space: nowrap; }
.footnote { margin-top: 16px; font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* ---------- 04 timeline ---------- */
.timeline-track {
  display: grid; grid-template-columns: repeat(6, minmax(240px, 1fr));
  gap: 14px; overflow-x: auto; padding: 4px 4px 16px;
  scroll-snap-type: x proximity;
}
.t-stop {
  scroll-snap-align: start; text-align: left; cursor: pointer;
  padding: 24px 24px 28px; border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--hairline); border-top: 4px solid var(--hairline);
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 250ms var(--ease), box-shadow 250ms var(--ease), transform 250ms var(--ease);
}
.t-stop:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.t-stop[aria-current="true"] { border-top-color: var(--brand); box-shadow: var(--shadow); }
.t-year { font-size: 30px; font-weight: 750; letter-spacing: -0.03em; }
.t-gen { font-weight: 650; font-size: 15.5px; color: var(--brand-deep); }
.t-note { font-size: 14px; line-height: 1.55; color: var(--muted); }
.t-note strong { color: var(--ink); }
.timeline-hint { margin-top: 12px; }
.callout-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: 48px; padding: 32px 36px;
  background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius); box-shadow: var(--shadow);
}
.callout-strip p { margin: 0; font-size: 20px; line-height: 1.45; letter-spacing: -0.01em; max-width: 26em; }

/* ---------- 05 performance ---------- */
.perf-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 56px;
}
.stat-plate {
  padding: 28px 26px; background: var(--paper);
  border: 1px solid var(--hairline); border-radius: var(--radius);
}
.stat-num { font-size: 52px; font-weight: 750; letter-spacing: -0.04em; line-height: 1; color: var(--ink); }
.stat-unit { font-size: 24px; color: var(--brand-deep); margin-left: 2px; }
.stat-lbl { margin-top: 10px; font-weight: 650; font-size: 15.5px; line-height: 1.35; }
.stat-sub { margin-top: 8px; font-size: 13.5px; line-height: 1.55; color: var(--muted); }
.perf-split {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: 48px; align-items: center;
}
.perf-copy h3 { font-size: 28px; letter-spacing: -0.02em; }
.perf-copy p { color: var(--muted); }
.spec-list { margin: 20px 0 0; padding: 0; list-style: none; }
.spec-list li {
  padding: 12px 0 12px 30px; position: relative;
  border-top: 1px solid var(--hairline); font-size: 15.5px; line-height: 1.5;
}
.spec-list li::before {
  content: ""; position: absolute; left: 2px; top: 20px;
  width: 10px; height: 10px; border-radius: 3px; background: var(--brand);
}

/* ---------- 06 sustainability ---------- */
.sus-sec { background: var(--cream); }
.sus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sus-plate {
  padding: 28px 26px; background: var(--paper);
  border: 1px solid var(--hairline); border-radius: var(--radius);
}
.sus-num { font-size: 40px; font-weight: 750; letter-spacing: -0.03em; color: var(--sage); }
.sus-plate h3 { font-size: 17.5px; line-height: 1.3; margin-top: 12px; letter-spacing: -0.01em; }
.sus-plate p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ---------- 07 comparison ---------- */
.table-plate {
  background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.compare-table caption {
  text-align: left; padding: 18px 24px; font-size: 13.5px; color: var(--muted);
  border-bottom: 1px solid var(--hairline);
}
.compare-table th, .compare-table td {
  padding: 18px 24px; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--hairline); line-height: 1.5;
}
.compare-table thead th { font-size: 14px; letter-spacing: 0.02em; color: var(--muted); font-weight: 650; }
.compare-table tbody th[scope="row"] { font-weight: 650; width: 26%; }
.compare-table td.win { background: var(--brand-tint); }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: none; }
.eng-note {
  margin-top: 32px; padding: 32px 36px;
  background: var(--cream); border: 1px solid var(--hairline); border-radius: var(--radius);
}
.eng-note h3 { font-size: 20px; letter-spacing: -0.01em; }
.eng-note h3 .mono-tag { margin: 0 10px 0 0; color: var(--brand-deep); }
.eng-note ul { margin: 12px 0 0; padding-left: 22px; }
.eng-note li { margin-bottom: 10px; line-height: 1.6; color: var(--muted); }
.eng-note li strong { color: var(--ink); }

/* ---------- 08 TCO ---------- */
.tco-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 40px; align-items: start;
}
.tco-controls, .tco-result {
  background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px 34px;
}
.tco-field { margin-bottom: 26px; }
.tco-field label {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-weight: 600; font-size: 15px; margin-bottom: 6px;
}
.tco-field output { font-weight: 700; font-size: 17px; color: var(--brand-deep); white-space: nowrap; }
.tco-toggle { display: flex; gap: 12px; align-items: flex-start; }
.tco-toggle input { width: 22px; height: 22px; margin-top: 3px; accent-color: var(--brand-deep); }
.tco-toggle label { font-size: 14.5px; line-height: 1.5; color: var(--muted); }
.tco-bar { margin-bottom: 22px; }
.bar-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 15px; font-weight: 600; margin-bottom: 8px;
}
.bar-head strong { font-size: 20px; letter-spacing: -0.01em; }
.track { height: 18px; border-radius: 9px; background: var(--cream); border: 1px solid var(--hairline); overflow: hidden; }
.fill { height: 100%; border-radius: 9px; transition: width 350ms var(--ease); }
.fill.fw { background: var(--brand); }
.fill.sealed { background: #B7AE9F; }
.tco-verdict { font-size: 19px; line-height: 1.5; font-weight: 600; letter-spacing: -0.01em; }
.tco-verdict strong { color: var(--brand-deep); }
.tco-assumptions { font-size: 13px; line-height: 1.6; color: var(--muted); margin: 18px 0 0; border-top: 1px solid var(--hairline); padding-top: 16px; }

/* ---------- 09 press ---------- */
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.press-plate {
  margin: 0; padding: 30px 30px 26px;
  background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}
.press-plate:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.press-plate blockquote {
  margin: 0; font-size: 19px; line-height: 1.45; font-weight: 600; letter-spacing: -0.012em;
}
.press-plate blockquote::before {
  content: "“"; display: block; font-size: 48px; line-height: 0.6;
  color: var(--brand); margin-bottom: 10px; font-weight: 700;
}
.press-plate figcaption { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin-top: auto; }

/* ---------- 10 pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-plate {
  background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.price-pic { background: var(--cream); }
.price-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.price-body h3 { font-size: 22px; letter-spacing: -0.015em; }
.price-line { margin: 4px 0 6px; display: flex; align-items: baseline; gap: 8px; }
.p-from { font-size: 14px; color: var(--muted); }
.p-amount { font-size: 38px; font-weight: 750; letter-spacing: -0.03em; }
.p-cur { font-size: 14px; font-weight: 650; color: var(--muted); }
.p-avail { font-size: 13.5px; font-weight: 600; color: var(--sage-deep); margin-bottom: 14px; }
.price-body ul { margin: 0 0 22px; padding-left: 20px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.price-body .btn { margin-top: auto; align-self: flex-start; }
.nz-notes {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px;
}
.nz-note {
  padding: 24px 24px 22px; background: var(--cream);
  border: 1px solid var(--hairline); border-radius: var(--radius);
}
.nz-note h3 { font-size: 16px; display: flex; align-items: center; gap: 8px; letter-spacing: 0; }
.nz-note h3 img { border-radius: 2px; }
.nz-note p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* ---------- 11 FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item:first-of-type { border-top: 1px solid var(--hairline); }
.faq-q {
  width: 100%; display: grid; grid-template-columns: 64px 1fr 44px; align-items: center; gap: 16px;
  padding: 22px 8px; min-height: 44px; background: none; border: none; cursor: pointer; text-align: left;
  transition: color 200ms var(--ease);
}
.faq-q:hover .q-txt { color: var(--brand-deep); }
.q-idx { font-size: 14px; font-weight: 700; color: var(--brand-deep); }
.q-txt { font-size: 19px; font-weight: 650; letter-spacing: -0.012em; }
.chev {
  display: grid; place-items: center; width: 44px; height: 44px;
  font-size: 24px; font-weight: 400; color: var(--muted);
  transition: transform 300ms var(--ease);
}
.faq-q[aria-expanded="true"] .chev { transform: rotate(45deg); color: var(--brand-deep); }
.faq-a { padding: 0 8px 26px 80px; max-width: 70ch; color: var(--muted); font-size: 16px; line-height: 1.65; }
.faq-a p { margin: 0; }

/* ---------- 12 final CTA ---------- */
.final-cta {
  background: var(--graphite); color: var(--on-dark);
  text-align: center; padding: 128px 0;
}
.final-cta .mono-tag { color: var(--brand); justify-content: center; }
.final-cta h2 { font-size: clamp(34px, 4.2vw, 60px); font-weight: 700; letter-spacing: -0.025em; max-width: 16em; margin-left: auto; margin-right: auto; }
.final-cta .lead { color: var(--on-dark-muted); max-width: 40em; margin-left: auto; margin-right: auto; }
.final-cta .cta-row { justify-content: center; }
.final-cta .btn-ghost { border-color: rgba(251, 248, 243, 0.3); color: var(--on-dark); }
.final-cta .btn-ghost:hover { border-color: var(--on-dark); }

/* ---------- footer ---------- */
.site-foot {
  background: var(--graphite); color: var(--on-dark);
  border-top: 1px solid rgba(251, 248, 243, 0.12);
  padding: 72px 0 48px;
}
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(251, 248, 243, 0.12);
}
.foot-brand { width: 160px; height: auto; margin-bottom: 16px; }
.site-foot p { color: var(--on-dark-muted); font-size: 14.5px; max-width: 30em; }
.site-foot h2 {
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--on-dark-muted); margin-bottom: 14px; font-weight: 650;
}
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 8px; }
.site-foot a { color: var(--on-dark); text-decoration: none; font-size: 15px; }
.site-foot a:hover { color: var(--brand); }
.foot-fine { margin-top: 32px; font-size: 13px; line-height: 1.6; max-width: 76em; }

/* ---------- reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 320ms var(--ease), transform 320ms var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- scroll-driven scrub track (desktop, JS, full motion only) ---------- */
@media (min-width: 981px) and (prefers-reduced-motion: no-preference) {
  .js .scrub-scroll { height: 340vh; position: relative; }
  .js .scrub-sticky { position: sticky; top: 84px; }
}

/* ---------- tablet ---------- */
@media (max-width: 1100px) {
  .perf-grid, .sus-grid, .nz-notes { grid-template-columns: repeat(2, 1fr); }
  .press-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-track { grid-template-columns: repeat(6, minmax(220px, 1fr)); }
}

/* ---------- small desktop / large tablet: stack the two-column grids ---------- */
@media (max-width: 980px) {
  section { padding: 80px 0; }
  .hero-grid, .bay-grid, .scrub-grid, .perf-split, .tco-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 72px; }
  .hero-wordmark { width: 220px; }
  .score-plate { grid-template-columns: 1fr; gap: 28px; padding: 36px 32px; }
  .faq-a { padding-left: 8px; }
  .faq-q { grid-template-columns: 48px 1fr 44px; }
}

/* ---------- mobile ---------- */
@media (max-width: 760px) {
  body { font-size: 16px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; padding: 8px 16px; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--hairline);
    box-shadow: var(--shadow);
  }
  .main-nav ul { flex-direction: column; align-items: stretch; padding: 12px 16px 20px; gap: 2px; }
  .main-nav a { display: flex; }
  .head-cta { margin: 8px 0 0; justify-content: center; }
  .doc-id { display: none; }
  .docket { grid-template-columns: 1fr; }
  .perf-grid, .sus-grid, .press-grid, .price-grid, .nz-notes { grid-template-columns: 1fr; }
  .hero-specs { grid-template-columns: repeat(2, 1fr); }
  .slots { grid-template-columns: repeat(2, 1fr); }
  .card-palette { grid-template-columns: 1fr; }
  .callout-strip { padding: 26px 24px; }
  .sec-rule { flex-direction: column; gap: 4px; }
  .score-num { font-size: 72px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .final-cta { padding: 88px 0; }
}

/* ---------- reduced motion ---------- */
@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;
  }
  .js .reveal { opacity: 1; transform: none; }
}
