/* ============================================================
   TAURUS TECH SHOWCASE 2026 - "Main Stage" build (v4)
   Obsidian + Taurus red. Real footage. Big Shoulders / General Sans.
   ============================================================ */

/* ---------- fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Big Shoulders';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/big-shoulders-vietnamese.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: 'Big Shoulders';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/big-shoulders-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Big Shoulders';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/big-shoulders-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'General Sans';
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url('fonts/GeneralSans-Variable.woff2') format('woff2');
}
@font-face {
  font-family: 'General Sans';
  font-style: italic;
  font-weight: 200 700;
  font-display: swap;
  src: url('fonts/GeneralSans-VariableItalic.woff2') format('woff2');
}

/* ---------- tokens ---------- */
:root {
  --stage: #0c0d0f;
  --stage-2: #121316;
  --stage-3: #1a1c20;
  --edge: rgba(244, 242, 236, .1);
  --edge-strong: rgba(244, 242, 236, .18);
  --bone: #f4f2ec;
  --bone-dim: rgba(244, 242, 236, .72);
  --bone-faint: rgba(244, 242, 236, .5);
  --card: #fbf9f3;
  --ink: #141518;
  --ink-soft: #3d3f44;
  --gray: #63656a;
  --line-dark: #b9b6aa;
  --red: #d40808;
  --red-press: #ab0404;
  --red-deep: #7c0808;
  --red-field: #c00303;
  --disp: 'Big Shoulders', 'Arial Narrow', sans-serif;
  --body: 'General Sans', 'Segoe UI', sans-serif;
  --wrap: 1280px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--stage);
  color: var(--bone);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(18px, 3.4vw, 44px); }

.skip {
  position: fixed; top: -60px; left: 16px; z-index: 100;
  background: var(--bone); color: var(--ink); padding: 10px 16px;
  font: 600 14px var(--body); text-decoration: none; transition: top .2s;
}
.skip:focus { top: 12px; }

/* ---------- type ---------- */
.disp {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(2.7rem, 5.4vw, 4.7rem);
  line-height: .94;
  letter-spacing: .004em;
  text-transform: uppercase;
}
.disp-sm {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
}
.red { color: var(--red); }
.lede { color: var(--bone-dim); font-size: 18.5px; max-width: 58ch; margin-top: 22px; }

.kicker {
  display: inline-block;
  font: 600 13px/1 var(--body);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 8px 13px 7px;
  margin-bottom: 24px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--disp);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .055em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0, 0, 0, .45); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn-red { background: var(--red); border-color: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-press); border-color: var(--red-press); }
