/* =========================================================================
   SUBSTRATE — dark field build
   Reference language: beew.studio (inset rounded frames, corner-anchored hero
   with a real void, floating proof card, one saturated block at depth,
   near-zero scroll reveals, composition + material + hover finesse).
   Translated to Substrate's world: subsurface green-black instead of navy,
   warm cream light interruptions, one AMBER block instead of electric blue.
   ========================================================================= */

/* ---------------------------------------------------------------- tokens */
:root {
  /* dark world */
  --ink:        #060A08;   /* page ink — cool near-black with a green cast */
  --ink-2:      #0A110D;   /* instrument band */
  --panel:      #0E1712;   /* dark panel surface */
  --panel-2:    #121D16;

  /* light interruptions */
  --cream:      #F4EEE1;
  --cream-2:    #EDE4D3;
  --cream-3:    #F8F3E9;

  /* colour */
  --forest:     #16452E;
  --forest-2:   #1E5B3B;
  --soil:       #4A3628;
  --moss:       #7FA98A;
  --stone:      #9A9184;

  /* the one loud thing */
  --amber:      #E8901F;
  --amber-lit:  #F3AC46;

  /* text */
  --on-dark:      var(--cream);
  --on-dark-mute: #A7B4A2;
  --on-light:      var(--ink);
  --on-light-mute: #575E52;

  /* hairlines */
  --hair-d:  rgba(244, 238, 225, .13);
  --hair-d2: rgba(244, 238, 225, .22);
  --hair-l:  rgba(6, 10, 8, .14);
  --hair-l2: rgba(6, 10, 8, .26);

  /* radii — strict set, exactly like the reference */
  --r-xs: 8px;
  --r-sm: 10px;
  --r-md: 12px;
  --r-lg: 24px;
  --r-pill: 999px;

  --gut: 64px;
  --frame: 12px;

  --sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --display: 'Manrope', 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --label: 'DM Sans', 'Inter', ui-sans-serif, system-ui, sans-serif;

  --ease: cubic-bezier(.2, 0, 0, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

@media (max-width: 1180px) { :root { --gut: 40px; } }
@media (max-width: 760px)  { :root { --gut: 20px; --frame: 10px; } }

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;           /* native scroll — the reference hijacks nothing */
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--amber-lit);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: min(1312px, calc(100% - (var(--gut) * 2)));
  margin-inline: auto;
}

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--cream); color: var(--ink);
  padding: 10px 16px; border-radius: var(--r-xs);
  font-size: 13px; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip:focus { top: 12px; }

/* ------------------------------------------------------------ typography */
.h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.14;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.17;
  letter-spacing: -.038em;
}
.h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -.03em;
}
.h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.lead  { font-size: 18px; line-height: 1.5; font-weight: 500; }
.body  { font-size: 16px; line-height: 1.5; }
.small { font-size: 14px; line-height: 1.5; }

/* the mono-free instrument voice: DM Sans caps, wide tracking */
.eyebrow {
  font-family: var(--label);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow .glyph {
  width: 9px; height: 9px; flex: none;
  border: 1px solid currentColor;
  border-radius: 2px;
  transform: rotate(45deg);
}
.eyebrow--amber .glyph { background: var(--amber); border-color: var(--amber); }

.ui {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.num {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
}

/* tone helpers */
.t-dark  { color: var(--on-dark); }
.t-mute  { color: var(--on-dark-mute); }
.l-ink   { color: var(--on-light); }
.l-mute  { color: var(--on-light-mute); }

/* ---------------------------------------------------------------- pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background .24s var(--ease), border-color .24s var(--ease),
              color .24s var(--ease), transform .24s var(--ease);
}
.pill .arw {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.pill:hover .arw { transform: translateX(3px); }

.pill--ghost-d { border-color: var(--hair-d2); color: var(--on-dark); }
.pill--ghost-d:hover { border-color: var(--cream); background: rgba(244,238,225,.07); }

.pill--ghost-l { border-color: var(--hair-l2); color: var(--on-light); }
.pill--ghost-l:hover { border-color: var(--ink); background: rgba(6,10,8,.05); }

.pill--solid-l { background: var(--cream); color: var(--ink); }
.pill--solid-l:hover { background: #fff; transform: translateY(-2px); }

.pill--solid-d { background: var(--ink); color: var(--cream); }
.pill--solid-d:hover { background: var(--forest); }

/* the one primary — a dark pill with a slow moss wash moving through it,
   the reference's canvas-sheen CTA translated to CSS */
.pill--prime {
  position: relative;
  overflow: hidden;
  height: 56px;
  padding: 0 30px;
  background: #0C1610;
  color: var(--cream);
  border-color: rgba(127,169,138,.34);
  font-size: 13.5px;
}
.pill--prime::before {
  content: '';
  position: absolute;
  inset: -60% -10%;
  background:
    radial-gradient(64% 150% at 26% 50%, rgba(87,174,124,.55), transparent 74%),
    radial-gradient(48% 130% at 58% 50%, rgba(168,216,180,.28), transparent 78%);
  transform: translate3d(-42%, 0, 0);
  animation: sheen 7.5s linear infinite;
  pointer-events: none;
}
.pill--prime > * { position: relative; z-index: 1; }
.pill--prime:hover { border-color: rgba(168,216,180,.6); transform: translateY(-2px); }
@keyframes sheen {
  0%   { transform: translate3d(-46%, 0, 0); }
  100% { transform: translate3d(46%, 0, 0); }
}

.tag {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 15px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hair-d2);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--on-dark);
  transition: border-color .24s var(--ease), background .24s var(--ease);
}
.tag:hover { border-color: var(--cream); background: rgba(244,238,225,.06); }
.tag--dot { width: 34px; padding: 0; justify-content: center; }

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: var(--r-xs);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.chip--l { background: rgba(6,10,8,.07); color: var(--on-light); }
.chip--d { background: rgba(244,238,225,.1); color: var(--on-dark); }
.chip--amber { background: var(--amber); color: #16100A; font-weight: 600; }

/* icon button — the 42px circle beside the reference's VIEW CASE pill */
.iconbtn {
  width: 42px; height: 42px; flex: none;
  border-radius: var(--r-pill);
  display: grid; place-items: center;
  transition: background .24s var(--ease), transform .24s var(--ease), color .24s var(--ease);
}
.iconbtn svg { width: 16px; height: 16px; }
.iconbtn--l { background: var(--ink); color: var(--cream); }
.iconbtn--l:hover { background: var(--forest); transform: translateY(-2px); }
.iconbtn--d { background: var(--cream); color: var(--ink); }
.iconbtn--d:hover { background: var(--amber); transform: translateY(-2px); }

/* =============================================================== header */
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  will-change: transform;
  transition: transform .46s var(--ease), height .34s var(--ease);
}
.hdr__inner {
  width: min(1392px, calc(100% - 24px));
  margin-inline: auto;
  height: 52px;
  padding: 0 4px 0 12px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid transparent;
  transition: background .34s var(--ease), border-color .34s var(--ease),
              box-shadow .34s var(--ease), width .34s var(--ease),
              padding .34s var(--ease);
}

