/* ============================================================
   DEATH-LINE: PLUMMET - Official IPO Website
   International PLUMMET Organization
   Compliance Framework Rev. 17
   ============================================================ */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
blockquote { quotes: none; }

/* ---- TOKENS ---- */
:root {
  --void: #050506;
  --ink: #0c0c0f;
  --ink-2: #111116;
  --red: #ff0000;
  --red-deep: #980000;
  --red-glow: rgba(255, 0, 0, 0.28);
  --red-dim: rgba(255, 0, 0, 0.10);
  --white: #ffffff;
  --silver: #ced3da;
  --muted: #8a9099;
  --faint: #52596a;
  --line: rgba(255, 255, 255, 0.09);
  --line-red: rgba(255, 0, 0, 0.40);
  --max: 1200px;
  --font-display: 'Arial Black', 'Impact', Impact, 'Franklin Gothic Heavy', Arial, sans-serif;
  --font-body: 'Helvetica Neue', 'Inter', Arial, Helvetica, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
}

/* ---- BASE ---- */
body {
  background: var(--void);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---- SCANLINE OVERLAY ---- */
.scanline {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.016) 0,
    rgba(255,255,255,0.016) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: screen;
  opacity: 0.45;
}

/* ============================================================
   HEADER / NAV
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 5vw;
  background: linear-gradient(to bottom, rgba(5,5,6,0.96), rgba(5,5,6,0.74));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  background: rgba(5,5,6,0.99);
  border-bottom-color: rgba(255,0,0,0.22);
}
.brand { flex-shrink: 0; }
.brand img { height: 40px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-nav a {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--silver);
  transition: color 0.2s;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--red); }
.site-nav a:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.nav-cta {
  border: 1px solid var(--red) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--red) !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  position: relative;
  z-index: 60;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 5vw 80px;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5,5,6,0.22) 0%, rgba(5,5,6,0.86) 90%),
    radial-gradient(ellipse at 50% 62%, rgba(160,0,0,0.32) 0%, transparent 54%),
    url('../images/hero-bg.jpg') center / cover no-repeat;
  transform: scale(1.04);
  transform-origin: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-presenter {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.hero-logo {
  width: min(800px, 92vw);
  height: auto;
  filter: drop-shadow(0 16px 56px rgba(0,0,0,0.95));
  margin-bottom: 22px;
}
.hero-league-line {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero-league-line strong { color: var(--red); }
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.2vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
  text-shadow: 0 4px 28px rgba(0,0,0,0.9);
}
.hero-phrase {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.8vw, 19px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 40px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.btn-primary {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  border-color: rgba(255,60,60,0.55);
  box-shadow: 0 0 28px var(--red-glow);
  color: var(--white);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #ff2828 0%, #b50000 100%);
  box-shadow: 0 0 48px rgba(255,0,0,0.5);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: var(--silver);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
}
.btn-sm { min-height: 40px; font-size: 10px; padding: 0 16px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BROADCAST TICKER
============================================================ */
.broadcast-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: rgba(5,5,6,0.88);
  border-top: 2px solid var(--red);
  height: 40px;
}
.ticker-live-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: var(--red);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--white);
  white-space: nowrap;
  border-right: 2px solid rgba(0,0,0,0.3);
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-inner {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--silver);
  text-transform: uppercase;
  padding-left: 20px;
  animation: ticker-scroll 42s linear infinite;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS — BASE
============================================================ */
.section { padding: 108px 5vw; }
.section-alt { background: var(--ink); }

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-inner > h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: 32px;
  color: var(--white);
}
.section-inner > p {
  color: var(--silver);
  font-size: 18px;
  line-height: 1.68;
  margin-bottom: 16px;
}

/* Eyebrows */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.section-lede {
  color: var(--silver);
  font-size: 19px;
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 52px;
}

