:root {
  --ink: #070b14;
  --ink-2: #0d1320;
  --paper: #f1ede3;
  --paper-2: #e5e0d5;
  --white: #fffdf7;
  --muted: #9aa1ae;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(7, 11, 20, 0.16);
  --red: #ff4b3e;
  --red-dark: #d9342b;
  --max: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.modal-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }

::selection { color: var(--ink); background: var(--red); }

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid #7bdcff;
  outline-offset: 4px;
}

.topline {
  min-height: 32px;
  padding: 6px 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  color: var(--ink);
  background: var(--red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  top: 32px;
  left: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid var(--line);
  transition: background-color .3s, box-shadow .3s;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  background: rgba(7, 11, 20, .91);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .24);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 15px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .13em;
}

.brand-mark { fill: none; stroke: currentColor; stroke-linecap: square; stroke-linejoin: bevel; stroke-width: 2.3; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: #d8dbe0;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.site-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) { width: 19px; height: 1px; display: block; background: currentColor; transition: transform .25s; }
.menu-toggle span:last-child { margin-top: -15px; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.button {
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid var(--red);
  color: var(--ink);
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s, background-color .25s, border-color .25s, transform .25s var(--ease);
}

.button:hover { color: var(--white); background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }
.button-small { min-height: 38px; padding-inline: 18px; font-size: 10px; }
.button-outline { color: var(--white); background: transparent; border-color: rgba(255,255,255,.55); }
.button-outline:hover { color: var(--ink); background: var(--white); border-color: var(--white); }

.text-link {
  padding: 7px 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--white);
  background: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s;
}

.text-link:hover { color: var(--red); }
.dark-link { color: var(--ink); }

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  isolation: isolate;
  background: #050811;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,8,17,.98) 0%, rgba(5,8,17,.92) 28%, rgba(5,8,17,.42) 57%, rgba(5,8,17,.12) 100%),
    linear-gradient(0deg, rgba(5,8,17,.72), transparent 44%);
}

.hero-grid {
  min-height: 860px;
  padding-top: 158px;
  padding-bottom: 75px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  align-items: end;
  gap: 70px;
}

.hero-copy { max-width: 700px; }

.eyebrow,
.kicker {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dot { width: 8px; height: 8px; display: inline-block; background: var(--red); transform: rotate(45deg); }

h1, h2 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: clamp(68px, 8.2vw, 126px);
  font-weight: 900;
  font-stretch: condensed;
  letter-spacing: -.072em;
  line-height: .78;
  text-transform: uppercase;
}

h1 em, h2 em { color: var(--red); font-style: italic; }

