/* ==========================================================================
   OBZ Agency - site.css
   Ported from the Claude Design canvas comp (Main.dc.html / Mobile.dc.html /
   WhatWeBringE.dc.html), 1 Sep 2026.
   Token values are canonical from Site/Build-Handoff.md section 3.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* ink */
  --ink:        #0B0B0D;
  --ink-2:      #4A4A54;
  --ink-3:      #93939E;
  --ink-4:      #C2C2CC;

  /* ground */
  --bg:         #FFFFFF;
  --bg-2:       #FAFAFB;
  --rule:       #E3E3E8;

  /* dark sections */
  --dark:       #1A1A18;
  --dark-2:     #262624;
  --dark-card:  #2F2F2C;
  --dark-card-hi: #34342F;
  --dark-rule:  #5F5F57;
  --on-dark:    #F2F1EE;
  --on-dark-2:  #BFBBB2;
  --on-dark-3:  #ADA9A1;
  --on-dark-body: #B5B1A8;
  --num:        #95918A;

  /* accent - confirmed 1 Sep 2026 */
  --accent:     #2F4FFF;
  --accent-dark:#8CA4FF;
  --accent-hi:  #A8BBFF;
  --accent-bg:  #F5F7FF;
  --accent-brd: #C3CEFF;

  /* type */
  --sans: "Archivo", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --fs-body: 17px;

  /* rhythm
     --gut resolves to 64px at 1440 and 20px at 390, matching both comps. */
  --gut:  clamp(20px, 4.45vw, 64px);
  --sect: clamp(52px, 6.7vw, 96px);

  /* the strip */
  --band-h: clamp(350px, 36.5vw, 525px);
  --band-gap: 12px;
  --band-speed: 58s;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