/* ============================================================
   WHAT IS PLUMMET — SPLIT
============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.copy h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: 28px;
  color: var(--white);
}
.copy p {
  color: var(--silver);
  font-size: 18px;
  line-height: 1.68;
  margin-bottom: 16px;
}
.copy .eyebrow { margin-bottom: 20px; }

.mark-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  border: 1px solid var(--line);
  padding: 52px 32px;
  text-align: center;
  clip-path: polygon(24px 0, 100% 0, calc(100% - 24px) 100%, 0 100%);
  box-shadow: 0 0 80px rgba(0,0,0,0.45);
}
.mark-card img {
  width: 150px;
  max-width: 68%;
  margin: 0 auto 22px;
  filter: drop-shadow(0 0 32px rgba(255,0,0,0.55));
}
.mark-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 10px;
}
.mark-card p { color: var(--muted); font-size: 15px; }

/* ============================================================
   IPO STATS
============================================================ */
.idc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-red);
  border: 1px solid var(--line-red);
  margin: 44px 0;
}
.idc-stat {
  background: var(--ink);
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}
.idc-body { max-width: 800px; margin-bottom: 36px; }
.idc-body p { color: var(--silver); font-size: 18px; line-height: 1.68; margin-bottom: 16px; }

.compliance-notice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,0,0,0.055);
  border: 1px solid rgba(255,0,0,0.28);
  border-left: 4px solid var(--red);
  padding: 20px 22px;
  max-width: 860px;
}
.compliance-icon { font-size: 18px; flex-shrink: 0; line-height: 1.7; }
.compliance-notice p {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   HOW A DROP WORKS
============================================================ */
.drop-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  margin-top: 52px;
}
.drop-step {
  padding: 38px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.25s;
}
.drop-step:hover { background: rgba(255,255,255,0.025); }
.drop-step:nth-child(3n) { border-right: none; }
.drop-step:nth-child(4), .drop-step:nth-child(5), .drop-step:nth-child(6) { border-bottom: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 900;
  color: rgba(255,0,0,0.10);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.05em;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 10px;
}
.step-content p { font-size: 15px; line-height: 1.62; color: var(--muted); }

/* ============================================================
   THE DEATH-LINE SECTION
============================================================ */
.death-line-section { position: relative; }

.death-line-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 44px;
  overflow: hidden;
}
.dl-bar-track {
  flex: 1;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 18px var(--red), 0 0 36px rgba(255,0,0,0.35);
}
.dl-bar-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
  background: var(--ink);
  padding: 5px 14px;
  border: 1px solid var(--red);
  border-left: none;
  margin-left: -1px;
}

.death-line-body { max-width: 700px; margin-bottom: 56px; }
.death-line-body p { color: var(--silver); font-size: 18px; line-height: 1.68; margin-bottom: 18px; }

.dl-quote {
  border-left: 3px solid var(--red);
  padding: 18px 22px;
  margin-top: 30px;
  background: rgba(255,0,0,0.04);
  font-size: 18px;
  font-style: italic;
  color: var(--silver);
  line-height: 1.5;
}
.dl-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--faint);
  font-style: normal;
  letter-spacing: 0.06em;
}

.dl-scoring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.dl-score-card {
  padding: 32px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  text-align: center;
}
.dl-score-card.featured {
  border-color: var(--red);
  background: rgba(255,0,0,0.07);
  box-shadow: 0 0 48px rgba(255,0,0,0.18);
}
.dl-score-icon { font-size: 26px; margin-bottom: 14px; }
.dl-score-icon.above { color: var(--faint); }
.dl-score-icon.on { color: var(--red); }
.dl-score-icon.below { color: #3dbd3d; }
.dl-score-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 10px;
}
.dl-score-card p { font-size: 14px; line-height: 1.55; color: var(--muted); margin-bottom: 18px; }
.score-verdict {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid;
}
.score-verdict.bad { color: var(--faint); border-color: var(--faint); }
.score-verdict.perfect { color: var(--red); border-color: var(--red); }
.score-verdict.good { color: #3dbd3d; border-color: #3dbd3d; }

/* ============================================================
   THE 1% CLUB
============================================================ */
.section-one-percent {
  position: relative;
  overflow: hidden;
  background: var(--void);
}
.section-one-percent::before {
  content: '.1%';
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(160px, 20vw, 340px);
  font-weight: 900;
  color: rgba(255,0,0,0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.one-pct-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: center;
}
.one-pct-badge {
  width: 178px;
  height: 178px;
  border: 4px solid var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 60px rgba(255,0,0,0.28), inset 0 0 44px rgba(255,0,0,0.05);
}
.one-pct-badge::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255,0,0,0.32);
}
.pct-num {
  font-family: var(--font-display);
  font-size: 78px;
  font-weight: 900;
  color: var(--red);
  line-height: 0.88;
  letter-spacing: -0.04em;
}
.pct-pct {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.pct-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 6px;
}
.one-pct-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: 22px;
  color: var(--white);
}
.one-pct-copy p { color: var(--silver); font-size: 17px; line-height: 1.68; margin-bottom: 14px; }

