/* ═══════════════════════════════════════════════════════════════
   IGNITEGTM — Charged with Intent
   Brand: black base · red→orange→vibrant-yellow energy · IGN!TE red dot
   Type: Archivo (variable wdth/wght) · IBM Plex Mono accents
   ═══════════════════════════════════════════════════════════════ */

:root {
  --black: #050506;
  --ink: #0b0b0e;
  --panel: #121216;
  --line: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --grey: #a2a2ab;
  --grey-dim: #66666e;
  --yellow: #ffc501;   /* brand vibrant yellow — sampled from IGNITE MATERIALS */
  --amber: #ff8a00;
  --ember: #ff3d00;
  --red: #ff0000;      /* the IGN!TE dot */
  --grad-bolt: linear-gradient(100deg, var(--ember) 0%, var(--amber) 45%, var(--yellow) 100%);
  --font-display: "Archivo", "Helvetica Neue", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

::selection { background: var(--yellow); color: var(--black); }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.mono {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section { padding: clamp(5rem, 10vw, 9rem) var(--pad); }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 10000;
  background: var(--yellow); color: var(--black);
  padding: 0.6rem 1rem; font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

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

/* every anchor target clears the fixed nav */
main [id], section[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }

/* ───────────────────────── type system ─────────────────────────
   Weight contrast is deliberate: 900 impact / 300-450 support.  */

.h-display {
  font-weight: 900;
  font-stretch: 92%;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.h-display--stroke {
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.55);
}

.h-grad {
  background: var(--grad-bolt);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dot-red { color: var(--red); -webkit-text-stroke: 0; }

.body-lg {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 350;
  color: var(--grey);
  max-width: 34em;
}

.eyebrow {
  font-size: 0.78rem;
  color: var(--yellow);
  margin-bottom: 1.4rem;
}
.eyebrow__slash { color: var(--red); margin-right: 0.5em; }

.tag {
  display: inline-block;
  font-size: 0.68rem;
  padding: 0.45em 0.9em;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  border-radius: 2px;
}
.tag--dark { border-color: rgba(0, 0, 0, 0.55); color: rgba(0, 0, 0, 0.8); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.78rem; color: var(--yellow);
  transition: gap 0.25s ease;
}
.link-arrow:hover { gap: 0.9em; }

/* ───────────────────────── buttons ─────────────────────────
   Skewed parallelogram = echo of the IGN!TE wordmark box.     */

.btn {
  position: relative;
  display: inline-block;
  padding: 1em 2.1em;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transform: skewX(-8deg);
  transition: transform 0.25s ease;
  overflow: hidden;
  will-change: transform;
}
.btn > span { display: inline-block; transform: skewX(8deg); position: relative; z-index: 2; }

.btn--solid { background: var(--yellow); color: var(--black); }
.btn--solid::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: var(--grad-bolt);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn--solid:hover::before { transform: translateX(0); }

.btn--ghost { border: 1.5px solid rgba(255, 255, 255, 0.4); color: var(--white); }
.btn--ghost::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: var(--white);
  transform: translateY(101%);
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn--ghost:hover { color: var(--black); border-color: var(--white); }
.btn--ghost:hover > span { transition: color 0.2s 0.05s; }
.btn--ghost > span { transition: color 0.2s; }
.btn--ghost:hover > span { color: var(--black); }

.btn--lg { padding: 1.15em 2.6em; font-size: 1rem; }
.btn--full { width: 100%; text-align: center; }
.btn--nav { padding: 0.7em 1.5em; font-size: 0.78rem; }

/* ───────────────────────── preloader ───────────────────────── */

.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.preloader__mark { text-align: center; width: min(320px, 70vw); }
.preloader__logo { width: 100%; opacity: 0; }
.preloader__bar {
  height: 2px; background: rgba(255, 255, 255, 0.12);
  margin-top: 2rem; overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%; width: 0%;
  background: var(--grad-bolt);
}
.preloader__count {
  display: block; margin-top: 0.8rem;
  font-size: 0.72rem; color: var(--grey-dim);
}

/* ───────────────────────── chrome ───────────────────────── */

.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 8000;
  height: 3px; width: 100%;
  background: var(--grad-bolt);
  transform-origin: 0 50%;
  transform: scaleX(0);
}

.cursor, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9500;
  pointer-events: none; border-radius: 50%;
  display: none;
  opacity: 0;
}
body.has-mouse .cursor, body.has-mouse .cursor-ring { opacity: 1; }
@media (pointer: fine) {
  .cursor, .cursor-ring { display: block; }
  .cursor {
    width: 8px; height: 8px; margin: -4px 0 0 -4px;
    background: var(--yellow);
  }
  .cursor-ring {
    width: 38px; height: 38px; margin: -19px 0 0 -19px;
    border: 1.5px solid rgba(255, 197, 1, 0.5);
    transition: transform 0.2s ease, border-color 0.2s ease;
  }
  .cursor-ring.is-hover { transform: scale(1.7); border-color: var(--yellow); }
}

/* ───────────────────────── nav ───────────────────────── */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 8500;
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5, 5, 6, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  height: var(--nav-h);
  padding: 0 var(--pad);
  display: flex; align-items: center; gap: 2.5rem;
}
.nav__logo { display: flex; align-items: baseline; gap: 0.5rem; }
.nav__logo img { height: 21px; width: auto; }
.nav__logo-sub { font-size: 0.66rem; color: var(--yellow); }
.nav__links { display: flex; gap: 2rem; margin-left: auto; }
.nav__links a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--grey);
  position: relative; padding: 0.4em 0;
  transition: color 0.2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--grad-bolt);
  transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  margin-left: auto;
}
.nav__burger span {
  display: block; width: 26px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 8400;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.4rem; text-align: center; }
