/* ============================================================
   Trailway Growth — static landing styles
   Ported from the React/inline-style prototype (lpv4-*.jsx + _ds bundle).
   Brand token vars come from _ds/.../tokens/*.css (linked in <head>).
   ============================================================ */

:root {
  --ease-settle: cubic-bezier(.22, 1, .36, 1);
  --ease-traverse: cubic-bezier(.65, 0, .35, 1);
  --dur-reveal: 480ms;
  --dur-traverse: 720ms;
  --ground: #f2f5f3;
  --grid-48:
    repeating-linear-gradient(0deg,  transparent 0, transparent 47px, rgba(228,239,234,0.14) 47px, rgba(228,239,234,0.14) 48px),
    repeating-linear-gradient(90deg, transparent 0, transparent 47px, rgba(228,239,234,0.14) 47px, rgba(228,239,234,0.14) 48px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { min-height: 100%; }
body {
  background: var(--ground);
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--tw-moss); text-decoration: none; }
img { max-width: 100%; }

/* ---- keyframes (the brand walking; no bounce) ---- */
@keyframes twRise  { from { opacity: 0; transform: translateY(14px); } }
@keyframes twStep  { from { opacity: 0; transform: translateX(18px); } }
@keyframes twHeroFocus { from { filter: blur(24px) saturate(1.35) brightness(1.1); transform: scale(1.06); } }
@keyframes twGridDrawM { from { -webkit-mask-position: 100% 0; mask-position: 100% 0; } to { -webkit-mask-position: 0% 0; mask-position: 0% 0; } }

/* ============================================================
   Primitives
   ============================================================ */
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 48px); }
.container.c-860  { max-width: 860px; }
.container.c-1180 { max-width: 1180px; }

.mono {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
}

/* SectionLabel — leading rule + mono caps */
.section-label {
  display: flex; align-items: center; gap: 24px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--tw-moss);
}
.section-label::before { content: ""; width: 26px; height: 1px; background: currentColor; flex: 0 0 auto; }

/* brand marks */
.canopy {
  display: inline-block;
  -webkit-mask: url("assets/logos/canopy.svg") center / contain no-repeat;
  mask: url("assets/logos/canopy.svg") center / contain no-repeat;
  background: currentColor;
}
.wordmark { font-family: var(--font-sans); font-weight: 300; letter-spacing: -0.03em; line-height: 1; text-transform: lowercase; white-space: nowrap; }
.logo-lockup { display: inline-flex; align-items: center; gap: 0.55em; }

/* SectionHeader */
.sec-head { max-width: 640px; }
.sec-head.center { max-width: 760px; margin: 0 auto; text-align: center; }
.sec-head .section-label { margin-bottom: 16px; }
.sec-head.center .section-label { display: inline-flex; }
.sec-head h2 {
  font-family: var(--font-sans); font-weight: 600;
  font-size: clamp(28px, 3.4vw, 42px); line-height: 1.08; letter-spacing: -0.03em;
  color: var(--text-strong); text-wrap: balance;
}
.sec-head p.lead {
  font-family: var(--font-sans); font-weight: 300;
  font-size: var(--fs-lead); line-height: var(--lh-lead); color: var(--text-body);
  margin-top: 18px; max-width: 620px; text-wrap: pretty;
}
.sec-head.center p.lead { margin-left: auto; margin-right: auto; }

/* Terrain-gradient text (key heading words filled with blurred tinted terrain) */
.terrain-text {
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, 210% auto;
  background-position: center, 50% 40%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--tw-moss);
  font-weight: 600;
  filter: saturate(1.12);
  padding-right: 0.04em;
}

/* Scroll reveal — progressive enhancement ONLY.
   Base state renders everything fully visible (no-JS, crawlers, first paint).
   The hide-then-reveal is scoped under `.js`, added to <html> when JS runs. */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--dur-reveal) var(--ease-settle), transform var(--dur-reveal) var(--ease-settle); transition-delay: var(--rd, 0ms); }
.js .reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Buttons — every button wears the signature trailcut curve
   (clip-path applied per-element in app.js via [data-trailcut]).
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 500; letter-spacing: -0.01em; line-height: 1;
  border-radius: var(--radius); cursor: pointer; white-space: nowrap; border: none;
  transition: filter var(--dur, 180ms) var(--ease-settle);
}
.btn:disabled { cursor: not-allowed; opacity: 0.45; }
.btn:hover:not(:disabled) { filter: brightness(0.93); }
.btn .btn-arrow { opacity: 0.85; }

/* terrain-fill button (blurred forest + moss multiply + dark veil) */
.btn-terrain {
  position: relative; overflow: hidden; isolation: isolate;
  gap: 9px; color: var(--tw-bone); border: 1px solid rgba(58,76,69,0.15);
}
.btn-terrain::before {
  content: ""; position: absolute; inset: -14%; z-index: -1;
  background:
    linear-gradient(rgba(58,76,69,0.22), rgba(58,76,69,0.22)),
    linear-gradient(var(--tw-moss), var(--tw-moss)),
    url("assets/imagery/forest.jpg") center / cover;
  background-blend-mode: normal, multiply, normal;
  filter: blur(6px) saturate(1.3) brightness(1.02);
}
.btn-outline { background: transparent; color: var(--tw-moss); border: 1.5px solid var(--tw-moss); }

/* sizes — terrain runs a touch tighter than solid; extra right padding clears the cut+arrow */
.btn-terrain.btn-sm { font-size: 13px; padding: 8px 24px 8px 16px; }
.btn-terrain.btn-md { font-size: 14px; padding: 11px 32px 11px 22px; }
.btn-terrain.btn-lg { font-size: 15px; padding: 14px 40px 14px 26px; }
.btn-outline.btn-sm { font-size: 13px; padding: 10px 30px 10px 22px; }
.btn-block { width: 100%; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242,245,243,0.62);
  border-bottom: 1px solid var(--tw-line);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: inline-flex; align-items: center; color: var(--tw-moss); }