.one-pct-status {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.status-item { display: flex; align-items: baseline; gap: 18px; }
.status-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  min-width: 156px;
  flex-shrink: 0;
}
.status-val { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }

/* ============================================================
   ATHLETE CARDS
============================================================ */
.athlete-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  margin-top: 52px;
}
.athlete-card {
  border-right: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.athlete-card:last-child { border-right: none; }

/* Avatar / visual panel */
.athlete-visual {
  position: relative;
  background: var(--ink-2);
  aspect-ratio: 3/4;
  overflow: hidden;
}
.athlete-avatar-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.athlete-bg-mark {
  position: absolute;
  inset: 0;
  background: url('../images/death-mark-red.png') center / 68% no-repeat;
  opacity: 0.06;
}
.athlete-initial {
  font-family: var(--font-display);
  font-size: 110px;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  position: relative;
  z-index: 1;
  user-select: none;
}

/* Broadcast lower-third */
.athlete-lower-third {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(to right, rgba(220,0,0,0.95), rgba(140,0,0,0.88));
  padding: 11px 14px 13px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 2px solid rgba(255,255,255,0.15);
}
.ath-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.ath-role {
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}

/* Athlete body */
.athlete-body {
  flex: 1;
  padding: 20px 18px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ath-classification {
  display: flex;
  align-items: center;
  gap: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.classif-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.classif-sep { color: var(--faint); font-size: 10px; }
.classif-val {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.classif-pending { color: var(--muted); }

.ath-bio { font-size: 13px; line-height: 1.6; color: var(--muted); flex: 1; }

.ath-stat-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.ath-stat-key {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.ath-stat-val { font-size: 12px; color: var(--muted); line-height: 1.45; }

.ath-quote {
  font-family: var(--font-mono);
  font-size: 13px;
  font-style: italic;
  color: var(--silver);
  border-left: 2px solid var(--red);
  padding-left: 10px;
  line-height: 1.45;
}

/* Subject 404 variant */
.athlete-card-anomaly .athlete-lower-third {
  background: linear-gradient(to right, rgba(16,16,24,0.97), rgba(8,8,14,0.94));
  border-top: 2px solid var(--red);
}
.athlete-card-anomaly .ath-name { color: var(--red); }
.athlete-card-anomaly .athlete-initial { color: rgba(255,0,0,0.16); }

/* ============================================================
   EVENTS
============================================================ */
.event-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.85fr;
  gap: 18px;
  margin-top: 52px;
}
.event-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.event-featured {
  border-color: rgba(255,0,0,0.42);
  box-shadow: 0 0 50px rgba(255,0,0,0.12);
}
.event-status-badge {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 16px;
  width: 100%;
  flex-shrink: 0;
}
.event-status-badge.upcoming { background: var(--red); color: var(--white); }
.event-status-badge.sanctioned {
  background: rgba(255,255,255,0.06);
  color: var(--silver);
  border-bottom: 1px solid var(--line);
}
.event-body {
  padding: 26px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.event-body h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
}
.event-desc { font-size: 14px; line-height: 1.62; color: var(--muted); flex: 1; }
.event-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.event-detail-row { display: flex; gap: 12px; align-items: flex-start; }
.ev-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  min-width: 76px;
  flex-shrink: 0;
  padding-top: 2px;
}
.ev-val { font-family: var(--font-mono); font-size: 12px; color: var(--silver); line-height: 1.4; }

/* Unsanctioned */
.event-unsanctioned {
  background: rgba(5,5,6,0.85);
  border-color: rgba(255,0,0,0.18);
}
.unsanctioned-stamp {
  position: absolute;
  top: 28px;
  right: -18px;
  transform: rotate(13deg);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  border: 2px solid var(--red);
  padding: 5px 30px;
  opacity: 0.82;
  pointer-events: none;
  white-space: nowrap;
}
.event-unsanc-note {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.5;
  color: var(--faint);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

/* ============================================================
   SPONSORS
============================================================ */
.sponsors-section .section-inner { }

.sponsor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 0;
}
.sponsor-card {
  background: linear-gradient(155deg, rgba(255,255,255,0.055), rgba(255,255,255,0.016));
  border: 1px solid var(--line);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, background 0.25s;
}
.sponsor-card:hover { border-color: rgba(255,0,0,0.32); }
.sponsor-primary {
  border-color: rgba(255,0,0,0.28);
  background: linear-gradient(155deg, rgba(255,0,0,0.07), rgba(255,0,0,0.025));
}
.sponsor-badge-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.sponsor-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
}
.sponsor-desc { font-size: 15px; line-height: 1.65; color: var(--muted); flex: 1; }
.sponsor-tagline {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--silver);
  border-left: 2px solid var(--red);
  padding-left: 12px;
  line-height: 1.45;
  font-style: italic;
}

/* ============================================================
   SPONSOR CTA
============================================================ */
.sponsor-cta-section { text-align: center; }
.sponsor-cta-inner { max-width: 720px; margin: 0 auto; }
.sponsor-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: 24px;
  color: var(--white);
}
.sponsor-cta-inner p { color: var(--silver); font-size: 18px; line-height: 1.65; margin-bottom: 16px; }
.sponsor-cta-note {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--faint);
  margin-bottom: 36px;
}
.sponsor-cta-inner .cta-row { margin-top: 8px; }

