/* Stillknocks design system — see "Stillknocks Design System.md" */

:root {
  --ground: #0A0A0A;
  --surface: #0D0D0D;
  --raised: #131313;
  --orange: #EA5738;
  --orange-hot: #FF6A48;
  --green: #39B54A;
  --ink: #FFFFFF;
  --muted: #9A9A9A;
  --faint: #6E6E6E;
  --label: #8A8A8A;
  --hair: rgba(255, 255, 255, 0.10);
  --hair-soft: rgba(255, 255, 255, 0.08);
  --hair-strong: rgba(255, 255, 255, 0.14);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --container: 1240px;
  --gutter: 32px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { overflow-x: clip; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font: 400 17px/1.75 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--ink); }
::selection { background: var(--orange); color: var(--ink); }
input, textarea, select, button { font-family: inherit; }
img { display: block; max-width: 100%; }

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--orange); color: var(--ink); padding: 14px 22px;
  font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.skip:focus { left: 0; color: var(--ink); }

/* ---------- Layout ---------- */

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: 1000px; }
.wrap--tight { max-width: 900px; }

.band { background: var(--surface); }
.rule-top { border-top: 1px solid var(--hair); }
.rule-bottom { border-bottom: 1px solid var(--hair); }

.grid { display: grid; gap: 28px; }
/* Grid/flex children default to min-width:auto, which lets wide content
   (inputs, tables, long words) push the column past the viewport. */
.grid > *, .hairgrid > *, .hairstack > * { min-width: 0; }
.signup input, .field__input, .field__select, .field__textarea { min-width: 0; }
.grid--split { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 64px; }
.grid--cards { grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); }
.grid--products { grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.grid--logos { grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Hairline data grids: 1px gaps showing the border colour through */
.hairgrid {
  display: grid; gap: 1px; background: var(--hair);
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
}
.hairgrid > * { background: var(--ground); }
.hairgrid--wide { grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr)); }
.hairgrid--camp { grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); }
.hairgrid--camp > * { background: var(--surface); }
.hairgrid--pair { grid-template-columns: 1fr 1fr; }
.hairstack { display: flex; flex-direction: column; gap: 1px; background: var(--hair); }
.hairstack > * { background: var(--ground); }

.section { padding: 110px 0; }
.section--lead { padding: 200px 0 80px; }
.section--tall { padding: 130px 0; }
.section--flush-top { padding-top: 0; }

/* ---------- Type ---------- */

.eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .24em;
  text-transform: uppercase; color: var(--orange);
}
.eyebrow--green { color: var(--green); }
.eyebrow--muted { color: var(--label); letter-spacing: .2em; }

.display {
  margin: 18px 0 0; font-weight: 800; text-transform: uppercase;
  font-size: clamp(42px, 7vw, 104px); letter-spacing: -0.045em; line-height: .88;
}
.display--hero { font-size: clamp(52px, 11vw, 164px); line-height: .86; }
.display--about { font-size: clamp(42px, 6.4vw, 96px); }

h2.heading, .heading {
  margin: 16px 0 0; font-weight: 800; text-transform: uppercase;
  font-size: clamp(30px, 4vw, 54px); letter-spacing: -0.04em; line-height: .98;
}
.heading--lg { font-size: clamp(34px, 4.6vw, 60px); line-height: .96; }
.heading--xl { font-size: clamp(32px, 4.8vw, 64px); }
.heading--legacy { font-size: clamp(36px, 5.4vw, 72px); line-height: .94; }
.heading--sub { font-size: clamp(30px, 3.8vw, 50px); letter-spacing: -0.035em; line-height: 1.02; }

.lead { margin: 0; font-size: 20px; line-height: 1.6; color: var(--ink); text-wrap: pretty; }
.body { margin: 0; font-size: 17px; line-height: 1.75; color: var(--muted); text-wrap: pretty; }
.body--sm { font-size: 15px; line-height: 1.7; }
.body--md { font-size: 16px; line-height: 1.7; }
.measure { max-width: 52ch; }
.measure--wide { max-width: 56ch; }
.stack > * + * { margin-top: 24px; }
.stack--lg { display: flex; flex-direction: column; gap: 26px; }