.nav-logo .canopy { width: 27px; height: 27px; }
.nav-logo .wordmark { font-size: 22px; color: var(--tw-moss); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-body); transition: color 180ms linear; }
.nav-links a:hover { color: var(--tw-moss); }

/* ============================================================
   Hero — one DOM, two layouts (grid reflow at 820px)
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, clamp(440px, 45vw, 600px)) minmax(0, 1fr);
  grid-template-rows: 1fr auto auto 1fr auto;
  grid-template-areas:
    ".       form"
    "topline form"
    "lead    form"
    ".       form"
    "foot    form";
  min-height: calc(100vh - 64px);
  padding: 56px clamp(32px, 6vw, 76px);
  column-gap: clamp(32px, 5vw, 80px);
}
.hero-topline { grid-area: topline; }
.hero-lead { grid-area: lead; }
.hero-form  { grid-area: form; align-self: center; justify-self: end; width: clamp(440px, 37vw, 516px); position: relative; z-index: 2; margin-right: clamp(0px, calc(43vw - 536px), 120px); }
.hero-foot  { grid-area: foot; align-self: end; }

.hero-eyebrow { color: var(--tw-moss); font-size: 16px; }
.hero-h1 {
  font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(42px, 4.7vw, 60px); line-height: 1.06; letter-spacing: -0.035em;
  color: var(--tw-moss); margin-top: 24px; text-wrap: balance;
}
.hero-lead {
  font-family: var(--font-sans); font-weight: 300;
  font-size: var(--fs-lead); line-height: var(--lh-lead); color: var(--text-body);
  margin-top: 22px; max-width: 550px;
}
.hero-band-bg { display: none; }

/* desktop right terrain trailcut behind the form */
.hero-cut {
  position: absolute; top: 0; bottom: 0; right: 0; width: 44%; overflow: hidden; z-index: 0;
}
.hero-cut .terrain-img {
  position: absolute; inset: -6%;
  background: url("assets/imagery/forest.jpg") center / cover;
  filter: blur(9px) saturate(1.3) brightness(1.08);
  animation: twHeroFocus var(--dur-traverse) var(--ease-settle) both;
}
.hero-cut .terrain-tint { position: absolute; inset: 0; background: var(--tw-moss); mix-blend-mode: multiply; opacity: 0.4; }
.hero-cut .terrain-grid { position: absolute; inset: 0; background-image: var(--grid-48); }

/* ProofCards (hero foot) */
.proof-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 540px; }
.proof-card {
  position: relative; overflow: hidden; background: var(--tw-white);
  border: 1px solid var(--tw-line); border-radius: var(--radius); box-shadow: var(--shadow-card);
  padding: 19px 20px 21px;
}
.proof-card .pc-metric { font-family: var(--font-mono); font-size: 25px; font-weight: 500; letter-spacing: -0.02em; color: var(--tw-moss); line-height: 1; }
.proof-card .pc-state { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 9px; }
.card-strip { position: absolute; left: 0; right: 0; bottom: 0; height: 7px; overflow: hidden; }
.card-strip .cs-img { position: absolute; inset: -14px; background-size: cover; background-position: center; filter: blur(5px) saturate(1.5) brightness(1.15); }
.card-strip .cs-tint { position: absolute; inset: 0; mix-blend-mode: multiply; opacity: 0.55; }

/* ---- the waitlist card (ApplyCard) ---- */
.wl-card {
  background: var(--tw-moss); border-radius: var(--radius-lg);
  border: 1px solid rgba(58,76,69,0.25); box-shadow: var(--shadow-raised);
  padding: 32px 38px 34px;
}
.wl-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 7px; }
.wl-head .mono { font-size: 10px; color: var(--tw-bone-60); }
.wl-title { font-family: var(--font-sans); font-weight: 600; font-size: 25px; letter-spacing: -0.02em; line-height: 1.1; color: var(--tw-bone); margin-bottom: 22px; }
.wl-progress { display: flex; gap: 5px; margin-bottom: 24px; }
.wl-progress span { flex: 1; height: 3px; border-radius: 2px; background: var(--tw-bone); opacity: 0.28; transition: opacity 240ms var(--ease-settle); }
.wl-progress span.on { opacity: 1; }
.wl-field { min-height: 78px; }
.wl-card label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--tw-bone); margin-bottom: 8px; }
.wl-card input, .wl-card select {
  width: 100%; font-family: var(--font-sans); font-size: 15px; color: var(--tw-dark);
  background: var(--tw-white); border: 1.5px solid var(--tw-sage); border-radius: var(--radius);
  padding: 14px 16px; outline: none;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.wl-card select { -webkit-appearance: none; appearance: none; padding-right: 40px; cursor: pointer; }
.wl-card input:focus, .wl-card select:focus { border-color: var(--tw-moss); box-shadow: var(--ring-focus); }
.wl-select-wrap { position: relative; }
.wl-select-wrap::after { content: "\25BE"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--tw-sage); font-size: 12px; pointer-events: none; }
.wl-submit { margin-top: 18px; }
.wl-err { font-family: var(--font-sans); font-size: 12.5px; line-height: 1.5; color: #f4c9b6; margin-top: 12px; text-wrap: pretty; }
.wl-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }
.wl-back { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--tw-bone); background: none; border: none; padding: 0; cursor: pointer; opacity: 0.82; }
.wl-back:disabled { opacity: 0.4; cursor: default; }
.wl-review { font-size: 10px; color: var(--tw-bone-60); }
.wl-step { animation: twStep var(--dur-reveal) var(--ease-settle) both; }
.wl-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--tw-bone); border: 1px solid var(--tw-bone-60); border-radius: var(--radius-sm); padding: 6px 10px 4px; margin-bottom: 16px; }
.wl-badge .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--tw-bone); display: inline-block; }
.wl-done p { font-family: var(--font-sans); font-size: var(--fs-body); line-height: var(--lh-body); color: var(--tw-bone-82); }
[hidden] { display: none !important; }

/* ============================================================
   ProblemBand
   ============================================================ */
