/* ============================================================
   VERTEX CORE microsite
   Visual language: 1980s gaming-magazine full-page ad.
   Black paper, neon vector ink, screaming oblique display type,
   starburst flashes, and the four-colour stripe lifted off the
   box spine (red / orange / gold / blue).
   ============================================================ */

/* ---- Tokens ---- */
:root {
  --black:      #000000;
  --panel:      #07070b;
  --panel-2:    #0d0d14;
  --ink:        #f6efe0;   /* box-art cream */
  --ink-soft:   #a6a2b0;
  --ink-faint:  #6a6676;

  --cyan:       #25d5ff;
  --blue:       #1b5cff;
  --magenta:    #ff2d6b;
  --red:        #e8262f;
  --green:      #4dff88;
  --gold:       #ffc21a;
  --orange:     #f2611a;
  --violet:     #a855f7;

  --rule:       rgba(246,239,224,0.14);
  --shell:      1240px;

  --display: 'Anton', 'Arial Narrow', sans-serif;
  --heavy:   'Archivo Black', 'Helvetica Neue', sans-serif;
  --body:    'Archivo', 'Inter', system-ui, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
button { font: inherit; }
::selection { background: var(--magenta); color: #fff; }

/* Screen-door texture: the CRT the ad was photographed off. Scoped to
   the hero type rather than the whole page, so it reads as a treatment
   on the headline instead of a filter over everything. Multiply means
   it only registers where the glyphs are bright. */
/* isolate keeps the multiply confined to the element's own glyphs, so it
   works on plain text as well as on the skewed .shout headings. */
.scanlines { position: relative; isolation: isolate; }
.scanlines::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0 2px,
    rgba(0,0,0,0.34) 2px 3px
  );
  opacity: 0.55;
  mix-blend-mode: multiply;
}

/* ---- Shared type helpers ---- */
.shout {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0.005em;
  transform: skewX(-7deg);
  transform-origin: left bottom;
}
/* Chromatic split: the game's own aberration pass, in type. */
.aberrate {
  text-shadow:
    -0.035em 0 rgba(232,38,47,0.9),
     0.035em 0 rgba(37,213,255,0.9);
}
.neon-cyan    { color: var(--cyan);    text-shadow: 0 0 18px rgba(37,213,255,0.75); }
.neon-magenta { color: var(--magenta); text-shadow: 0 0 18px rgba(255,45,107,0.75); }
.neon-green   { color: var(--green);   text-shadow: 0 0 18px rgba(77,255,136,0.7); }
.neon-gold    { color: var(--gold);    text-shadow: 0 0 18px rgba(255,194,26,0.7); }

/* ---- The box-spine stripe, used as a divider everywhere ---- */
.stripe {
  height: 10px;
  border: none;
  margin: 0;
  background: linear-gradient(
    to bottom,
    var(--red) 0 25%,
    var(--orange) 25% 50%,
    var(--gold) 50% 75%,
    var(--blue) 75% 100%
  );
}
.stripe-thin { height: 6px; }

/* ---- Starburst flash ---- */
.burst {
  --burst-face: var(--gold);
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  padding: 26px;
  text-align: center;
  background: var(--burst-face);
  color: #16100a;
  clip-path: polygon(
    50.0% 0.0%, 58.9% 14.1%, 73.2% 5.7%, 74.5% 22.3%, 91.1% 21.6%, 84.6% 36.9%,
    99.6% 44.0%, 86.7% 54.5%, 96.8% 67.7%, 80.5% 71.0%, 83.2% 87.4%, 67.2% 82.8%,
    62.0% 98.5%, 50.0% 87.0%, 38.0% 98.5%, 32.8% 82.8%, 16.8% 87.4%, 19.5% 71.0%,
    3.2% 67.7%, 13.3% 54.5%, 0.4% 44.0%, 15.4% 36.9%, 8.9% 21.6%, 25.5% 22.3%,
    26.8% 5.7%, 41.1% 14.1%
  );
  transform: rotate(-11deg);
  filter: drop-shadow(0 0 26px rgba(255,194,26,0.45));
}
.burst span {
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 0.9;
  font-size: 21px;
  transform: skewX(-6deg);
}
.burst .burst-lg { font-size: 30px; }