.microlabel {
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--label);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 30px; border: 0; border-radius: 0; cursor: pointer;
  font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn--primary { background: var(--orange); color: var(--ink); }
.btn--primary:hover { background: var(--orange-hot); color: var(--ink); }
.btn--secondary { background: transparent; color: var(--ink); border: 1px solid rgba(255,255,255,.30); }
.btn--secondary:hover { background: var(--ink); color: var(--ground); }
.btn--lg { padding: 19px 38px; }

.textlink {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--orange); padding-bottom: 6px;
}
.textlink:hover { color: var(--orange); }

/* ---------- Chrome ---------- */

.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--orange); z-index: 120;
}

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0; background: rgba(10,10,10,0);
  border-bottom: 1px solid rgba(255,255,255,0);
  transition: padding .35s ease, background .35s ease, border-color .35s ease;
}
.site-header.is-stuck {
  padding: 12px 0; background: rgba(10,10,10,.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hair);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* No logo mark — the wordmark is the logo. */
.brand {
  display: flex; align-items: center; color: var(--ink);
  padding: 15px 0; margin: -15px 0;  /* 44px hit area, same visual size */
}
.brand:hover { color: var(--ink); }
.brand__name {
  font-size: 17px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  line-height: 1;
}

.mainnav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.mainnav a {
  padding: 10px 14px; font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink); transition: color .2s ease;
}
.mainnav a:hover { color: var(--orange); }
.mainnav a[aria-current="page"] { color: var(--orange); }
.mainnav .btn { margin-left: 10px; padding: 13px 22px; }

.navtoggle {
  display: none; background: transparent; border: 1px solid rgba(255,255,255,.30);
  color: var(--ink); padding: 11px 16px; font-size: 11px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; cursor: pointer;
}

/* ---------- Hero ---------- */

.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end; overflow: hidden;
}
/* Full-bleed hero. The source is a 3:4 portrait, so the crop is anchored high
   and slightly right to keep his face in frame on wide screens. */
.hero__bg { position: absolute; top: -8%; left: 0; right: 0; height: 116%; }
.hero__bg .slot img { object-position: 56% 20%; }
/* Two scrims: a vertical ramp that keeps the top of the frame open and goes
   dark under the headline, and a left-weighted wash so the copy always has
   ground to sit on. Without them the orange eyebrow lands on a lit cheek. */
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,10,10,.78) 0%, rgba(10,10,10,.30) 46%, rgba(10,10,10,0) 72%),
    linear-gradient(180deg, rgba(10,10,10,.80) 0%, rgba(10,10,10,.26) 30%, rgba(10,10,10,.68) 62%, rgba(10,10,10,.96) 100%);
}
.hero .wrap { position: relative; width: 100%; padding-top: 220px; padding-bottom: 120px; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,.6), transparent);
  animation: sk-bob 2.4s ease-in-out infinite;
}

.herofacts {
  margin-top: 56px; display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 40px;
}
.factlist { display: flex; gap: 28px; flex-wrap: wrap; }
.factlist__sep { width: 1px; background: var(--hair-strong); }
.fact__value {
  font-size: 30px; font-weight: 800; letter-spacing: -0.02em; margin-top: 6px;
}
.btnrow { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Marquee ---------- */

.marquee {
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  background: var(--surface); overflow: hidden; padding: 20px 0;
}
.marquee__track {
  display: flex; width: max-content; gap: 56px;
  animation: sk-marquee 34s linear infinite;
}
.marquee__track span {
  font-size: 14px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase;
  color: var(--faint); white-space: nowrap;
}

@keyframes sk-marquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@keyframes sk-bob { 0%,100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(8px); opacity: 1; } }

