/* ============================================================
   VIENNA FIGHT NIGHT — Tokens
   ============================================================ */
:root {
  --fight-black: #0A0A0A;
  --arena-white: #FFFFFF;
  --fight-red: #CC1F1F;
  --fight-red-deep: #9A1212;
  --charcoal: #1A1A1A;
  --charcoal-2: #111111;
  --footer-black: #060606;
  --stone: #AAAAAA;
  --stone-dim: #6B6B6B;
  --rule: rgba(255, 255, 255, 0.10);
  --rule-strong: rgba(255, 255, 255, 0.22);

  --skin: var(--fight-red);

  --font-display: "Oswald", "Bebas Neue", Impact, sans-serif;
  --font-sub: "Barlow Semi Condensed", "Futura PT", "Helvetica Neue", sans-serif;
  --font-body: "Inter", "Aktiv Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --pad-x: clamp(20px, 5vw, 96px);
  --section-y: clamp(80px, 10vw, 160px);
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--fight-black);
  color: var(--arena-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--fight-red); color: var(--arena-white); }

/* ============================================================
   Type primitives
   ============================================================ */
.t-display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.86;
}
.t-sub {
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.t-eyebrow {
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.30em;
  font-size: 11px;
}
.t-mono {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  font-size: 11px;
  text-transform: uppercase;
}
.t-italic {
  font-family: var(--font-sub);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.red { color: var(--fight-red); }
.skin { color: var(--skin); }
.stone { color: var(--stone); }

/* ============================================================
   Grain / texture overlay
   ============================================================ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  mix-blend-mode: overlay;
  opacity: 0.18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
body[data-grain="off"] .grain { display: none; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --b: var(--fight-red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--b);
  color: var(--arena-white);
  border: 1px solid var(--b);
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
  position: relative;
}
.btn:hover { transform: translate(-2px, -2px); }
.btn:active { transform: translate(0, 0); }
.btn .arrow { font-size: 14px; transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--arena-white);
  border-color: rgba(255,255,255,0.30);
}
.btn--ghost:hover { border-color: var(--arena-white); background: rgba(255,255,255,0.04); }

.btn--block {
  width: 100%;
  justify-content: center;
}

/* Outline-corner accent on primary buttons */
.btn--corner::before,
.btn--corner::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  border: 1px solid var(--arena-white);
  pointer-events: none;
}
.btn--corner::before { top: -3px; left: -3px; border-right: 0; border-bottom: 0; }
.btn--corner::after { bottom: -3px; right: -3px; border-left: 0; border-top: 0; }

/* ============================================================
   Sections common
   ============================================================ */
.section {
  padding: var(--section-y) var(--pad-x);
  position: relative;
}
.section--charcoal { background: var(--charcoal); }
.section--black { background: var(--fight-black); }
.section--footerblack { background: var(--footer-black); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--fight-red);
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.30em;
  font-size: 11px;
}
.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--fight-red);
}

.eyebrow-num {
  font-family: var(--font-mono);
  color: var(--stone);
  letter-spacing: 0.18em;
  font-size: 11px;
  text-transform: uppercase;
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.0) 100%);
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
  padding: 12px var(--pad-x);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo img {
  height: 38px;
  width: auto;
  transition: height 0.3s ease;
}
.nav.is-scrolled .nav__logo img { height: 30px; }

.nav__menu {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__link {
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  font-size: 12px;
  color: var(--arena-white);
  position: relative;
  padding: 6px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--fight-red);
  transition: width 0.25s ease;
}
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 16px; }

.nav__lang {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--stone);
  border: 1px solid var(--rule);
  padding: 6px 8px;
  text-transform: uppercase;
}
.nav__lang button {
  background: transparent;
  border: 0;
  color: var(--stone);
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  padding: 0 6px;
}
.nav__lang button.is-active { color: var(--arena-white); }