/* condensed: the whole bar collapses into a floating capsule */
.hdr.is-condensed { height: 62px; }
.hdr.is-condensed .hdr__inner {
  width: min(1080px, calc(100% - 24px));
  background: #0B120D;
  border-color: var(--hair-d);
  box-shadow: 0 14px 34px rgba(0,0,0,.46);
  padding: 0 6px 0 18px;
}
.hdr.is-condensed .nav__rail { border-color: transparent; background: transparent; }
.hdr.is-hidden { transform: translate3d(0, -128%, 0); }

.mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.045em;
  color: var(--cream);
}
.mark__glyph {
  width: 22px; height: 22px; flex: none;
  transition: transform .38s var(--ease);
}
.mark:hover .mark__glyph { transform: translateY(-2px) rotate(-4deg); }

.nav__rail {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 42px;
  padding: 0 8px;
  border-radius: var(--r-md);
  border: 1px solid var(--hair-d);
  background: rgba(244,238,225,.03);
  transition: border-color .34s var(--ease), background .34s var(--ease);
}
.nav__link {
  position: relative;
  padding: 0 14px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--on-dark-mute);
  transition: color .22s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .26s var(--ease);
}
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-current { color: var(--cream); }

.badge {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--amber);
  color: #16100A;
  border-radius: 3px;
  padding: 2px 4px 1px;
  transform: translateY(-7px);
}

.hdr__right { display: flex; justify-content: flex-end; align-items: center; gap: 8px; }

/* header load-in — animation, not transition, so the condense transitions
   above stay intact */
.hdr .mark, .hdr .nav__rail, .hdr__right {
  animation: dropIn .82s var(--ease-out) both;
}
.hdr .nav__rail { animation-delay: .08s; }
.hdr__right { animation-delay: .14s; }
@keyframes dropIn {
  from { opacity: 0; transform: translate3d(0, -10px, 0); }
  to   { opacity: 1; transform: none; }
}

.burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hair-d2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.burger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--cream);
  transition: transform .3s var(--ease);
}