/* ============================================================
   DROP LIST / SIGNUP
============================================================ */
.signup-section { background: var(--void); }
.signup-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0, rgba(255,0,0,0.14), transparent 52%), var(--ink);
  border: 1px solid var(--line-red);
  padding: 64px 8% 56px;
  box-shadow: 0 40px 130px rgba(0,0,0,0.65);
}
.signup-logo { width: min(480px, 85%); margin: 0 auto 36px; }
.signup-box h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--white);
}
.signup-box > p { color: var(--muted); font-size: 16px; margin-bottom: 34px; }

.signup-form { text-align: left; }
.signup-form label {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.form-row { display: flex; gap: 0; }
.form-row input {
  flex: 1;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.16);
  border-right: none;
  color: var(--white);
  min-height: 56px;
  padding: 0 18px;
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus { border-color: var(--red); }
.form-row input::placeholder { color: var(--faint); }
.form-row button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0 28px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.2s;
  white-space: nowrap;
}
.form-row button:hover { background: #cc0000; }
.form-row button:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
.fine-print-form {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.55;
  color: var(--faint);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 64px 5vw 44px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
.footer-logo { width: min(260px, 55%); }

.footer-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--red); }
.footer-nav span { color: var(--faint); font-size: 12px; }

.footer-fine-print {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-fine-print p { font-size: 13px; line-height: 1.55; color: var(--faint); }

.footer-warning {
  max-width: 740px;
  background: rgba(255,0,0,0.045);
  border: 1px solid rgba(255,0,0,0.18);
  border-left: 3px solid var(--red);
  padding: 18px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-warning p { font-family: var(--font-mono); font-size: 12px; line-height: 1.55; color: var(--faint); }

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  width: 100%;
}
.footer-bottom span {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-inner { animation: none; }
  .scanline { display: none; }
  .hero-bg { transform: none; }
}

/* ============================================================
   RESPONSIVE — 1100px
============================================================ */
@media (max-width: 1100px) {
  .athlete-grid { grid-template-columns: repeat(2, 1fr); }
  .athlete-card:nth-child(2n) { border-right: none; }
  .athlete-card:nth-child(1),
  .athlete-card:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ============================================================
   RESPONSIVE — 920px
============================================================ */
@media (max-width: 920px) {
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .mark-card { clip-path: none; }
  .idc-stats { grid-template-columns: repeat(2, 1fr); }
  .dl-scoring-grid { grid-template-columns: 1fr; gap: 12px; }
  .one-pct-layout { grid-template-columns: 1fr; justify-items: center; gap: 44px; text-align: center; }
  .status-item { justify-content: center; }
  .status-label { min-width: 130px; }
  .event-grid { grid-template-columns: 1fr; gap: 16px; }
  .sponsor-grid { grid-template-columns: 1fr; }
  .drop-steps { grid-template-columns: repeat(2, 1fr); }
  .drop-step:nth-child(3n) { border-right: 1px solid var(--line); }
  .drop-step:nth-child(2n) { border-right: none; }
  .drop-step:nth-child(4),
  .drop-step:nth-child(5),
  .drop-step:nth-child(6) { border-bottom: 1px solid var(--line); }
  .drop-step:nth-child(5),
  .drop-step:nth-child(6) { border-bottom: none; }
}

/* ============================================================
   RESPONSIVE — 768px (MOBILE)
============================================================ */
@media (max-width: 768px) {
  .section { padding: 76px 5vw; }

  /* Mobile nav */
  .site-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5,5,6,0.99);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 40;
  }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 22px; letter-spacing: 0.06em; }
  .nav-cta {
    clip-path: none !important;
    padding: 14px 32px !important;
    font-size: 16px !important;
  }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { padding-top: 100px; }
  .hero-logo { width: 92vw; }
  .hero-tagline { font-size: clamp(17px, 5vw, 28px); }
  .cta-row { gap: 10px; }
  .btn { font-size: 10px; padding: 0 16px; }

  /* Athletes */
  .athlete-grid { grid-template-columns: 1fr; }
  .athlete-card { border-right: none; border-bottom: 1px solid var(--line); }
  .athlete-card:last-child { border-bottom: none; }

  /* Steps */
  .drop-steps { grid-template-columns: 1fr; }
  .drop-step { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .drop-step:last-child { border-bottom: none !important; }

  /* IPO stats */
  .idc-stats { grid-template-columns: repeat(2, 1fr); }

  /* Signup form */
  .form-row { flex-direction: column; }
  .form-row input { border-right: 1px solid rgba(255,255,255,0.16); border-bottom: none; }
  .form-row button { min-height: 52px; }

  /* 1% Club */
  .one-pct-copy h2 { font-size: clamp(32px, 8vw, 56px); }
}