/* ---------- Stats / data ---------- */

.stat { padding: 38px 30px; }
.stat__value {
  font-size: clamp(48px, 6vw, 84px); font-weight: 800; letter-spacing: -0.04em;
  line-height: 1; font-variant-numeric: tabular-nums;
}
.stat__label { margin-top: 10px; font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--label); }

.tapecell { padding: 22px 20px; }
.tapecell__k { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--label); }
.tapecell__v { margin-top: 8px; font-size: 19px; font-weight: 800; letter-spacing: -0.02em; }

.methods { margin-top: 32px; display: flex; flex-direction: column; gap: 26px; }
.method__head { display: flex; justify-content: space-between; align-items: baseline; }
.method__label { font-size: 15px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; }
.method__n { font-size: 15px; font-weight: 800; color: var(--orange); }
.method__track { margin-top: 10px; height: 6px; background: var(--hair); }
.method__fill { height: 6px; width: 0%; background: var(--orange); transition: width 1.2s var(--ease); }

.fighttable { margin-top: 44px; display: flex; flex-direction: column; }
/* Stats lead: the record on the left, DDP cut out on the right. */
.statshero .wrap { align-items: center; }
.statshero__media { height: 460px; }
.statshero__media img { object-position: bottom; }

.fightrow {
  display: grid; grid-template-columns: 56px 64px 1.4fr 1fr 1fr; gap: 16px;
  align-items: center; padding: 14px 4px; border-bottom: 1px solid var(--hair-soft);
  transition: background .3s var(--ease);
}
.fightrow:hover { background: rgba(255, 255, 255, .02); }
.fightrow--head {
  padding: 0 4px 14px; border-bottom: 1px solid rgba(255,255,255,.18);
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--label);
}

/* Opponent portraits: UFC full-body cutouts with alpha, sitting directly on
   the ground with no frame, anchored to the floor of the cell. */