.btn-ghost { background: rgba(12, 13, 15, .25); border-color: var(--bone); color: var(--bone); backdrop-filter: blur(2px); }
.btn-ghost:hover { background: var(--bone); color: var(--ink); }
.btn-dark { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.btn-dark:hover { background: #000; }
.btn-lg { font-size: 1.28rem; padding: 15px 30px 16px; }
.btn-sm { font-size: 1.02rem; padding: 9px 18px 10px; }
.btn-block { width: 100%; font-size: 1.3rem; padding: 15px 20px 16px; }

.txt-link {
  font: 600 16px var(--body);
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}
.txt-link:hover { color: #ff3b3b; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: linear-gradient(rgba(10, 11, 13, .82), rgba(10, 11, 13, .82));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease;
}
.nav.scrolled { border-bottom-color: var(--edge); }
.nav-in { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand img { width: 34px; height: auto; }
.brand-word {
  font-family: var(--disp); font-weight: 500; font-size: 21px;
  text-transform: uppercase; letter-spacing: .03em; white-space: nowrap;
  color: var(--bone);
}
.brand-word b { font-weight: 800; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font: 600 15px var(--body); text-decoration: none; color: var(--bone-dim);
}
.nav-links a:hover { color: var(--bone); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.burger span { display: block; width: 24px; height: 2.5px; background: var(--bone); margin: 5px 0; transition: transform .2s, opacity .2s; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
.mobile-menu { display: none; border-top: 1px solid var(--edge); background: rgba(10, 11, 13, .96); }
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 15px clamp(18px, 3.4vw, 44px);
  font: 600 17px var(--body); text-decoration: none; color: var(--bone);
  border-bottom: 1px solid var(--edge);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.06) brightness(.92);
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(78deg, rgba(9, 10, 12, .92) 6%, rgba(9, 10, 12, .55) 44%, rgba(9, 10, 12, .18) 72%),
    linear-gradient(rgba(9, 10, 12, .5), rgba(9, 10, 12, .06) 26%, rgba(9, 10, 12, .12) 62%, rgba(9, 10, 12, .78) 96%);
}
.hero-grid {
  position: relative; z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-top: 108px;
  padding-bottom: clamp(40px, 7vh, 84px);
  flex: 1;
}
.hero-h1 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(3.4rem, 6.8vw, 6.6rem);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: .002em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .45);
}
.hero-h1 em { font-style: normal; color: var(--red); text-shadow: 0 2px 30px rgba(0, 0, 0, .6); }
.hero-sub {
  color: var(--bone);
  font-size: 19px;
  max-width: 46ch;
  margin-top: 24px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .55);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *, .hero-badge { opacity: 0; transform: translateY(16px); animation: rise .7s cubic-bezier(.16, 1, .3, 1) forwards; }
  .hero-copy > :nth-child(1) { animation-delay: .05s; }
  .hero-copy > :nth-child(2) { animation-delay: .12s; }
  .hero-copy > :nth-child(3) { animation-delay: .22s; }
  .hero-copy > :nth-child(4) { animation-delay: .3s; }
  .hero-badge { animation-delay: .36s; }
}
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- badge (the credential) ---------- */
.badge {
  background: var(--card);
  color: var(--ink);
  max-width: 470px;
  margin-left: auto;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .6), 0 4px 18px rgba(0, 0, 0, .4);
}
.badge-band {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--red); color: #fff;
  padding: 15px 20px 13px;
  font-family: var(--disp); font-weight: 700; font-size: 19px;
  text-transform: uppercase; letter-spacing: .06em;
}
.badge-slot {
  position: absolute; top: 7px; left: 50%;
  width: 52px; height: 7px; margin-left: -26px;
  background: rgba(0, 0, 0, .38);
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .5);
}
.badge-no u { text-decoration: underline; text-underline-offset: 2px; font-size: .72em; vertical-align: super; }
.badge-date {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 11px 20px;
  border-bottom: 1.5px dashed var(--line-dark);
  font-family: var(--disp); font-weight: 800; font-size: 19px;
  text-transform: uppercase; letter-spacing: .04em;
}
.badge-date b { font: 600 12px var(--body); color: var(--gray); text-transform: none; letter-spacing: 0; text-align: right; }