/* overflow-x: clip rather than hidden. `hidden` turns the root into a scroll
   container, which silently disables position: sticky further down the page -
   it is what broke the campaign section's left column on the first pass. */
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-variation-settings: "wdth" 100;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3, p, figure, ul { margin: 0; padding: 0; }
ul { list-style: none; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #FFF; padding: 12px 18px;
  font-family: var(--mono); font-size: 12px;
}
.skip:focus { left: 12px; top: 12px; color: #FFF; }

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

/* --------------------------------------------------------------------------
   3. Type primitives
   -------------------------------------------------------------------------- */
.exp {
  font-variation-settings: "wdth" 122;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .96;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow--ink  { color: var(--ink); }
.eyebrow--dim  { color: var(--ink-4); }
.eyebrow--dark { color: var(--on-dark-3); }
.eyebrow--accent { color: var(--accent-dark); white-space: nowrap; }
/* The rail keeps the client names in ink; only the tail carries the accent. */
.eyebrow--more { color: var(--accent); }

.body { font-size: var(--fs-body); line-height: 1.62; color: var(--ink-2); }
.body--sm { font-size: 15px; }
.body--dark { color: var(--on-dark-2); }

.callout {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  line-height: 1.7;
  color: var(--accent);
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}
.callout--dark {
  color: var(--accent-dark);
  border-left-color: var(--accent-dark);
  max-width: 62ch;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: var(--ink);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 6px;
  transition: background .25s ease, color .25s ease;
}
.btn:hover { background: var(--accent); color: #FFFFFF; }
.btn svg { flex: none; }

.btn--light { background: var(--on-dark); color: #26262A; }
.btn--light:hover { background: #FFFFFF; color: #26262A; }

.btn--wide { padding-left: 52px; padding-right: 52px; }

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  height: clamp(640px, 59.6vw, 858px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__topfade {
  position: absolute; top: 0; left: 0; right: 0; height: 130px;
  z-index: 45; pointer-events: none;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255,255,255,.92) 45%, rgba(255,255,255,0) 100%);
}

.topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px;
  padding: 34px var(--gut);
}

.wordmark {
  font-variation-settings: "wdth" 112;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.018em;
  color: var(--ink);
}

.hero__stage {
  position: absolute; inset: 0; z-index: 40;
  display: flex; align-items: center;
  padding: 0 var(--gut);
  pointer-events: none;
}

.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg,
    #FFFFFF 0%, rgba(255,255,255,.98) 38%, rgba(255,255,255,.90) 54%, rgba(255,255,255,0) 74%);
}

.hero__copy {
  display: flex; flex-direction: column; gap: 24px;
  max-width: 660px;
  pointer-events: auto;
}

/* Hard line breaks are deliberate. The headline must not reflow - see
   Build-Handoff 4.1. Each line is nowrap and the size scales with the
   viewport so the lockup holds all the way down. */
.hero__h1 {
  font-size: clamp(42px, 4.31vw, 62px);
  white-space: nowrap;
}

.hero__cta-mobile { display: none; }

.runby {
  position: absolute;
  right: var(--gut);
  bottom: 96px;
  z-index: 46;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6E6E7A;
}

/* the strip ---------------------------------------------------------------- */
.band { position: relative; height: var(--band-h); overflow: hidden; }

.track {
  position: absolute; top: 0; left: 0;
  height: 100%;
  display: flex;
  gap: var(--band-gap);
  width: max-content;
  animation: marchL var(--band-speed) linear infinite;
  will-change: transform;
}
@keyframes marchL {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Tile widths come from the aspect ratio rather than fixed px, which is what
   lets the strip survive every width between the two comps. At a 525px band
   this resolves to 295px / 934px, and at 350px to 197px / 622px - the comp
   numbers, without a tablet special case. */
/* Colour, not grayscale. The comp had grayscale on these; Maz's R4 note is
   that the strip was always meant to run in full colour. */
.tile {
  height: 100%;
  flex: none;
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  background: #EAEAEE;
}
.tile img,
.tile video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.tile--v { aspect-ratio: 9 / 16; }
.tile--h { aspect-ratio: 16 / 9; }

.fmt {
  position: absolute; right: 10px; top: 10px; z-index: 3;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.5);
  padding: 2px 6px;
  border-radius: 3px;
  /* legible over colour footage, which the grayscale version did not need */
  background: rgba(0,0,0,.28);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

/* --------------------------------------------------------------------------
   6. Logo rail
   -------------------------------------------------------------------------- */
.rail {
  padding: 30px var(--gut) 34px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-2);
  display: flex; flex-direction: column; gap: 16px;
}
.rail__line { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.rail__label { white-space: nowrap; }
.rail__names {
  display: flex; align-items: center; gap: 26px;
  flex-wrap: wrap; flex-grow: 1;
}

/* --------------------------------------------------------------------------
   7. What We Bring  (canvas Option E)
   -------------------------------------------------------------------------- */
.wwb {
  padding: clamp(52px, 5vw, 72px) var(--gut);
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 56px;
  align-items: start;
}
.wwb__text { display: flex; flex-direction: column; gap: 20px; }
.wwb__h2 { font-size: clamp(29px, 3.2vw, 46px); }

.ftag {
  display: flex; align-items: center; gap: 16px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
  margin-top: 6px;
}
.ftag img {
  width: 72px; height: 72px; flex: none;
  object-fit: cover; border-radius: 4px;
}
.ftag__who {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink); font-weight: 500;
}
.ftag__cred {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .07em;
  line-height: 1.75; color: #5C5C66; margin-top: 5px;
}
.ftag__raise {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .07em;
  line-height: 1.75; color: var(--accent); margin-top: 8px;
}

.wwb__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: 200px 200px 230px;
  gap: 12px;
}
.cell {
  position: relative; overflow: hidden;
  border-radius: 8px; background: #EAEAEE;
}
/* Grayscale at rest, full colour on hover. This is the comp's behaviour and
   what Maz confirmed 1 Sep - the cells are the one place on the page where
   colour is the reward for the cursor, not the default state. */
.cell img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transition: filter .4s ease;
}
.cell:hover img { filter: grayscale(0) contrast(1); }
/* Grayscale hides this, but on hover the pale pink and the sky both swallow
   the caption. A short, light scrim keeps it readable in both states. */
.cell::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 66px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.34) 100%);
  pointer-events: none;
  z-index: 1;
}
.cell span {
  position: absolute; left: 11px; bottom: 10px; z-index: 2;
  font-family: var(--mono); font-size: 8.5px; letter-spacing: .14em;
  text-transform: uppercase; color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0,0,0,.55);
}
.cell--tall { grid-row: 1 / span 2; }
.cell--band { grid-column: 1 / span 2; }

/* --------------------------------------------------------------------------
   8. How We Work
   -------------------------------------------------------------------------- */