.problem { position: relative; overflow: hidden; background: var(--tw-moss); color: var(--tw-bone); }
.problem-inner { display: flex; align-items: stretch; min-height: clamp(460px, 60vw, 640px); }
.problem-left { flex: 1 1 46%; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.problem-bone { position: absolute; top: 0; bottom: 0; left: 0; width: 100%; background: var(--tw-bone); }
.problem-bars-wrap { position: relative; z-index: 1; width: 100%; padding: 0 clamp(44px, 5vw, 84px) 0 clamp(24px, 4vw, 56px); }
.problem-copy { flex: 1 1 54%; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(56px, 7vw, 100px) clamp(40px, 6vw, 90px) clamp(56px, 7vw, 100px) clamp(44px, 5vw, 76px); }
.problem-copy h2, .problem-copy p { width: 100%; }
.problem-copy h2 { font-family: var(--font-sans); font-weight: 600; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.12; letter-spacing: -0.03em; color: var(--tw-bone); text-wrap: balance; }
.problem-copy p { font-family: var(--font-sans); font-weight: 300; font-size: var(--fs-lead); line-height: var(--lh-lead); color: var(--tw-bone-82); text-wrap: pretty; }
.problem-copy p.p1 { margin-top: 22px; }
.problem-copy p.p2 { margin-top: 14px; }
.problem-copy em { font-style: italic; color: var(--tw-bone-60); }

.cost-bars { max-width: 430px; margin: 0 auto; }
.cost-bars .cb-row { display: flex; align-items: flex-end; justify-content: center; gap: clamp(18px, 2.2vw, 30px); height: clamp(220px, 28vw, 280px); }
.cb-col { width: clamp(64px, 7.5vw, 90px); height: 100%; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; }
.cb-col .cb-value { font-family: var(--font-mono); font-weight: 600; font-size: clamp(12px, 1.3vw, 15px); letter-spacing: -0.02em; color: var(--tw-dark); margin-bottom: 8px; white-space: nowrap; }
.cb-col .cb-bar { position: relative; overflow: hidden; width: 100%; border-radius: 3px 3px 0 0; height: 0; transition: height var(--dur-traverse) var(--ease-traverse); }
.cost-bars.on .cb-bar { height: var(--h); }
.cb-bar .cb-terrain-img { position: absolute; inset: -25%; background: url("assets/imagery/forest.jpg") center / cover; filter: blur(4px) saturate(1.45) brightness(1.12); }
.cb-bar .cb-terrain-tint { position: absolute; inset: 0; background: var(--tw-moss); mix-blend-mode: multiply; opacity: 0.55; }
.cb-bar .cb-terrain-grid { position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg,transparent 0,transparent 21px,rgba(228,239,234,0.18) 21px,rgba(228,239,234,0.18) 22px),repeating-linear-gradient(90deg,transparent 0,transparent 21px,rgba(228,239,234,0.18) 21px,rgba(228,239,234,0.18) 22px); }
.cost-bars .cb-labels { display: flex; justify-content: center; gap: clamp(18px, 2.2vw, 30px); margin-top: 14px; }
.cb-labels .cb-label { width: clamp(64px, 7.5vw, 90px); text-align: center; font-family: var(--font-sans); font-weight: 300; font-size: 13px; line-height: 1.35; color: var(--text-muted); }

/* ============================================================
   RevealStatement
   ============================================================ */
.reveal-statement { background: var(--ground); padding: clamp(84px, 13vw, 168px) 0; }
.reveal-statement .rs-wrap { max-width: 1000px; }
.reveal-statement p { font-family: var(--font-sans); font-weight: 300; font-size: clamp(20px, 2.6vw, 34px); line-height: 1.36; letter-spacing: -0.02em; text-wrap: pretty; }
.reveal-statement p + p { margin-top: clamp(14px, 2vw, 26px); }
.reveal-statement .rs-word { color: rgb(58,76,69); transition: color 120ms linear; }
.js .reveal-statement .rs-word { color: rgb(176,195,188); }

/* ============================================================
   Divisions (The House)
   ============================================================ */
.divisions { background: var(--ground); scroll-margin-top: 64px; }
.division { overflow: hidden; }
.division.band-white { background: var(--tw-white); }
.division.band-ground { background: var(--ground); }
.division + .division { border-top: 1px solid var(--tw-line); }
.division-inner { display: flex; align-items: stretch; min-height: calc(100vh - 64px); }
.division.terrain-left  .division-inner { flex-direction: row-reverse; }
.division-content { flex: 1 1 59%; display: flex; align-items: center; justify-content: center; padding: clamp(56px, 7vw, 100px) clamp(32px, 5vw, 72px); }
.division-content > div { max-width: 540px; }
.division-terrain { flex: 1 1 41%; position: relative; overflow: hidden; min-height: clamp(460px, 60vh, 720px); }
.division-terrain .dt-img { position: absolute; inset: -12%; background-size: cover; background-position: center; filter: blur(9px) saturate(1.3) brightness(1.08); }
.division-terrain .dt-tint { position: absolute; inset: 0; mix-blend-mode: multiply; opacity: 0.5; }
.division-terrain .dt-veil { position: absolute; inset: 0; background: linear-gradient(150deg, rgba(58,76,69,0.20), rgba(58,76,69,0.04)); }
.division-terrain .dt-grid { position: absolute; inset: 0; background-image: var(--grid-48); }
.division-lockup { position: absolute; bottom: clamp(26px, 3vw, 40px); z-index: 2; font-family: var(--font-sans); font-size: 24px; letter-spacing: -0.03em; line-height: 1; text-transform: lowercase; color: var(--tw-bone); text-shadow: 0 1px 14px rgba(31,41,37,0.55); }
.division.terrain-right .division-lockup { right: clamp(30px, 3.4vw, 52px); }
.division.terrain-left  .division-lockup { left: clamp(30px, 3.4vw, 52px); }
.division-lockup .w1 { font-weight: 300; }
.division-lockup .w2 { font-weight: 200; }