/* ---------- form ---------- */
.pass-form { padding: 20px 20px 16px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.f-field { margin-bottom: 12px; min-width: 0; }
.f-field label {
  display: block;
  font: 600 13px var(--body);
  margin-bottom: 5px;
  color: var(--ink);
}
.f-field input {
  width: 100%; height: 46px; min-width: 0;
  border: 1.5px solid var(--line-dark);
  border-radius: 0;
  background: #fff;
  padding: 0 12px;
  font: 500 16px var(--body); /* 16px floor: prevents iOS focus-zoom */
  color: var(--ink);
}
.f-field input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(212, 8, 8, .16);
}
.f-field input.err { border-color: var(--red); background: #fff5f5; }
.trap { position: absolute; left: -5000px; top: -5000px; height: 1px; overflow: hidden; }
.f-note { font: 500 12.5px/1.5 var(--body); color: var(--gray); margin-top: 11px; }
.f-status { display: none; font: 600 14px/1.5 var(--body); margin-top: 10px; }
.f-status.show { display: block; }
.f-status.bad { color: var(--red); }

.pass-done { padding: 30px 24px 26px; }
.pass-done h3 {
  font-family: var(--disp); font-weight: 800; font-size: 34px;
  line-height: .95; text-transform: uppercase; color: var(--red);
}
.pass-done p { color: var(--ink-soft); font-size: 15.5px; margin-top: 12px; }
.done-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pass-done .btn { border-color: var(--ink); color: var(--ink); background: transparent; }
.pass-done .btn:hover { background: var(--ink); color: var(--bone); }

/* ---------- ticker ---------- */
.ticker {
  position: relative; z-index: 3;
  background: var(--red);
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, .25);
}
.ticker-track { display: flex; width: max-content; }
@media (prefers-reduced-motion: no-preference) {
  .ticker-track { animation: slide 30s linear infinite; }
}
@keyframes slide { to { transform: translateX(-50%); } }
.ticker-run {
  display: block; white-space: nowrap;
  padding: 11px 0 10px;
  font-family: var(--disp); font-weight: 700; font-size: 17px;
  letter-spacing: .09em; text-transform: uppercase; color: #fff;
}
.ticker-run i { font-style: normal; color: rgba(255, 255, 255, .55); margin: 0 14px; }

/* ---------- proof bar ---------- */
.proof { background: var(--stage-2); border-bottom: 1px solid var(--edge); }
.proof-in {
  display: flex; flex-wrap: wrap; gap: 10px 0;
  padding-block: 18px;
}
.proof-in p {
  flex: 1 1 240px;
  font: 500 15px var(--body); color: var(--bone-faint);
  padding-inline: 22px;
  border-left: 1px solid var(--edge);
}
.proof-in p:first-child { border-left: 0; padding-left: 0; }
.proof-in b { color: var(--bone); font-weight: 600; }

/* ---------- pitch rows ---------- */
.pitch { padding: clamp(70px, 9.5vw, 110px) 0 clamp(40px, 6vw, 70px); }
.rows { margin-top: clamp(40px, 5.5vw, 64px); }
.row {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  padding-block: clamp(28px, 4vw, 44px);
}
.row + .row { border-top: 1px solid var(--edge); }
.row-flip .row-img { order: 2; }
.row-flip .row-txt { order: 1; }
.row-no {
  display: block;
  font-family: var(--disp); font-weight: 800; font-size: 44px;
  color: var(--red); line-height: 1;
}
.row h3 {
  font-family: var(--disp); font-weight: 700; font-size: clamp(1.8rem, 2.7vw, 2.3rem);
  text-transform: uppercase; line-height: .98; margin-top: 10px;
}
.row p { color: var(--bone-dim); margin-top: 14px; max-width: 48ch; }
.row-img { position: relative; }
.row-img::before {
  content: ""; position: absolute; top: -8px; left: -8px;
  width: 56px; height: 56px; z-index: 1;
  border-top: 3px solid var(--red); border-left: 3px solid var(--red);
}
.row-img img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  filter: saturate(.86) contrast(1.07) brightness(.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
.row-wide { grid-template-columns: 1fr; gap: 26px; }
.row-wide .row-txt { max-width: 62ch; }
.row-img-wide img { aspect-ratio: 21 / 8; }

/* ---------- film band ---------- */
.film { position: relative; border-block: 1px solid var(--edge); }
.film video { width: 100%; height: min(64vh, 640px); object-fit: cover; display: block; filter: saturate(.9) contrast(1.05); }
.film-cap {
  position: absolute; left: clamp(18px, 3.4vw, 44px); bottom: 22px;
  background: rgba(10, 11, 13, .82); backdrop-filter: blur(6px);
  border-left: 3px solid var(--red);
  padding: 12px 18px;
  font: 500 15.5px var(--body); color: var(--bone-dim);
}
.film-cap b { color: var(--bone); font-family: var(--disp); font-weight: 700; font-size: 19px; text-transform: uppercase; letter-spacing: .05em; margin-right: 8px; }

/* ---------- stats over photo ---------- */
.stats { position: relative; overflow: hidden; }
.stats-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.55) contrast(1.05) brightness(.5);
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(12, 13, 15, .82), rgba(12, 13, 15, .5) 45%, rgba(12, 13, 15, .86));
}
.stats-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-block: clamp(56px, 8vw, 96px);
}
.stat { padding: 10px; text-align: center; }
.stat + .stat { border-left: 1px solid rgba(244, 242, 236, .22); }
.stat b {
  display: block;
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(3.4rem, 7vw, 6.6rem); line-height: .95;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .55);
}
.stat span {
  display: block; margin-top: 8px;
  font: 600 13.5px var(--body); color: var(--bone-dim);
  text-transform: uppercase; letter-spacing: .05em;
}