.hww {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  min-height: 624px;
  display: flex;
}
.hww__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(.88);
  opacity: .34;
}
.hww__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(26,26,24,.78) 0%, rgba(26,26,24,.55) 45%, rgba(26,26,24,.88) 100%);
}
.hww__inner {
  position: relative; z-index: 2;
  padding: var(--sect) var(--gut);
  display: flex; flex-direction: column; gap: 36px;
  width: 100%;
  justify-content: center;
}
.hww__head { display: flex; flex-direction: column; gap: 14px; }
.hww__h2 { font-size: clamp(30px, 3.47vw, 50px); color: var(--on-dark); }
.hww__sub { max-width: 74ch; }

.hww__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.glass {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  padding: 32px 28px 36px;
  display: flex; flex-direction: column; gap: 16px;
  background: rgba(20,20,18,.62);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.glass h3 { font-size: clamp(26px, 2.22vw, 32px); color: var(--on-dark); }
.num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .18em; color: var(--num);
}
.pill {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; align-self: flex-start;
  border: 1px solid var(--accent-dark); color: var(--accent-dark);
  padding: 4px 10px; border-radius: 999px;
}
.glass .body { font-size: 16px; }

/* --------------------------------------------------------------------------
   9. Audit overview
   -------------------------------------------------------------------------- */
.audit {
  padding: var(--sect) var(--gut);
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
}
.audit__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 52px;
}
.audit__headL { display: flex; flex-direction: column; gap: 16px; }
.audit__headR { display: flex; flex-direction: column; gap: 22px; }
.audit__h2 { font-size: clamp(30px, 3.75vw, 54px); }

.audit__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card {
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 12px;
  background: var(--bg);
  transition: border-color .25s ease, transform .25s ease;
}
.card:hover { border-color: var(--ink-4); transform: translateY(-2px); }
.card--accent { border-color: var(--accent-brd); background: var(--accent-bg); }
.card--accent:hover { border-color: var(--accent); }
.card h3 {
  font-size: clamp(20px, 1.6vw, 23px);
  font-variation-settings: "wdth" 112;
}
.tag {
  font-family: var(--mono); font-size: 9px; letter-spacing: .14em;
  text-transform: uppercase; align-self: flex-start;
  border: 1px solid currentColor; padding: 2px 7px; border-radius: 999px;
  color: var(--ink-3);
}
.tag--accent { color: var(--accent); }

/* --------------------------------------------------------------------------
   10. Audits for Every Audience (pricing)
   -------------------------------------------------------------------------- */
.tiers {
  padding: var(--sect) var(--gut);
  background: var(--dark-2);
  color: var(--on-dark);
}
.tiers__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 48px; margin-bottom: 48px; flex-wrap: wrap;
}
.tiers__headL {
  display: flex; flex-direction: column; gap: 16px; max-width: 640px;
}
.tiers__h2 { font-size: clamp(32px, 3.9vw, 56px); color: var(--on-dark); }
.tiers__sub { color: var(--on-dark-body); margin-top: 2px; }

.tiers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.tier {
  background: var(--dark-card);
  border: 1px solid var(--dark-rule);
  border-radius: 10px;
  padding: 30px 26px;
  display: flex; flex-direction: column; gap: 14px;
}
.tier__price { font-size: clamp(26px, 2.64vw, 38px); color: var(--on-dark); }
.tier__rule { height: 1px; background: var(--dark-rule); }
.tier .body { color: var(--on-dark-body); }

.tier--hi {
  background: var(--dark-card-hi);
  border: 2px solid var(--accent-hi);
  padding: 29px 25px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10),
    0 0 34px -6px rgba(168,187,255,.42),
    0 12px 40px -18px rgba(0,0,0,.7);
}
.tier--hi .tier__price { color: #FFFFFF; }
.tier--hi .body { color: #C6C2B9; }

.tiers__foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; margin-top: 44px; flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   11. Bring the campaign to life
   -------------------------------------------------------------------------- */
.camp {
  position: relative;
  /* clip, not hidden - see the note on html above. This section holds the
     sticky column, so it must not become a scroll container. */
  overflow: clip;
  padding: var(--sect) var(--gut);
}
/* Light fade, deliberately not the How We Work treatment - Build-Handoff 4.7 */
.camp__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 40%;
  /* Faded full colour, per R4. Opacity lifted slightly since dropping
     grayscale costs some apparent presence at .16. */
  filter: contrast(1.02) brightness(1.10);
  opacity: .20;
}
.camp__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    #FFFFFF 0%, rgba(255,255,255,.82) 30%, rgba(255,255,255,.80) 70%, #FFFFFF 100%);
}
.camp__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
/* Maz's requirement: the left column locks up so the white space does not
   open under it before "Full Team Augmentation". */
