:root {
  --bg: #080808;
  --panel: #111;
  --panel-2: #171717;
  --text: #f5f3ef;
  --muted: #a7a29a;
  --red: #d63422;
  --line: rgba(255,255,255,.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Oswald", Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled {
  background: rgba(8,8,8,.9);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .16em; }
.brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.brand span { font-size: 1.05rem; }

.nav-links { display: flex; gap: 28px; font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; }
.nav-links a { position: relative; color: #e9e5df; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -8px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .2s ease;
}
.nav-links a:hover::after { width: 100%; }

.menu-toggle { display: none; border: 0; background: none; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: white; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 70% 40%, rgba(214,52,34,.22), transparent 28%),
    linear-gradient(135deg, #080808 0%, #111 48%, #060606 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    repeating-linear-gradient(115deg, transparent 0 70px, rgba(255,255,255,.018) 70px 72px),
    linear-gradient(to bottom, transparent 60%, rgba(0,0,0,.9));
}
.track-lines {
  position: absolute;
  width: 1100px;
  height: 1100px;
  right: -420px;
  bottom: -580px;
  border: 44px solid rgba(255,255,255,.055);
  border-radius: 50%;
  transform: rotate(-18deg);
  box-shadow: inset 0 0 0 28px rgba(214,52,34,.05), inset 0 0 0 90px rgba(255,255,255,.025);
}
.smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .16;
  animation: drift 10s ease-in-out infinite alternate;
}
.smoke-one { width: 520px; height: 280px; left: -10%; bottom: 18%; background: white; }
.smoke-two { width: 400px; height: 210px; right: 8%; top: 28%; background: #b7b7b7; animation-delay: -4s; }
@keyframes drift { to { transform: translate(80px,-35px) scale(1.12); opacity: .24; } }

.hero-content {
  width: min(920px, 90vw);
  padding-top: 70px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .82rem;
  font-weight: 600;
}
.eyebrow.red { color: var(--red); }
.hero-logo {
  width: min(380px, 65vw);
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  margin: 0 auto -34px;
  mix-blend-mode: screen;
  filter: contrast(1.06);
}
h1, h2, h3 { font-family: "Anton", Impact, sans-serif; text-transform: uppercase; font-weight: 400; margin: 0; }
h1 { font-size: clamp(4.2rem, 10vw, 8.4rem); line-height: .86; letter-spacing: -.025em; }
.hero-copy { max-width: 660px; margin: 28px auto 0; color: #c7c3bc; font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.6; }
.hero-actions { margin-top: 34px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: .85rem;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: #ef3c28; }
.btn-ghost { border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background: white; color: black; }
.btn-ghost.light { border-color: rgba(255,255,255,.75); }

.scroll-cue { position: absolute; right: 4vw; bottom: 30px; writing-mode: vertical-rl; letter-spacing: .18em; color: #aaa; font-size: .7rem; }
.scroll-cue span { margin-top: 8px; color: white; }

.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0e0e0e; }
.marquee-track { width: max-content; display: flex; gap: 28px; align-items: center; padding: 18px 0; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: "Anton"; font-size: 1.2rem; letter-spacing: .08em; }
.marquee-track b { color: var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 120px 4vw; }
.section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-label { color: #777; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 28px; }
h2 { font-size: clamp(3.2rem, 7vw, 6.8rem); line-height: .9; letter-spacing: -.02em; }

.about { background: #0c0c0c; }
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: start; }
.about-copy { padding-top: 48px; }
.about-copy > p { color: #bdb8b0; font-size: 1.2rem; line-height: 1.75; margin: 0 0 18px; }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 42px; padding-top: 30px; border-top: 1px solid var(--line); }
.stat-row strong { display: block; font-family: "Anton"; font-size: 2.7rem; color: white; }
.stat-row span { color: #8d8881; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }

.drivers-section { background: #090909; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; margin-bottom: 54px; }
.section-heading > p { color: #aaa59d; line-height: 1.7; font-size: 1.1rem; max-width: 430px; }
.driver-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.driver-card { min-height: 520px; position: relative; overflow: hidden; background: #141414; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: flex-end; }
.driver-number { position: absolute; top: 18px; left: 18px; z-index: 3; color: #888; font-size: .75rem; letter-spacing: .18em; }
.driver-art { position: absolute; inset: 0; display: grid; place-items: center; font-family: "Anton"; font-size: clamp(5rem, 9vw, 8rem); color: rgba(255,255,255,.08); transform: rotate(-10deg) scale(1.3); transition: .35s ease; }
.driver-card:hover .driver-art { transform: rotate(-6deg) scale(1.4); color: rgba(214,52,34,.18); }
.z33 { background: radial-gradient(circle at 70% 30%, rgba(214,52,34,.23), transparent 34%), linear-gradient(145deg,#1b1b1b,#090909); }
.bbw { background: radial-gradient(circle at 20% 35%, rgba(255,255,255,.14), transparent 32%), linear-gradient(145deg,#191919,#070707); }
.mystery { background: radial-gradient(circle at 70% 70%, rgba(214,52,34,.18), transparent 34%), linear-gradient(145deg,#151515,#080808); }
.jay { background: radial-gradient(circle at 35% 20%, rgba(255,255,255,.12), transparent 30%), linear-gradient(145deg,#171717,#060606); }
.driver-info { position: relative; z-index: 2; padding: 28px 22px; background: linear-gradient(transparent, rgba(0,0,0,.95) 35%); }
.driver-info h3 { font-size: 2.1rem; }
.driver-info a { display: inline-block; color: var(--red); margin: 6px 0 8px; font-weight: 700; }
.driver-info p { margin: 0; color: #999; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }

.events-section { background: #0d0d0d; }
.event-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; border: 1px solid var(--line); background: #111; overflow: hidden; }
.event-copy { padding: 70px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.event-copy > p:not(.eyebrow) { color: #aaa59d; line-height: 1.7; max-width: 520px; font-size: 1.08rem; margin: 28px 0; }
.event-graphic { position: relative; min-height: 500px; overflow: hidden; background: radial-gradient(circle, rgba(214,52,34,.22), transparent 46%), #090909; }
.ring { position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.ring-1 { width: 290px; height: 290px; }
.ring-2 { width: 430px; height: 430px; }
.ring-3 { width: 590px; height: 590px; border-color: rgba(214,52,34,.3); }
.event-mark { position: absolute; inset: 0; display: grid; place-items: center; font-family: "Anton"; font-size: clamp(7rem, 14vw, 12rem); letter-spacing: -.04em; }

.merch-section { background: var(--red); color: white; }
.merch-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: center; }
.merch-copy p:not(.eyebrow) { max-width: 500px; font-size: 1.1rem; line-height: 1.7; margin: 24px 0 30px; color: rgba(255,255,255,.86); }
.merch-copy .section-label { color: rgba(255,255,255,.65); }
.merch-copy .eyebrow.red { color: white; }
.merch-poster { min-height: 520px; background: #090909; border: 10px solid rgba(255,255,255,.13); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transform: rotate(2deg); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.merch-poster span { letter-spacing: .5em; color: #aaa; }
.merch-poster strong { font-family: "Anton"; font-size: clamp(7rem, 16vw, 13rem); line-height: .9; color: white; }
.merch-poster small { letter-spacing: .2em; color: var(--red); margin-top: 20px; }

.contact-section { background: #080808; }
.contact-card { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; border-top: 1px solid var(--line); padding-top: 80px; }
.contact-links { border-top: 1px solid var(--line); }
.contact-links a { display: block; padding: 24px 0; border-bottom: 1px solid var(--line); transition: padding-left .2s ease, background .2s ease; }
.contact-links a:hover { padding-left: 14px; }
.contact-links span { display: block; color: #777; text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; margin-bottom: 5px; }
.contact-links strong { font-size: clamp(1.05rem, 2vw, 1.45rem); word-break: break-word; }

footer { max-width: var(--max); margin: 0 auto; padding: 40px 0 60px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; color: #777; font-size: .82rem; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.footer-brand strong { display: block; color: white; text-transform: uppercase; letter-spacing: .1em; }
.footer-brand span { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }

@media (max-width: 900px) {
  .menu-toggle { display: block; z-index: 92; }
  .nav-links {
    position: fixed; inset: 0 0 auto auto;
    width: min(340px, 85vw); height: 100vh;
    background: #0b0b0b;
    flex-direction: column;
    padding: 120px 40px;
    transform: translateX(100%);
    transition: transform .25s ease;
    border-left: 1px solid var(--line);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.3rem; }
  .about-grid, .section-heading, .event-panel, .merch-grid, .contact-card { grid-template-columns: 1fr; }
  .about-copy { padding-top: 0; }
  .driver-grid { grid-template-columns: repeat(2,1fr); }
  .event-copy { padding: 50px 30px; }
  footer { margin: 0 4vw; }
}

@media (max-width: 600px) {
  .site-header { height: 70px; padding: 0 20px; }
  .brand img { width: 42px; height: 42px; }
  .hero-content { padding-top: 50px; }
  .hero-logo { width: 72vw; margin-bottom: -10px; }
  h1 { font-size: clamp(3.5rem, 18vw, 5.5rem); }
  .hero-copy { font-size: 1rem; }
  .section { padding: 84px 20px; }
  h2 { font-size: clamp(3rem, 15vw, 5rem); }
  .driver-grid { grid-template-columns: 1fr; }
  .driver-card { min-height: 440px; }
  .stat-row { grid-template-columns: 1fr; }
  .event-graphic { min-height: 360px; }
  .merch-poster { min-height: 390px; }
  .contact-card { gap: 45px; }
  footer { flex-direction: column; align-items: flex-start; gap: 26px; padding-bottom: 40px; }
  .scroll-cue { display: none; }
}