/* ---------- brands ---------- */
.brands { padding: clamp(60px, 8vw, 92px) 0; background: var(--stage-2); border-bottom: 1px solid var(--edge); }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 34px;
}
.logo-grid span {
  display: grid; place-items: center;
  background: var(--bone);
  height: 84px;
  padding: 16px 20px;
}
.logo-grid img {
  max-height: 40px; max-width: 100%; width: auto; object-fit: contain;
  filter: grayscale(1) contrast(.9);
  mix-blend-mode: multiply;
  opacity: .85;
}
.brands-foot {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  margin-top: 26px; flex-wrap: wrap;
}
.brands-foot p { color: var(--bone-faint); font-size: 15.5px; }

/* ---------- the day + venue ---------- */
.day { padding: clamp(70px, 9.5vw, 110px) 0; }
.day-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.program { margin-top: clamp(32px, 4.5vw, 52px); }
.program li {
  display: grid; grid-template-columns: 108px 1fr; gap: 22px;
  padding-block: 25px;
  border-top: 1px solid var(--edge);
}
.p-time {
  font-family: var(--disp); font-weight: 800; font-size: 32px; line-height: 1;
  color: var(--bone);
}
.p-time i {
  display: block; font-style: normal; font-family: var(--body);
  font-size: 11.5px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--red); margin-top: 5px;
}
.program h3 {
  font-family: var(--disp); font-weight: 700; font-size: 23px;
  text-transform: uppercase; line-height: 1;
}
.program p { color: var(--bone-dim); font-size: 16px; margin-top: 8px; max-width: 52ch; }

.venue {
  position: sticky; top: 96px;
  background: var(--card); color: var(--ink);
  padding: 30px 30px 26px;
  border-top: 6px solid var(--red);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}
.venue-h { font: 600 13px var(--body); letter-spacing: .11em; text-transform: uppercase; color: var(--gray); }
.venue-name {
  font-family: var(--disp); font-weight: 800; font-size: 30px; line-height: .95;
  text-transform: uppercase; margin-top: 12px;
}
.venue-addr { margin-top: 10px; font-size: 16.5px; line-height: 1.5; color: var(--ink-soft); }
.venue-tags { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.venue-tags span {
  font: 600 12.5px var(--body); text-transform: uppercase; letter-spacing: .06em;
  border: 1.5px solid var(--ink); padding: 7px 11px;
}
.venue-btns { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.venue-foot { margin-top: 20px; font-size: 13.5px; color: var(--gray); }

/* ---------- who ---------- */
.who { padding: clamp(64px, 9vw, 100px) 0; background: var(--stage-2); border-block: 1px solid var(--edge); }
.who-grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  font-family: var(--disp); font-weight: 600; font-size: 17px;
  text-transform: uppercase; letter-spacing: .04em;
  border: 1.5px solid var(--edge-strong); padding: 10px 16px 11px;
  color: var(--bone);
}
.chips .chip-red { background: var(--red); border-color: var(--red); color: #fff; }
.who-side p { color: var(--bone-dim); margin-top: 24px; max-width: 46ch; }

/* ---------- recap ---------- */
.recap { padding: clamp(64px, 9vw, 100px) 0 0; }
.recap-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.recap-txt p { color: var(--bone-dim); margin-top: 20px; max-width: 42ch; }
.recap-tile {
  position: relative; display: block; width: 100%;
  padding: 0; border: 0; background: none; cursor: pointer;
  overflow: hidden;
}
.recap-tile img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block;
  filter: saturate(.85) contrast(1.06) brightness(.82);
  transition: filter .3s ease, transform .4s ease;
}
.recap-tile:hover img { filter: saturate(.95) contrast(1.05) brightness(.95); transform: scale(1.015); }
.recap-play {
  position: absolute; top: 50%; left: 50%;
  width: 84px; height: 84px; margin: -42px 0 0 -42px;
  background: var(--red);
  display: grid; place-items: center;
  transition: transform .2s ease, background-color .2s ease;
}
.recap-play::after {
  content: ""; display: block;
  border-style: solid; border-width: 15px 0 15px 24px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}
.recap-tile:hover .recap-play { transform: scale(1.08); background: var(--red-press); }
.recap-tag {
  position: absolute; left: 0; bottom: 0;
  background: rgba(10, 11, 13, .85);
  padding: 11px 16px;
  font-family: var(--disp); font-weight: 700; font-size: 17px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--bone);
}