/* ---- Desktop sticky-stack + mirrored (zig-zag) trailcuts — restores OG lpv4 behavior.
   Each division pins under the 64px nav and the next slides up OVER it. The section
   z-indexes are trapped inside the .divisions stacking context so the stack can't paint
   over .proof (z-index:1) that follows. The terrain-left rows (brands, outbound) mirror
   their terrain + cut via scaleX(-1) so the curve LEAN alternates down the stack (opposite
   the terrain-right rows). Because the flip mirrors the whole terrain, the lockup is
   counter-flipped so its wordmark stays readable and keeps hugging the outer (left) edge. */
@media (min-width: 861px) {
  .divisions { position: relative; z-index: 0; }
  .division { position: sticky; top: 64px; min-height: calc(100vh - 64px); }
  /* hold each pinned division for 40vh of scroll before the next slides over it;
     the pinned panel fills the viewport exactly, so the runway gap never paints */
  .division + .division { margin-top: 40vh; }
  .division:nth-of-type(1) { z-index: 1; }
  .division:nth-of-type(2) { z-index: 2; }
  .division:nth-of-type(3) { z-index: 3; }
  .division:nth-of-type(4) { z-index: 4; }
  .division.terrain-left .division-terrain { transform: scaleX(-1); }
  .division.terrain-left .division-lockup { transform: scaleX(-1); left: auto; right: clamp(30px, 3.4vw, 52px); }
}

.role-eyebrow { display: flex; align-items: center; gap: 13px; }
.role-eyebrow .re-n { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); }
.role-eyebrow .re-rule { width: 26px; height: 1px; }
.role-eyebrow .re-role { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.division h2.sec-title { font-family: var(--font-sans); font-weight: 600; font-size: clamp(26px, 3vw, 40px); letter-spacing: -0.03em; line-height: 1.1; color: var(--text-strong); text-wrap: balance; margin-top: 20px; }
.division p.sec-body { font-family: var(--font-sans); font-weight: 300; font-size: var(--fs-lead); line-height: var(--lh-lead); color: var(--text-body); margin-top: 16px; max-width: 500px; text-wrap: pretty; }
.offer-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin-top: 26px; }
.offer-list .offer { display: flex; align-items: center; gap: 11px; }
.offer-list .offer .dot { width: 7px; height: 7px; border-radius: 2px; flex: 0 0 auto; }
.offer-list .offer span.txt { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.02em; color: var(--text-body); }