.camp__left {
  display: flex; flex-direction: column; gap: 18px;
  position: sticky;
  top: 96px;
  align-self: start;
}
.camp__h2 { font-size: clamp(29px, 3.47vw, 50px); }
.camp__list { display: flex; flex-direction: column; }

.lrow {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 28px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(11,11,13,.12);
  transition: padding-left .3s ease, color .3s ease;
}
.lrow:first-child { border-top: 1px solid var(--ink); }
.lrow:last-child  { border-bottom: 1px solid var(--ink); }
.lrow:hover { padding-left: 8px; }
.lrow:hover .lrow__title { color: var(--accent); }
.lrow__title {
  font-size: clamp(19px, 1.8vw, 26px);
  font-variation-settings: "wdth" 110;
  transition: color .3s ease;
}
.lrow__term { white-space: nowrap; }

/* --------------------------------------------------------------------------
   12. Book
   -------------------------------------------------------------------------- */
.book {
  padding: clamp(52px, 6.9vw, 100px) var(--gut);
  border-top: 1px solid var(--rule);
}
.book__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: start;
}
.book__left { display: flex; flex-direction: column; gap: 20px; }
.book__h2 { font-size: clamp(32px, 4.03vw, 58px); }
.book__body { max-width: 50ch; }
.book__direct {
  display: flex; flex-direction: column; gap: 8px; padding-top: 14px;
}
.book__email { font-size: 19px; font-weight: 600; }

/* Calendly's inline widget lives here. It renders its own iframe, so this is
   just the frame around it - min-width is Calendly's own floor. */
.book__embed {
  height: 440px;
  min-width: 320px;
  border-radius: 10px;
  border: 1px solid var(--rule);
  background: var(--bg-2);
  overflow: hidden;
}
.book__embed iframe { border-radius: 10px; }

/* --------------------------------------------------------------------------
   12b. Inner pages (privacy, and anything added later)
        Sub-pages reuse the tokens and the footer. The only new pieces are a
        static top bar and a single reading column.
   -------------------------------------------------------------------------- */
.subbar {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px;
  padding: 34px var(--gut);
  border-bottom: 1px solid var(--rule);
}

.legal {
  padding: clamp(48px, 6vw, 88px) var(--gut) clamp(64px, 7vw, 104px);
  max-width: calc(760px + 2 * 64px);
}
.legal__h1 { font-size: clamp(34px, 4.03vw, 58px); margin-bottom: 14px; }
.legal__meta { display: block; margin-bottom: 40px; }
.legal h2 {
  font-variation-settings: "wdth" 112;
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: clamp(20px, 1.7vw, 24px);
  margin: 40px 0 12px;
}
.legal p { font-size: var(--fs-body); line-height: 1.62; color: var(--ink-2); margin-bottom: 14px; }
.legal ul { margin: 0 0 14px 0; }
.legal li {
  font-size: var(--fs-body); line-height: 1.62; color: var(--ink-2);
  padding-left: 18px; position: relative; margin-bottom: 8px;
}
.legal li::before {
  content: ""; position: absolute; left: 0; top: .68em;
  width: 6px; height: 1px; background: var(--ink-4);
}
.legal a { color: var(--accent); }
.legal a:hover { text-decoration: underline; }