.fightrow__portrait {
  width: 56px; height: 76px; display: flex;
  align-items: flex-end; justify-content: center; overflow: hidden;
}
.fightrow__portrait img {
  width: 100%; height: 100%; object-fit: contain; object-position: bottom;
}
.fightrow__initials {
  margin: auto; font-size: 13px; font-weight: 800; letter-spacing: .1em;
  color: var(--faint);
}
.fightrow__res { font-size: 12px; font-weight: 800; letter-spacing: .1em; color: var(--green); }
.fightrow__res--loss { color: var(--orange); }
.fightrow__opp { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.fightrow__meta { font-size: 14px; color: var(--muted); }

.titlecard {
  background: var(--raised); border: 1px solid var(--hair);
  border-top: 2px solid var(--green); padding: 32px;
}
.titlecard__name { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; text-wrap: pretty; }
.titlecard__when { margin-top: 12px; font-size: 14px; color: var(--muted); }

/* ---------- Cards ---------- */

.card {
  display: block; background: var(--raised); border: 1px solid var(--hair);
  color: var(--ink); transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.card:hover { border-color: rgba(234,87,56,.6); transform: translateY(-6px); color: var(--ink); }
.card__media { height: 210px; }
.card__media--sm { height: 200px; }
.card__body { padding: 26px; }
.card__date { font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--green); }
.card__title { margin-top: 12px; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.25; text-wrap: pretty; }
.card__title--sm { font-size: 19px; }

.feature {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  background: var(--raised); border: 1px solid var(--hair); color: var(--ink);
  transition: border-color .3s var(--ease);
}
.feature:hover { border-color: rgba(234,87,56,.6); color: var(--ink); }
.feature__media { min-height: 380px; }
.feature__body { padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.feature__title {
  margin-top: 18px; font-size: clamp(26px, 3.2vw, 42px); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.06; text-wrap: pretty;
}
.feature__cta { margin-top: 28px; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); }

.product { background: var(--raised); border: 1px solid var(--hair); }
.product--link {
  display: block; color: var(--ink);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.product--link:hover { border-color: rgba(234,87,56,.6); transform: translateY(-6px); color: var(--ink); }
.product--link:hover .product__shop { color: var(--ink); }
.product__media { height: 300px; background: #181818; }
/* A filled tile fills the frame; the artwork carries its own ground. */
.product__media .slot--filled { background: var(--ground); }
.product__media .slot--filled img { object-fit: cover; object-position: var(--crop, 50% 0%); }
.product__body { padding: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.product__name { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.product__shop { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); }
.product__shop:hover { color: var(--ink); }

.offer { padding: 40px 32px; }
.offer__num { font-size: 12px; font-weight: 800; letter-spacing: .2em; color: var(--green); }
.offer__title { margin-top: 22px; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; }
.offer__body { margin: 14px 0 0; }

/* Sponsor tiles. The supplied artwork is dark-on-white with opaque
   backgrounds, so each logo sits on a light tile instead of the near-black
   ground — full colour, and legible for every mark in the set. */
.logocell {
  height: 132px; background: #FFFFFF; border: 1px solid var(--hair);
  padding: 20px 26px; display: flex; align-items: center; justify-content: center;
  transition: border-color .3s var(--ease);
}
.logocell:hover { border-color: rgba(234, 87, 56, .6); }
.logocell--link { transition: border-color .3s var(--ease), transform .3s var(--ease); }
.logocell--link:hover { transform: translateY(-4px); }
.logocell__img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; mix-blend-mode: multiply;
}

/* ---------- Ventures: photo tiles with the name and line overlaid ---------- */

.venture {
  position: relative; overflow: hidden; aspect-ratio: 4 / 5;
  border: 1px solid var(--hair); background: var(--raised);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.venture:hover { border-color: rgba(234,87,56,.6); transform: translateY(-6px); }
/* The card is an anchor, so it inherits the orange link colour — the name has
   to stay white against the photo. */
.venture--link, .venture--link:hover { color: var(--ink); }
.venture__media { position: absolute; inset: 0; }
/* The copy sits on whatever the photo happens to be, so it carries its own
   ground: a bottom-weighted ramp dark enough for white text at any crop. */
.venture__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,10,.10) 0%, rgba(10,10,10,.30) 42%, rgba(10,10,10,.88) 100%);
}
.venture__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 26px; }
.venture__name {
  margin: 0; font-size: 24px; font-weight: 800; letter-spacing: -0.025em;
  text-transform: uppercase; line-height: 1.05;
}
.venture__line { margin: 12px 0 0; font-size: 15px; line-height: 1.6; color: #D2D2D2; text-wrap: pretty; }
/* No photography yet: a visible placeholder block rather than a near-black tile
   lost against the ground. The name centres in the frame instead of sitting in
   a scrim that has nothing to darken. */
.venture--empty {
  background: #141414; border-style: dashed; border-color: var(--hair-strong);
  display: flex; align-items: center; justify-content: center;
}
.venture--empty .venture__scrim { display: none; }
.venture--empty .venture__body { position: static; padding: 26px; text-align: center; }

.routecell { padding: 32px; }
/* On the 404 page these are links; without this they take the orange anchor
   colour and the row stops reading as a list. */
a.routecell { display: block; color: var(--ink); transition: background .25s var(--ease), color .25s var(--ease); }
a.routecell:hover { background: var(--raised); color: var(--orange); }
.routecell__k { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; }
.routecell__v { margin-top: 10px; }

.campcell { padding: 38px 32px; }
.campcell__v { margin-top: 12px; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }

/* ---------- Quote ---------- */

.quote { position: relative; padding: 150px 0; overflow: hidden; text-align: center; }
.quote__text {
  font-size: clamp(26px, 4.2vw, 54px); font-weight: 800; line-height: 1.16;
  letter-spacing: -0.03em; text-wrap: pretty;
}
.quote__who { margin-top: 34px; }

/* ---------- Timeline ---------- */

.timeline {
  margin-top: 30px; border-left: 1px solid var(--hair-strong); padding-left: 28px;
  display: flex; flex-direction: column; gap: 34px;
}
.timeline__item { position: relative; }
.timeline__item::before {
  content: ''; position: absolute; left: -34px; top: 7px;
  width: 9px; height: 9px; background: var(--orange); border-radius: 50%;
}
.timeline__year { font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--green); }
.timeline__what { margin-top: 8px; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; text-wrap: pretty; }