.hero-lede {
  max-width: 610px;
  margin: 34px 0 0;
  color: #cdd1d8;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.trust-row {
  margin: 45px 0 0;
  padding: 22px 0 0;
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.trust-row li { min-width: 135px; padding-right: 28px; margin-right: 28px; border-right: 1px solid var(--line); }
.trust-row li:last-child { margin-right: 0; border-right: 0; }
.trust-row strong { display: block; color: var(--white); font-family: "Arial Narrow", sans-serif; font-size: 24px; font-style: italic; letter-spacing: -.03em; line-height: 1; text-transform: uppercase; }
.trust-row span { margin-top: 7px; display: block; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }

.race-panel {
  align-self: end;
  padding: 27px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(7, 11, 20, .76);
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.panel-top { padding-bottom: 18px; display: flex; justify-content: space-between; color: #adb3bd; font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.status { display: inline-flex; align-items: center; gap: 7px; color: #e3e6ea; }
.status i { width: 6px; height: 6px; border-radius: 50%; background: #63ef91; box-shadow: 0 0 0 5px rgba(99,239,145,.12); }

.countdown { padding: 21px 0; display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.countdown div { padding-inline: 8px; border-right: 1px solid var(--line); text-align: center; }
.countdown div:first-child { padding-left: 0; }
.countdown div:last-child { padding-right: 0; border-right: 0; }
.countdown strong { display: block; font-family: "Arial Narrow", sans-serif; font-size: clamp(29px, 3vw, 42px); font-style: italic; letter-spacing: -.06em; line-height: 1; }
.countdown span { display: block; margin-top: 7px; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.deadline-line { margin: 11px 0 22px; color: #8c939e; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-align: center; text-transform: uppercase; }

.entry-pulse { display: flex; align-items: center; gap: 13px; }
.pulse-icon { position: relative; width: 34px; height: 34px; flex: 0 0 auto; border: 1px solid rgba(255,75,62,.6); border-radius: 50%; }
.pulse-icon::before, .pulse-icon::after { position: absolute; top: 50%; left: 50%; border-radius: 50%; background: var(--red); content: ""; transform: translate(-50%, -50%); }
.pulse-icon::before { width: 7px; height: 7px; }
.pulse-icon::after { width: 20px; height: 20px; opacity: .15; animation: pulse 2s infinite; }
.entry-pulse strong, .entry-pulse span { display: block; }
.entry-pulse strong { font-size: 13px; }
.entry-pulse > div > span { margin-top: 2px; color: #858c98; font-size: 9px; line-height: 1.4; }

@keyframes pulse { 0%, 100% { transform: translate(-50%,-50%) scale(.55); opacity: .28; } 50% { transform: translate(-50%,-50%) scale(1.25); opacity: .05; } }

.track-line { position: absolute; right: -7vw; bottom: -14px; width: 53vw; height: 54px; border-top: 4px solid var(--red); border-radius: 50%; opacity: .85; transform: rotate(-5deg); box-shadow: 0 -7px 22px rgba(255,75,62,.55); }

.marquee { overflow: hidden; color: var(--ink); background: var(--red); }
.marquee-track { width: max-content; padding-block: 12px; display: flex; align-items: center; gap: 28px; font-family: "Arial Narrow", sans-serif; font-size: 13px; font-style: italic; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; animation: marquee 24s linear infinite; }
.marquee-track i { color: var(--ink); font-size: 8px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 126px 0; }
.section-light { color: var(--ink); background: var(--paper); }
.section-dark { color: var(--white); background: var(--ink); }
.section-head { margin-bottom: 66px; display: grid; grid-template-columns: 1.45fr .55fr; align-items: end; gap: 70px; }
.section-head h2, .entry-intro h2, .rules-sticky h2, .faq-layout h2 { font-size: clamp(55px, 6.6vw, 93px); }
.section-head > p { max-width: 430px; margin: 0; color: #555b64; font-size: 17px; }
.section-head-dark > p { color: #9fa6b1; }

.lookbook-grid { display: grid; grid-template-columns: 1.22fr .78fr; gap: 22px; }
.look-card { position: relative; min-height: 650px; overflow: hidden; color: var(--white); background: #232934; }
.look-card-large { grid-row: span 2; min-height: 980px; }
.look-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.look-card:hover img { transform: scale(1.025); }
.look-card::after { position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(4,7,12,.85)); content: ""; }
.look-caption { position: absolute; right: 32px; bottom: 31px; left: 32px; z-index: 2; }
.look-caption span { color: #d2d5da; font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.look-caption h3, .spec-card h3 { margin: 9px 0 7px; font-family: "Arial Narrow", sans-serif; font-size: clamp(28px, 3vw, 45px); font-style: italic; letter-spacing: -.04em; line-height: 1; text-transform: uppercase; }
.look-caption p { max-width: 480px; margin: 0; color: #c5c9d0; font-size: 14px; }

.spec-card { position: relative; min-height: 308px; padding: 40px; overflow: hidden; color: var(--white); background: var(--red); }
.spec-card .kicker { color: var(--ink); }
.spec-card > p:not(.kicker) { max-width: 540px; color: rgba(7,11,20,.74); }
.spec-number { position: absolute; top: -36px; right: 13px; color: rgba(7,11,20,.1); font-family: "Arial Narrow", sans-serif; font-size: 185px; font-style: italic; font-weight: 900; letter-spacing: -.12em; line-height: 1; }
.spec-card dl { margin: 27px 0 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(7,11,20,.24); }
.spec-card dl div { padding: 12px 12px 10px 0; display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid rgba(7,11,20,.24); font-size: 11px; }
.spec-card dt { font-weight: 800; text-transform: uppercase; }
.spec-card dd { margin: 0; text-align: right; }
.spec-note { margin-top: 17px; display: block; color: rgba(7,11,20,.66); font-size: 10px; line-height: 1.5; }
.affiliation-note { margin: 30px 0 0; padding-top: 22px; border-top: 1px solid var(--line-dark); color: #686b70; font-size: 12px; line-height: 1.65; }

.steps { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); list-style: none; counter-reset: steps; }
.steps li { position: relative; min-height: 365px; padding: 32px 42px 34px 0; border-right: 1px solid var(--line); }
.steps li + li { padding-left: 42px; }
.steps li:last-child { border-right: 0; }
.step-num { color: #7e8693; font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.step-icon { width: 74px; height: 74px; margin-top: 44px; display: grid; place-items: center; border: 1px solid #343b47; border-radius: 50%; color: var(--red); font-size: 30px; }
.steps h3 { margin: 42px 0 12px; font-family: "Arial Narrow", sans-serif; font-size: 29px; font-style: italic; letter-spacing: -.03em; line-height: 1; text-transform: uppercase; }
.steps p { margin: 0; color: #9ca3af; font-size: 14px; }

.entry-section { position: relative; color: var(--white); background: #0b111c; overflow: hidden; }
.entry-section::before { position: absolute; inset: 0; background: linear-gradient(125deg, transparent 55%, rgba(255,75,62,.08)), repeating-linear-gradient(117deg, transparent 0, transparent 55px, rgba(255,255,255,.015) 56px, transparent 57px); content: ""; pointer-events: none; }
.entry-layout { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; }
.entry-intro { padding-top: 32px; }
.entry-intro > p:not(.kicker) { max-width: 480px; margin-top: 30px; color: #aeb4be; font-size: 17px; }
.entry-assurances { margin-top: 46px; display: grid; gap: 17px; }
.entry-assurances > div { display: flex; gap: 14px; }
.entry-assurances > div > span { width: 24px; height: 24px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(255,75,62,.65); color: var(--red); font-size: 11px; }
.entry-assurances p { margin: 0; color: #8f97a4; font-size: 13px; }
.entry-assurances strong { display: block; color: var(--white); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

.form-shell { min-height: 720px; padding: 38px 42px 42px; color: var(--ink); background: var(--paper); box-shadow: 0 25px 80px rgba(0,0,0,.24); }
.form-progress { margin-bottom: 35px; padding-bottom: 18px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line-dark); color: #646970; font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.form-progress strong { color: var(--red-dark); }
.entry-form { display: grid; gap: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; }
.field label { margin-bottom: 7px; font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.field input, .field select { width: 100%; min-height: 52px; padding: 0 14px; border: 1px solid #b8b6b0; border-radius: 0; color: var(--ink); background: rgba(255,255,255,.42); outline: 0; transition: border-color .2s, box-shadow .2s, background .2s; }
.field input::placeholder { color: #8e8e8a; }
.field input:focus, .field select:focus { border-color: var(--ink); background: #fff; box-shadow: 0 0 0 2px rgba(7,11,20,.08); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #c82019; }
.field-hint { margin-top: 6px; color: #71747a; font-size: 10px; }
.field-error { min-height: 0; margin-top: 5px; color: #b51f19; font-size: 10px; font-weight: 700; }
.field-error:not(:empty) { min-height: 15px; }
.check-group { display: grid; gap: 2px; }
.check { position: relative; padding: 8px 0; display: flex; align-items: flex-start; gap: 11px; color: #4d5158; font-size: 12px; line-height: 1.5; cursor: pointer; }
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check-box { width: 20px; height: 20px; flex: 0 0 auto; border: 1px solid #8c8d8a; background: rgba(255,255,255,.35); }
.check input:checked + .check-box { border-color: var(--red); background: var(--red); box-shadow: inset 0 0 0 4px var(--paper); }
.check input:focus-visible + .check-box { outline: 3px solid #1e86b7; outline-offset: 2px; }
.check a { font-weight: 750; }
.check a:hover { color: var(--red-dark); }
.button-submit { width: 100%; margin-top: 6px; justify-content: space-between; }
.button-submit:disabled { color: #777; background: #c8c4bb; border-color: #c8c4bb; cursor: wait; transform: none; }
.form-fineprint { margin: 0; color: #777a80; font-size: 10px; text-align: center; }
.form-message { color: #b51f19; font-size: 12px; font-weight: 700; text-align: center; }
.honeypot { position: absolute !important; left: -99999px !important; opacity: 0 !important; }

.success-state { min-height: 590px; padding: 40px 30px; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.success-state:not([hidden]) { display: flex; }
.success-mark { width: 74px; height: 74px; margin-bottom: 30px; display: grid; place-items: center; border: 1px solid var(--red); border-radius: 50%; color: var(--red); font-size: 27px; }
.success-state .kicker { margin-bottom: 12px; }
.success-state h3 { margin: 0; font-family: "Arial Narrow", sans-serif; font-size: 52px; font-style: italic; letter-spacing: -.05em; line-height: 1; text-transform: uppercase; }
.success-state > p:not(.kicker) { max-width: 410px; color: #656970; }
.reference { margin: 26px 0; padding: 13px 17px; border: 1px solid var(--line-dark); color: #777a80; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.reference strong { margin-left: 8px; color: var(--ink); }
.reset-entry { color: var(--ink); }

.rules-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: start; }
.rules-sticky { position: sticky; top: 120px; }
.rules-sticky .text-link { margin-top: 38px; }
.rules-list { border-top: 1px solid var(--line-dark); }
.rules-list article { padding: 31px 0; display: grid; grid-template-columns: 55px 1fr; gap: 20px; border-bottom: 1px solid var(--line-dark); }
.rules-list article > span { padding-top: 5px; color: var(--red-dark); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.rules-list h3 { margin: 0 0 8px; font-family: "Arial Narrow", sans-serif; font-size: 24px; font-style: italic; letter-spacing: -.02em; text-transform: uppercase; }
.rules-list p { margin: 0; color: #5d6268; font-size: 14px; }

.faq-section { background: #0a0f19; }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 115px; }
.faq-layout > div:first-child { position: sticky; top: 120px; align-self: start; }
.faq-layout > div:first-child > p:last-child { margin-top: 30px; color: #9098a4; }
.faq-layout > div:first-child a { color: var(--white); font-weight: 700; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-family: "Arial Narrow", sans-serif; font-size: 20px; font-style: italic; font-weight: 800; letter-spacing: -.01em; list-style: none; text-transform: uppercase; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--red); font-family: sans-serif; font-size: 28px; font-style: normal; font-weight: 300; transition: transform .25s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -3px 50px 28px 0; color: #a4abb6; font-size: 14px; }

.responsible-banner { padding: 40px 0; border-top: 1px solid rgba(255,75,62,.45); border-bottom: 1px solid rgba(255,75,62,.45); background: #101621; }
.responsible-banner .container { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.eighteen { width: 62px; height: 62px; display: grid; place-items: center; border: 2px solid var(--red); border-radius: 50%; color: var(--red); font-family: "Arial Narrow", sans-serif; font-size: 23px; font-style: italic; font-weight: 900; }
.responsible-banner h2 { font-size: 24px; letter-spacing: -.03em; line-height: 1; }
.responsible-banner p { max-width: 740px; margin: 8px 0 0; color: #9ca3ae; font-size: 13px; }

.site-footer { padding: 72px 0 25px; color: var(--white); background: #050810; }
.footer-main { padding-bottom: 65px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.footer-main > div:first-child > p { max-width: 350px; margin: 25px 0 0; color: #858e9b; font-size: 13px; }
.footer-links { display: grid; grid-template-columns: .8fr 1fr 1.35fr; gap: 34px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-links h3 { margin: 0 0 10px; color: #8993a2; font-size: 10px; letter-spacing: .17em; text-transform: uppercase; }
.footer-links a, .footer-links span { color: #c1c6ce; font-size: 12px; text-decoration: none; }
.footer-links a:hover { color: var(--red); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: #8993a2; font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(3, 5, 10, .93);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.age-gate[hidden] { display: none; }
.age-gate-card { position: relative; width: min(100%, 690px); min-height: 620px; padding: 34px 43px 48px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); background: #0c121d; box-shadow: 0 35px 100px rgba(0,0,0,.45); }
.age-gate-card::after { position: absolute; right: -110px; bottom: -55px; width: 480px; height: 100px; border-top: 4px solid var(--red); border-radius: 50%; content: ""; transform: rotate(-12deg); box-shadow: 0 -7px 22px rgba(255,75,62,.38); }
.age-top { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; }
.age-chip { padding: 6px 10px; border: 1px solid var(--line); color: #9ea6b1; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.age-content, .age-denied { position: relative; z-index: 2; max-width: 520px; margin: 82px auto 0; text-align: center; }
.age-number { position: absolute; top: -95px; left: 50%; z-index: -1; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.12); font-family: "Arial Narrow", sans-serif; font-size: 270px; font-style: italic; font-weight: 900; letter-spacing: -.12em; line-height: 1; transform: translateX(-52%); }
.age-content .kicker, .age-denied .kicker { justify-content: center; }
.age-content h2, .age-denied h2 { font-size: clamp(55px, 9vw, 82px); }
.age-content > p:not(.kicker), .age-denied > p:not(.kicker) { max-width: 480px; margin: 28px auto 0; color: #a5acb6; font-size: 14px; }
.age-actions { margin-top: 33px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.age-denied:not([hidden]) { display: block; }

.noscript { position: fixed; right: 0; bottom: 0; left: 0; z-index: 11000; padding: 14px 24px; color: var(--ink); background: #ffdc64; font-size: 13px; text-align: center; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal-delay { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Legal and information pages */
.page-header { position: relative; top: auto; background: var(--ink); }
.page-header + main { background: var(--paper); }
.legal-hero { padding: 110px 0 72px; color: var(--white); background: var(--ink); }
.legal-hero .kicker { margin-bottom: 24px; }
.legal-hero h1 { max-width: 970px; font-size: clamp(58px, 8vw, 105px); }
.legal-hero p { max-width: 720px; margin: 32px 0 0; color: #aab1bc; font-size: 17px; }
.legal-meta { margin-top: 35px; display: flex; gap: 25px; color: #7e8794; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.legal-content { padding: 85px 0 120px; color: var(--ink); background: var(--paper); }
.legal-grid { display: grid; grid-template-columns: 250px minmax(0, 760px); justify-content: space-between; gap: 90px; }
.legal-toc { position: sticky; top: 110px; align-self: start; padding-top: 8px; }
.legal-toc h2 { margin-bottom: 18px; font-family: inherit; font-size: 10px; font-style: normal; letter-spacing: .15em; line-height: 1.4; text-transform: uppercase; }
.legal-toc a { padding: 7px 0; display: block; color: #666a70; font-size: 12px; text-decoration: none; }
.legal-toc a:hover { color: var(--red-dark); }
.legal-body > section { padding: 0 0 44px; margin: 0 0 44px; border-bottom: 1px solid var(--line-dark); scroll-margin-top: 110px; }
.legal-body > section:last-child { margin-bottom: 0; border-bottom: 0; }
.legal-body h2 { margin: 0 0 20px; font-size: 34px; letter-spacing: -.035em; line-height: 1; }
.legal-body h3 { margin: 28px 0 10px; font-size: 17px; }
.legal-body p, .legal-body li { color: #4e535a; font-size: 15px; }
.legal-body ul, .legal-body ol { padding-left: 21px; }
.legal-body li + li { margin-top: 8px; }
.legal-callout { margin: 27px 0; padding: 22px 25px; border-left: 3px solid var(--red); background: #e5e0d5; }
.legal-callout p { margin: 0; color: var(--ink); font-weight: 650; }
.table-wrap { overflow-x: auto; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.legal-table th, .legal-table td { padding: 13px; border: 1px solid var(--line-dark); text-align: left; vertical-align: top; }
.legal-table th { background: #e5e0d5; }
.not-found-hero { min-height: calc(100vh - 180px); display: grid; align-items: center; }
.not-found-cta { margin-top: 32px; }

@media (max-width: 980px) {
  .container { width: min(calc(100% - 36px), var(--max)); }
  .site-header { top: 44px; }
  .site-header.is-sticky { top: 0; }
  .topline { min-height: 44px; }
  .menu-toggle { display: grid; }
  .site-nav { position: fixed; top: 0; right: 0; width: min(86vw, 380px); height: 100dvh; padding: 115px 38px 45px; display: flex; flex-direction: column; align-items: stretch; gap: 6px; background: #0c121d; box-shadow: -30px 0 70px rgba(0,0,0,.35); transform: translateX(105%); transition: transform .4s var(--ease); }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav > a:not(.button) { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .site-nav .button { margin-top: 20px; }
  .menu-toggle { position: relative; z-index: 2; }
  .hero, .hero-grid { min-height: 900px; }
  .hero-grid { padding-top: 170px; grid-template-columns: 1fr; align-content: end; gap: 38px; }
  .hero-copy { max-width: 610px; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,8,17,.94), rgba(5,8,17,.22)), linear-gradient(0deg, rgba(5,8,17,.88) 0%, transparent 70%); }
  .race-panel { width: min(100%, 480px); }
  .section { padding: 95px 0; }
  .section-head { grid-template-columns: 1fr; gap: 28px; }
  .section-head > p { max-width: 620px; }
  .look-card-large { min-height: 790px; }
  .look-card { min-height: 540px; }
  .entry-layout { grid-template-columns: 1fr; gap: 55px; }
  .entry-intro { display: grid; grid-template-columns: 1fr 1fr; column-gap: 35px; }
  .entry-intro .kicker, .entry-intro h2 { grid-column: 1; }
  .entry-intro > p:not(.kicker), .entry-assurances { grid-column: 2; }
  .entry-intro > p:not(.kicker) { grid-row: 1 / span 2; margin-top: 0; }
  .entry-assurances { margin-top: -55px; }
  .rules-layout, .faq-layout { grid-template-columns: 1fr; gap: 52px; }
  .rules-sticky, .faq-layout > div:first-child { position: static; }
  .footer-main { grid-template-columns: 1fr; gap: 55px; }
  .legal-grid { grid-template-columns: 190px 1fr; gap: 50px; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .topline { padding-inline: 10px; gap: 7px; font-size: 9px; letter-spacing: .09em; }
  .nav-wrap { min-height: 64px; }
  .brand { font-size: 12px; }
  .brand-mark { width: 31px; height: 31px; }
  .hero, .hero-grid { min-height: 850px; }
  .hero-grid { padding-top: 140px; padding-bottom: 48px; }
  .hero-media img { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,8,17,.9), rgba(5,8,17,.28)), linear-gradient(0deg, rgba(5,8,17,.98) 0%, rgba(5,8,17,.6) 55%, transparent 100%); }
  h1 { font-size: clamp(61px, 21vw, 88px); }
  .hero-lede { margin-top: 25px; font-size: 16px; }
  .hero-actions { margin-top: 25px; align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .trust-row { margin-top: 31px; }
  .trust-row li { min-width: 0; padding-right: 15px; margin-right: 15px; }
  .trust-row strong { font-size: 19px; }
  .trust-row span { font-size: 8px; }
  .race-panel { padding: 21px 18px; }
  .countdown strong { font-size: 28px; }
  .track-line { width: 92vw; }
  .section { padding: 78px 0; }
  .section-head { margin-bottom: 42px; }
  .section-head h2, .entry-intro h2, .rules-sticky h2, .faq-layout h2 { font-size: clamp(49px, 16vw, 68px); }
  .section-head > p { font-size: 15px; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .look-card-large, .look-card { min-height: 650px; grid-row: auto; }
  .spec-card { min-height: 370px; padding: 32px 26px; }
  .spec-card dl { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps li, .steps li + li { min-height: 0; padding: 28px 0 35px; border-right: 0; border-bottom: 1px solid var(--line); }
  .step-icon { width: 58px; height: 58px; margin-top: 26px; }
  .steps h3 { margin-top: 26px; }
  .entry-intro { display: block; }
  .entry-intro > p:not(.kicker) { margin-top: 25px; }
  .entry-assurances { margin-top: 35px; }
  .form-shell { min-height: 0; padding: 28px 20px 30px; }
  .field-row { grid-template-columns: 1fr; gap: 22px; }
  .rules-list article { grid-template-columns: 35px 1fr; }
  .faq-list summary { min-height: 74px; font-size: 17px; }
  .responsible-banner .container { grid-template-columns: auto 1fr; }
  .responsible-banner .button { grid-column: 1 / -1; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .age-gate { padding: 0; }
  .age-gate-card { min-height: 100dvh; padding: 25px 20px 36px; border: 0; }
  .age-content, .age-denied { margin-top: 24vh; }
  .age-content h2, .age-denied h2 { font-size: 56px; }
  .age-actions .button { width: 100%; }
  .legal-hero { padding: 75px 0 60px; }
  .legal-meta { flex-direction: column; gap: 5px; }
  .legal-content { padding: 65px 0 85px; }
  .legal-grid { grid-template-columns: 1fr; gap: 42px; }
  .legal-toc { position: static; padding-bottom: 25px; border-bottom: 1px solid var(--line-dark); }
  .legal-toc nav { columns: 2; }
  .legal-body h2 { font-size: 28px; }
}

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