.mobile-menu a {
  font-size: 1.8rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.02em;
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu__cta { color: var(--yellow); }

/* ───────────────────────── hero ───────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 3rem) var(--pad) 4.5rem;
  overflow: hidden;
}

.hero__media {
  position: absolute; inset: 0; z-index: -1;
  background: var(--black);
  /* how far right of screen-center the video's center sits */
  --video-shift: 33.33%;
}
.hero__video {
  position: absolute; top: 0; left: 0;
  /* widening while anchoring the left edge slides the video's center right
     (no seam) — its focal content lives in the open right half instead of
     behind the headline */
  width: calc(100% + var(--video-shift) * 2);
  max-width: none; /* escape the global img/video reset */
  height: 100%;
  object-fit: cover;
  /* graded one stop down so the footage reads as a lit stage behind the
     page — the loop has bright yellow segments that otherwise fight the type */
  filter: brightness(0.62) saturate(0.82) contrast(1.04);
}
.hero__scrim { position: absolute; inset: 0; }
/* sharper right-side gradient — per Bill */
.hero__scrim--right {
  background: linear-gradient(to left, rgba(5, 5, 6, 0.96) 0%, rgba(5, 5, 6, 0.55) 22%, transparent 52%);
}
/* the text stage: headline column always sits on near-black, whatever
   frame is playing; the right half stays open for the footage */
.hero__scrim--left {
  background: linear-gradient(to right, rgba(5, 5, 6, 0.95) 0%, rgba(5, 5, 6, 0.8) 26%, rgba(5, 5, 6, 0.38) 48%, transparent 66%);
}
.hero__scrim--top {
  background: linear-gradient(to bottom, rgba(5, 5, 6, 0.78) 0%, transparent 20%);
}
.hero__scrim--bottom {
  background: linear-gradient(to top, var(--black) 0%, rgba(5, 5, 6, 0.5) 18%, transparent 45%);
}
.hero__embers { position: absolute; inset: 0; mix-blend-mode: screen; }

.hero__content { position: relative; max-width: 1200px; }