/* ---- Buttons ---- */
/* Chunky, hard-offset, no gradients: a button printed on newsprint. */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--heavy);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn svg { flex: none; }
.btn-primary {
  background: var(--gold);
  color: #150f06;
  box-shadow: 6px 6px 0 var(--magenta);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--magenta);
}
.btn-primary:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--magenta); }

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 2px solid var(--rule);
  box-shadow: none;
  cursor: default;
}
.btn-ghost .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
}

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: sticky;
  top: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 32px;
  background: rgba(0,0,0,0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
#nav-logo {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  transform: skewX(-7deg);
  margin-right: auto;
}
#nav-logo em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(37,213,255,0.8);
}
#nav-links { display: flex; align-items: center; gap: 26px; }
.nav-link {
  font-family: var(--heavy);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.16s;
}
.nav-link:hover { color: var(--cyan); }
#nav-cta {
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 0.14em;
  box-shadow: 4px 4px 0 var(--magenta);
}
#nav-toggle {
  display: none;
  width: 40px; height: 34px;
  background: none;
  border: 2px solid var(--rule);
  cursor: pointer;
  padding: 8px 9px;
}
#nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 0 0 4px;
}
#nav-toggle span:last-child { margin-bottom: 0; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  overflow: hidden;
  padding: 72px 32px 0;
  isolation: isolate;
}
/* Vector floor receding to a horizon: the boss-arena grid. */
.grid-floor {
  position: absolute;
  left: -20%; right: -20%; bottom: 0;
  height: 52svh;
  z-index: -2;
  background-image:
    repeating-linear-gradient(to right,  rgba(255,45,107,0.55) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(to bottom, rgba(255,45,107,0.55) 0 1px, transparent 1px 64px);
  transform: perspective(360px) rotateX(66deg);
  transform-origin: bottom center;
  -webkit-mask-image: linear-gradient(to top, #000 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
          mask-image: linear-gradient(to top, #000 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
  opacity: 0.6;
}
/* Cool wash behind the box so the render lifts off the black. */
.hero-glow {
  position: absolute;
  top: -8%; left: 50%;
  width: min(1100px, 120vw);
  aspect-ratio: 1;
  transform: translateX(-30%);
  z-index: -3;
  background: radial-gradient(circle at center,
    rgba(27,92,255,0.30) 0%,
    rgba(27,92,255,0.10) 38%,
    transparent 68%);
}

#hero-inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

#hero-copy { max-width: 620px; }
#hero-eyebrow {
  margin-bottom: 22px;
  color: var(--gold);
  font-family: var(--heavy);
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
#hero h1 {
  font-size: clamp(46px, 8.4vw, 116px);
  color: var(--ink);
  margin-bottom: 24px;
}
#hero h1 .line-2 { display: block; color: var(--cyan); }
#hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 30em;
  margin-bottom: 12px;
}
#hero-sub strong { color: var(--ink); font-weight: 700; }
#hero-tag {
  font-family: var(--heavy);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 30px;
}
#hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
#hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-faint);
}

/* Box art, tilted like it's been dropped on the page. */
#hero-box {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 480px;
}
#hero-box img {
  width: 100%;
  transform: rotate(2.5deg);
  filter: drop-shadow(0 26px 60px rgba(0,0,0,0.9))
          drop-shadow(0 0 70px rgba(37,213,255,0.28));
}
/* Sits top-left, clear of the gold burst already printed on the box. */
#hero-box .burst {
  position: absolute;
  left: -46px;
  top: 4%;
  width: 152px;
  height: 152px;
  padding: 22px;
}

/* Screenshot strip: the "actual screens" row every ad had. */
#shots {
  max-width: var(--shell);
  margin: 64px auto 0;
  padding-bottom: 72px;
}
#shots-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--rule);
  padding-bottom: 12px;
}
#shots-head h2 {
  font-family: var(--heavy);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
#shots-head p {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-left: auto;
}
#shots-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.shot {
  position: relative;
  border: 2px solid rgba(37,213,255,0.5);
  box-shadow: 0 0 34px rgba(37,213,255,0.16);
  background: var(--black);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.shot:nth-child(1) { transform: rotate(-1.4deg); }
.shot:nth-child(3) { transform: rotate(1.4deg); }
.shot:hover {
  transform: rotate(0deg) translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 0 48px rgba(37,213,255,0.34);
}
.shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 9px 12px;
  background: rgba(0,0,0,0.82);
  border-top: 1px solid rgba(37,213,255,0.34);
  font-family: var(--heavy);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* ============================================================
   STAT BAR
   ============================================================ */