.nav__hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__hamburger span {
  width: 16px; height: 1.5px; background: var(--arena-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--fight-black);
  z-index: 55;
  padding: 100px var(--pad-x) 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.nav-overlay.is-open { transform: translateY(0); }
.nav-overlay a {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 56px;
  line-height: 1.1;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.nav-overlay a .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fight-red);
  margin-right: 18px;
  vertical-align: top;
  letter-spacing: 0.20em;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--fight-black);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.30) 0%, rgba(10,10,10,0.0) 25%, rgba(10,10,10,0.55) 75%, rgba(10,10,10,0.96) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.0) 50%);
  pointer-events: none;
}
/* Logo über NEXT EVENT — Markteinführung prominent */
.hero__logo-stack {
  display: block;
  width: clamp(240px, 35vw, 540px);
  height: auto;
  margin-bottom: 22px;
  margin-left: -8px;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.6));
}
@media (max-width: 760px) {
  .hero__logo-stack {
    width: 70vw;
    margin-bottom: 16px;
  }
}

/* dots */
.hero__dots {
  position: absolute;
  bottom: 28px;
  right: var(--pad-x);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.30);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}
.hero__dot.is-active { background: var(--fight-red); width: 44px; }
.hero__dot:hover { background: rgba(255,255,255,0.7); }

/* hero content */
.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding: 0 var(--pad-x) 88px;
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero__title-block .next-event {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fight-red);
  color: var(--arena-white);
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  padding: 7px 14px;
  margin-bottom: 22px;
}
.hero__title-block .next-event .dot {
  width: 6px; height: 6px; background: var(--arena-white); border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}

.hero__date {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.86;
  letter-spacing: 0.005em;
  margin: 0;
  /* Outline + fill mix for editorial drama */
}
.hero__date .num {
  display: inline-block;
}

.hero__location {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  font-size: 14px;
  color: var(--arena-white);
}
.hero__location .sep {
  width: 24px; height: 1px; background: var(--fight-red);
}

/* Side meta column on right (chip with details) */
.hero__sidemeta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  text-align: right;
}
.hero__sidemeta .row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--stone);
}
.hero__sidemeta .row .v {
  color: var(--arena-white);
  font-family: var(--font-sub);
  font-weight: 700;
}

/* corner ticks */
.hero__corner {
  position: absolute;
  z-index: 3;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.40);
}
.hero__corner.tl { top: 92px; left: var(--pad-x); border-right: 0; border-bottom: 0; }
.hero__corner.tr { top: 92px; right: var(--pad-x); border-left: 0; border-bottom: 0; }
.hero__corner.bl { bottom: 168px; left: var(--pad-x); border-right: 0; border-top: 0; }
.hero__corner.br { bottom: 168px; right: var(--pad-x); border-left: 0; border-top: 0; }

/* index marker top-left under nav */
.hero__index {
  position: absolute;
  top: 100px;
  left: var(--pad-x);
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  color: var(--stone);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__claim {
  position: absolute;
  top: 100px;
  right: var(--pad-x);
  z-index: 3;
  font-family: var(--font-sub);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: 14px;
  color: var(--arena-white);
}

/* Vertical text on far right */
.hero__vertical {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.40em;
  color: var(--stone);
  text-transform: uppercase;
  z-index: 3;
}

/* scroll cue */
.hero__cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.30em;
  color: var(--stone);
  text-transform: uppercase;
}
.hero__cue .line {
  position: relative;
  width: 1px; height: 56px;
  background: rgba(255,255,255,0.20);
  overflow: hidden;
}
.hero__cue .line::after {
  content: "";
  position: absolute;
  left: 0; top: -50%;
  width: 1px; height: 50%;
  background: var(--arena-white);
  animation: cue 2.0s ease-in-out infinite;
}
@keyframes cue {
  0%   { top: -50%; }
  100% { top: 100%; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* ============================================================
   Countdown bar
   ============================================================ */
.countdown {
  background: var(--fight-black);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  position: relative;
}
.countdown.is-stuck {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(6px);
}
.countdown__label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.countdown__label .l1 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.30em;
  color: var(--stone);
  text-transform: uppercase;
}
.countdown__label .l2 {
  font-family: var(--font-sub);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--arena-white);
}
.countdown__digits {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.countdown__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}
.countdown__cell .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--arena-white);
  font-variant-numeric: tabular-nums;
}
.countdown__cell .k {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.30em;
  color: var(--stone);
  margin-top: 6px;
  text-transform: uppercase;
}
.countdown__sep {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--fight-red);
  margin-top: -2px;
}