/* Placeholder body copy, so it is obvious at a glance what is not real yet. */
.legal--draft p, .legal--draft li { color: #6E6E7A; }
.legal__notice {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  line-height: 1.8; text-transform: uppercase;
  color: var(--accent);
  border: 1px dashed var(--accent-brd);
  background: var(--accent-bg);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 36px;
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.foot {
  padding: 38px var(--gut);
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
  gap: 30px; flex-wrap: wrap;
}
.foot .wordmark { font-size: 16px; }
.foot__links { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   14. Responsive
       Three collapse points, chosen in the build - the comp only fixed 1440
       and 390.
         1180  pricing 4-up cannot hold a $10,000 price and a paragraph
         1000  every two-column layout runs out of room at once
          720  mobile comp proper
   -------------------------------------------------------------------------- */

@media (max-width: 1180px) {
  .tiers__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wwb { gap: 40px; }
  .camp__inner { gap: 48px; }
  .book__inner { gap: 48px; }
  .audit__head { gap: 44px; }
}

@media (max-width: 1000px) {
  :root { --band-speed: 46s; --band-gap: 9px; }

  /* Hero: the headline moves above the strip and the section flows instead
     of being a fixed frame. Matches the 390 comp's stacking. */
  .hero {
    height: auto;
    padding: 20px 0 32px;
    gap: 24px;
    justify-content: flex-start;
  }
  .hero__topfade { display: none; }
  .hero__scrim   { display: none; }

  /* Stacking order: bar, headline, strip, credit, CTA. */
  .topbar          { position: static; padding: 0 var(--gut); order: 1; }
  .hero__stage     { position: static; display: block; padding: 0 var(--gut);
                     pointer-events: auto; order: 2; }
  .band            { order: 3; }
  .runby           { order: 4; }
  .hero__cta-mobile{ order: 5; display: block; padding: 0 var(--gut); }

  .hero__copy { max-width: none; gap: 14px; }
  .hero__h1 { font-size: clamp(28px, 8.7vw, 58px); }
  .hero__copy .btn { display: none; }     /* replaced by the full-width one */
  .hero__cta-mobile .btn {
    display: flex; justify-content: center;
    width: 100%; height: 52px; padding: 0;
  }
  .runby {
    position: static;
    align-self: flex-end;
    padding: 0 var(--gut);
    margin-top: -10px;
    font-size: 9.5px;
  }
  .tile { border-radius: 6px; }

  /* Two-column layouts all give way here */
  .wwb { grid-template-columns: 1fr; gap: 32px; }
  .wwb__grid { grid-template-rows: 170px 170px 200px; }
  .audit__head { grid-template-columns: 1fr; gap: 24px; align-items: start; margin-bottom: 36px; }
  .audit__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .camp__inner { grid-template-columns: 1fr; gap: 36px; }
  .camp__left { position: static; }       /* nothing to stick against */
  .book__inner { grid-template-columns: 1fr; gap: 36px; }
  .book__embed { height: 380px; }
  .hww { min-height: 0; }
  .hww__inner { gap: 26px; }
  .lrow { padding: 15px 0; gap: 16px; }
}

@media (max-width: 900px) {
  :root { --fs-body: 15px; }
  .body--sm { font-size: 14px; }
  .glass .body { font-size: 15px; }
}

@media (max-width: 720px) {
  .exp { font-variation-settings: "wdth" 120; line-height: .98; }
  .eyebrow { font-size: 10px; letter-spacing: .18em; }
  .audit__grid { grid-template-columns: 1fr; }
  .tiers__grid { grid-template-columns: 1fr; }
  .tiers__foot { margin-top: 30px; gap: 24px; }
  .tiers__foot .btn { width: 100%; justify-content: center; padding: 0 24px; height: 52px; }
  .tier { padding: 20px 18px; gap: 8px; }
  .tier--hi {
    padding: 19px 17px;
    box-shadow: 0 0 0 1px rgba(255,255,255,.10), 0 0 26px -6px rgba(168,187,255,.42);
  }
  .card { padding: 22px 20px; gap: 10px; }
  .glass { padding: 22px 20px 26px; gap: 12px; }
  .num { font-size: 10px; }
  .pill { font-size: 9px; padding: 3px 9px; }
  .callout { font-size: 11px; padding-left: 13px; }
  .book__embed { height: 300px; }
  .foot { flex-direction: column; align-items: flex-start; gap: 14px; padding: 26px var(--gut) 34px; }
  .foot__links { gap: 22px; }
  /* The portrait reads oddly floating beside a tall wrapped credit line,
     so it aligns to the top of the text once the column narrows. */
  .ftag { align-items: flex-start; }
  .ftag img { width: 60px; height: 60px; }
  .rail__line { gap: 16px; }
  .topbar__long { display: none; }
  .rail__names { gap: 18px; }
}

@media (max-width: 560px) {
  .wwb__grid { grid-template-rows: 150px 150px 170px; gap: 8px; }
  .lrow { gap: 12px; }
  .lrow__title { font-size: 18px; }
}

/* --------------------------------------------------------------------------
   15. Motion preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .track { animation: none; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