#stats {
  background: var(--panel);
  border-block: 2px solid var(--rule);
  padding: 34px 32px;
}
#stats-inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}
.stat { border-left: 1px solid var(--rule); padding: 0 8px; }
.stat:first-child { border-left: none; }
.stat b {
  display: block;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  color: var(--cyan);
  text-shadow: 0 0 22px rgba(37,213,255,0.5);
  transform: skewX(-7deg);
}
.stat span {
  display: block;
  margin-top: 8px;
  font-family: var(--heavy);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section { padding: 96px 32px; }

/* ---- Video slot (vertical 9:16, reserved for the gameplay reel) ---- */
#video { background: var(--panel); border-block: 2px solid var(--rule); }
#video-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: 56px;
  align-items: center;
}
#video-copy h2 { font-size: clamp(34px, 5vw, 64px); margin-bottom: 18px; }
#video-copy p { color: var(--ink-soft); font-size: 17px; margin-bottom: 22px; max-width: 46ch; }
#video-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#video-specs li {
  padding: 6px 12px;
  border: 1px solid var(--rule);
  font-family: var(--heavy);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
/* The slot itself keeps its 9:16 box whether it holds the placeholder
   or a real <video>, so dropping the reel in never shifts the page. */
.video-slot {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  background: var(--black);
  border: 2px solid rgba(255,45,107,0.55);
  box-shadow: 0 0 44px rgba(255,45,107,0.2);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.video-slot > video,
.video-slot > iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.video-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(to right,  rgba(255,45,107,0.16) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(to bottom, rgba(255,45,107,0.16) 0 1px, transparent 1px 40px);
}
.video-placeholder { position: relative; text-align: center; padding: 24px; }
.video-placeholder .play {
  width: 74px; height: 74px;
  margin: 0 auto 20px;
  border: 2px solid var(--magenta);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--magenta);
  box-shadow: 0 0 26px rgba(255,45,107,0.4);
}
.video-placeholder b {
  display: block;
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
  transform: skewX(-7deg);
  color: var(--ink);
  margin-bottom: 8px;
}
.video-placeholder span {
  font-family: var(--heavy);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---- Boss feature ---- */
#boss {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 72% 40%, rgba(242,97,26,0.20) 0%, transparent 58%),
    var(--black);
  border-block: 2px solid var(--rule);
}
#boss-inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: 60px;
  align-items: center;
}
#boss h2 { font-size: clamp(38px, 6vw, 82px); margin-bottom: 20px; }
#boss p { color: var(--ink-soft); font-size: 17px; line-height: 1.65; margin-bottom: 16px; max-width: 56ch; }
#boss p strong { color: var(--gold); font-weight: 700; }
#boss-shot {
  border: 2px solid rgba(242,97,26,0.6);
  box-shadow: 0 0 52px rgba(242,97,26,0.28);
  justify-self: center;
}
/* Selector matches `#boss p` so it can override the 56ch cap and stay on one line. */
#boss p#boss-reward {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: none;
  margin-top: 22px;
  color: var(--green);
  font-family: var(--heavy);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
#cta {
  position: relative;
  overflow: hidden;
  padding: 104px 32px 96px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 130%, rgba(27,92,255,0.35) 0%, transparent 62%),
    var(--black);
}
#cta-inner { position: relative; max-width: 900px; margin: 0 auto; }
#cta-icon {
  width: 108px;
  margin: 0 auto 28px;
  border: 2px solid rgba(37,213,255,0.5);
  box-shadow: 0 0 40px rgba(37,213,255,0.3);
}
#cta h2 {
  font-size: clamp(42px, 8vw, 104px);
  margin-bottom: 18px;
  transform-origin: center bottom;
}
#cta p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 auto 34px;
}
#cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
/* Selector matches `#cta p` so the drop below the buttons' offset shadow sticks. */
#cta p#cta-fine {
  max-width: 52ch;   /* wide enough that the explicit <br> is the only break */
  margin: 62px auto 0;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  padding: 48px 32px;
  border-top: 1px solid var(--rule);
  background: var(--panel);
}
#footer-inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
#footer-logo { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
#footer-logo .wordmark {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: skewX(-7deg);
}
#footer-logo .wordmark em { font-style: normal; color: var(--cyan); }
#footer-by {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--ink-soft);
}
.footer-deko-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  transition: color 0.18s;
}
.footer-deko-link:hover { color: var(--ink); }
.footer-deko-icon { width: 1.5em; height: 1.5em; object-fit: contain; }
#footer-copy { font-size: 13px; color: var(--ink-soft); }
#footer-links { display: flex; gap: 24px; }
.footer-link {
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s;
}
.footer-link:hover { color: var(--cyan); }
#footer-credit {
  max-width: var(--shell);
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-faint);
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
/* #doc-hero-inner and #doc share the same box so the H1 sits flush
   with the body copy below it. */