/* mobile sheet */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  padding: 92px var(--gut) 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -14px, 0);
  transition: opacity .32s var(--ease), transform .38s var(--ease-out), visibility .32s;
}
.sheet.is-open { opacity: 1; visibility: visible; transform: none; }
.sheet a:not(.sheet__cta) {
  font-family: var(--display);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -.03em;
  padding: 14px 0;
  border-bottom: 1px solid var(--hair-d);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.sheet a .n { font-family: var(--sans); font-size: 12px; letter-spacing: .1em; color: var(--on-dark-mute); }
.sheet__cta { margin-top: 30px; align-self: flex-start; }

/* burger becomes a cross while the sheet is open */
.burger.is-open span:first-child { transform: translateY(2.75px) rotate(45deg); }
.burger.is-open span:last-child  { transform: translateY(-2.75px) rotate(-45deg); }

/* ================================================================= hero */
.hero {
  position: relative;
  margin: 68px var(--frame) 0;
  height: clamp(600px, calc(100vh - 68px - var(--frame) - 72px), 800px);
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
}
/* deeper pages keep the frame but give the void less room */
.hero--short { height: clamp(540px, calc(100vh - 68px - var(--frame) - 170px), 700px); }
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  z-index: 0;
}
/* two very slow ambient drifts over the painted field — sub-perceptual */
.hero__drift {
  position: absolute; inset: -20%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(38% 44% at 72% 40%, rgba(146,214,168,.20), transparent 68%);
  animation: driftA 74s linear infinite alternate;
}
.hero__drift--b {
  background: radial-gradient(46% 40% at 42% 78%, rgba(22,69,46,.55), transparent 70%);
  animation: driftB 108s linear infinite alternate;
}
@keyframes driftA {
  from { transform: translate3d(-3.5%, 2%, 0) scale(1); }
  to   { transform: translate3d(4%, -3%, 0) scale(1.1); }
}
@keyframes driftB {
  from { transform: translate3d(3%, -2%, 0) scale(1.06); }
  to   { transform: translate3d(-4%, 3%, 0) scale(1); }
}

.hero__grid {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 88px var(--gut) 56px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0;
}

.hero__tags { display: flex; flex-wrap: wrap; gap: 8px; }

.hero__h1 { max-width: 15ch; margin-top: 30px; }
.hero__cta { display: flex; align-items: center; gap: 14px; margin-top: 44px; align-self: start; }

.hero__foot {
  display: grid;
  grid-template-columns: minmax(0, 480px) 1fr auto;
  align-items: end;
  gap: 28px;
}
.hero__lead { max-width: 46ch; color: rgba(244,238,225,.9); }

/* the floating proof card — the reference's single best cheap idea */
.proof {
  position: relative;
  width: 372px;
  padding: 4px;
  border-radius: var(--r-md);
  background: var(--cream-3);
  color: var(--ink);
  display: flex;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(2, 8, 5, .34);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.proof:hover { transform: translateY(-4px); box-shadow: 0 26px 54px rgba(2,8,5,.42); }
.proof__thumb {
  width: 116px; height: 116px; flex: none;
  border-radius: var(--r-xs);
  overflow: hidden;
  position: relative;
  background: var(--cream-2);
}
.proof__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 46%; }
.proof__thumb::after {
  content: '';
  position: absolute; inset: 45% 0 0 0;
  background: linear-gradient(180deg, rgba(6,10,8,0), rgba(6,10,8,.72));
}
.proof__figure {
  position: absolute; left: 10px; bottom: 8px; z-index: 1;
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.035em;
  color: var(--cream-3);
  text-shadow: 0 1px 10px rgba(6,10,8,.85);
}
.proof__body { padding: 12px 14px 12px 0; min-width: 0; }
.proof__kicker {
  font-family: var(--label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6C7466;
  display: flex; align-items: center; gap: 6px;
}
.proof__kicker::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--amber); flex: none;
}
.proof__title { display: block; font-size: 14px; font-weight: 700; letter-spacing: -.015em; margin-top: 7px; }
.proof__note { display: block; font-size: 13.5px; line-height: 1.45; color: var(--on-light-mute); margin-top: 4px; }

/* ============================================== evidence marquee band */
.ticker {
  margin: var(--frame) var(--frame) 0;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--panel);
  overflow: hidden;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
  animation: roll 132s linear infinite;
}
@keyframes roll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
.ticker__item {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 0 26px;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--on-dark-mute);
}
.ticker__item b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.02em;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.ticker__item i {
  font-style: normal;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6F7C6C;
}
.ticker__sep { color: var(--amber); font-size: 9px; padding: 0 2px; }

/* ============================================ work — the dealt deck */
.stack { position: relative; background: var(--ink); }

.stack__head {
  padding: 112px 0 60px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  gap: 40px;
  align-items: start;
}
.stack__head .h2 { max-width: 18ch; }
.stack__head > .eyebrow, .people__head > .eyebrow, .sec__head > .eyebrow,
.console__head > .eyebrow, .method__head > .eyebrow { padding-top: 9px; }
.stack__head > .pill { margin-top: 4px; }

.rail {
  position: sticky;
  top: 0;
  height: 0;
  z-index: 6;
  pointer-events: none;
}
.rail__inner {
  position: absolute;
  left: 22px;
  top: 50vh;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: color .3s var(--ease), opacity .32s var(--ease);
  color: var(--on-dark-mute);
  opacity: 0;
}
.rail__n {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  opacity: .38;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity .3s var(--ease), color .3s var(--ease);
}
.rail__n::before {
  content: '';
  width: 14px; height: 1px;
  background: currentColor;
  transform: scaleX(.42);
  transform-origin: left;
  transition: transform .34s var(--ease);
}
.rail__n.is-on { opacity: 1; color: var(--amber-lit); }
.rail__n.is-on::before { transform: scaleX(1); }
.rail[data-tone="light"] .rail__inner { color: var(--on-light-mute); }
.rail[data-tone="light"] .rail__n.is-on { color: #B36B0C; }

.panel {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 700px;
  overflow: hidden;
}
.panel--light { background: var(--cream-2); color: var(--on-light); }
.panel--light:nth-of-type(3) { background: var(--cream-3); }
.panel--dark { background: var(--panel); color: var(--on-dark); }
.panel--dark.alt { background: var(--ink-2); }

.panel__hair {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--gut);
  width: 1px;
  background: var(--hair-l);
}
.panel--dark .panel__hair { background: var(--hair-d); }