.hero__title {
  font-family: "Geist", "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  /* drop-shadow (not text-shadow) so the gradient-clipped INTENT keeps a
     clean fill while the whole block lifts off the footage */
  filter: drop-shadow(0 6px 32px rgba(0, 0, 0, 0.55));
}
.hero__line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero__line--1 { font-size: clamp(3.4rem, 10.5vw, 9.5rem); font-weight: 700; }
.hero__line--2 { font-size: clamp(3.4rem, 10.5vw, 9.5rem); }
/* solid light weight, not outlined — hairline strokes are the first
   casualty on busy footage */
.ht-thin {
  font-weight: 275;
  font-stretch: 100%;
  color: rgba(255, 255, 255, 0.95);
}
.ht-thin, .ht-word, .ht-group { display: inline-block; white-space: nowrap; }
.ht-word { font-weight: 700; }
/* gradient applied per-char: background-clip:text on a parent breaks
   in Chromium once child spans carry transforms */
.ht-word--fill,
.ht-word--fill .char {
  background: var(--grad-bolt);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ht-dot { color: var(--red); font-weight: 700; }
.hero__title .char { display: inline-block; will-change: transform; }

.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 350;
  color: rgba(255, 255, 255, 0.85);
  max-width: 34em;
  margin-bottom: 2.6rem;
}

.hero__ctas { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 4rem; }

.hero__proof-label {
  font-size: 0.68rem; color: var(--grey-dim);
  margin-bottom: 1.1rem;
}
/* logo-bar removed — logos consolidated to proof section */

.hero__scroll {
  position: absolute; right: var(--pad); bottom: 2.2rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  font-size: 0.6rem; color: var(--grey-dim);
}
.hero__scroll-line {
  width: 1px; height: 54px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ───────────────────────── ticker ───────────────────────── */

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
  padding: 1.05rem 0;
}
.ticker__track { display: flex; width: max-content; }
.ticker__group {
  display: flex; align-items: center; gap: 2.4rem;
  padding-right: 2.4rem;
  font-weight: 800; font-size: 0.92rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tick-dim { color: var(--grey-dim); font-weight: 500; }
.tick-bolt {
  width: 10px; height: 14px; flex: none;
  background: var(--grad-bolt);
  clip-path: polygon(60% 0, 15% 58%, 45% 58%, 40% 100%, 85% 40%, 55% 40%);
}

/* ───────────────────────── ecosystem ───────────────────────── */

.ecosystem { position: relative; }
.ecosystem__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.ecosystem__sticky { position: sticky; top: calc(var(--nav-h) + 2rem); }
.ecosystem__sticky .h-display { margin-bottom: 1.8rem; }
.ecosystem__bolt {
  width: min(230px, 40%);
  margin-top: 3rem;
  opacity: 0.85;
}

.ecosystem__pillars { display: flex; flex-direction: column; gap: 1.4rem; }

.pillar {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pillar:hover { border-color: rgba(255, 197, 1, 0.5); transform: translateY(-4px); }
.pillar__num {
  font-size: 0.78rem; color: var(--yellow);
  padding-top: 0.5rem;
}
.pillar__title {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 900; font-stretch: 92%;
  line-height: 0.95; text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.pillar__tag {
  font-style: italic; font-weight: 500;
  color: var(--yellow);
  margin-bottom: 0.9rem;
}
.pillar__desc { color: var(--grey); font-weight: 350; margin-bottom: 1.4rem; max-width: 46ch; }
.pillar__spark {
  position: absolute; top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle at top right, rgba(255, 138, 0, 0.22), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
}
.pillar:hover .pillar__spark { opacity: 1; }

/* ───────────────────────── events: the line sheet ─────────────────────────
   An editorial index — everything visible, nothing behind interaction.
   A/B/C taxonomy chips unbundle the brand gradient: yellow → amber → ember. */

.events { background: var(--ink); border-top: 1px solid var(--line); }

.events__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: end;
  gap: 3rem 4rem;
  margin-bottom: 3.5rem;
}

/* ledger key — the jump-nav */
.ledger { display: flex; flex-direction: column; }
.ledger__line {
  display: flex; align-items: baseline; gap: 0.7em;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.68rem;
  color: var(--grey);
  transition: color 0.2s;
}
.ledger__line:hover, .ledger__line.is-active { color: var(--white); }
.ledger__line.is-active .ledger__meta { color: var(--yellow); }
.ledger__chip {
  flex: none;
  font-size: 0.58rem;
  font-weight: 600;
  color: #050506;
  background: var(--yellow);
  padding: 0.25em 0.55em;
  transform: skewX(-8deg);
}
.ledger__chip--b { background: var(--amber); }
.ledger__chip--c { background: var(--ember); }
.ledger__name { letter-spacing: 0.14em; }
.ledger__leader {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.25);
  transform: translateY(-0.3em);
}
.ledger__meta { font-size: 0.6rem; color: var(--grey-dim); transition: color 0.2s; }

/* bucket bars */
.bucket-bar {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 0.9rem 0;
  border-top: 2px solid rgba(255, 255, 255, 0.22);
}
.bucket-bar--cell { border-top: none; padding-top: 0; margin-bottom: 1.5rem; }
.bucket-chip {
  width: 1.9em; height: 1.9em;
  display: grid; place-items: center;
  font-weight: 900; font-size: 0.8rem;
  color: #050506;
  background: var(--yellow);
  transform: skewX(-8deg);
}
.bucket-chip--b { background: var(--amber); }
.bucket-chip--c { background: var(--ember); }
.bucket-bar__label { font-size: 0.72rem; color: var(--white); }
.bucket-bar__meta { margin-left: auto; font-size: 0.64rem; color: var(--grey-dim); }

/* shared four-column line-sheet grid — column edges align down the page */
.index-head, .index-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 330px 220px;
  grid-template-areas: "num event facts action";
  column-gap: clamp(1.5rem, 3vw, 3rem);
}
.index-head {
  font-size: 0.58rem;
  color: var(--grey-dim);
  letter-spacing: 0.2em;
  padding: 0.6rem 0;
  border-top: 1px solid var(--line);
}
.index-head span:nth-child(1) { grid-area: num; }
.index-head span:nth-child(2) { grid-area: event; }
.index-head span:nth-child(3) { grid-area: facts; }
.index-head span:nth-child(4) { grid-area: action; }