#doc-hero {
  padding: 72px 0 40px;
  border-bottom: 2px solid var(--rule);
  background: radial-gradient(ellipse at 20% 0%, rgba(27,92,255,0.20) 0%, transparent 60%), var(--black);
}
#doc-hero-inner { max-width: 884px; margin: 0 auto; padding: 0 32px; }
#doc-hero h1 { font-size: clamp(40px, 7vw, 84px); margin-bottom: 16px; }
#doc-meta {
  font-family: var(--heavy);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
#doc {
  max-width: 884px;
  margin: 0 auto;
  padding: 64px 32px 104px;
}
#doc-lede {
  padding: 24px 26px;
  margin-bottom: 52px;
  border-left: 4px solid var(--green);
  background: var(--panel);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
}
.doc-section { margin-bottom: 46px; }
.doc-section h2 {
  font-family: var(--heavy);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.doc-section p { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 14px; }
.doc-section p:last-child { margin-bottom: 0; }
.doc-section strong { color: var(--ink); font-weight: 700; }
.doc-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 16px;
}
.doc-section li {
  position: relative;
  padding-left: 20px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.doc-section li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 7px; height: 7px;
  background: var(--magenta);
  transform: rotate(45deg);
}
.doc-section a { color: var(--cyan); }
.doc-section code {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 0.88em;
  padding: 2px 6px;
  background: var(--panel-2);
  border: 1px solid var(--rule);
  color: var(--gold);
}
#doc-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: var(--heavy);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}
#doc-back:hover { color: var(--cyan); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.aos {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.aos.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aos { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  #hero-inner { grid-template-columns: 1fr; gap: 44px; }
  #hero-copy { max-width: none; }
  #hero-box { order: -1; max-width: 400px; }
  #hero-box img { transform: none; }
  #hero-box .burst { left: -14px; top: 2%; width: 122px; height: 122px; padding: 16px; }
  #hero-box .burst span { font-size: 16px; }
  #hero-box .burst .burst-lg { font-size: 23px; }
  #video-inner, #boss-inner { grid-template-columns: 1fr; gap: 40px; }
  #video-slot-wrap, #boss-shot { max-width: 340px; justify-self: center; margin-inline: auto; }
  #stats-inner { grid-template-columns: repeat(3, 1fr); gap: 26px 12px; }
  .stat:nth-child(4) { border-left: none; }
}

@media (max-width: 760px) {
  #nav { padding: 12px 20px; flex-wrap: wrap; }
  #nav-toggle { display: block; }
  #nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 0 6px;
  }
  #nav-links.open { display: flex; }
  .nav-link { padding: 8px 0; font-size: 13px; }
  #nav-cta { margin-top: 8px; }

  #hero { padding: 44px 20px 0; }
  .section, #cta { padding-left: 20px; padding-right: 20px; }
  .section { padding-top: 68px; padding-bottom: 68px; }
  #stats { padding: 28px 20px; }
  #footer { padding: 40px 20px; }
  #doc, #doc-hero-inner { padding-left: 20px; padding-right: 20px; }

  /* Screens become a swipeable strip rather than shrinking to nothing. */
  #shots { margin-top: 48px; padding-bottom: 56px; }
  #shots-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    margin-inline: -20px;
    padding-inline: 20px;
    scrollbar-width: none;
  }
  #shots-row::-webkit-scrollbar { display: none; }
  .shot {
    flex: 0 0 62vw;
    scroll-snap-align: center;
    transform: none !important;
  }
  #shots-head { flex-wrap: wrap; }
  #shots-head p { margin-left: 0; width: 100%; }

  #stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; }
  .stat:last-child { grid-column: 1 / -1; }

  /* Both of these are single lines of tracked-out caps; pull them in so
     they don't wrap to an orphan on a phone. */
  #hero-eyebrow { font-size: 12px; letter-spacing: 0.14em; }
  #boss p#boss-reward { font-size: 13px; letter-spacing: 0.1em; align-items: flex-start; }

  #hero-ctas .btn, #cta-buttons .btn { width: 100%; justify-content: center; }
  #footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
}