.panel__inner {
  position: relative;
  height: 100%;
  width: min(1312px, calc(100% - (var(--gut) * 2)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 40px;
}

.panel__left {
  padding: 72px 0 56px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.panel__client {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.panel__title { margin-top: 18px; max-width: 15ch; }
.panel__surface { margin-top: 16px; max-width: 40ch; font-size: 15.5px; line-height: 1.5; }
.panel--light .panel__surface { color: var(--on-light-mute); }
.panel--dark  .panel__surface { color: var(--on-dark-mute); }
.panel__result { margin-top: 22px; align-self: flex-start; }
.panel__actions { margin-top: 26px; display: flex; align-items: center; gap: 10px; }
.panel__stack { margin-top: auto; padding-top: 32px; display: flex; flex-wrap: wrap; gap: 6px; }
.panel__stack .chip { height: 26px; font-size: 11px; letter-spacing: .05em; }

/* artefact planes — bleeding off the right edge, clipped by the panel */
.panel__right { position: relative; min-width: 0; }
.plane {
  position: absolute;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(2, 8, 5, .28);
}
.panel--light .plane { box-shadow: 0 24px 56px rgba(6, 10, 8, .17); }
/* the artefact runs off the right edge of the viewport and is cropped by the
   bottom of the panel — never centred, never in a device mock */
.plane--img {
  top: 108px; left: 30px;
  width: calc(100% + var(--gut) + 66px);
  height: 620px;
}
.plane--img img { width: 100%; height: 100%; object-fit: cover; }
.plane--data {
  top: 322px; left: -34px; width: 372px;
  border-radius: var(--r-md);
  padding: 20px 22px 22px;
  box-shadow: 0 22px 48px rgba(2, 8, 5, .34);
}
.panel--light .plane--data { background: var(--cream-3); border: 1px solid var(--hair-l); }
.panel--dark  .plane--data { background: #0A120D; border: 1px solid var(--hair-d2); }

.plate__head {
  font-family: var(--label);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--hair-l);
}
.panel--dark .plate__head { border-bottom-color: var(--hair-d); color: var(--on-dark-mute); }
.panel--light .plate__head { color: var(--on-light-mute); }
.plate__head::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--amber); flex: none;
}
.plate__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  padding-top: 16px;
}
.plate__grid.is-single { grid-template-columns: 1fr; }
.plate__v { font-family: var(--display); font-weight: 700; font-size: 27px; letter-spacing: -.035em; font-variant-numeric: tabular-nums; }
.panel--dark .plate__v { color: var(--cream); }
.plate__l { font-size: 12.5px; line-height: 1.35; margin-top: 3px; }
.panel--light .plate__l { color: var(--on-light-mute); }
.panel--dark  .plate__l { color: var(--on-dark-mute); }
.plate__src {
  margin-top: 16px; padding-top: 12px;
  border-top: 1px solid var(--hair-l);
  font-size: 12px; line-height: 1.4; letter-spacing: .005em;
}
.panel--dark .plate__src { border-top-color: var(--hair-d); color: #6F7C6C; }
.panel--light .plate__src { color: #7C8377; }

/* ====================================== foundation — staggered four-up */
.found {
  background: var(--cream-2);
  color: var(--on-light);
  padding: 128px 0 132px;
  background-image: linear-gradient(180deg, var(--cream-2) 0%, var(--cream-3) 72%, var(--cream-3) 100%);
}
.sec__head {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.sec__head .h2 { max-width: 20ch; }
.sec__head .lead { margin-top: 22px; max-width: 62ch; }

.cards {
  width: min(1392px, calc(100% - 48px));
  margin: 78px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: start;
}
.card {
  position: relative;
  border-radius: var(--r-xs);
  overflow: hidden;
  height: 560px;
  display: flex;
  flex-direction: column;
  transition: transform .34s var(--ease), box-shadow .34s var(--ease);
}
.card:nth-child(even) { margin-top: -48px; }
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(6,10,8,.2); }

.card--cream { background: var(--cream-3); color: var(--on-light); }
.card--forest { background: var(--forest); color: var(--cream); }
.card--ink { background: var(--ink); color: var(--cream); }

.well {
  position: relative;
  height: 306px;
  overflow: hidden;
  flex: none;
}
.well__strata {
  position: absolute;
  inset: -42%;
  transform: rotate(-15deg) scale(1.35);
  transform-origin: center;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .52s var(--ease);
}
.card:hover .well__strata { transform: rotate(-11.5deg) scale(1.44); }
.well__strata span { display: block; width: 100%; border-radius: 2px; }

.card__plate { padding: 26px 24px 30px; display: flex; flex-direction: column; flex: 1; }
.card__kicker {
  font-family: var(--label);
  font-size: 10.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  opacity: .68;
}
.card__title { margin-top: 13px; font-size: 26px; }
.card__body { margin-top: 12px; font-size: 14px; line-height: 1.5; opacity: .78; }

/* ================================================= honesty breather */
.honesty {
  background: var(--ink);
  padding: 116px 0 120px;
}
.honesty__grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 96px;
  align-items: center;
}
.verticals {
  border: 1px solid var(--hair-d);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, #0C130F, #080D0A);
  padding: 26px 26px 12px;
}
.verticals__hd {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hair-d);
}
.verticals__n { font-family: var(--display); font-weight: 800; font-size: 58px; letter-spacing: -.05em; line-height: .9; }
.verticals__lb { font-size: 12.5px; line-height: 1.5; letter-spacing: .05em; text-transform: uppercase; color: var(--on-dark-mute); max-width: 26ch; }
.verticals li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--hair-d);
  font-size: 14.5px;
  transition: padding-left .28s var(--ease);
}
.verticals li:last-child { border-bottom: 0; }
.verticals li:hover { padding-left: 8px; }
.verticals li span:last-child { color: var(--on-dark-mute); font-size: 13px; text-align: right; }