.index-row {
  position: relative;
  align-items: start;
  padding: 3.2rem 1.5rem;
  margin-inline: -1.5rem;         /* hover wash extends past the column edges */
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--nav-h) + 16px);
  transition: background 0.35s ease;
}
.index-row:last-of-type { border-bottom: 1px solid var(--line); }
.index-row:hover, .index-row:focus-within { background: var(--panel); }

.index-row__spine {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad-bolt);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.index-row:hover .index-row__spine,
.index-row:focus-within .index-row__spine { transform: scaleY(1); }

.index-row__num { grid-area: num; }
.num {
  display: block;
  font-weight: 200;                /* thin against the 900 name — the brand rule */
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.38);
}
.index-row:hover .num {
  background: var(--grad-bolt);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.sub { display: block; font-size: 0.56rem; color: var(--grey-dim); margin-top: 0.7rem; }

.index-row__event { grid-area: event; }
.index-row__name {
  font-size: clamp(2.6rem, 4.4vw, 4.2rem);
  font-weight: 900; font-stretch: 92%;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 1.3rem;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.index-row:hover .index-row__name { transform: translateX(14px); }
.index-row__lede {
  font-size: 1.1rem; font-weight: 700;
  max-width: 30em;
  margin-bottom: 0.8rem;
}
.index-row__desc {
  font-size: 0.95rem; font-weight: 350;
  color: var(--grey);
  max-width: 36em;
}

/* facts ledger — labels align in one yellow gutter across all rows */
.facts { grid-area: facts; margin: 0; }
.facts__row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}
.facts dt {
  font-size: 0.6rem;
  color: var(--yellow);
  letter-spacing: 0.18em;
  padding-top: 0.25em;
}
.facts dd { margin: 0; font-size: 0.95rem; font-weight: 500; line-height: 1.5; }

.index-row__action {
  grid-area: action;
  display: flex; flex-direction: column; gap: 1.4rem;
}
.index-row__action .btn { text-align: center; }

.photo-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--line);
  background: var(--panel);
  display: grid; place-items: center;
  overflow: hidden;
}
.photo-frame::before, .photo-frame::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  z-index: 1;
}
.photo-frame::before { top: 6px; left: 6px; border-top: 2px solid var(--yellow); border-left: 2px solid var(--yellow); }
.photo-frame::after { bottom: 6px; right: 6px; border-bottom: 2px solid var(--yellow); border-right: 2px solid var(--yellow); }
.photo-frame img { width: 55%; opacity: 0.85; }
.photo-frame figcaption {
  position: absolute; bottom: 0.55rem; left: 0.7rem;
  font-size: 0.54rem;
  letter-spacing: 0.16em;
  color: var(--grey-dim);
}