/* ---------- gallery ---------- */
.gallery { padding: clamp(64px, 9vw, 96px) 0 0; }
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(70px, 8.5vw, 118px);
  gap: 4px;
  margin-top: clamp(32px, 4.5vw, 52px);
}
.mosaic figure { overflow: hidden; position: relative; }
.mosaic img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.85) contrast(1.06) brightness(.94);
  transition: filter .3s ease, transform .4s ease;
}
.mosaic figure:hover img { filter: saturate(1) contrast(1.05) brightness(1); transform: scale(1.025); }
.m-a { grid-column: 1 / 6; grid-row: 1 / 4; }
.m-b { grid-column: 6 / 10; grid-row: 1 / 3; }
.m-c { grid-column: 10 / 13; grid-row: 1 / 3; }
.m-d { grid-column: 6 / 9; grid-row: 3 / 5; }
.m-e { grid-column: 9 / 13; grid-row: 3 / 5; }
.m-f { grid-column: 1 / 4; grid-row: 4 / 6; }
.m-g { grid-column: 4 / 6; grid-row: 4 / 6; }
.m-h { grid-column: 6 / 13; grid-row: 5 / 6; }
.gallery-cap { padding-block: 16px 0; font-size: 14px; color: var(--bone-faint); }

/* ---------- faq ---------- */
.faq { padding: clamp(70px, 9.5vw, 110px) 0; }
.faq-grid {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(36px, 5vw, 80px); align-items: start;
}
.faq-list details { border-top: 1px solid var(--edge-strong); }
.faq-list details:last-child { border-bottom: 1px solid var(--edge-strong); }
.faq-list summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 19px 2px;
  font-family: var(--disp); font-weight: 700; font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  text-transform: uppercase; line-height: 1.05;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--disp); font-weight: 600; font-size: 30px;
  color: var(--red); line-height: 1; flex: none;
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 40px 22px 2px; color: var(--bone-dim); max-width: 62ch; }

/* ---------- finale ---------- */
.finale { background: var(--red-field); color: #fff; padding-top: clamp(76px, 10vw, 120px); }
.finale-grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 88px); align-items: center;
}
.finale-h {
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(4.2rem, 9.5vw, 8.6rem);
  line-height: .87; text-transform: uppercase;
}
.finale-sub { margin-top: 26px; font-size: 18px; color: rgba(255, 255, 255, .92); max-width: 44ch; }
.count { display: flex; gap: clamp(22px, 3vw, 40px); margin-top: 40px; }
.count b {
  display: block;
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(2.7rem, 4.6vw, 4.2rem); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.count span {
  display: block; margin-top: 6px;
  font: 600 12px var(--body); text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255, 255, 255, .95); /* 4.5:1+ on the red field */
}
.badge-onred { margin-inline: auto 0; box-shadow: 0 40px 90px rgba(60, 0, 0, .55), 0 4px 18px rgba(0, 0, 0, .3); }
.badge-onred .badge-band { background: var(--ink); }