.honesty__body { max-width: 54ch; }
.honesty .h2 { margin-top: 22px; max-width: 16ch; }
.honesty__lead { margin-top: 26px; font-size: 18px; font-weight: 600; }
.honesty__note { margin-top: 12px; color: var(--on-dark-mute); font-size: 16.5px; line-height: 1.55; }
.honesty__cta { margin-top: 32px; }

/* ==================================================== people track */
.people {
  background: var(--cream-3);
  color: var(--on-light);
  padding: 120px 0 124px;
  overflow: hidden;
}
.people__head {
  width: min(1312px, calc(100% - (var(--gut) * 2)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
}
.people__head { align-items: start; }
.people__head .h2 { max-width: 22ch; }
.pager { display: flex; gap: 8px; align-self: end; }
.pager button {
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hair-l2);
  display: grid; place-items: center;
  transition: background .24s var(--ease), color .24s var(--ease), border-color .24s var(--ease);
}
.pager button:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.pager button:disabled { opacity: .3; cursor: default; }
.pager button:disabled:hover { background: none; color: inherit; border-color: var(--hair-l2); }
.pager svg { width: 15px; height: 15px; }

.track {
  margin-top: 52px;
  padding-left: max(var(--gut), calc((100vw - 1312px) / 2));
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.track::-webkit-scrollbar { display: none; }
.pcard {
  flex: none;
  width: 400px;
  min-height: 430px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--hair-l);
  border-radius: var(--r-md);
  padding: 34px;
  display: flex;
  flex-direction: column;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}
.pcard:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(6,10,8,.13); }
.pcard__q { font-size: 30px; line-height: 1.2; letter-spacing: -.032em; }
.pcard__foot { margin-top: auto; padding-top: 26px; border-top: 1px solid var(--hair-l); }
.pcard__role { font-size: 13.5px; color: var(--on-light-mute); margin-top: 3px; }
.pcard__proof {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 26px;
  font-family: var(--label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
  color: var(--on-light-mute);
}
.pcard__proof::before {
  content: '';
  width: 6px; height: 6px; flex: none;
  background: var(--amber);
  transform: translateY(-1px) rotate(45deg);
}

/* the double-wide lead card, echoing the reference's first testimonial */
.pcard--lead {
  width: 628px;
  padding: 4px;
  flex-direction: row;
  gap: 0;
  background: var(--cream-3);
}
.pcard__tile {
  width: 292px; flex: none;
  border-radius: var(--r-sm);
  background: linear-gradient(165deg, var(--forest-2), var(--forest) 58%, #0E3220);
  position: relative;
  overflow: hidden;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--cream);
}
.pcard__tile::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 50% at 78% 12%, rgba(168,216,180,.28), transparent 70%),
    repeating-linear-gradient(180deg,
      rgba(244,238,225,.075) 0 1px,
      transparent 1px 13px);
}
.pcard__tile > * { position: relative; z-index: 1; }
.pcard__tile .n {
  position: absolute; top: 24px; left: 26px; z-index: 1;
  font-family: var(--label); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(244,238,225,.6);
}
.pcard--lead .pcard__side { flex: 1; padding: 30px 30px 30px 28px; display: flex; flex-direction: column; min-width: 0; }