.captain-card { margin-top: 30px; width: 360px; max-width: 100%; position: relative; overflow: hidden; background: var(--tw-white); border: 1px solid var(--tw-line); border-radius: var(--radius-lg); box-shadow: var(--shadow-raised); padding: 15px 18px 17px; }
.captain-card .cc-row { display: flex; gap: 13px; align-items: flex-start; }
.captain-card img { width: 48px; height: 48px; border-radius: var(--radius); object-fit: cover; flex: 0 0 auto; display: block; }
.captain-card .cc-name { font-family: var(--font-sans); font-weight: 600; font-size: 14.5px; letter-spacing: -0.01em; color: var(--text-strong); }
.captain-card .cc-title { font-family: var(--font-sans); font-weight: 300; font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.captain-card .cc-quote { font-family: var(--font-sans); font-weight: 300; font-style: italic; font-size: 13px; line-height: 1.4; color: var(--tw-dark); margin-top: 9px; text-wrap: pretty; }

/* ============================================================
   ProofSection (TrailwayOS)
   ============================================================ */
.proof { position: relative; z-index: 1; background: var(--ground); padding: clamp(72px, 9vw, 120px) 0; scroll-margin-top: 64px; }
.proof-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.os-header { max-width: 620px; }
.os-lockup { font-family: var(--font-sans); font-size: 30px; letter-spacing: -0.02em; line-height: 1; display: inline-flex; align-items: baseline; }
.os-lockup .os-tw { font-weight: 500; color: var(--tw-dark); }
.os-rainbow { background-image: linear-gradient(96deg, var(--tw-moss) 0%, var(--tw-brands) 18%, var(--tw-promotion) 38%, var(--tw-outbound) 60%, var(--tw-sales) 80%, var(--tw-capital) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.os-header h2 { font-family: var(--font-sans); font-weight: 600; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.08; letter-spacing: -0.03em; color: var(--text-strong); margin-top: 18px; text-wrap: balance; }
.os-header p { font-family: var(--font-sans); font-weight: 300; font-size: var(--fs-lead); line-height: var(--lh-lead); color: var(--text-body); margin-top: 16px; text-wrap: pretty; }
.os-points { margin-top: clamp(28px, 3.5vw, 44px); display: flex; flex-direction: column; gap: 4px; }
.os-point { text-align: left; background: none; border: none; cursor: pointer; padding: 14px 0 14px 20px; border-left: 2px solid var(--tw-line); transition: border-color 280ms linear, opacity 280ms linear; opacity: 0.4; }
.os-point.on { opacity: 1; border-left-color: var(--tw-moss); }
.os-point .op-h { font-family: var(--font-sans); font-weight: 600; font-size: clamp(17px, 1.8vw, 20px); letter-spacing: -0.01em; color: var(--text-strong); }
.os-point .op-p-wrap { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 320ms var(--ease-settle), opacity 260ms linear; }
.os-point.on .op-p-wrap { max-height: 160px; opacity: 1; }
.os-point .op-p { font-family: var(--font-sans); font-weight: 300; font-size: 15.5px; line-height: 1.55; color: var(--text-body); margin-top: 10px; text-wrap: pretty; }
.proof-right { position: relative; min-height: 58vh; display: flex; align-items: center; }
.os-visual { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); opacity: 0; pointer-events: none; transition: opacity 380ms var(--ease-settle), transform 420ms var(--ease-settle); }
.os-visual.on { opacity: 1; pointer-events: auto; transform: translateY(-50%); }
.os-visual:not(.on) { transform: translateY(calc(-50% + 14px)); }

/* Experiments table */
.exp-table { border: 1px solid var(--tw-line); border-radius: var(--radius-lg); overflow: hidden; background: var(--tw-white); box-shadow: var(--shadow-card); }
.exp-row { display: grid; grid-template-columns: 1.5fr 0.8fr 0.6fr 0.9fr; align-items: center; padding: 15px 22px; }
.exp-head { background: var(--tw-moss); color: var(--tw-bone); }
.exp-head span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.exp-body { border-top: 1px solid var(--tw-line); border-left: 3px solid var(--tw-moss); }
.exp-body.alt { background: rgba(61,122,106,0.045); }
.exp-body .e-ch { font-family: var(--font-sans); font-weight: 500; font-size: 15.5px; letter-spacing: -0.01em; color: var(--text-strong); }
.exp-body .e-st { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.exp-body .e-cac { font-family: var(--font-mono); font-size: 14px; color: var(--text-body); }
.exp-body .e-res { font-family: var(--font-mono); font-size: 13px; color: var(--text-muted); }
.exp-note { padding: 13px 22px; background: var(--tw-bone); border-top: 1px solid var(--tw-line); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.04em; color: var(--text-muted); }

/* Proof tiles */
.os-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.os-tile { position: relative; overflow: hidden; background: var(--tw-white); border: 1px solid var(--tw-line); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 18px 20px 22px; }
.os-tile .t-top { display: flex; align-items: center; gap: 8px; }
.os-tile .t-dot { width: 7px; height: 7px; border-radius: 2px; flex: 0 0 auto; }
.os-tile .t-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.os-tile .t-value { font-family: var(--font-mono); font-weight: 600; font-size: clamp(26px, 3vw, 34px); letter-spacing: -0.03em; color: var(--tw-moss); line-height: 1; margin-top: 12px; }
.os-tile .t-delta { font-family: var(--font-mono); font-size: 11.5px; color: var(--tw-moss); margin-top: 10px; }
.os-tile .card-strip { height: 6px; }

/* Surface mock */
.os-surface { border: 1px solid var(--tw-line); border-radius: var(--radius-lg); overflow: hidden; background: var(--tw-white); box-shadow: var(--shadow-card); }
.os-surface .s-bar { display: flex; align-items: center; justify-content: space-between; background: var(--tw-moss); padding: 13px 18px; }
.os-surface .s-live { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tw-bone-60); display: inline-flex; align-items: center; gap: 7px; }
.os-surface .s-live .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--tw-bone); display: inline-block; }
.os-surface .s-grid { display: grid; grid-template-columns: 128px 1fr; }
.os-surface .s-nav { border-right: 1px solid var(--tw-line); background: var(--ground); padding: 14px 0; }
.os-surface .s-nav-item { display: flex; align-items: center; gap: 9px; padding: 8px 16px; border-left: 2px solid transparent; }
.os-surface .s-nav-item.active { background: var(--tw-white); border-left-color: var(--tw-moss); }
.os-surface .s-nav-item .g { font-family: var(--font-mono); font-size: 13px; color: var(--text-faint); }
.os-surface .s-nav-item.active .g { color: var(--tw-moss); }
.os-surface .s-nav-item .l { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.os-surface .s-nav-item.active .l { color: var(--tw-dark); }
.os-surface .s-main { padding: 18px 20px; }
.os-surface .s-kpis { display: flex; gap: 10px; margin-bottom: 16px; }
.os-surface .s-kpi { flex: 1; border: 1px solid var(--tw-line); border-radius: var(--radius); padding: 10px 12px; border-top: 2px solid var(--tw-moss); }
.os-surface .s-kpi .k { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.os-surface .s-kpi .v { font-family: var(--font-mono); font-weight: 600; font-size: 17px; color: var(--tw-moss); letter-spacing: -0.02em; margin-top: 5px; }
.os-surface .s-ch { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--tw-line); }
.os-surface .s-ch:first-of-type { border-top: none; }
.os-surface .s-ch .name { font-family: var(--font-sans); font-weight: 500; font-size: 13.5px; color: var(--text-strong); }
.os-surface .s-ch .st { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ============================================================
   Cases slider
   ============================================================ */
.cases { background: var(--ground); padding: clamp(72px, 9vw, 120px) 0; scroll-margin-top: 64px; }
.cases-scroller { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding: 4px 0; }
.cases-scroller::-webkit-scrollbar { display: none; }
.case-slot { flex: 0 0 66%; scroll-snap-align: start; min-width: 0; }
.case-card { position: relative; overflow: hidden; height: 100%; background: var(--tw-white); border: 1px solid var(--tw-line); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: clamp(30px, 3.6vw, 52px) clamp(30px, 3.6vw, 52px) clamp(38px, 4vw, 56px); display: flex; flex-direction: column; }
.case-card .c-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.case-card .c-metric { font-family: var(--font-sans); font-weight: 600; font-size: clamp(24px, 2.8vw, 36px); letter-spacing: -0.03em; line-height: 1.08; }
.case-card .c-chip { font-family: var(--font-mono); font-size: 13px; color: var(--tw-moss); margin-top: 12px; }
.case-card .c-metric-wrap { margin-bottom: 20px; }
.case-card .c-setup { font-family: var(--font-sans); font-weight: 300; font-size: 15.5px; line-height: 1.6; color: var(--text-body); max-width: 620px; text-wrap: pretty; }
.case-card .c-quote { font-family: var(--font-sans); font-weight: 300; font-style: italic; line-height: 1.5; color: var(--tw-dark); max-width: 660px; text-wrap: pretty; }
.case-card .c-quote.big { font-size: clamp(20px, 2.2vw, 28px); letter-spacing: -0.01em; }
.case-card .c-quote.sm { font-size: clamp(16px, 1.5vw, 18px); margin-top: 16px; }
.case-card .c-body { font-family: var(--font-sans); font-weight: 300; font-size: clamp(19px, 2vw, 25px); line-height: 1.45; letter-spacing: -0.01em; color: var(--tw-dark); max-width: 660px; text-wrap: pretty; }
.case-card .c-stats { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--tw-line); }
.case-card .c-stats span { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text-body); }
.case-card .c-who { margin-top: auto; padding-top: 26px; display: flex; align-items: center; gap: 14px; }
.case-card .c-who img { width: 46px; height: 46px; border-radius: 999px; object-fit: cover; flex: 0 0 auto; display: block; }
.case-card .c-who .c-initials { width: 46px; height: 46px; border-radius: 999px; background: var(--tw-sage); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 600; font-size: 13px; color: var(--tw-dark); flex: 0 0 auto; }
.case-card .c-who .c-name { font-family: var(--font-sans); font-weight: 600; font-size: 16px; color: var(--text-strong); }
.case-card .c-who .c-context { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text-muted); margin-top: 3px; }
.case-card .card-strip { height: 7px; }
.case-card .card-strip .cs-tint { opacity: 0.6; }

