/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  /* no min-height trick — just natural padding */
  padding: 80px 24px 0;
  z-index: 1;
  overflow: hidden;
}

.hero__grid {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.013) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg,  rgba(255,255,255,.013) 0 1px, transparent 1px 64px);
  pointer-events: none;
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift {
  from { transform: translateY(0); }
  to   { transform: translateY(64px); }
}

.hero__bar {
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, transparent 5%, var(--c-red) 30%, var(--c-red) 80%, transparent 100%);
  pointer-events: none;
}

/* ── eyebrow ── */
.hero__eye {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.hero__eye-line { height: 1px; width: 24px; background: var(--c-red); flex-shrink: 0; }
.hero__eye-text {
  font-family: var(--f-mono); font-size: calc(9px * var(--fs-mul));
  letter-spacing: .22em; color: var(--c-red); text-transform: uppercase;
}

/* ── title ── */
.hero__title-block { margin-bottom: 20px; }

.hero__name {
  display: block;
  font-family: var(--f-serif); font-weight: 900;
  font-size: calc(clamp(52px, 13vw, 124px) * var(--fs-mul));
  line-height: .9; letter-spacing: -.03em; color: var(--c-text);
}
.hero__event {
  display: block;
  font-family: var(--f-serif); font-weight: 900;
  font-size: calc(clamp(52px, 13vw, 124px) * var(--fs-mul));
  line-height: .9; letter-spacing: -.03em; color: var(--c-red);
  margin-bottom: 14px;
}
.hero__sub {
  display: block; font-family: var(--f-sans); font-weight: 300;
  font-size: calc(clamp(11px, 1.3vw, 13px) * var(--fs-mul)); color: var(--c-dim);
  letter-spacing: .06em;
  border-left: 2px solid var(--c-red); padding-left: 10px;
}

/* ── desc ── */
.hero__desc {
  font-size: calc(14px * var(--fs-mul)); line-height: 1.85; color: var(--c-dim);
  margin-bottom: 24px; max-width: 540px;
}

/* ══════════════════════════════════════════════
   STATS — mobile: vertical stack, each row full width
   desktop: horizontal row
══════════════════════════════════════════════ */
.hero__stats {
  border: 1px solid var(--c-line);
  background: rgba(12,12,22,.78);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  margin-bottom: 0;
  /* vertical by default */
  display: flex;
  flex-direction: column;
}
.light .hero__stats { background: rgba(236,232,224,.88); }

.stat {
  padding: 14px 18px;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background .2s;
  flex-shrink: 0;
}
.stat:last-child { border-bottom: none; }
.stat:hover { background: var(--c-red-a); }

.stat__n {
  font-family: var(--f-mono); font-size: calc(22px * var(--fs-mul)); font-weight: 700;
  color: var(--c-amber); line-height: 1; flex-shrink: 0;
}
.stat__n--red { color: var(--c-red); font-size: calc(17px * var(--fs-mul)); }
.stat__l {
  font-family: var(--f-mono); font-size: calc(10px * var(--fs-mul)); letter-spacing: .07em;
  color: var(--c-faint); text-transform: uppercase; text-align: right;
}

/* ══════════════════════════════════════════════
   BANNER — mobile: 2-col grid
   desktop: horizontal row
══════════════════════════════════════════════ */
.hero__banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--c-line); border-top: none;
  background: rgba(12,12,22,.5);
}
.light .hero__banner { background: rgba(236,232,224,.6); }

.bn {
  padding: 12px 16px;
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  display: flex; align-items: center; gap: 9px;
}
.bn:nth-child(even) { border-right: none; }
.bn:nth-last-child(-n+2) { border-bottom: none; }

.bn__n {
  font-family: var(--f-mono); font-size: calc(15px * var(--fs-mul)); font-weight: 700;
  color: var(--c-amber); flex-shrink: 0;
}
.bn__l {
  font-family: var(--f-mono); font-size: calc(9px * var(--fs-mul));
  color: var(--c-faint); letter-spacing: .04em;
}

/* ── tape bar ── */
.hero__tape {
  padding: 10px 0;
  margin-top: 0;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--c-line);
  margin-top: 0;
}
.hero__tape-label {
  font-family: var(--f-mono); font-size: calc(9px * var(--fs-mul));
  color: var(--c-faint); letter-spacing: .14em; text-transform: uppercase;
}
.hero__tape-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-red); box-shadow: 0 0 8px var(--c-red);
  animation: hblink 2s infinite;
}
@keyframes hblink { 0%,100%{opacity:1} 50%{opacity:.2} }

/* ── glitch — dark mode only ── */
.glitch { position: relative; display: inline; }
:root:not(.light) .glitch::before,
:root:not(.light) .glitch::after {
  content: attr(data-t);
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; opacity: 0;
}
:root:not(.light) .glitch::before {
  color: var(--c-red); animation: g1 7s infinite linear; left: 2px;
}
:root:not(.light) .glitch::after {
  color: #00e0ff; animation: g2 7s infinite linear; left: -2px;
}
@keyframes g1 {
  0%,92%,100%{ opacity:0; clip-path:none; transform:none; }
  93%{ opacity:.6; clip-path:polygon(0 20%,100% 20%,100% 30%,0 30%); transform:translateX(-3px); }
  95%{ clip-path:polygon(0 54%,100% 54%,100% 64%,0 64%); transform:translateX(3px); }
  97%{ opacity:0; }
}
@keyframes g2 {
  0%,87%,100%{ opacity:0; clip-path:none; transform:none; }
  88%{ opacity:.5; clip-path:polygon(0 38%,100% 38%,100% 50%,0 50%); transform:translateX(4px); }
  90%{ clip-path:polygon(0 66%,100% 66%,100% 76%,0 76%); transform:translateX(-4px); }
  92%{ opacity:0; }
}