/* ---------- Forms ---------- */

.field { display: block; }
.field__label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--label);
}
.field__input, .field__select, .field__textarea {
  margin-top: 10px; width: 100%; padding: 16px 18px; background: var(--raised);
  border: 1px solid var(--hair-strong); border-radius: 0; color: var(--ink);
  font-size: 15px; outline: none;
}
.field__textarea { resize: vertical; }
.field__input:focus, .field__select:focus, .field__textarea:focus { border-color: var(--orange); }

.form { display: flex; flex-direction: column; gap: 20px; }
.form .btn { align-self: flex-start; }

.signup { display: flex; gap: 12px; flex-wrap: wrap; }
.signup input {
  flex: 1 1 220px; padding: 18px 20px; background: var(--ground);
  border: 1px solid rgba(255,255,255,.16); border-radius: 0; color: var(--ink);
  font-size: 15px; outline: none;
}
.signup input:focus { border-color: var(--orange); }
.signup .btn { padding: 18px 32px; }

.formnote { margin: 0; font-size: 13px; color: var(--faint); }

/* ---------- Image slots ---------- */

.slot {
  position: relative; width: 100%; height: 100%;
  background: #141414; border: 1px dashed rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
/* Once real artwork is in, drop the placeholder framing. */
.slot--filled { background: none; border: 0; }
.slot img { width: 100%; height: 100%; object-fit: cover; }
.slot--contain img { object-fit: contain; }
.slot__label {
  padding: 12px 16px; text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: #4E4E4E;
}

/* ---------- Section head ---------- */

.sectionhead {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}

.sticky { position: sticky; top: 120px; }
.legacy__media { margin-top: 28px; aspect-ratio: 3 / 2; }

/* ---------- Partners hero ---------- */

.phero { position: relative; padding: 210px 0 110px; overflow: hidden; }
.phero__bg { position: absolute; top: -10%; right: 0; width: 52%; height: 120%; opacity: .5; }
.phero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, #0A0A0A 46%, rgba(10,10,10,.55) 100%);
}
.phero .wrap { position: relative; }

.abouthero { padding: 200px 0 90px; }
.abouthero .grid--split { align-items: end; gap: 60px; }
/* A 3:4 portrait in a landscape frame: anchor high so his face clears the crop. */
.abouthero__media { height: 420px; }
.abouthero__media .slot--filled img { object-position: 50% 18%; }

/* ---------- Footer ---------- */

.site-footer { border-top: 1px solid var(--hair); padding: 80px 0 40px; background: var(--surface); }
.site-footer .grid { grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 48px; }
.site-footer h2 { margin: 0; font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--ink); }
.footerlinks { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.footerlinks a {
  font-size: 14px; color: var(--label);
  padding: 9px 0; margin: -9px 0;
}
.footerlinks a:hover { color: var(--orange); }
.site-footer__mark {
  font-size: 20px; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; line-height: 1; color: var(--ink);
}
.site-footer__tagline { margin: 18px 0 0; font-size: 14px; line-height: 1.7; color: var(--label); }
.site-footer__base {
  margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--hair-soft);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--faint);
}

/* ---------- Motion ---------- */