.foot { margin-top: clamp(70px, 9.5vw, 110px); background: #0a0b0d; padding: 26px 0; }
.foot-in { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.foot-brand { display: flex; align-items: center; gap: 10px; font: 600 14.5px var(--body); color: var(--bone-dim); }
.foot-brand img { opacity: .9; }
.foot-links { display: flex; gap: 22px; margin-left: auto; }
.foot-links a { font: 500 14px var(--body); color: var(--bone-dim); text-underline-offset: 3px; }
.foot-addr { width: 100%; font: 500 13px var(--body); color: var(--bone-faint); }

/* ---------- sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: none;
  background: var(--red); color: #fff;
  font-family: var(--disp); font-weight: 700; font-size: 1.3rem;
  text-transform: uppercase; letter-spacing: .05em; text-decoration: none;
  text-align: center; padding: 15px 16px calc(15px + env(safe-area-inset-bottom));
  border-top: 2px solid var(--red-deep);
  box-shadow: 0 -6px 22px rgba(0, 0, 0, .45);
  transform: translateY(102%);
  transition: transform .25s ease;
}
.mobile-cta.on { transform: none; }

/* ---------- modal ---------- */
.modal { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; }
.modal[hidden] { display: none; }
.modal-back { position: absolute; inset: 0; background: rgba(5, 6, 7, .86); }
.modal-box { position: relative; width: min(94vw, 960px); }
.modal-x {
  position: absolute; top: -44px; right: 0;
  background: var(--bone); color: var(--ink); border: 0;
  font: 700 13px var(--body); text-transform: uppercase; letter-spacing: .08em;
  padding: 8px 14px; cursor: pointer;
}
.modal-frame { aspect-ratio: 16 / 9; background: #000; border: 1px solid var(--edge-strong); }
.modal-frame iframe { width: 100%; height: 100%; display: block; border: 0; }

/* ---------- reveals ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1); }
  .reveal.on { opacity: 1; transform: none; }
}

/* ---------- shot mode (screenshots) ---------- */
.shot *, .shot *::before, .shot *::after { animation: none !important; transition: none !important; }
.shot .reveal { opacity: 1 !important; transform: none !important; }
.shot .hero { min-height: 0; height: 900px; }
.shot .film video { height: 430px !important; }
.shot .hero-copy > *, .shot .hero-badge { opacity: 1 !important; transform: none !important; animation: none !important; }

/* ---------- responsive ---------- */
@media (max-width: 1060px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding-top: 96px; }
  .badge { margin-inline: 0; }
  .day-grid { grid-template-columns: 1fr; }
  .venue { position: static; max-width: 560px; }
  .who-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .recap-grid { grid-template-columns: 1fr; gap: 26px; }
  .finale-grid { grid-template-columns: 1fr; }
  .badge-onred { margin-inline: 0; }
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
  .shot .hero { height: auto; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .hero-h1 { font-size: clamp(2.7rem, 12vw, 3.6rem); }
  .nav-cta { display: none; }
  .nav-in { height: 60px; }
  .brand-word { font-size: 18px; }
  .hero-grid { padding-top: 88px; }
  .hero-sub { font-size: 17px; }
  .btn-lg { font-size: 1.12rem; padding: 13px 22px 14px; }
  .ticker-run { font-size: 14.5px; }
  .proof-in p { flex-basis: 100%; border-left: 0; padding-inline: 0; }
  .row, .row-flip { grid-template-columns: 1fr; gap: 18px; padding-block: 26px; }
  .row-flip .row-txt { order: 1; }
  .row-flip .row-img { order: 2; }
  .row .row-txt { order: 1; }
  .row .row-img { order: 2; }
  .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 26px; }
  .stat:nth-child(3) { border-left: 0; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .logo-grid span { height: 70px; padding: 12px 14px; }
  .program li { grid-template-columns: 84px 1fr; gap: 16px; }
  .p-time { font-size: 26px; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; gap: 4px; }
  .mosaic figure { grid-column: auto !important; grid-row: auto !important; }
  .mosaic img { aspect-ratio: 4 / 3; }
  .m-a, .m-h { grid-column: 1 / -1 !important; }
  .m-a img, .m-h img { aspect-ratio: 16 / 9; }
  .film video { height: 46vh; min-height: 260px; }
  .film-cap { position: static; margin: 0; border-left: 3px solid var(--red); }
  .mobile-cta { display: block; }
  .count { flex-wrap: wrap; }
  .foot-links { margin-left: 0; }
}
@media (max-width: 420px) {
  .hero-ctas .btn-ghost { display: none; }
  .badge-date { flex-direction: column; gap: 2px; }
  .badge-date b { text-align: left; }
}

/* ---------- satellite pages (register / vendor / contact) ---------- */
.sub-hero { position: relative; padding: 158px 0 72px; overflow: hidden; }
.sub-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.05) brightness(.45);
}
.sub-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(78deg, rgba(9,10,12,.9) 10%, rgba(9,10,12,.55) 55%, rgba(9,10,12,.3)),
              linear-gradient(rgba(9,10,12,.35), rgba(9,10,12,.65) 82%, var(--stage));
}
.sub-hero .wrap { position: relative; z-index: 2; }
.sub-grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.sub-copy { max-width: 60ch; }
.facts { margin-top: 28px; display: grid; gap: 11px; max-width: 52ch; }
.facts li {
  font: 500 16px/1.45 var(--body); color: var(--bone-dim);
  border-left: 3px solid var(--red); padding-left: 14px;
}
.facts b { color: var(--bone); font-weight: 600; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: clamp(30px, 4vw, 46px); }
.card { background: var(--stage-2); border: 1px solid var(--edge); }
.card > img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; filter: saturate(.85) contrast(1.06) brightness(.9); }
.card-b { padding: 20px 22px 22px; }
.card h3 { font-family: var(--disp); font-weight: 700; font-size: 22px; text-transform: uppercase; line-height: 1; }
.card p { color: var(--bone-dim); font-size: 15px; margin-top: 9px; }
.card-link { text-decoration: none; transition: border-color .2s ease, transform .2s ease; }
.card-link:hover { border-color: var(--red); transform: translateY(-3px); }
.c-cards .c-label {
  display: block; font: 600 12.5px var(--body); letter-spacing: .12em;
  text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}