.cases-controls { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.cases-dots { display: flex; align-items: center; gap: 8px; }
.cases-dots button { width: 8px; height: 8px; border-radius: 999px; border: none; padding: 0; cursor: pointer; background: var(--tw-sage); transition: width 240ms var(--ease-settle), background 200ms linear; }
.cases-dots button.on { width: 22px; background: var(--tw-moss); }
.cases-nav { display: flex; align-items: center; gap: 14px; }
.cases-nav .c-count { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.08em; }
.cases-arrows { display: flex; gap: 10px; }
.nav-arrow { width: 48px; height: 48px; border-radius: 999px; border: none; cursor: pointer; background: var(--tw-moss); color: var(--tw-bone); box-shadow: var(--shadow-card); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 19px; transition: opacity 180ms linear, filter 180ms linear; }
.nav-arrow:disabled { opacity: 0.3; cursor: default; }
.nav-arrow:hover:not(:disabled) { filter: brightness(0.92); }
.cases-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 26px; }
.cases-footer .cf-note { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.06em; }
.cases-head-wrap { margin-bottom: 0; }
.cases-slider-wrap { margin-top: clamp(28px, 3.5vw, 48px); }

/* ============================================================
   Pricing (three paths)
   ============================================================ */
.pricing { background: var(--ground); padding: clamp(72px, 9vw, 120px) 0; scroll-margin-top: 64px; }
.pricing-panel-wrap { margin-top: clamp(40px, 5vw, 60px); }
.pricing-panel { background: var(--tw-white); border: 1px solid var(--tw-line); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); overflow: hidden; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.tier { display: flex; flex-direction: column; }
.tier + .tier { border-left: 1px solid var(--tw-line); }
.tier-head { position: relative; overflow: hidden; padding: 16px 24px; min-height: 58px; display: flex; align-items: center; }
.tier-head .th-img { position: absolute; inset: -16px; background-size: cover; background-position: center; filter: blur(5px) saturate(1.5) brightness(1.12); }
.tier-head .th-tint { position: absolute; inset: 0; mix-blend-mode: multiply; opacity: 0.62; }
.tier-head .th-name { position: relative; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tw-bone); font-weight: 600; text-shadow: 0 1px 10px rgba(31,41,37,0.5); }
.tier-body { flex: 1; padding: clamp(24px, 2.8vw, 34px) clamp(24px, 2.8vw, 34px) clamp(28px, 3vw, 38px); display: flex; flex-direction: column; }
.tier-price { display: flex; align-items: baseline; gap: 7px; }
.tier-price .p { font-family: var(--font-mono); font-weight: 600; font-size: clamp(30px, 3.4vw, 44px); letter-spacing: -0.03em; line-height: 1; color: var(--tw-dark); }
.tier-price .per { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-muted); }
.tier-sprint { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 10px; }
.tier-sec { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--tw-line); }
.tier-sec.included { margin-top: 18px; }
.tier-sec .ts-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 11px; }
.tier-sec .ts-title { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.tier-sec .ts-pick { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.tier-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.tier-chips span { font-family: var(--font-mono); font-size: 13px; color: var(--tw-dark); background: rgba(58,76,69,0.05); border: 1px solid var(--tw-line); border-radius: 999px; padding: 6px 13px 5px; white-space: nowrap; }
.tier-inherit { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); margin-bottom: 9px; }
.tier-incl { display: grid; gap: 6px; }
.tier-incl .ti { display: flex; align-items: center; gap: 7px; }
.tier-incl .ti .ck { flex: 0 0 auto; width: 12px; height: 12px; border-radius: 999px; color: var(--tw-bone); display: inline-flex; align-items: center; justify-content: center; font-size: 7.5px; font-weight: 700; line-height: 1; opacity: 0.85; }
.tier-incl .ti span.x { font-family: var(--font-sans); font-size: 11px; color: var(--text-muted); }

/* Terrain report CTA */
.tr-cta { position: relative; overflow: hidden; margin-top: clamp(20px, 2.6vw, 28px); background: var(--tw-moss); border: 1px solid rgba(58,76,69,0.25); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.tr-cut { position: absolute; top: 0; bottom: 0; right: 0; width: 42%; overflow: hidden; }
.tr-cut .terrain-img { position: absolute; inset: -6%; background: url("assets/imagery/forest.jpg") center / cover; filter: blur(9px) saturate(1.3) brightness(1.08); }
.tr-cut .terrain-tint { position: absolute; inset: 0; background: var(--tw-moss); mix-blend-mode: multiply; opacity: 0.4; }
.tr-cut .terrain-grid { position: absolute; inset: 0; background-image: var(--grid-48); }
.tr-inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 28px 44px; align-items: center; justify-content: space-between; padding: clamp(30px, 3.6vw, 48px); }
.tr-copy { max-width: 520px; flex: 1 1 320px; }
.tr-eyebrow { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tw-bone-82); font-weight: 600; margin-bottom: 12px; }
.tr-copy h3 { font-family: var(--font-sans); font-weight: 600; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.025em; line-height: 1.12; color: var(--tw-bone); }
.tr-price-line { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.tr-price-line .strike { font-family: var(--font-mono); font-size: 18px; color: var(--tw-bone-60); text-decoration: line-through; letter-spacing: -0.02em; }
.tr-price-line .free { font-family: var(--font-mono); font-weight: 600; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--tw-bone); }
.tr-copy p.tr-body { font-family: var(--font-sans); font-weight: 300; font-size: var(--fs-lead); line-height: var(--lh-lead); color: var(--tw-bone-82); margin-top: 14px; text-wrap: pretty; }
.tr-guarantee { display: flex; flex-direction: column; gap: 7px; margin-top: 16px; }
.tr-guarantee .g { display: flex; align-items: flex-start; gap: 9px; font-family: var(--font-sans); font-weight: 300; font-size: 14px; line-height: 1.45; color: var(--tw-bone-82); text-wrap: pretty; }
.tr-guarantee .g .ck { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 1px; border-radius: 999px; background: var(--tw-bone); color: var(--tw-moss); display: inline-flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; }
.tr-cta-btn { margin-top: 26px; }