[data-reveal] { opacity: 0; will-change: opacity, transform; }
[data-reveal="up"] { transform: translateY(36px); }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="scale"] { transform: scale(.95); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
.js-ready [data-reveal] {
  transition: opacity .95s var(--ease) var(--reveal-delay, 0s),
              transform 1.05s var(--ease) var(--reveal-delay, 0s);
}
/* No JS: never hide content. */
html:not(.js) [data-reveal] { opacity: 1; transform: none; }
html:not(.js) .method__fill { width: var(--bar-target, 0%); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee__track, .hero__scroll { animation: none; }
  [data-parallax] { transform: none !important; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  :root { --gutter: 22px; }
  .section { padding: 84px 0; }
  .section--lead { padding: 150px 0 60px; }
  .section--tall { padding: 90px 0; }
  .quote { padding: 100px 0; }
  .feature__body { padding: 36px 28px; }
  .grid--split { gap: 44px; }
  .sticky { position: static; }
  .hero .wrap { padding-top: 170px; padding-bottom: 90px; }
  .hero__bg .slot img { object-position: 62% 12%; }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(10,10,10,.78) 0%, rgba(10,10,10,.32) 22%,
                rgba(10,10,10,.80) 52%, rgba(10,10,10,.96) 100%);
  }
  .phero { padding: 160px 0 80px; }
  .phero__bg { width: 100%; opacity: .28; }
  .abouthero { padding: 150px 0 60px; }

  .grid--logos { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .logocell { height: 96px; padding: 16px; }
  /* 16px is the threshold below which iOS Safari zooms the page on focus. */
  .field__input, .field__select, .field__textarea, .signup input { font-size: 16px; }

  .navtoggle {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 44px; padding: 10px 14px;
  }
  .site-header { padding: 14px 0; }
  .site-header.is-stuck { padding: 8px 0; }
  .site-header .wrap { gap: 12px; }
  .brand__name { font-size: 14px; letter-spacing: .18em; }
  .mainnav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10,10,10,.97); border-bottom: 1px solid var(--hair);
    padding: 12px var(--gutter) 24px;
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  }
  .mainnav.is-open { display: flex; }
  .mainnav a { padding: 16px 0; border-bottom: 1px solid var(--hair-soft); }
  .mainnav .btn { margin: 16px 0 0; justify-content: center; }

  .statshero__media { height: 300px; }
  .fightrow {
    grid-template-columns: 48px 1fr; gap: 14px; row-gap: 4px;
    align-items: start; padding: 16px 4px;
  }
  .fightrow--head { display: none; }
  .fightrow__portrait { width: 48px; height: 66px; grid-row: span 4; align-self: center; }
  .fightrow__res, .fightrow__opp, .fightrow__meta { grid-column: 2; }
  .hairgrid--pair { grid-template-columns: 1fr; }

  /* Columns are stacked here, so a sideways reveal has nothing to slide out of
     — and its 30px offset is what pushes the page wider than the screen before
     the reveal fires. overflow-x: clip catches that, but only on Safari 16+;
     dropping to a vertical reveal removes the cause. */
  [data-reveal="left"], [data-reveal="right"] { transform: translateY(36px); }
}

/* Small phones: buy back horizontal room and tighten the vertical rhythm. */
@media (max-width: 380px) {
  :root { --gutter: 18px; }
  .section { padding: 68px 0; }
  .section--lead { padding: 130px 0 48px; }
  .grid { gap: 20px; }
  .grid--split { gap: 36px; }
  .venture__body { padding: 22px 18px; }
  .venture__name { font-size: 21px; }
  .offer { padding: 30px 24px; }
  .routecell, .titlecard { padding: 24px; }
  .campcell { padding: 30px 24px; }
  .stat { padding: 30px 22px; }
  .card__body, .product__body { padding: 20px; }
}

/* Phone in landscape: a 100svh hero with desktop-sized padding leaves no room
   for the headline, so pull the padding in and let the hero size to content. */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; }
  .hero .wrap { padding-top: 130px; padding-bottom: 60px; }
  .hero__scroll { display: none; }
  .section--lead { padding: 120px 0 48px; }
  .abouthero { padding: 120px 0 48px; }
  .phero { padding: 130px 0 60px; }
}