/* appendix spread — B + C share a hairline spine */
.appendix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 4.5rem;
}
.appendix__cell {
  --cellpad: clamp(2rem, 3.5vw, 3.5rem);
  background: var(--ink);
  padding: var(--cellpad);
  scroll-margin-top: calc(var(--nav-h) + 16px);
}
.appendix__title {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  font-weight: 900; font-stretch: 92%;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.appendix__title em { font-style: italic; font-weight: 350; text-transform: none; letter-spacing: 0; }
.appendix__cell p { font-weight: 350; color: var(--grey); margin-bottom: 1.8rem; max-width: 46ch; }

.venue-list { list-style: none; }
.venue-list li {
  display: flex; align-items: baseline; gap: 0.8em;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--grey);
}
.venue-list li::before { content: "//"; color: var(--yellow); }

/* the hot cell — the gradient crescendo of the A→B→C color story */
.appendix__cell--hot { background: var(--grad-bolt); color: #050506; }
.appendix__cell--hot .bucket-bar__label { color: #050506; }
.appendix__cell--hot .bucket-bar__meta { color: rgba(0, 0, 0, 0.6); }
.appendix__cell--hot .bucket-chip--c { background: #050506; color: var(--yellow); }
.appendix__cell--hot p { color: rgba(0, 0, 0, 0.78); }
.appendix__cell--hot .venue-list li { border-top-color: rgba(0, 0, 0, 0.28); color: rgba(0, 0, 0, 0.82); }
.appendix__cell--hot .venue-list li::before { color: #050506; }

.caret {
  display: inline-block;
  width: 0.55em; height: 1em;
  margin-left: 0.4em;
  background: currentColor;
  vertical-align: -0.15em;
  animation: caretBlink 1.1s steps(1) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }
.chip-row { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  font-size: 0.62rem;
  padding: 0.5em 1em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  color: var(--grey);
}
.chip--dark { border-color: rgba(0, 0, 0, 0.4); color: rgba(0, 0, 0, 0.8); }
.chip--btn { cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s; }
.chip--btn:hover { border-color: var(--yellow); color: var(--yellow); }

/* ───────────────────────── proof ───────────────────────── */

.proof { border-top: 1px solid var(--line); }
.proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4.5rem;
}
.proof__stats--three { grid-template-columns: repeat(3, 1fr); }
.stat { border-left: 2px solid var(--yellow); padding-left: 1.4rem; }
.stat__num {
  display: block;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 900; font-stretch: 90%;
  line-height: 1;
  background: var(--grad-bolt);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.stat__label { display: block; margin-top: 0.7rem; font-size: 0.66rem; color: var(--grey); }

.logo-wall {
  list-style: none;
  display: flex; flex-wrap: nowrap; gap: 0 3.2rem;
  align-items: center; justify-content: space-evenly;
  padding-top: 2.8rem;
  border-top: 1px solid var(--line);
  overflow-x: auto;
}
.logo-wall__item { display: flex; align-items: center; flex-shrink: 0; }
/* per-brand --lh = optically matched height: logos with tall/stacked marks
   (cisco, supermicro) need MORE pixels to read the same size as wide
   lockups (nvidia). Baked white-on-transparent assets live in assets/logos/. */
.logo-wall__img {
  height: var(--lh, 34px); width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: opacity 0.25s ease;
}
.logo-wall__img--invert { filter: brightness(0) invert(1); }
.logo-wall__item:hover .logo-wall__img { opacity: 1; }

/* ───────────────────────── studio ───────────────────────── */

.studio {
  position: relative;
  background: var(--ink);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.studio__ghost {
  position: absolute; top: 0.5rem; right: -2rem;
  font-weight: 900; font-stretch: 88%;
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}
.studio__inner { position: relative; }
.studio__title { margin-bottom: 1.6rem; }
.studio__lede { margin-bottom: 3.5rem; }

.studio__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.studio__reel {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--black);
}
.studio__reel video { width: 100%; height: 100%; object-fit: cover; }
.studio__reel-badge {
  position: absolute; top: 1rem; left: 1rem;
  display: flex; align-items: center; gap: 0.6em;
  font-size: 0.62rem; color: var(--white);
  background: rgba(5, 5, 6, 0.65);
  padding: 0.55em 1em;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.rec-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  animation: recBlink 1.4s steps(1) infinite;
}
@keyframes recBlink { 50% { opacity: 0.25; } }

/* full-frame play affordance over the teaser */
.studio__play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  cursor: pointer;
  background: linear-gradient(to top, rgba(5, 5, 6, 0.6), transparent 45%);
  transition: background 0.3s ease;
}
.studio__play:hover, .studio__play:focus-visible {
  background: linear-gradient(to top, rgba(5, 5, 6, 0.75), rgba(5, 5, 6, 0.25));
}
.studio__play-chip {
  display: flex; align-items: center; gap: 0.9em;
  background: var(--yellow);
  color: #050506;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.95em 1.8em;
  transform: skewX(-8deg);
  transition: transform 0.3s ease, background 0.3s ease;
}
.studio__play-chip > span { transform: skewX(8deg); }
.studio__play:hover .studio__play-chip,
.studio__play:focus-visible .studio__play-chip { transform: skewX(-8deg) scale(1.06); }
.studio__play-icon {
  width: 0; height: 0;
  border-left: 12px solid currentColor;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/* showreel lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9600;
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 5, 6, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}
.lightbox__body { position: relative; width: min(1200px, 100%); }
.lightbox__body video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line);
  display: block;
}
.lightbox__close {
  position: absolute;
  top: -2.6rem; right: 0;
  font-size: 0.66rem;
  color: var(--grey);
  letter-spacing: 0.16em;
  padding: 0.5em 0;
  transition: color 0.2s;
}
.lightbox__close:hover { color: var(--yellow); }

.studio__list-label { font-size: 0.68rem; color: var(--yellow); margin-bottom: 1.3rem; }
.studio__list ul { list-style: none; margin-bottom: 2.2rem; }
.studio__list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  display: flex; align-items: center; gap: 0.9rem;
}
.studio__list li::before {
  content: "";
  width: 9px; height: 13px; flex: none;
  background: var(--grad-bolt);
  clip-path: polygon(60% 0, 15% 58%, 45% 58%, 40% 100%, 85% 40%, 55% 40%);
}

/* ───────────────────────── advisory ───────────────────────── */

.advisory { border-top: 1px solid var(--line); }
.advisory__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.advisory__body .body-lg { margin-bottom: 2.2rem; }
.advisory__list { list-style: none; margin-bottom: 2.4rem; }
.advisory__list li {
  display: flex; gap: 1.3rem; align-items: baseline;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 350; color: var(--grey);
}
.adv-num {
  flex: none;
  width: 2.1em; height: 2.1em;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-size: 0.72rem;
  transform: skewX(-8deg);
}

/* ───────────────────────── council ───────────────────────── */

.council {
  background:
    radial-gradient(60% 120% at 50% 130%, rgba(255, 61, 0, 0.16), transparent 70%),
    var(--black);
  border-top: 1px solid var(--line);
}
.council__inner {
  text-align: center;
  max-width: 900px; margin: 0 auto;
}
.council__title {
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  font-weight: 900; font-stretch: 90%;
  margin: 1.6rem 0 1.2rem;
}
.council__desc {
  color: var(--grey); font-weight: 350;
  font-size: 1.1rem;
  max-width: 40em; margin: 0 auto 1.8rem;
}
.council__desc b { color: var(--white); font-weight: 700; }
.council__reveal {
  font-size: 0.7rem;
  color: var(--yellow);
  animation: shimmer 3.2s ease-in-out infinite;
}
@keyframes shimmer { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }

/* ───────────────────────── insights ───────────────────────── */

.insights { border-top: 1px solid var(--line); }
.insights__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}
.insights__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 3rem;
}
.icard {
  display: flex; flex-direction: column; gap: 1rem;
  padding: clamp(1.6rem, 2.5vw, 2.2rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.3s, transform 0.3s;
}
.icard:hover { border-color: rgba(255, 197, 1, 0.5); transform: translateY(-5px); }
.icard .tag { align-self: flex-start; }
.icard h3 {
  font-size: 1.35rem; font-weight: 900; font-stretch: 92%;
  text-transform: uppercase; line-height: 1.1;
}
.icard p { color: var(--grey); font-weight: 350; flex: 1; }
.insights__ctas { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ───────────────────────── team ───────────────────────── */

.team { background: var(--ink); border-top: 1px solid var(--line); }
.team .h-display { margin-bottom: 3rem; }
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
}
/* Credential-badge cards — direct lift from the brand ID system */
.badge {
  position: relative;
  aspect-ratio: 2 / 3;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.6rem;
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.badge:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 24px 60px -20px rgba(255, 138, 0, 0.25);
}
.badge__bolt {
  position: absolute; top: -2%; left: 0; right: 0;
  width: 100%;
  opacity: 0.95;
  transition: transform 0.4s ease;
}
.badge:hover .badge__bolt { transform: scale(1.06); }
.badge__lower { position: relative; }
.badge__name {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 900; font-stretch: 88%;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.badge__org { font-size: 0.62rem; color: var(--grey); margin-bottom: 0.3rem; }
.badge__role { font-size: 0.62rem; color: var(--yellow); min-height: 1em; }
.badge__brand {
  position: absolute; right: 1.2rem; bottom: 1.2rem;
  width: 64px; opacity: 0.9;
}

/* credential badge with a real headshot */
.badge--photo .badge__photo {
  position: absolute; top: 0; left: 0;
  width: 100%; aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 0.4s ease;
}
.badge--photo:hover .badge__photo { transform: scale(1.05); }
.badge--photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 36%, rgba(0, 0, 0, 0.6) 58%, #000 76%);
}
.badge--photo .badge__lower, .badge--photo .badge__brand { z-index: 1; }

/* ───────────────────────── contact ───────────────────────── */

.contact { border-top: 1px solid var(--line); }
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact__intro .body-lg { margin-bottom: 2.4rem; }
.contact__quick-label { font-size: 0.66rem; color: var(--grey-dim); margin-bottom: 1rem; }
.contact__grid--solo { grid-template-columns: 1fr; max-width: 920px; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 0.6rem; }

.form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form__field { display: flex; flex-direction: column; gap: 0.55rem; }
.form__field label { font-size: 0.62rem; color: var(--grey); }
.form__field input, .form__field select {
  background: var(--black);
  border: 1px solid var(--line);
  color: var(--white);
  font: inherit;
  padding: 0.9em 1em;
  border-radius: 2px;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form__field input::placeholder { color: var(--grey-dim); }
.form__field input:focus, .form__field select:focus {
  outline: none;
  border-color: var(--yellow);
}
.form__select { position: relative; }
.form__select::after {
  content: "";
  position: absolute; right: 1rem; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.form__success { font-size: 0.72rem; color: var(--yellow); text-align: center; }
.form.is-sent .form__success { display: block; }

input:invalid:not(:placeholder-shown) { border-color: rgba(255, 61, 0, 0.6); }

/* ───────────────────────── footer ───────────────────────── */

.footer {
  position: relative;
  background: var(--black);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer__ghost {
  position: absolute; left: 50%; bottom: -0.28em;
  transform: translateX(-50%);
  font-weight: 900; font-stretch: 88%;
  font-size: clamp(8rem, 24vw, 26rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}
.footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__logo { height: 34px; width: auto; margin-bottom: 1.2rem; }
.footer__tagline { font-size: 0.66rem; color: var(--yellow); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__col { display: flex; flex-direction: column; gap: 0.8rem; }
.footer__col-label { font-size: 0.62rem; color: var(--grey-dim); margin-bottom: 0.4rem; }
.footer__col a, .footer__col span { font-weight: 350; color: var(--grey); font-size: 0.95rem; }
.footer__col a:hover { color: var(--yellow); }
.footer__legal {
  position: relative;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem; padding-bottom: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.62rem; color: var(--grey-dim);
}

/* ───────────────────────── responsive ───────────────────────── */

@media (max-width: 1100px) {
  /* line sheet: facts + action drop below the event copy */
  .index-head { display: none; }
  .index-row {
    grid-template-columns: 64px minmax(0, 1.15fr) minmax(0, 1fr);
    grid-template-areas:
      "num event event"
      "num facts action";
    row-gap: 2.2rem;
  }
  .events__head { grid-template-columns: 1fr; align-items: start; }
  .ledger { max-width: 560px; }
}

@media (max-width: 1024px) {
  .ecosystem__grid { grid-template-columns: 1fr; }
  .ecosystem__sticky { position: static; }
  .ecosystem__bolt { display: none; }
  .studio__grid { grid-template-columns: 1fr; }
  .advisory__grid { grid-template-columns: 1fr; }
  .insights__head { grid-template-columns: 1fr; align-items: start; }
  .insights__cards { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .proof__stats { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
}

@media (max-width: 768px) {
  /* no open right side on small screens — soften the shift so the footage
     keeps its identity instead of over-cropping */
  .hero__media { --video-shift: 15%; }
  .hero__line--1, .hero__line--2 { font-size: clamp(2.55rem, 13.5vw, 3.4rem); }
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .insights__cards { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; max-width: 380px; }
  .form__row { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
  /* line sheet: single-column ledger, every ruled line kept */
  .index-row {
    grid-template-columns: 1fr;
    grid-template-areas: "num" "event" "facts" "action";
    row-gap: 1.6rem;
    padding-block: 2.4rem;
  }
  .index-row__num {
    display: flex; justify-content: space-between; align-items: baseline;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--line);
  }
  .num { font-size: 1.6rem; }
  .sub { margin-top: 0; }
  .index-row__name { font-size: clamp(2.2rem, 11vw, 2.8rem); }
  .facts__row { grid-template-columns: 76px 1fr; }
  .index-row__action .btn { width: 100%; }
  .photo-frame { max-width: 420px; }
  .ledger__meta { display: none; }         /* keep jump lines compact */
  .ledger__leader { display: none; }
  .appendix { grid-template-columns: 1fr; margin-top: 3rem; }
  .logo-wall { flex-wrap: wrap; justify-content: center; gap: 2rem 2.8rem; overflow-x: hidden; }
  .logo-wall__img { height: calc(var(--lh, 34px) * 0.78); }
}

/* ───────────────────────── motion safety ───────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__embers { display: none; }
}
