:root {
  --orange: #fb5204;
  --orange-deep: #d33d00;
  --ink: #151315;
  --ink-2: #1e1b1e;
  --ink-3: #2b282b;
  --paper: #f7f2ef;
  --mute: #a39d99;
  --pad: clamp(20px, 4.5vw, 88px);
  --skew: -29deg;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Archivo", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* film grain, same feel as the brand banner */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.07;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; -webkit-appearance: none; appearance: none; }
h1, h2, h3, p, ul, ol, dl, dd, figure, fieldset { margin: 0; padding: 0; }
ul, ol { list-style: none; }
fieldset { border: 0; min-width: 0; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }

/* ---------- type ---------- */
.display {
  font-size: clamp(46px, 8.4vw, 150px);
  font-weight: 900;
  font-style: italic;
  font-stretch: 125%;
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.display--xl { font-size: clamp(54px, 12.4vw, 230px); }
.display em { color: var(--orange); font-style: inherit; }
.display .split-line { padding: 0.06em 0.12em 0.02em 0; margin: -0.06em 0 -0.02em; }

.lead { max-width: 46ch; color: #cfc8c3; font-size: clamp(16px, 1.25vw, 20px); }

h3 {
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 900;
  font-style: italic;
  font-stretch: 118%;
  line-height: 1;
  text-transform: uppercase;
}

/* ---------- buttons: the parallelogram from the logo ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  isolation: isolate;
}
.btn::before, .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 8px;
  transform: skewX(-18deg);
  transition: transform 0.45s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn::before { background: var(--bg, var(--orange)); border: 2px solid var(--bd, transparent); }
/* the pointer melts into the button: solid ones swell, the outlined one floods with white */
.btn::after { background: var(--paper); transform: skewX(-18deg) scaleX(0); transform-origin: 0 50%; }
.btn:focus-visible { outline: 0; }
.btn:focus-visible::before { outline: 2px solid currentColor; outline-offset: 3px; }
.btn span { display: inline-block; transition: transform 0.3s var(--ease); }
.btn { transition: color 0.3s var(--ease); }
.btn--accent { --bg: var(--orange); color: #fff; }
.btn--light { --bg: var(--paper); color: var(--ink); }
.btn--dark { --bg: var(--ink); color: var(--paper); }
.btn--ghost { --bg: transparent; --bd: rgba(247, 242, 239, 0.4); }
.btn--accent::after, .btn--light::after, .btn--dark::after { display: none; }
@media (hover: hover) {
  .btn--accent:hover::before, .btn--light:hover::before, .btn--dark:hover::before { transform: skewX(-18deg) scale(1.08, 1.22); }
  .btn--accent:hover { --bg: #ff5f14; }
  .btn--ghost:hover { color: var(--ink); --bd: var(--paper); }
  .btn--ghost:hover::after { transform: skewX(-18deg) scaleX(1); }
}

/* ---------- loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 44px) var(--pad);
  background: var(--ink);
  overflow: hidden;
  /* safety net: never trap the visitor if scripts fail */
  animation: loaderFailsafe 0.6s 6s forwards;
}
@keyframes loaderFailsafe { to { opacity: 0; visibility: hidden; } }
.loader.is-done { display: none; }
.loader__top { display: flex; align-items: center; gap: 16px; font-size: 12px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; }
.loader__top img { width: 46px; height: auto; }
.loader__count {
  font-size: clamp(110px, 26vw, 460px);
  font-weight: 900;
  font-style: italic;
  font-stretch: 125%;
  line-height: 0.8;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.loader__count i { font-size: 0.3em; color: var(--orange); margin-left: 0.1em; }
.loader__bottom { display: grid; gap: 16px; font-size: 12px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mute); }
.loader__bar { display: flex; gap: 5px; padding-left: 8px; }
.loader__bar i { flex: 1; height: 16px; border-radius: 3px; background: var(--ink-3); transform: skewX(var(--skew)); transition: background 0.15s; }
.loader__bar i.on { background: var(--orange); }
/* the strips lean 29deg, so the row is wider than the screen by the lean on both sides: no open corners */
.loader__wipe { position: absolute; inset: 0 -62vh; display: flex; pointer-events: none; }
.loader__wipe i { flex: 1; margin: 0 -8vw; background: var(--orange-deep); transform: translate(-60vh, 106vh) skewX(var(--skew)); }
.no-loader .loader { display: none; }

/* ---------- cursor ---------- */
.cursor {
  position: fixed;
  left: 0; top: 0;
  z-index: 95;
  width: 18px; height: 14px;
  margin: -7px 0 0 -9px;
  border-radius: 3px;
  background: var(--orange-deep);
  pointer-events: none;
  opacity: 0;
  transform: skewX(var(--skew));
}
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 18px var(--pad);
  transition: transform 0.5s var(--ease), background 0.3s;
}
.nav.is-hidden { transform: translateY(-100%); }
.nav.is-solid { background: var(--ink); }
.nav__logo { opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.nav__logo img { height: 40px; width: auto; }
.nav.is-solid .nav__logo { opacity: 1; pointer-events: auto; }
.nav__links { display: flex; gap: clamp(18px, 2.4vw, 40px); margin-left: auto; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.nav__links a { position: relative; padding: 6px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav.is-solid .nav__cta { --bg: var(--orange); color: #fff; }

.nav--page .nav__logo { opacity: 1; pointer-events: auto; }
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__toggle { display: none; }

/* phone menu: full screen, big type */
.menu { position: fixed; inset: 0; z-index: 70; display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 110px var(--pad) 40px; background: var(--ink); }
.menu[hidden] { display: none; }
.menu a { font-size: clamp(32px, 9.6vw, 72px); font-weight: 900; font-style: italic; font-stretch: 125%; line-height: 1; letter-spacing: -0.02em; text-transform: uppercase; animation: calIn 0.5s var(--ease) backwards; }
.menu a:nth-child(2) { animation-delay: 0.04s; } .menu a:nth-child(3) { animation-delay: 0.08s; } .menu a:nth-child(4) { animation-delay: 0.12s; }
.menu a[aria-current="page"] { color: var(--orange); }
.menu a.menu__small { margin-top: 18px; font-size: 13px; font-weight: 700; font-style: normal; font-stretch: 100%; letter-spacing: 0.24em; color: var(--mute); animation-delay: 0.16s; }
.menu a.menu__small + .menu__small { margin-top: 6px; }

/* ---------- sub page hero ---------- */
.phero { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: min(78svh, 820px); padding: 150px var(--pad) clamp(40px, 5vw, 80px); background: var(--orange); overflow: hidden; isolation: isolate; }
.phero__title { font-size: clamp(54px, min(10vw, 17vh), 210px); font-weight: 900; font-style: italic; font-stretch: 125%; line-height: 0.86; letter-spacing: -0.035em; text-transform: uppercase; }
.phero__lead { max-width: 46ch; margin-top: clamp(22px, 2.6vw, 44px); font-size: clamp(16px, 1.3vw, 21px); font-weight: 500; color: #fff; }
.loader--page { background: transparent; pointer-events: none; }
.loader--page .loader__wipe i { transform: skewX(var(--skew)); }

.team { padding: 0 var(--pad) clamp(80px, 10vw, 180px); }
.team[hidden] { display: none; }
.team__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(30px, 6vw, 120px); align-items: end; }
.team .display { font-size: clamp(42px, 5.6vw, 104px); }
.team__groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(36px, 4vw, 70px) clamp(30px, 6vw, 120px); margin-top: clamp(40px, 5vw, 90px); }
.team__group { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 0.32fr) minmax(0, 1fr); gap: 20px clamp(20px, 3vw, 60px); padding-top: 22px; border-top: 2px solid var(--ink-3); }
.team__group--small { grid-column: span 1; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr); }
.team__group--small .team__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team__group h3 { font-size: clamp(18px, 1.5vw, 26px); }
.team__group h3 small { display: block; margin-top: 8px; font-size: 12px; font-weight: 700; font-style: normal; font-stretch: 100%; letter-spacing: 0.22em; color: var(--mute); }
.team__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 22px 16px; }
.team__body { display: grid; gap: clamp(22px, 2.4vw, 36px); justify-items: start; min-width: 0; }
.team__body .team__grid { width: 100%; }
.team__more[hidden] { display: none; }
.team__more { margin-left: 8px; }
.team__more:disabled { opacity: 0.5; cursor: progress; }
.member { display: grid; gap: 10px; min-width: 0; }
.member__pic { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 8px; background: var(--ink-2); clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%); }
.member__pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.member__pic::after { content: ""; position: absolute; inset: auto 0 0 0; height: 5px; background: var(--orange); transform: scaleX(0); transform-origin: 0 50%; transition: transform 0.45s var(--ease); }
.member b { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; font-weight: 800; }
.member span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; color: var(--mute); }
@media (hover: hover) {
  .member:hover .member__pic img { transform: scale(1.08); }
  .member:hover .member__pic::after { transform: scaleX(1); }
}

.duties { padding: clamp(80px, 10vw, 180px) var(--pad); }
.crew__cols.crew__cols--four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1199px) { .crew__cols.crew__cols--four { grid-template-columns: repeat(2, 1fr); } }
.duties .crew__cols article { border-top-color: var(--ink-3); }
.duties .crew__cols p { color: #cfc8c3; }
.rank.rank--plain { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); }
.pcta { padding: clamp(80px, 10vw, 180px) var(--pad); background: var(--ink-2); }
.pcta__row, .crew__cta { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: clamp(30px, 3.4vw, 54px); padding-left: 8px; }
.crew__cta { margin-top: clamp(40px, 5vw, 80px); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto auto;
  min-height: 100svh;
  padding: 110px var(--pad) clamp(26px, 3.4vw, 54px);
  background: var(--orange);
  overflow: hidden;
  isolation: isolate;
}
/* shapes stay clear of the menu row */
.hero__checkers { position: absolute; inset: 96px 0 0; z-index: -1; overflow: hidden; }
.hero__grid {
  position: absolute;
  right: -4vw;
  bottom: -6vh;
  width: 66vw;
  height: 84%;
  transform: skewX(var(--skew));
  transform-origin: 100% 100%;
}
.chk { position: absolute; border-radius: clamp(14px, 2.2vw, 40px); background: linear-gradient(200deg, #cf3b00, #e64802 85%); }
.chk--a { left: 0; top: 66%; width: 35%; height: 44%; }
.chk--b { left: 35%; top: 34%; width: 33%; height: 32%; }
.chk--c { left: 68%; top: 66%; width: 40%; height: 44%; }
.chk--d { left: 68%; top: 0; width: 40%; height: 34%; }

.hero__side {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  width: clamp(240px, 27vw, 540px);
  margin-right: clamp(0px, 5vw, 110px);
  will-change: transform;
}
.hero__logo { width: 100%; height: auto; }

/* launch countdown */
.hero__side, .launch { position: relative; z-index: 3; }
.launch { margin-top: clamp(26px, 3vw, 54px); padding-top: clamp(18px, 1.8vw, 28px); border-top: 2px solid #fff; }
.launch__label { font-size: clamp(11px, 0.95vw, 15px); font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; }
.launch__label b { font-weight: 900; }
.launch__timer { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 14px; }
.launch__timer span { display: grid; gap: 6px; }
.launch__timer b { font-size: clamp(30px, 3.5vw, 66px); font-weight: 900; font-style: italic; font-stretch: 122%; line-height: 0.95; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.launch__timer i { font-style: normal; font-size: 10px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; }
.launch__now { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; margin-top: clamp(16px, 1.6vw, 24px); font-size: clamp(13px, 1vw, 15px); font-weight: 600; }
.launch__now a { font-weight: 800; border-bottom: 2px solid #fff; padding-bottom: 1px; transition: opacity 0.3s; }
.launch__now a:hover { opacity: 0.75; }
.live { width: 9px; height: 9px; border-radius: 50%; background: #fff; animation: live 1.6s ease-in-out infinite; }
@keyframes live { 50% { opacity: 0.3; } }
.cal { position: relative; margin-top: clamp(18px, 1.8vw, 28px); padding-left: 8px; }
/* the options are the same slanted plates as the buttons, stepping left along the slant */
.cal__menu { position: absolute; left: 8px; top: calc(100% + 8px); z-index: 5; display: grid; justify-items: start; gap: 6px; }
.cal__menu[hidden] { display: none; }
.cal__menu a { position: relative; display: inline-flex; align-items: center; height: 46px; padding: 0 26px; font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; color: var(--paper); isolation: isolate; outline: 0; transition: color 0.3s var(--ease); animation: calIn 0.45s var(--ease) backwards; }
.cal__menu a:nth-child(1) { margin-left: -16px; }
.cal__menu a:nth-child(2) { margin-left: -33px; animation-delay: 0.06s; }
.cal__menu a::before, .cal__menu a::after { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: 8px; transform: skewX(-18deg); transition: transform 0.45s var(--ease); }
.cal__menu a::before { background: var(--ink); }
.cal__menu a::after { background: var(--paper); transform: skewX(-18deg) scaleX(0); transform-origin: 0 50%; }
.cal__menu a:hover, .cal__menu a:focus-visible { color: var(--ink); }
.cal__menu a:hover::after, .cal__menu a:focus-visible::after { transform: skewX(-18deg) scaleX(1); }
@keyframes calIn { from { opacity: 0; translate: -18px 0; } }
/* headline scales with width and height, so it stays in proportion on laptop screens */
.hero__copy { --fs: clamp(60px, min(10.6vw, 18.5vh), 230px); grid-column: 1; grid-row: 1; align-self: center; will-change: transform; }
.hero__title {
  font-size: var(--fs);
  font-weight: 900;
  font-style: italic;
  font-stretch: 125%;
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.mask { display: block; overflow: hidden; padding: 0.04em 0.2em 0 0.12em; margin: 0 -0.2em 0 -0.12em; }
.mask:last-child { padding-bottom: 0.06em; }
.line { display: block; will-change: transform; }
.dot { display: inline-block; width: 0.27em; height: 0.25em; margin-left: 0.04em; border-radius: 0.08em; background: currentColor; transform: skewX(-14deg); }
.hero__sub {
  margin-top: clamp(14px, 1.8vw, 30px);
  font-size: calc(var(--fs) * 0.158);
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero__soon { margin-top: clamp(18px, 2vw, 32px); font-size: clamp(14px, 1.15vw, 19px); }
.hero__soon b { padding: 5px 10px 4px; border-radius: 4px; background: var(--ink); color: var(--paper); font-size: 0.78em; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap; }
.hero__foot {
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 70px);
  margin-top: clamp(30px, 6vh, 80px);
  font-size: clamp(11px, 0.95vw, 15px);
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.hero__tag { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 46px); }
.rule { display: block; width: clamp(40px, 5vw, 100px); height: 2px; background: currentColor; transform-origin: left; }
.hero__next { display: grid; gap: 8px; margin-left: auto; padding-left: clamp(16px, 2vw, 30px); border-left: 2px solid #fff; }
.hero__next-label { font-size: 0.82em; }
.hero__next-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 14px; letter-spacing: 0.04em; white-space: nowrap; }
.hero__next-row b { font-size: clamp(22px, 2.3vw, 40px); font-weight: 900; font-style: italic; font-stretch: 122%; line-height: 1; }
.hero__next-row i { font-style: normal; font-size: 0.82em; letter-spacing: 0.2em; }
.hero__next-row strong { padding: 5px 10px 4px; border-radius: 4px; background: var(--ink); font-weight: 800; letter-spacing: 0.1em; font-variant-numeric: tabular-nums; }

/* ---------- marquee ---------- */
.marquee { position: relative; z-index: 2; padding: clamp(26px, 3.4vw, 54px) 0; background: var(--ink); overflow: hidden; }
.marquee__row {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 52px);
  width: max-content;
  font-size: clamp(40px, 7vw, 120px);
  font-weight: 900;
  font-style: italic;
  font-stretch: 125%;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform;
}
.marquee__row--alt { margin-left: -60vw; color: var(--orange); }
.marquee--garage { background: var(--ink-2); }
.marquee__row img { height: 0.5em; width: auto; }
.marquee .out { color: transparent; -webkit-text-stroke: 1.5px var(--paper); }
.marquee__row--alt .out { -webkit-text-stroke-color: var(--orange); }

/* ---------- manifesto ---------- */
.manifesto { padding: clamp(70px, 9vw, 160px) var(--pad); }
.manifesto__text {
  max-width: 21ch;
  font-size: clamp(28px, 3.7vw, 66px);
  font-weight: 800;
  font-stretch: 112%;
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.manifesto__text em { font-style: italic; color: var(--orange); }
.manifesto__cta { margin-top: clamp(28px, 3vw, 48px); padding-left: 8px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: clamp(60px, 8vw, 140px); border-top: 1px solid var(--ink-3); }
.stats div { padding-top: 22px; }
.stats dt { font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); }
.stats dd { margin-top: 10px; font-size: clamp(30px, 3.7vw, 66px); font-weight: 900; font-style: italic; font-stretch: 120%; line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }

/* ---------- venue ---------- */
.venue { background: var(--paper); color: var(--ink); overflow: hidden; }
.venue__track { display: flex; align-items: stretch; width: max-content; height: 100svh; min-height: 640px; will-change: transform; }
.panel { position: relative; display: flex; flex-direction: column; justify-content: center; flex: none; padding: 110px var(--pad) 70px; }
.panel[hidden] { display: none; }
.panel--intro { width: min(92vw, 1100px); }
.panel--intro .lead, .panel--flow .lead { color: #4a4542; margin-top: clamp(24px, 2.6vw, 44px); }
.panel__hint { display: flex; align-items: center; gap: 16px; margin-top: clamp(30px, 4vw, 60px); font-size: 12px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--orange); }
.panel__hint span { width: 60px; height: 2px; background: currentColor; }
.panel--img { width: min(86vw, 1240px); padding-left: 0; padding-right: clamp(30px, 5vw, 100px); }
.panel--low { justify-content: flex-end; }
.frame { display: grid; gap: 22px; }
.frame__img { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 6px; background: var(--ink); clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%); }
.frame__img img { position: absolute; inset: 0 -10%; width: 120%; max-width: none; height: 100%; object-fit: cover; will-change: transform; }
/* when a render is not there yet: the slatted reception wall from the venue, drawn in CSS */
.frame__img.is-empty { background: repeating-linear-gradient(90deg, #1b181b 0 14px, #262226 14px 20px); }
.frame__img.is-empty::before { content: ""; position: absolute; left: 0; right: 0; top: 12%; height: 3px; background: var(--orange); }
.frame__img.is-empty::after { content: attr(data-scene); position: absolute; inset: 0; display: grid; place-items: center; font-size: clamp(40px, 7vw, 120px); font-weight: 900; font-style: italic; font-stretch: 125%; text-transform: uppercase; letter-spacing: -0.02em; color: var(--paper); }
.frame figcaption { display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 12px clamp(24px, 3vw, 60px); padding-left: 7%; }
.frame figcaption p { max-width: 52ch; color: #4a4542; }
.panel--flow { width: min(92vw, 1000px); padding-right: calc(var(--pad) * 2); }
.flow { display: grid; gap: 0.04em; font-size: clamp(54px, 9.4vw, 170px); font-weight: 900; font-style: italic; font-stretch: 125%; line-height: 0.9; letter-spacing: -0.03em; text-transform: uppercase; }
.flow li { color: transparent; -webkit-text-stroke: 2px var(--ink); transition: color 0.4s, -webkit-text-stroke-color 0.4s; }
.flow li.is-on { color: var(--orange); -webkit-text-stroke-color: var(--orange); }
.flow li:nth-child(2) { padding-left: 0.5em; }
.flow li:nth-child(3) { padding-left: 1em; }

/* ---------- crew ---------- */
.crew { position: relative; padding: clamp(80px, 10vw, 180px) var(--pad); background: var(--orange); color: #fff; overflow: hidden; isolation: isolate; }
.crew__checkers { position: absolute; z-index: -1; right: -6vw; top: -4vh; width: 52vw; height: 70%; transform: skewX(var(--skew)); transform-origin: 100% 0; }
.crew__checkers i { position: absolute; border-radius: clamp(14px, 2vw, 36px); background: linear-gradient(20deg, #cf3b00, #e64802 85%); }
.crew__checkers i:nth-child(1) { left: 60%; top: 0; width: 42%; height: 40%; }
.crew__checkers i:nth-child(2) { left: 22%; top: 40%; width: 38%; height: 34%; }
.crew__checkers i:nth-child(3) { left: 60%; top: 74%; width: 42%; height: 34%; }
.crew__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3.4vw, 64px); margin-top: clamp(50px, 7vw, 120px); }
.crew__cols article { padding-top: 26px; border-top: 2px solid #fff; }
.crew__cols img { height: 26px; width: auto; margin-bottom: 22px; }
.crew__cols p { margin-top: 14px; max-width: 40ch; color: #fff; }

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

/* ---------- leaderboards (home) ---------- */
.boards { padding: clamp(80px, 10vw, 180px) var(--pad); overflow-x: clip; }
.boards__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(30px, 6vw, 120px); align-items: end; }
.boards .display { font-size: clamp(40px, 5vw, 96px); }
.boards__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(30px, 3.4vw, 64px); margin-top: clamp(40px, 5vw, 90px); }
.board h3 { padding-bottom: 18px; }
.board__row { position: relative; display: grid; grid-template-columns: 2.2ch 34px minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 11px 10px 11px 6px; border-bottom: 2px solid var(--ink-3); overflow: hidden; isolation: isolate; }
/* the bar behind each row: a leaning plate that runs in from the left */
.board__row::before { content: ""; position: absolute; inset: 0 auto 0 -80px; z-index: -1; width: calc(var(--w) * 100% + 80px); background: var(--ink-2); transform: skewX(var(--skew)); transform-origin: 0 100%; }
.board__row:first-child::before { background: var(--orange); }
.board__pos { font-size: 15px; font-weight: 900; font-style: italic; font-stretch: 118%; color: var(--mute); font-variant-numeric: tabular-nums; }
.board__face { width: 34px; height: 34px; border-radius: 6px; background: var(--ink-3); overflow: hidden; clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%); }
.board__face img { width: 100%; height: 100%; object-fit: cover; }
.board__name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 700; }
.board__val { font-size: clamp(17px, 1.4vw, 23px); font-weight: 900; font-style: italic; font-stretch: 118%; font-variant-numeric: tabular-nums; white-space: nowrap; }
.board__val i { display: none; font-size: 10px; font-style: normal; font-weight: 700; font-stretch: 100%; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); }
.board__row:first-child { padding-top: 16px; padding-bottom: 16px; color: #fff; }
.board__row:first-child .board__pos, .board__row:first-child .board__val i { color: #fff; }
.board__row:first-child .board__name { font-size: clamp(18px, 1.5vw, 24px); font-weight: 900; font-style: italic; font-stretch: 118%; }

/* ---------- become staff (home) ---------- */
.become { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 120px); align-items: end; padding: clamp(80px, 10vw, 180px) var(--pad); background: var(--ink-2); overflow-x: clip; }
/* single long words must fit their column: the line masks clip anything wider */
.become .display { font-size: clamp(42px, 6.4vw, 116px); }
.pcta .display { font-size: clamp(40px, 6.4vw, 116px); }
.become .lead { margin-top: clamp(24px, 2.6vw, 44px); }
.become__cta { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: clamp(30px, 3.4vw, 54px); padding-left: 8px; }
.become__list { border-bottom: 2px solid var(--ink-3); }
.become__list a { overflow: hidden; position: relative; display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); align-items: baseline; gap: 20px; padding: clamp(18px, 1.8vw, 28px) clamp(8px, 1.2vw, 20px); border-top: 2px solid var(--ink-3); isolation: isolate; transition: color 0.35s var(--ease); }
.become__list a::before { content: ""; position: absolute; inset: 0 -14%; z-index: -1; background: var(--orange); transform: skewX(var(--skew)) scaleX(0); transform-origin: 0 50%; transition: transform 0.6s var(--ease); }
.become__list b { font-size: clamp(24px, 2.6vw, 46px); font-weight: 900; font-style: italic; font-stretch: 122%; line-height: 1; text-transform: uppercase; transition: transform 0.45s var(--ease); }
.become__list span { color: #cfc8c3; transition: color 0.35s var(--ease); }
@media (hover: hover) {
  .become__list a:hover::before { transform: skewX(var(--skew)) scaleX(1); }
  .become__list a:hover b { transform: translateX(12px); }
  .become__list a:hover span { color: #fff; }
}

/* ---------- application centre ---------- */
.apply { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 120px); align-items: start; padding: clamp(80px, 10vw, 180px) var(--pad); background: var(--ink-2); overflow-x: clip; }
.apply .display, .ranks .display { font-size: clamp(42px, 5.6vw, 104px); }
.apply .lead, .ranks .lead { margin-top: clamp(24px, 2.6vw, 44px); }
.apply__links { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-top: clamp(28px, 3vw, 48px); padding-left: 8px; }
.quiz__bar { display: flex; gap: 5px; padding-left: 8px; }
.quiz__bar i { flex: 1; height: 12px; border-radius: 3px; background: var(--ink-3); transform: skewX(var(--skew)); transition: background 0.4s var(--ease); }
.quiz__bar i.on { background: var(--orange); }
.quiz__stage { min-height: 470px; padding-top: clamp(28px, 3vw, 48px); }
.quiz__q { font-size: clamp(26px, 2.7vw, 46px); line-height: 1.02; outline: 0; }
.quiz__note { margin-top: 16px; max-width: 44ch; color: #cfc8c3; }
.quiz__actions { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-top: clamp(26px, 2.6vw, 40px); padding-left: 8px; }
.quiz__form { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; margin-top: clamp(26px, 2.6vw, 40px); padding-left: 10px; }
.field { position: relative; flex: 1 1 260px; max-width: 420px; isolation: isolate; }
.field::before { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: 8px; border: 2px solid var(--ink-3); background: var(--ink); transform: skewX(-18deg); transition: border-color 0.3s; }
.field:focus-within::before { border-color: var(--orange); }
.field input { width: 100%; height: 50px; padding: 0 26px; border: 0; outline: 0; background: none; color: var(--paper); font: inherit; font-size: 17px; font-weight: 600; letter-spacing: 0.02em; }
.field input::placeholder { color: var(--mute); }
.quiz__msg { min-height: 1.6em; margin-top: 16px; color: #ff8a57; font-weight: 600; }
.quiz__who { display: flex; align-items: center; gap: 20px; }
.quiz__who img { width: 84px; height: 84px; border-radius: 8px; background: var(--ink); object-fit: cover; }
.quiz__who p { font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--mute); }
.quiz__who p b { display: block; margin-top: 6px; font-size: clamp(20px, 1.8vw, 30px); font-weight: 900; font-style: italic; font-stretch: 118%; letter-spacing: 0; line-height: 1; color: var(--paper); }
.quiz__who + .quiz__q { margin-top: 26px; }
.quiz__score { font-size: clamp(60px, 8vw, 150px); font-weight: 900; font-style: italic; font-stretch: 125%; line-height: 0.9; letter-spacing: -0.03em; color: var(--orange); }
.quiz__opts { display: grid; gap: 10px; margin-top: clamp(24px, 2.4vw, 38px); padding: 0 12px; }
.opt { position: relative; display: block; width: 100%; min-height: 62px; padding: 18px 28px; text-align: left; font-size: clamp(15px, 1.1vw, 18px); font-weight: 600; line-height: 1.35; color: var(--paper); isolation: isolate; transition: color 0.3s var(--ease); }
.opt::before, .opt::after { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: 8px; transform: skewX(-12deg); transition: transform 0.45s var(--ease), border-color 0.3s; }
.opt::before { border: 2px solid var(--ink-3); background: var(--ink); }
.opt::after { background: var(--orange); transform: skewX(-12deg) scaleX(0); transform-origin: 0 50%; }
.opt:focus-visible { outline: 0; }
.opt:focus-visible::before { border-color: var(--paper); }
.opt.is-picked { color: #fff; }
.opt.is-picked::after { transform: skewX(-12deg) scaleX(1); }
@media (hover: hover) {
  .opt:hover { color: #fff; }
  .opt:hover::after { transform: skewX(-12deg) scaleX(1); }
}

/* ---------- rank centre ---------- */
.ranks { padding: clamp(80px, 10vw, 180px) var(--pad); background: var(--paper); color: var(--ink); overflow-x: clip; }
.ranks__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(30px, 6vw, 120px); align-items: end; }
.ranks .lead { margin-top: 0; color: #4a4542; }
.ranks__list { margin-top: clamp(40px, 5vw, 90px); border-bottom: 2px solid var(--ink); }
.rank { overflow: hidden; position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr) auto auto; align-items: center; gap: clamp(16px, 3vw, 60px); padding: clamp(18px, 1.9vw, 30px) clamp(10px, 1.6vw, 28px); border-top: 2px solid var(--ink); isolation: isolate; transition: color 0.35s var(--ease); }
.rank::before { content: ""; position: absolute; inset: 0 -14%; z-index: -1; background: var(--orange); transform: skewX(var(--skew)) scaleX(0); transform-origin: 0 50%; transition: transform 0.6s var(--ease); }
.rank__name { font-size: clamp(22px, 2.5vw, 44px); font-weight: 900; font-style: italic; font-stretch: 122%; line-height: 1; letter-spacing: -0.02em; text-transform: uppercase; transition: transform 0.45s var(--ease); }
.rank__desc { color: #4a4542; transition: color 0.35s var(--ease); }
.rank__price { font-size: clamp(22px, 2.2vw, 38px); font-weight: 900; font-style: italic; font-stretch: 118%; line-height: 1; font-variant-numeric: tabular-nums; white-space: nowrap; text-align: right; }
.rank__price i { margin-right: 0.35em; font-size: 0.5em; font-style: normal; font-weight: 800; letter-spacing: 0.14em; vertical-align: 0.5em; }
.rank__go { position: relative; display: inline-flex; align-items: center; height: 42px; padding: 0 22px; font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; isolation: isolate; transition: color 0.35s var(--ease); }
.rank__go::before { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: 8px; background: var(--ink); transform: skewX(-18deg); transition: background 0.35s var(--ease); }
.rank:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
@media (hover: hover) {
  .rank:hover { color: #fff; }
  .rank:hover::before { transform: skewX(var(--skew)) scaleX(1); }
  .rank:hover .rank__name { transform: translateX(14px); }
  .rank:hover .rank__desc { color: #fff; }
  .rank:hover .rank__go { color: var(--ink); }
  .rank:hover .rank__go::before { background: var(--paper); }
}

/* ---------- sessions ---------- */
.sessions { overflow-x: clip; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(40px, 6vw, 120px); align-items: end; padding: clamp(80px, 10vw, 180px) var(--pad); }
.sessions .display { font-size: clamp(40px, 4.7vw, 92px); }
.sessions .lead { margin-top: clamp(24px, 2.6vw, 44px); }
.sessions__cta { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: clamp(30px, 3.4vw, 54px); padding-left: 8px; }
.sessions__next { font-size: 12px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--mute); }
.sessions__next strong { display: block; margin-top: 8px; font-size: clamp(44px, 5.4vw, 96px); font-weight: 900; font-style: italic; font-stretch: 120%; line-height: 1; letter-spacing: -0.02em; color: var(--paper); font-variant-numeric: tabular-nums; }
#times { margin-top: 30px; border-top: 2px solid var(--ink-3); }
#times li { display: grid; grid-template-columns: auto auto 1fr; align-items: baseline; gap: 14px; padding: 16px 0; border-bottom: 2px solid var(--ink-3); transition: color 0.3s, padding 0.4s var(--ease); }
#times .t { font-size: clamp(26px, 2.6vw, 44px); font-weight: 900; font-style: italic; font-stretch: 120%; line-height: 1; font-variant-numeric: tabular-nums; }
#times .z, #times .l { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); }
#times .l { text-align: right; }
#times li.is-next { color: var(--orange); padding-left: 14px; border-bottom-color: var(--orange); }
#times li.is-next .l { color: var(--orange); }

/* ---------- footer ---------- */
.footer { padding: clamp(40px, 6vw, 100px) var(--pad) 34px; background: var(--orange); color: #fff; overflow: hidden; }
.footer__logo img { width: 100%; height: auto; will-change: transform; }
.footer__row { display: grid; grid-template-columns: 1fr auto; gap: 16px 40px; margin-top: clamp(40px, 5vw, 80px); padding-top: 22px; border-top: 2px solid #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.footer__row nav { display: flex; flex-wrap: wrap; gap: 10px 30px; }
.footer__row nav a { border-bottom: 2px solid transparent; transition: border-color 0.3s; }
.footer__row nav a:hover { border-color: #fff; }
.footer__fine { grid-column: 1; font-weight: 500; letter-spacing: 0.04em; text-transform: none; font-size: 13px; color: #fff; }

.footer__credit { grid-column: 2; justify-self: end; align-self: end; }
.footer__credit a { border-bottom: 2px solid #fff; padding-bottom: 2px; transition: opacity 0.3s; }
.footer__credit a:hover { opacity: 0.7; }

@media (min-width: 900px) and (max-width: 1199px) { .boards__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- responsive ---------- */
@media (max-width: 899px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__logo { margin-right: auto; }
  .nav__toggle { position: relative; z-index: 1; display: inline-flex; align-items: center; height: 44px; margin-left: auto; padding: 0 20px; font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); isolation: isolate; }
  .nav__toggle::before { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: 8px; background: var(--paper); transform: skewX(-18deg); }
  .crew__cols.crew__cols--four { grid-template-columns: 1fr; }
  .team__groups { grid-template-columns: 1fr; }
  .team__head, .team__group, .team__group--small { grid-template-columns: 1fr; grid-column: 1 / -1; }
  .team__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px 10px; }
  .rank.rank--plain { grid-template-columns: 1fr; }
  .rank--plain .rank__desc { grid-column: 1; grid-row: 2; }
  .phero { min-height: 70svh; padding-top: 120px; }
  .nav { justify-content: space-between; }
  .nav__cta { height: 44px; padding: 0 20px; font-size: 12px; }

  .hero { grid-template-columns: 1fr; grid-template-rows: auto 1fr auto auto; padding-top: 96px; }
  /* phone order: logo, headline, countdown, session */
  .hero__side { display: contents; }
  .hero__logo { grid-column: 1; grid-row: 1; width: min(62vw, 300px); margin-bottom: 40px; }
  .launch { grid-column: 1; grid-row: 3; margin-top: 30px; }
  .cal__menu { left: 26px; }
  .launch__timer b { font-size: clamp(34px, 11vw, 60px); }
  .hero__copy { --fs: clamp(60px, 19vw, 150px); grid-row: 2; align-self: end; }
  .hero__sub { letter-spacing: 0.3em; font-size: calc(var(--fs) * 0.17); }
  .hero__foot { grid-row: 4; flex-wrap: wrap; gap: 18px 24px; margin-top: 34px; }
  .hero__next { margin-left: 0; width: 100%; padding: 0; border: 0; }
  .hero__next-row strong { margin-left: auto; }
  .hero__grid { width: 120vw; height: 46%; right: -30vw; bottom: 14%; }

  .stats { grid-template-columns: 1fr 1fr; }

  .venue__track { flex-direction: column; width: auto; height: auto; min-height: 0; }
  .panel, .panel--intro, .panel--img, .panel--flow { width: auto; padding: 70px var(--pad) 0; }
  .panel--flow { padding-bottom: 80px; }
  .panel__hint { display: none; }
  .frame__img { aspect-ratio: 4 / 3; clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%); }
  .frame figcaption { grid-template-columns: 1fr; padding-left: 0; }

  .crew__cols { grid-template-columns: 1fr; }
  .crew__checkers { width: 110vw; right: -40vw; }
  .sessions { grid-template-columns: 1fr; }
  .apply { grid-template-columns: 1fr; }
  .become { grid-template-columns: 1fr; }
  .boards__head, .boards__grid { grid-template-columns: 1fr; }
  .become__list a { grid-template-columns: 1fr; gap: 8px; }
  .quiz__stage { min-height: 520px; }
  .quiz__opts { padding: 0 8px; }
  .ranks__head { grid-template-columns: 1fr; }
  .rank { grid-template-columns: 1fr auto; gap: 8px 16px; padding: 20px 4px; }
  .rank__name { grid-column: 1; }
  .rank__price { grid-column: 2; grid-row: 1; }
  .rank__desc { grid-column: 1; grid-row: 2; }
  .rank__go { grid-column: 2; grid-row: 2; justify-self: end; height: 38px; padding: 0 16px; }
  .footer__row { grid-template-columns: 1fr; }
  .footer__credit { grid-column: 1; justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  .live { animation: none; }
  .cal__menu a { animation: none; }
  .loader { display: none; }
}

/* ---------- sessions switched off ----------
   Remove class="hide-sessions" from <body> on each page to bring the session schedule back. */
.hide-sessions .is-session { display: none !important; }
.hide-sessions .sessions { grid-template-columns: 1fr; }
.hide-sessions .stats { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 899px) {
  .hide-sessions .stats { grid-template-columns: 1fr 1fr; }
  .hide-sessions .stats div:nth-child(3) { grid-column: 1 / -1; }
}

/* ---------- launch countdown switched off ----------
   Remove "hide-countdown" from <body> in index.html to bring back the timer and the calendar button. */
.launch__play { display: none; flex-wrap: wrap; gap: 16px 24px; }
.hide-countdown .is-countdown { display: none !important; }
.hide-countdown .launch__play { display: flex; }

/* ---------- on-site application switched off (coming soon) ----------
   Remove "hide-apply" from <body> on each page to bring the application form back.
   .is-apply is the real thing, .apply-soon is the stand-in that sends people to Roblox. */
body:not(.hide-apply) .apply-soon { display: none !important; }
.hide-apply .is-apply { display: none !important; }
.hide-apply .apply { grid-template-columns: 1fr; }