/* Terrain report mock */
.tr-mock { position: relative; width: clamp(244px, 26vw, 300px); flex: 0 0 auto; }
.tr-mock-inner { position: relative; background: var(--tw-white); border: 1px solid var(--tw-line); border-radius: var(--radius); box-shadow: var(--shadow-raised); overflow: hidden; }
.tr-mock .m-head { background: var(--tw-moss); padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
.tr-mock .m-head .m-wm { font-family: var(--font-sans); font-weight: 300; font-size: 15px; color: var(--tw-bone); letter-spacing: -0.01em; }
.tr-mock .m-head .m-tag { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tw-bone-60); }
.tr-mock .m-body { padding: 18px 18px 20px; }
.tr-mock .m-prep { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.tr-mock .m-title { font-family: var(--font-sans); font-weight: 600; font-size: 14px; letter-spacing: -0.02em; color: var(--tw-dark); margin-top: 12px; }
.tr-mock .m-chan { margin-top: 9px; }
.tr-mock .m-ch { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; border-top: 1px solid var(--tw-line); }
.tr-mock .m-ch:first-child { border-top: none; }
.tr-mock .m-ch .c { font-family: var(--font-sans); font-size: 11.5px; color: var(--text-body); }
.tr-mock .m-ch .v { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }
.tr-mock .m-cpl { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--tw-line); display: flex; align-items: baseline; justify-content: space-between; }
.tr-mock .m-cpl .k { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.tr-mock .m-cpl .v { font-family: var(--font-mono); font-weight: 600; font-size: 19px; letter-spacing: -0.02em; color: var(--tw-moss); }
.tr-mock .m-phase { font-family: var(--font-sans); font-weight: 600; font-size: 11px; color: var(--tw-dark); margin-top: 16px; }
.tr-mock .m-bars { margin-top: 8px; display: flex; flex-direction: column; gap: 5px; }
.tr-mock .m-bars span { height: 4px; background: var(--tw-sage); opacity: 0.5; border-radius: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--ground); padding: clamp(72px, 9vw, 120px) 0; scroll-margin-top: 64px; }
.faq-list { margin-top: clamp(36px, 4vw, 52px); border-bottom: 1px solid var(--tw-line); }
.faq-item { border-top: 1px solid var(--tw-line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: none; border: none; cursor: pointer; text-align: left; padding: 24px 4px; }
.faq-q .q-txt { font-family: var(--font-sans); font-weight: 500; font-size: clamp(17px, 1.8vw, 20px); letter-spacing: -0.01em; color: var(--text-strong); }
.faq-q .q-plus { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 999px; border: 1px solid var(--tw-line); display: flex; align-items: center; justify-content: center; color: var(--tw-moss); font-family: var(--font-mono); font-size: 16px; transition: transform 180ms var(--ease); }
.faq-item.open .q-plus { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 320ms var(--ease-settle); }
.faq-a p { font-family: var(--font-sans); font-weight: 300; font-size: var(--fs-lead); line-height: var(--lh-lead); color: var(--text-body); padding: 0 44px 26px 4px; max-width: 760px; text-wrap: pretty; }

/* ============================================================
   FinalCTA
   ============================================================ */
.final-cta { position: relative; overflow: hidden; background: var(--tw-moss); color: var(--tw-bone); }
.final-cut { position: absolute; top: 0; bottom: 0; right: 0; width: 40%; overflow: hidden; }
.final-cut .terrain-img { position: absolute; inset: -6%; background: url("assets/imagery/forest.jpg") center / cover; filter: blur(9px) saturate(1.3) brightness(1.08); }
.final-cut .terrain-tint { position: absolute; inset: 0; background: var(--tw-moss); mix-blend-mode: multiply; opacity: 0.4; }
.final-cut .terrain-grid { position: absolute; inset: 0; background-image: var(--grid-48); }
.final-inner { position: relative; z-index: 1; padding: clamp(72px, 10vw, 132px) clamp(24px, 5vw, 48px); }
.final-inner .fc-box { max-width: 620px; }
.final-inner .section-label { color: var(--tw-bone); }
.final-inner h2 { font-family: var(--font-sans); font-weight: 300; font-size: clamp(34px, 5vw, 60px); line-height: 1.04; letter-spacing: -0.035em; color: var(--tw-bone); margin-top: 20px; text-wrap: balance; }
.final-inner .fc-btn { margin-top: 40px; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--tw-moss); color: var(--tw-bone); }
.footer-inner { padding: clamp(40px, 5vw, 60px) clamp(24px, 5vw, 48px) 34px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 24px 48px; align-items: flex-end; justify-content: space-between; }
.footer-brand { max-width: 440px; color: var(--tw-bone); }
.footer-brand .logo-lockup .canopy { width: 30px; height: 30px; }
.footer-brand .logo-lockup .wordmark { font-size: 26px; color: var(--tw-bone); }
.footer-brand p { font-family: var(--font-sans); font-weight: 300; font-size: 15px; line-height: 1.6; color: var(--tw-bone-82); margin-top: 16px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.02em; color: var(--tw-bone-82); }
.footer-contact a { color: var(--tw-bone-82); }
.footer-bottom { margin-top: clamp(28px, 4vw, 40px); padding-top: 20px; border-top: 1px solid var(--tw-bone-16); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
.footer-bottom span { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--tw-bone-60); }