/* ==========================================================
   FORM — JS-injected states (error / confirmation)
   ========================================================== */

.form-msg {
  margin-top: 12px;
  font-size: 13px;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.02em;
  padding: 10px 14px;
  border-left: 3px solid;
}

.form-msg--error {
  color: var(--red);
  border-color: var(--red);
  background: rgba(255,0,0,0.06);
}

.form-msg--success {
  color: #4ade80;
  border-color: #4ade80;
  background: rgba(74, 222, 128, 0.06);
}

.form-confirmation {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--red);
  background: rgba(255,0,0,0.04);
}

.confirm-headline {
  font-family: 'Arial Black', 'Impact', sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 10px;
}

.confirm-body {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.6;
  margin: 0 0 12px;
}

.confirm-fine-print {
  font-size: 11px;
  font-family: 'Courier New', monospace;
  color: var(--muted);
  margin: 0;
  opacity: 0.7;
}

/* ==========================================================
   HERO MONETIZE — blatant, oversized monetization banner
   ========================================================== */
.hero-monetize {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
  line-height: 1;
}
.monetize-kicker {
  font-family: var(--font-display);
  font-size: clamp(11px, 1.6vw, 16px);
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}
.monetize-word {
  font-family: var(--font-display);
  font-size: clamp(44px, 11vw, 132px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--red);
  -webkit-text-stroke: 2px var(--red);
  text-shadow:
    0 0 18px var(--red-glow),
    0 0 48px rgba(255, 0, 0, 0.45),
    0 6px 0 var(--red-deep);
  animation: monetize-pulse 1.4s ease-in-out infinite;
}
@keyframes monetize-pulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.025); filter: brightness(1.25); }
}
@media (prefers-reduced-motion: reduce) {
  .monetize-word { animation: none; }
}