.c-cards b {
  display: block; font-family: var(--disp); font-weight: 800;
  font-size: clamp(1.5rem, 2.3vw, 2rem); line-height: 1; text-transform: uppercase;
  color: var(--bone); overflow-wrap: anywhere;
}
.c-cards p { margin-top: 10px; }
.c-cards .venue-btns { margin-top: 16px; }

.pkg {
  margin-top: clamp(34px, 5vw, 52px);
  border: 1px solid var(--edge-strong);
  padding: 24px 26px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
}
.pkg p { color: var(--bone-dim); font-size: 16.5px; max-width: 60ch; }
.pkg b { color: var(--bone); }
.pkg .btn { font-size: 1.08rem; padding: 12px 22px 13px; flex: none; }

.strip { border-block: 1px solid var(--edge); background: var(--stage-2); }
.strip-in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding-block: 20px; }
.strip-in p { font: 500 15.5px var(--body); color: var(--bone-dim); }

@media (max-width: 1060px) {
  .sub-grid { grid-template-columns: 1fr; gap: 36px; }
  .sub-hero { padding-top: 128px; }
}
@media (max-width: 760px) {
  .cards { grid-template-columns: 1fr; }
  .pkg { padding: 20px; }
  .sub-hero { padding: 112px 0 52px; }
}