/* ============================================================
   About — section 4
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about__head { display: flex; flex-direction: column; gap: 28px; }
.about__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(64px, 8vw, 132px);
  line-height: 0.84;
  letter-spacing: 0.005em;
  margin: 0;
}
.about__title .of {
  font-family: var(--font-sub);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  font-size: 0.42em;
  letter-spacing: 0.04em;
  color: var(--stone);
  vertical-align: middle;
  margin: 0 6px;
}
.about__title .red-strike {
  position: relative;
  display: inline-block;
}
.about__title .red-strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  top: 47%;
  height: 6px;
  background: var(--fight-red);
  transform: skew(-12deg);
}
.about__lede {
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  color: var(--arena-white);
  max-width: 56ch;
  letter-spacing: 0.005em;
}
.about__copy {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--stone);
  max-width: 52ch;
}
.about__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.about__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about__image {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--fight-red);
  padding: 8px;
  background: var(--charcoal-2);
}
.about__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(0.9);
}
.about__image-tag {
  position: absolute;
  top: 18px; left: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--arena-white);
  text-transform: uppercase;
  background: rgba(10, 10, 10, 0.7);
  padding: 6px 10px;
  border: 1px solid var(--rule);
}
.about__pillar {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}
.about__pillar .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--fight-red);
}
.about__pillar .label {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.02em;
  line-height: 1;
}
.about__pillar .desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--stone);
  max-width: 30ch;
  text-align: right;
}

/* ============================================================
   The Night — section 5
   ============================================================ */
.thenight {
  position: relative;
  padding: var(--section-y) var(--pad-x);
  background: var(--charcoal);
  overflow: hidden;
}
.thenight::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.thenight__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.thenight__date {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.85;
  letter-spacing: 0.01em;
  margin: 12px 0 8px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.04em;
  flex-wrap: wrap;
}
.thenight__date .dot { color: var(--fight-red); margin: 0 0.04em; }
.thenight__date .yr { color: var(--stone); }
.thenight__venue {
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(18px, 1.6vw, 24px);
}
.thenight__addr {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--stone);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.thenight__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid var(--rule-strong);
  background: rgba(255,255,255,0.02);
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}
.pill .glyph {
  width: 8px; height: 8px;
  background: var(--fight-red);
  display: inline-block;
}

/* ============================================================
   Tickets — section 6
   ============================================================ */
.tickets {
  display: grid;
  gap: 40px;
}
.tickets__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.tickets__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92;
  margin: 14px 0 0;
  letter-spacing: 0.005em;
}
.tickets__head .meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--stone);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  text-align: right;
}

.tickets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
  border: 1px solid var(--rule);
  padding: 28px 26px 26px;
  min-height: 480px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.tcard:hover {
  border-color: var(--fight-red);
  transform: translateY(-4px);
}
.tcard--vip {
  background: #0E0E0E;
}
.tcard--vip-table {
  border-color: rgba(196, 158, 92, 0.35);
  background:
    linear-gradient(180deg, rgba(196, 158, 92, 0.06) 0%, rgba(0,0,0,0) 60%),
    var(--charcoal);
}
.tcard--vip-table:hover { border-color: rgba(196, 158, 92, 0.85); }
.tcard__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 16px;
}
.tcard__tier {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 0.9;
  letter-spacing: 0.02em;
}
.tcard__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  color: var(--stone);
}
.tcard__sub {
  margin-top: 14px;
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--stone);
}
.tcard__price {
  margin-top: 26px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.tcard__price .from {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--stone);
}
.tcard__price .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0.005em;
}
.tcard--vip-table .tcard__price .v { color: #C49E5C; }
.tcard__price .cur {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--stone);
  margin-right: -2px;
}
.tcard__list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--arena-white);
  flex: 1;
}
.tcard__list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}
.tcard__list li::before {
  content: "—";
  color: var(--fight-red);
  font-family: var(--font-mono);
}
.tcard--vip-table .tcard__list li::before { color: #C49E5C; }
.tcard__cta {
  margin-top: 20px;
}

.tickets__foot {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

/* ============================================================
   Newsletter — section 7
   ============================================================ */
.newsletter {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  background: #111;
  padding: 80px var(--pad-x);
  border-left: 3px solid var(--fight-red);
  position: relative;
}
.newsletter::before {
  content: "07";
  position: absolute;
  top: 18px; right: var(--pad-x);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--stone);
  letter-spacing: 0.20em;
}
.newsletter__h {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.92;
  margin: 12px 0 16px;
  letter-spacing: 0.005em;
}
.newsletter__sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--stone);
  max-width: 48ch;
}
.newsletter__form {
  display: flex;
  border: 1px solid var(--rule-strong);
  background: var(--fight-black);
}
.newsletter__form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--arena-white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 18px 20px;
  letter-spacing: 0.01em;
}
.newsletter__form input::placeholder { color: var(--stone-dim); }
.newsletter__form button {
  background: var(--fight-red);
  border: 0;
  color: var(--arena-white);
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  padding: 0 28px;
  transition: background 0.2s ease;
}
.newsletter__form button:hover { background: var(--fight-red-deep); }
.newsletter__success {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid #2E7D32;
  color: #A5D6A7;
  font-family: var(--font-sub);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 13px;
  background: rgba(46, 125, 50, 0.08);
}