/* ============================================================
   Trail progress rail (desktop only)
   ============================================================ */
.trail-rail { position: fixed; right: clamp(18px, 2.2vw, 34px); top: 50%; transform: translateY(-50%); z-index: 40; display: flex; flex-direction: column; align-items: flex-end; gap: 22px; }
.trail-rail .rail-track { position: absolute; top: 5px; bottom: 5px; right: 5px; width: 1px; background: rgba(58,76,69,0.16); }
.trail-rail .rail-fill { position: absolute; top: 5px; right: 5px; width: 1px; height: 0; background: var(--tw-moss); }
.rail-stop { position: relative; z-index: 1; width: 10px; height: 10px; display: flex; align-items: center; justify-content: center; background: none; border: none; padding: 0; cursor: pointer; }
.rail-stop .rail-label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap; pointer-events: none; position: absolute; right: calc(100% + 13px); top: 50%; transform: translateY(-50%) translateX(6px); color: var(--text-muted); opacity: 0; transition: opacity 200ms var(--ease-settle), transform 200ms var(--ease-settle), color 200ms linear; }
.rail-stop:hover .rail-label, .rail-stop.on .rail-label { opacity: 1; transform: translateY(-50%); }
.rail-stop.on .rail-label { color: var(--tw-moss); }
.rail-stop .rail-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--tw-white); border: 1px solid var(--tw-sage); transition: width 200ms var(--ease-settle), height 200ms var(--ease-settle), background 200ms linear, box-shadow 200ms linear; }
.rail-stop.passed .rail-dot { background: var(--tw-moss); border: none; }
.rail-stop.on .rail-dot { width: 9px; height: 9px; box-shadow: 0 0 0 3px rgba(61,122,106,0.16); }

/* ============================================================
   Responsive — the 820px hero break + 900/860/760 section breaks
   ============================================================ */
@media (max-width: 1199px) { .trail-rail { display: none; } }

@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; gap: 40px; }
  .proof-right { min-height: 0; display: block; }
  .os-visual { position: relative; top: auto; transform: none !important; opacity: 0; height: 0; overflow: hidden; }
  .os-visual.on { opacity: 1; height: auto; overflow: visible; }
  .os-point .op-p-wrap { max-height: 160px; opacity: 1; }
}

@media (max-width: 860px) {
  .division-inner { flex-direction: column !important; min-height: 0; }
  .division-terrain { flex: none; width: 100%; min-height: 0; height: 152px; }
  .division-terrain[data-trailcut] { clip-path: none !important; -webkit-clip-path: none !important; }
  .division-lockup { font-size: 20px; left: 22px !important; right: auto !important; bottom: 16px; }
  .division-content { padding: clamp(28px, 6vw, 40px) clamp(22px, 6vw, 30px) clamp(38px, 8vw, 52px); }
  .division-content > div { max-width: 100%; }
  .offer-list { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  /* Hero → stacked, terrain band on top */
  .hero {
    display: block; padding: 0; min-height: 0;
  }
  .hero-cut { display: none; }
  .hero-topline {
    position: relative; overflow: hidden; min-height: clamp(320px, 44vh, 480px);
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 30px 22px 32px;
  }
  .hero-band-bg { display: block; position: absolute; inset: 0; }
  .hero-band-bg .terrain-img { position: absolute; inset: -6%; background: url("assets/imagery/forest.jpg") center / cover; filter: blur(9px) saturate(1.3) brightness(1.08); }
  .hero-band-bg .terrain-tint { position: absolute; inset: 0; background: var(--tw-moss); mix-blend-mode: multiply; opacity: 0.52; }
  .hero-band-bg .terrain-grid { position: absolute; inset: 0; background-image: var(--grid-48); }
  .hero-topline .hero-eyebrow, .hero-topline .hero-h1 { position: relative; z-index: 2; }
  .hero-eyebrow { color: var(--tw-bone); }
  .hero-h1 { font-size: clamp(42px, 11.25vw, 58px); line-height: 1.05; color: var(--tw-bone); margin-top: 0; text-shadow: 0 2px 30px rgba(31,41,37,0.5), 0 1px 4px rgba(31,41,37,0.4); }
  .hero-lead { max-width: none; margin: 0; padding: 26px 22px 0; }
  .hero-form { width: 100%; justify-self: auto; padding: 20px 22px 0; transform: none; }
  .hero-foot { padding: 20px 22px 40px; }
  .proof-cards { max-width: none; }
}

@media (max-width: 820px) {
  .problem-inner { display: block; }
  .problem-left { display: none; }
  .problem { padding: clamp(64px, 8vw, 104px) 0; }
  .problem-copy { display: block; padding: 0; }
  .problem-mobile-bars { margin-top: clamp(32px, 5vw, 44px); background: var(--tw-bone); border: 1px solid var(--tw-line); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: clamp(22px, 5vw, 30px); }
  .final-cut { display: none; }
}
.problem-mobile-bars { display: none; }
@media (max-width: 820px) { .problem-mobile-bars { display: block; } }

@media (max-width: 760px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .tier + .tier { border-left: none; border-top: 1px solid var(--tw-line); }
  .tr-cut { display: none; }
  .tr-mock { display: none; }
  .case-slot { flex-basis: 86%; }
  .nav-links { display: none; }
}

@media (max-width: 520px) {
  .proof-cards { grid-template-columns: 1fr 1fr 1fr; gap: 7px; }
  .os-tiles { grid-template-columns: 1fr 1fr; }
  .exp-row { grid-template-columns: 1.4fr 0.7fr 0.6fr 0.8fr; padding: 13px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-cut .terrain-img { animation: none !important; }
}