/* ==========================================================
   TRAINING
   ========================================================== */
.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 48px 0 40px;
  border: 1px solid var(--line);
}
.training-card {
  padding: 36px 30px;
  border-right: 1px solid var(--line);
  background: var(--void);
}
.training-card:last-child { border-right: none; }
.training-tier {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.training-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  margin: 0 0 14px;
}
.training-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--silver);
  margin: 0 0 18px;
}
.training-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.training-list li {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.training-list li::before {
  content: "\203A";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

/* ==========================================================
   EVENTS — Compliance statement card (replaces Unsanctioned)
   ========================================================== */
.event-status-badge.compliance-badge {
  background: var(--red);
  color: var(--void);
}
.event-compliance {
  border-color: var(--line-red);
}
.event-compliance-statement {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 26px) !important;
  line-height: 1.25 !important;
  text-transform: none;
  color: var(--white) !important;
  margin-bottom: 18px !important;
}
.event-compliance-attrib {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0;
}

/* ==========================================================
   SHOP
   ========================================================== */
.shop-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 48px 0 32px;
  border: 1px solid var(--line);
}
.shop-column {
  padding: 36px 32px;
}
.shop-column:first-child {
  border-right: 1px solid var(--line);
}
.shop-column-head {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--red);
}
.shop-column-head h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 6px;
}
.shop-column-head p {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--red);
  margin: 0;
  text-transform: uppercase;
}
.shop-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.shop-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.shop-item-thumb {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  background: var(--ink-2);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--red);
  letter-spacing: 0.02em;
}
.shop-item-info { flex: 1; }
.shop-item-info h4 {
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 6px;
}
.shop-item-info > p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 12px;
}
.shop-item-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.shop-price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
}
.shop-btn { white-space: nowrap; }
.shop-note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--faint);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* ==========================================================
   CONTACT + SOCIAL
   ========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 48px 0 40px;
  border: 1px solid var(--line);
}
.contact-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-card:first-child {
  border-right: 1px solid var(--line);
}
.contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.contact-value {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 34px);
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.18s ease;
  word-break: break-word;
}
.contact-value:hover,
.contact-value:focus-visible { color: var(--red); }
.contact-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.social-block {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.social-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.social-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.social-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--ink-2);
  color: var(--silver);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.social-btn:hover,
.social-btn:focus-visible {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
  outline: none;
}
.social-btn:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.social-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--faint);
  margin: 0;
}

/* ==========================================================
   FOOTER CONTACT STRIP
   ========================================================== */
.footer-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.footer-contact a {
  color: var(--silver);
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-contact a:hover,
.footer-contact a:focus-visible { color: var(--red); }
.footer-contact span { color: var(--faint); }

/* ==========================================================
   RESPONSIVE — new sections
   ========================================================== */
@media (max-width: 920px) {
  .training-grid { grid-template-columns: 1fr; }
  .training-card { border-right: none; border-bottom: 1px solid var(--line); }
  .training-card:last-child { border-bottom: none; }

  .shop-split { grid-template-columns: 1fr; }
  .shop-column:first-child { border-right: none; border-bottom: 1px solid var(--line); }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-card:first-child { border-right: none; border-bottom: 1px solid var(--line); }
}