/* ============================================================
   Venue — section 8
   ============================================================ */
.venue {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}
.venue__copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.venue__h {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 0.9;
  margin: 12px 0 0;
  letter-spacing: 0.005em;
}
.venue__p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--stone);
  max-width: 48ch;
}
.venue__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.venue__details dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--fight-red);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.venue__details dd {
  margin: 0;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.venue__details dd .small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--stone);
  text-transform: none;
  letter-spacing: 0.01em;
  margin-top: 4px;
}

.venue__map {
  position: relative;
  min-height: 460px;
  background: var(--charcoal);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.venue__map svg { width: 100%; height: 100%; display: block; }
.venue__map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.venue__map-pin .marker {
  width: 18px; height: 18px;
  background: var(--fight-red);
  border-radius: 50%;
  border: 3px solid var(--arena-white);
  box-shadow: 0 0 0 6px rgba(204, 31, 31, 0.25);
  animation: pulse 1.6s ease-in-out infinite;
}
.venue__map-pin .label {
  background: var(--fight-black);
  color: var(--arena-white);
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  padding: 6px 10px;
  border: 1px solid var(--rule-strong);
  white-space: nowrap;
}

/* ============================================================
   Social ribbon
   ============================================================ */
.social {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px var(--pad-x);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--fight-black);
}
.social__h {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.social__ticker {
  overflow: hidden;
  position: relative;
  height: 22px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.social__ticker-inner {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--stone);
  text-transform: uppercase;
}
.social__ticker-inner span .red-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--fight-red);
  margin: 0 14px;
  vertical-align: middle;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.social__icons {
  display: flex;
  gap: 8px;
}
.social__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule-strong);
  color: var(--arena-white);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.social__icon:hover {
  background: var(--fight-red);
  border-color: var(--fight-red);
}
.social__icon svg { width: 16px; height: 16px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--footer-black);
  padding: 80px var(--pad-x) 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--rule);
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fight-red);
  margin: 0 0 18px;
}
.footer__col img { height: 36px; margin-bottom: 16px; }
.footer__col p { color: var(--stone); font-size: 13px; line-height: 1.6; max-width: 36ch; }
.footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer__list a {
  font-family: var(--font-sub);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--arena-white);
  transition: color 0.2s ease;
}
.footer__list a:hover { color: var(--fight-red); }
.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  color: var(--stone-dim);
  text-transform: uppercase;
}
.footer__legal .claim {
  font-family: var(--font-sub);
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.06em;
  text-transform: none;
}

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-armed { opacity: 0; transform: translateY(24px); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .about,
  .newsletter,
  .venue {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tickets__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__corner { display: none; }
}

@media (max-width: 760px) {
  :root { --pad-x: 20px; --section-y: 64px; }
  .nav__menu, .nav__lang { display: none; }
  .nav__hamburger { display: inline-flex; }
  .countdown {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .countdown__digits { gap: 10px; flex-wrap: wrap; }
  .countdown__cell { min-width: 64px; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero__sidemeta { align-items: flex-start; text-align: left; }
  .tickets__head { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__legal { flex-direction: column; gap: 12px; text-align: center; }
  .social { grid-template-columns: 1fr; }
  .social__ticker { display: none; }
  .nav-overlay a { font-size: 38px; }
}