/* ============================================ instrument console */
.console {
  background: var(--ink-2);
  padding: 118px 0 124px;
}
.console__head {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
.console__head .h2 { max-width: 17ch; }
.console__head .lead { margin-top: 20px; max-width: 58ch; color: var(--on-dark-mute); }

.rig {
  border: 1px solid var(--hair-d);
  border-radius: var(--r-md);
  background: #070C09;
  overflow: hidden;
}
.rig__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--hair-d);
  flex-wrap: wrap;
}
.rig__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  flex: none;
  animation: blip 2.4s var(--ease) infinite;
}
@keyframes blip { 0%,100% { opacity: 1; } 50% { opacity: .28; } }
.rig__lb {
  font-family: var(--label);
  font-size: 11px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase;
  color: var(--amber-lit);
}
.rig__note { font-size: 12.5px; color: #6F7C6C; letter-spacing: .01em; }
.rig__pass { margin-left: auto; font-size: 12px; color: var(--on-dark-mute); letter-spacing: .05em; text-transform: uppercase; font-variant-numeric: tabular-nums; }

.rig__grid { display: grid; grid-template-columns: 330px minmax(0, 1fr); }
.rig__stages { padding: 24px 24px 26px; border-right: 1px solid var(--hair-d); }
.stage { padding: 13px 0; }
.stage + .stage { border-top: 1px solid rgba(244,238,225,.06); }
.stage__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.stage__n { font-size: 13.5px; letter-spacing: .04em; color: var(--on-dark-mute); transition: color .3s var(--ease); }
.stage__pct { font-size: 12px; color: #61705F; font-variant-numeric: tabular-nums; }
.stage__bar { height: 2px; margin-top: 9px; background: rgba(244,238,225,.09); border-radius: 2px; overflow: hidden; }
.stage__fill { display: block; height: 100%; width: 0; background: var(--moss); border-radius: 2px; transition: width .5s var(--ease); }
.stage.is-active .stage__n { color: var(--cream); }
.stage.is-active .stage__fill { background: var(--amber); }
.stage.is-done .stage__n { color: var(--moss); }

.feed { padding: 8px 0 10px; max-height: 342px; overflow: hidden; }
.feed__row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 128px 92px;
  gap: 16px;
  align-items: baseline;
  padding: 11px 24px;
  font-size: 13px;
  border-bottom: 1px solid rgba(244,238,225,.05);
  animation: enter .34s var(--ease-out) both;
}
@keyframes enter { from { opacity: 0; transform: translate3d(0,-7px,0); } to { opacity: 1; transform: none; } }
.feed__ref { color: var(--amber-lit); letter-spacing: .05em; font-variant-numeric: tabular-nums; font-size: 12.5px; }
.feed__verb { color: var(--cream); letter-spacing: -.005em; }
.feed__seg { color: var(--on-dark-mute); font-size: 12.5px; text-transform: capitalize; }
.feed__val { text-align: right; color: var(--on-dark-mute); font-variant-numeric: tabular-nums; font-size: 12.5px; }
.feed__row:nth-child(n+6) { opacity: .68; }
.feed__row:nth-child(n+8) { opacity: .4; }

/* ===================================================== method rows */
.method {
  background: var(--panel);
  padding: 122px 0 128px;
}
.method__head {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 74px;
}
.method__head .h2 { max-width: 16ch; }
.method__head .lead { margin-top: 20px; max-width: 58ch; color: var(--on-dark-mute); }

.rows { border-top: 1px solid var(--hair-d); }
.row {
  position: relative;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 140px;
  gap: 40px;
  align-items: start;
  padding: 34px 0 36px;
  border-bottom: 1px solid var(--hair-d);
  transition: border-color .3s var(--ease);
}
.row::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .42s var(--ease);
}
.row:hover::after { transform: scaleX(1); }
.row__idx {
  font-size: 13px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase;
  color: var(--on-dark-mute);
  transition: color .3s var(--ease);
}
.row:hover .row__idx { color: var(--amber-lit); }
.row__mid { min-width: 0; transition: transform .34s var(--ease); }
.row:hover .row__mid { transform: translateX(3px); }
.row__meta { font-size: 12.5px; letter-spacing: .07em; text-transform: uppercase; color: #6F7C6C; }
.row__title { margin-top: 12px; max-width: 22ch; font-size: 26px; }
.row__body { margin-top: 12px; max-width: 62ch; color: var(--on-dark-mute); font-size: 15.5px; }
.row__keep { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.row__go {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
  padding-top: 4px;
}
.row__go svg { width: 13px; height: 13px; transition: transform .3s var(--ease); }
.row:hover .row__go svg { transform: translate(3px, -3px); }
.method__more { margin-top: 56px; display: flex; justify-content: center; }

/* static rows — same ruled device, no link affordance */
.row--static { cursor: default; }
.row--static::after { display: none; }
.row__claim {
  display: block;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -.015em;
  max-width: 66ch;
}
.row--static .row__go {
  font-size: 11.5px; letter-spacing: .1em; color: #6F7C6C; font-family: var(--label);
}
.row--static:hover .row__mid { transform: none; }
.row--static:hover .row__idx { color: var(--on-dark-mute); }

/* light zone variant of the ruled list */
.rows--light { border-top-color: var(--hair-l); }
.rows--light .row { border-bottom-color: var(--hair-l); }
.rows--light .row__idx { color: var(--on-light-mute); }
.rows--light .row__claim { color: var(--on-light); }
.rows--light .row--static .row__go { color: #7C8377; }
.rows--light .row__meta { color: #7C8377; }
.rows--light .row__body { color: var(--on-light-mute); }

/* the numeral stamped into a stage card's well */
.well__idx {
  position: absolute;
  left: 22px; top: 18px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .06em;
  color: rgba(244,238,225,.86);
  text-shadow: 0 1px 8px rgba(6,10,8,.6);
}
.card--cream .well__idx { color: rgba(6,10,8,.62); text-shadow: none; }

/* ================================================= evidence ledger */
.ledger { border-top: 1px solid var(--hair-d); }
.ledger__row {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 340px;
  gap: 40px;
  padding: 38px 0 40px;
  border-bottom: 1px solid var(--hair-d);
  align-items: start;
}
.ledger__mid { min-width: 0; }
.ledger__mid .row__title { margin-top: 0; }
.ledger__metrics { display: flex; flex-direction: column; gap: 14px; padding-top: 4px; }
.ledger__m {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  color: var(--on-dark-mute);
  padding-left: 14px;
  border-left: 1px solid var(--hair-d);
}
.ledger__m b {
  font-family: var(--display); font-weight: 700; font-size: 22px;
  letter-spacing: -.035em; color: var(--cream);
  font-variant-numeric: tabular-nums;
  display: block;
}
.ledger__m i {
  font-style: normal; display: block; margin-top: 5px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-lit);
}

/* ================================================ the one loud block */
.loud {
  background: var(--amber);
  color: #1A1206;
  padding: 136px 0 56px;
  text-align: center;
}
.loud .h2 { font-size: 50px; max-width: 17ch; margin-inline: auto; }
.loud__eyebrow { color: rgba(26,18,6,.62); }
.loud__body { margin: 24px auto 0; max-width: 54ch; font-size: 17.5px; line-height: 1.55; color: rgba(26,18,6,.82); }
.loud__cta { margin-top: 38px; display: inline-flex; }
.pill--loud { border-color: rgba(26,18,6,.4); color: #1A1206; height: 48px; }
.pill--loud:hover { background: #1A1206; color: var(--amber); border-color: #1A1206; }
.loud__marks {
  margin-top: 96px;
  padding-top: 34px;
  border-top: 1px solid rgba(26,18,6,.22);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.loud__marks span {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -.02em;
  color: rgba(26,18,6,.6);
  transition: color .26s var(--ease);
}
.loud__marks span:hover { color: #1A1206; }

/* ========================================================== footer */
.ftr { background: var(--ink); padding-top: 96px; overflow: hidden; }
.band { padding: 0 0 44px; }
.band + .band { border-top: 1px solid var(--hair-d); padding-top: 44px; }

.band--top { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 60px; align-items: start; }
.ftr__blurb { margin-top: 22px; max-width: 42ch; color: var(--on-dark-mute); font-size: 16px; }
.ftr__cta { margin-top: 28px; }
.cols { display: flex; gap: 72px; }
.cols h4 {
  font-family: var(--display); font-weight: 600; font-size: 18px; letter-spacing: -.02em;
  margin-bottom: 18px;
}
.cols li { margin-bottom: 10px; }
.cols a { font-size: 15px; color: var(--on-dark-mute); transition: color .2s var(--ease); }
.cols a:hover { color: var(--cream); }

.band--mid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 60px; align-items: start; }
.cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; max-width: 640px; }
.cloud .tag { font-size: 11.5px; height: 32px; padding: 0 13px; color: var(--on-dark-mute); }
.cloud .tag:hover { color: var(--cream); }

.band--base {
  display: flex; flex-wrap: wrap; gap: 20px 32px;
  align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--on-dark-mute);
}
.band--base .links { display: flex; gap: 8px; flex-wrap: wrap; }

.wordmark {
  margin-top: 26px;
  padding-inline: var(--gut);
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(78px, 17.4vw, 250px);
  line-height: .82;
  letter-spacing: -.05em;
  color: #17281D;
  user-select: none;
  white-space: nowrap;
  margin-bottom: -.2em;
  -webkit-mask-image: linear-gradient(180deg, #000 42%, rgba(0,0,0,.35) 100%);
          mask-image: linear-gradient(180deg, #000 42%, rgba(0,0,0,.35) 100%);
}

/* ================================================ load-in choreography */
/* animation (not transition) with fill-mode backwards, so once the entrance
   is done the element returns to its own styles and hover transforms work */
[data-in] { opacity: 0; }
.is-loaded [data-in] {
  opacity: 1;
  animation: riseIn .86s var(--ease-out) backwards;
  animation-delay: calc(var(--d, 0) * 1ms);
}
@keyframes riseIn {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to   { opacity: 1; transform: none; }
}

.hero__veil {
  position: absolute; inset: 0; z-index: 3;
  background: var(--ink);
  pointer-events: none;
  transition: opacity 1s var(--ease-out);
}
.is-loaded .hero__veil { opacity: 0; }

/* ==================================================== responsive */
@media (max-width: 1180px) {
  .h1 { font-size: 46px; }
  .h2 { font-size: 36px; }
  .h3 { font-size: 26px; }
  .stack__head, .sec__head, .console__head, .method__head, .people__head { grid-template-columns: 1fr; gap: 22px; }
  .stack__head, .people__head { align-items: start; }
  .row { grid-template-columns: 150px minmax(0,1fr) 110px; gap: 24px; }
  .ledger__row { grid-template-columns: 150px minmax(0,1fr) 250px; gap: 24px; }
  .row__claim { font-size: 17.5px; }
  .panel__inner { grid-template-columns: minmax(0, 340px) minmax(0, 1fr); gap: 24px; }
  .plane--img { top: 96px; left: 16px; width: calc(100% + var(--gut) + 40px); }
  .plane--data { top: 296px; left: -28px; width: 330px; }
  .honesty__grid { grid-template-columns: 1fr; gap: 46px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .card:nth-child(even) { margin-top: 0; }
  .card:nth-child(2) { margin-top: -48px; }
  .card:nth-child(4) { margin-top: -48px; }
  .track { padding-left: var(--gut); }
}

@media (max-width: 980px) {
  .nav__rail { display: none; }
  .hdr__right .pill { display: none; }
  .burger { display: flex; }
  .hdr__inner { grid-template-columns: 1fr auto; }
}

@media (max-width: 860px) {
  /* the deck stops being dealt and becomes a plain sequence — the honest
     mobile art direction, and what the reference's own logic implies */
  .panel { position: static; height: auto; }
  .rail { display: none; }
  .panel__inner { grid-template-columns: 1fr; gap: 0; }
  .panel__left { padding: 56px 0 32px; }
  /* planes leave absolute positioning and become a stacked pair: the artefact
     runs off the right edge, the evidence plate rides up over it */
  .panel__right { height: auto; margin: 0 calc(var(--gut) * -1) 0 0; padding-bottom: 56px; }
  .plane { position: static; }
  .plane--img {
    width: 100%; height: 268px;
    border-radius: var(--r-md) 0 0 var(--r-md);
  }
  .plane--data {
    width: calc(100% - var(--gut) - 18px);
    margin: -54px 0 0 14px;
    position: relative; top: auto; left: auto; z-index: 2;
  }
  .panel__stack { margin-top: 26px; }
}

@media (max-width: 760px) {
  .h1 { font-size: 34px; line-height: 1.15; letter-spacing: -.03em; }
  .h2 { font-size: 30px; letter-spacing: -.03em; }
  .h3 { font-size: 24px; }
  .lead { font-size: 16.5px; }

  .hero { height: auto; min-height: 0; margin-top: 62px; border-radius: 20px; }
  .hero__grid { padding: 34px var(--gut) 12px; grid-template-rows: none; }
  .hero__h1 { margin-top: 26px; max-width: none; }
  .hero__cta { margin-top: 28px; gap: 6px; }
  .pill--prime { height: 50px; padding: 0 20px; font-size: 12.5px; }
  .hero__cta .pill--ghost-d { padding: 0 12px; }
  .hero__foot { grid-template-columns: 1fr; gap: 26px; margin-top: 40px; }
  .hero__lead { font-size: 16px; max-width: none; }
  .proof { width: 100%; margin-bottom: 12px; }
  .proof__thumb { width: 96px; height: 96px; }

  .ticker__item { padding: 0 18px; font-size: 12px; }
  .stack__head { padding: 72px 0 32px; }
  .found, .honesty, .people, .console, .method { padding-top: 80px; padding-bottom: 84px; }
  .loud { padding: 88px 0 84px; }
  .loud .h2 { font-size: 32px; }
  .loud__marks { margin-top: 48px; gap: 12px 20px; justify-content: flex-start; }

  .cards { grid-template-columns: 1fr; width: calc(100% - (var(--gut) * 2)); gap: 12px; margin-top: 48px; }
  .card, .card:nth-child(n) { margin-top: 0; height: auto; }
  .well { height: 220px; }

  .track { gap: 8px; margin-top: 34px; }
  .pcard { width: 300px; min-height: 400px; padding: 24px; }
  .pcard--lead { width: 300px; flex-direction: column; padding: 4px; }
  .pcard__tile { width: 100%; height: 190px; }
  .pcard--lead .pcard__side { padding: 22px; }

  .rig__grid { grid-template-columns: 1fr; }
  .rig__stages { border-right: 0; border-bottom: 1px solid var(--hair-d); }
  .feed__row { grid-template-columns: 72px minmax(0,1fr) 84px; padding: 10px 18px; gap: 10px; font-size: 12.5px; }
  .feed__seg { display: none; }
  .feed { max-height: 300px; }

  .row { grid-template-columns: 1fr; gap: 6px; padding: 26px 0 28px; }
  .row__go { justify-self: start; margin-top: 12px; }
  .ledger__row { grid-template-columns: 1fr; gap: 14px; padding: 28px 0 30px; }
  .ledger__metrics { flex-direction: column; }
  .row__claim { font-size: 17px; }
  .method__head, .console__head { margin-bottom: 36px; }

  .band--top, .band--mid { grid-template-columns: 1fr; gap: 34px; }
  .cols { gap: 44px; }
  .ftr { padding-top: 64px; }
}

@media (max-width: 420px) {
  .cols { flex-direction: column; gap: 26px; }
}

/* ================================================== reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-in] { opacity: 1 !important; transform: none !important; }
  .hero__veil { opacity: 0 !important; }
  .ticker__track { animation: none; }
  .hero__drift { animation: none; }
}
