/* ================= FIGHT CLUB SOCIETY : BEVERLY HILLS ================= */
:root {
  --bg: #07080c;
  --bg2: #0b0d13;
  --panel: #05060a;
  --gold: #c9a86a;
  --gold-bright: #e6c88a;
  --gold-dim: rgba(201, 168, 106, 0.35);
  --ink: #e9e6df;
  --ink-dim: #b9b4a9;
  --serif: 'Montserrat', Helvetica, Arial, sans-serif;
  --sans: 'Montserrat', Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
em, i, blockquote { font-style: normal; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.gold { color: var(--gold); }
.gold-strong { color: var(--gold-bright); font-weight: 500; }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease var(--d, 0s), transform 0.9s ease var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- top bar ---------- */
.topbar { background: var(--bg); padding: 22px 6vw 0; }
.topbar-inner {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 18px; text-align: center;
}
.brandmark {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(28px, 3.6vw, 52px); letter-spacing: 0.16em; color: var(--gold);
  text-shadow: 0 0 60px rgba(201,168,106,0.25);
}
.event-line {
  font-size: clamp(10px, 1.1vw, 13px); letter-spacing: 0.3em; color: #d6d3cc;
  font-weight: 500; padding-bottom: 18px;
}
.powered { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.powered-label {
  font-size: 11px; letter-spacing: 0.4em; color: #aeb3ba; font-weight: 500;
}
.powered-logo {
  font-family: var(--serif); font-weight: 700;
  font-size: 15px; letter-spacing: 0.12em; color: var(--gold);
}

/* ---------- hero (combined main event) ---------- */
.hero {
  position: relative;
  padding: 30px 24px 40px;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -10%;
  background:
    radial-gradient(ellipse 60% 45% at 50% 30%, rgba(201, 168, 106, 0.16), transparent 65%),
    radial-gradient(ellipse 90% 70% at 50% 110%, rgba(120, 24, 24, 0.22), transparent 60%),
    radial-gradient(ellipse 45% 35% at 22% 75%, rgba(201, 168, 106, 0.06), transparent 70%),
    radial-gradient(ellipse 45% 35% at 80% 20%, rgba(90, 100, 130, 0.10), transparent 70%),
    linear-gradient(180deg, #07080c 0%, #0d0f16 55%, #07080c 100%);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.06) translateY(-2%); }
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 90% at 50% 50%, transparent 40%, rgba(0,0,0,0.75) 100%);
}
.hero-arrow {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  color: #fff; font-size: 20px; text-decoration: none; opacity: 0.85;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
.hero-content { position: relative; z-index: 2; padding: 0 12px; max-width: 1100px; margin: 0 auto; }

.eyebrow { margin-bottom: 18px; }
.eyebrow-the {
  display: block; font-family: var(--serif); font-weight: 600;
  font-size: clamp(15px, 1.6vw, 20px); letter-spacing: 0.22em; color: #e8e4da; margin-bottom: 6px;
}
.eyebrow-row { display: flex; align-items: center; justify-content: center; gap: 26px; }
.eyebrow-word {
  font-size: clamp(20px, 2.4vw, 32px); letter-spacing: 0.5em; font-weight: 700; color: #f2efe8;
  padding-left: 0.5em;
}
.diamond { color: var(--gold); font-size: 14px; }

.hero-match { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.hm-name {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(24px, 3vw, 42px); letter-spacing: 0.04em;
  line-height: 1.12; color: #f4f1ea;
  text-shadow: 0 0 70px rgba(201, 168, 106, 0.3);
}
.hm-vs {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(15px, 1.7vw, 22px); color: var(--gold);
}
.hero-tag {
  font-size: clamp(10px, 1vw, 12px); letter-spacing: 0.28em;
  font-weight: 600; color: var(--gold); margin-bottom: 26px;
}

.btn {
  display: inline-block; padding: 11px 26px; border-radius: 999px;
  background: rgba(13, 17, 28, 0.85); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; text-decoration: none; font-family: var(--sans);
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  transition: all 0.35s ease;
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: #0b0d13; }
.btn-gold { background: var(--gold); border-color: var(--gold); color: #0b0d13; }
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

/* ---------- fighters (inside hero) ---------- */
.fighters {
  max-width: 640px; margin: 0 auto 20px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: clamp(14px, 2vw, 30px); align-items: start;
}
.fighter-card {
  background: #050608; border: 1px solid var(--gold-dim); border-radius: 14px;
  overflow: hidden; padding-bottom: 16px;
  box-shadow: 0 22px 44px rgba(0,0,0,0.55);
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.fighter-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.fighter-photo { position: relative; }
.fighter-photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: top; display: block; }
.fighter-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, #050608 100%);
}
.fighter-caption { padding: 0 16px; }
.fighter-name {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(15px, 1.5vw, 19px); color: #f2efe8; margin: 12px 0 4px;
  line-height: 1.2;
}
.fighter-meta { font-size: 10.5px; letter-spacing: 0.14em; color: #b9b4a9; font-weight: 500; margin-bottom: 7px; }
.fighter-stat { font-size: 11.5px; color: #cfccc4; line-height: 1.5; }
.ig-shot {
  margin: 10px 10px 0; border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 24px rgba(0,0,0,0.5);
}
.ig-shot img { width: 100%; display: block; }
.vs-badge {
  align-self: center;
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(20px, 2.6vw, 36px); color: var(--gold);
  text-shadow: 0 0 50px rgba(201,168,106,0.4);
}
.quote {
  font-family: var(--serif); font-size: clamp(13px, 1.3vw, 16px);
  color: var(--gold); max-width: 760px; margin: 0 auto 10px; line-height: 1.6;
}
.showcase-copy { max-width: 700px; margin: 0 auto 18px; font-size: 12.5px; color: #cfccc4; }

.statgrid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
}
.stat {
  border: 1px solid var(--gold-dim); border-radius: 10px;
  padding: 13px 10px; background: rgba(255,255,255,0.015);
  display: flex; flex-direction: column; gap: 4px; align-items: center;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.stat:hover { border-color: var(--gold); transform: translateY(-3px); }
.stat-big {
  font-family: var(--serif); font-weight: 700;
  font-size: 15px; color: var(--gold-bright); line-height: 1.25;
}
.stat-label { font-size: 9.5px; letter-spacing: 0.15em; color: #b9b4a9; line-height: 1.55; }

/* ---------- 01/02/03 cards ---------- */
.cards-section { position: relative; padding: 56px 6vw 64px; overflow: hidden; }
.cards-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 20%, rgba(201,168,106,0.07), transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 70%, rgba(90, 30, 30, 0.12), transparent 60%),
    linear-gradient(160deg, #0a0c12 0%, #10131c 50%, #0a0c12 100%);
  animation: heroDrift 22s ease-in-out infinite alternate-reverse;
}
.recap { position: relative; z-index: 1; text-align: center; margin-bottom: 34px; }
.recap-label {
  font-size: 12px; letter-spacing: 0.36em; color: var(--gold);
  font-weight: 700; margin-bottom: 16px;
}
.recap-frame {
  max-width: 860px; margin: 0 auto; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--gold-dim); box-shadow: 0 26px 52px rgba(0,0,0,0.6);
  background: #000;
}
.recap-frame video { width: 100%; display: block; }
.cards-grid {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.xcard {
  background: #050608; border-radius: 14px; overflow: hidden;
  box-shadow: 0 22px 44px rgba(0,0,0,0.55);
}
.xcard-img { height: 110px; position: relative; }
.xcard-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, #050608 100%);
}
.img-ring {
  background:
    radial-gradient(ellipse 60% 80% at 50% 30%, rgba(201,168,106,0.55), transparent 65%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 46px),
    linear-gradient(180deg, #1a1206 0%, #090603 100%);
}
.img-lights {
  background:
    radial-gradient(circle 90px at 30% 25%, rgba(230,200,138,0.5), transparent 70%),
    radial-gradient(circle 70px at 72% 45%, rgba(160, 40, 40, 0.45), transparent 70%),
    radial-gradient(circle 50px at 55% 15%, rgba(255,255,255,0.25), transparent 70%),
    linear-gradient(180deg, #14060a 0%, #08050a 100%);
}
.img-afterdark {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(90, 40, 130, 0.4), transparent 70%),
    radial-gradient(circle 60px at 20% 30%, rgba(201,168,106,0.35), transparent 70%),
    radial-gradient(circle 40px at 80% 25%, rgba(120,140,255,0.25), transparent 70%),
    linear-gradient(180deg, #0a0714 0%, #060409 100%);
}
.xcard-body { padding: 8px 20px 24px; }
.xcard-num { font-size: 11px; letter-spacing: 0.15em; color: #8d8a82; }
.xcard-title {
  font-family: var(--serif); font-weight: 700;
  font-size: 19px; color: #f2efe8; margin: 4px 0 10px; line-height: 1.25;
}
.rule { height: 1px; background: linear-gradient(90deg, var(--gold-dim), transparent); margin-bottom: 12px; }
.rule-center { background: linear-gradient(90deg, transparent, var(--gold-dim), transparent); }
.xcard-body p { font-size: 12.5px; color: #cfccc4; margin-bottom: 9px; }
.matchline {
  font-family: var(--sans); font-weight: 600; letter-spacing: 0.08em;
  color: var(--gold-bright) !important; font-size: 11.5px !important;
}

/* ---------- venue ---------- */
.venue { padding: 56px 6vw; background: var(--panel); text-align: center; }
.venue-photo {
  max-width: 860px; margin: 0 auto 20px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--gold-dim); box-shadow: 0 26px 52px rgba(0,0,0,0.55);
}
.venue-photo img { width: 100%; display: block; }
.venue-copy { max-width: 720px; margin: 0 auto 22px; font-size: 13px; color: #cfccc4; }

/* ---------- section heads ---------- */
.section-head { text-align: center; margin-bottom: 24px; }
.sec-title {
  font-family: var(--sans); font-weight: 400; font-size: clamp(17px, 2vw, 25px);
  letter-spacing: 0.35em; color: #d9d5cc;
}
.sec-title em {
  font-family: var(--serif); font-weight: 700;
  letter-spacing: 0.08em; color: #f2efe8;
}

/* ---------- room ---------- */
.room {
  padding: 56px 6vw;
  background:
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(201,168,106,0.05), transparent 60%),
    linear-gradient(180deg, #0a0c12, #07080c);
  text-align: center;
}
.big-state {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(19px, 2.3vw, 30px); letter-spacing: 0.06em;
  line-height: 1.3; color: #f2efe8; margin-bottom: 22px;
}
.room-copy { max-width: 780px; margin: 0 auto 30px; text-align: center; }
.room-copy p { font-size: 13.5px; color: #cfccc4; margin-bottom: 12px; }

.pillars {
  max-width: 1000px; margin: 0 auto 22px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.pillar {
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
  background: rgba(255,255,255,0.015); padding: 22px 18px;
  transition: border-color 0.4s ease;
}
.pillar:hover { border-color: var(--gold-dim); }
.pillar h4 { font-size: 11.5px; letter-spacing: 0.26em; font-weight: 600; color: var(--gold); margin-bottom: 10px; }
.pillar .rule { margin: 0 auto 12px; width: 60%; }
.pillar p { font-size: 12.5px; color: #c5c2ba; }
.disclaimer { font-size: 10.5px; color: #77746c; max-width: 600px; margin: 0 auto; }

/* ---------- gallery ---------- */
.gallery {
  padding: 56px 6vw;
  background:
    radial-gradient(ellipse 60% 40% at 20% 15%, rgba(201,168,106,0.05), transparent 60%),
    linear-gradient(180deg, #07080c, #0a0c12);
  text-align: center;
}
.grow {
  max-width: 960px; margin: 0 auto 26px;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: clamp(20px, 3vw, 44px); align-items: center;
}
.gimg {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--gold-dim);
  box-shadow: 0 22px 44px rgba(0,0,0,0.55);
}
.gimg img { width: 100%; display: block; }
.gtext { text-align: left; }
.grow-flip .gimg { order: 2; }
.grow-flip .gtext { order: 1; text-align: right; }
.gtext h3 {
  font-family: var(--serif); font-weight: 700; font-size: 18px;
  color: var(--gold-bright); margin-bottom: 8px; letter-spacing: 0.03em;
}
.gtext p { font-size: 13px; color: #cfccc4; line-height: 1.7; }

/* ---------- analytics ---------- */
.analytics { background: var(--panel); padding: 56px 6vw; text-align: center; }
.viral-banner {
  max-width: 860px; margin: 0 auto 34px;
  border: 1px solid rgba(201,168,106,0.4); border-radius: 16px;
  padding: 30px 26px 28px;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(201,168,106,0.12), transparent 65%),
    linear-gradient(180deg, #10131c, #07080c);
}
.viral-kicker {
  font-size: 11px; letter-spacing: 0.34em; color: var(--gold);
  font-weight: 700; margin-bottom: 12px;
}
.viral-big {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(40px, 5.6vw, 72px); line-height: 1; color: var(--gold-bright);
  text-shadow: 0 0 90px rgba(201,168,106,0.35);
}
.viral-unit { font-size: 0.32em; letter-spacing: 0.06em; }
.viral-note { max-width: 620px; margin: 12px auto 0; font-size: 12.5px; color: #cfccc4; }
.count-wide { grid-column: 1 / -1; padding: 22px 18px 20px; }
.count-wide .count-big { font-size: clamp(22px, 2.2vw, 30px); }
.proj-label { font-size: 11.5px; letter-spacing: 0.38em; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.proj-sub { font-size: 11px; color: #8d8a82; margin-bottom: 24px; }

.countgrid {
  max-width: 1060px; margin: 0 auto 34px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px;
}
.count {
  border: 1px solid var(--gold-dim); border-radius: 11px; padding: 18px 12px 16px;
  background: rgba(255,255,255,0.015);
}
.count-big {
  display: block; font-family: var(--serif); font-weight: 700;
  font-size: clamp(16px, 1.6vw, 21px); color: var(--gold-bright); margin-bottom: 7px;
  white-space: nowrap;
}
.count-label { font-size: 10.5px; letter-spacing: 0.05em; color: #b9b4a9; line-height: 1.6; }

.flow { max-width: 880px; margin: 0 auto; }
.flow-label { font-size: 10.5px; letter-spacing: 0.38em; color: #d9d5cc; font-weight: 600; margin-bottom: 12px; }
.flow-track {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 7px 11px;
  font-family: var(--serif); font-size: 12.5px; color: #e9e6df;
  margin-bottom: 16px;
}
.flow-arrow { color: var(--gold); }
.flow-note { font-size: 12.5px; color: #b9b4a9; max-width: 640px; margin: 0 auto; }

/* ---------- tiers ---------- */
.tiers {
  padding: 56px 6vw;
  background:
    radial-gradient(ellipse 50% 35% at 15% 85%, rgba(201,168,106,0.05), transparent 60%),
    linear-gradient(180deg, #0a0c12, #07080c);
  text-align: center;
}
.tiers-intro { max-width: 720px; margin: 0 auto 32px; font-size: 13.5px; color: #cfccc4; }

.tier-cards {
  display: flex; justify-content: center; gap: clamp(22px, 5vw, 70px);
  flex-wrap: wrap; margin-bottom: 38px;
}
.tier-card {
  position: relative; width: 228px; height: 370px; border-radius: 14px;
  padding: 22px 20px; text-align: left; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.tier-card:hover { transform: translateY(-8px); }
.tier-gold {
  background:
    radial-gradient(ellipse 120% 60% at 20% 0%, rgba(255,240,200,0.55), transparent 55%),
    radial-gradient(ellipse 100% 50% at 90% 100%, rgba(120, 80, 20, 0.5), transparent 60%),
    linear-gradient(135deg, #e8c477 0%, #c39a4e 30%, #f0d494 48%, #b58a3f 70%, #d9b465 100%);
  box-shadow: 0 30px 60px rgba(201,168,106,0.18);
  color: #3d2b0e;
}
.tier-silver {
  background:
    radial-gradient(ellipse 120% 60% at 20% 0%, rgba(255,255,255,0.8), transparent 55%),
    radial-gradient(ellipse 100% 50% at 90% 100%, rgba(80, 85, 95, 0.5), transparent 60%),
    linear-gradient(135deg, #e8eaee 0%, #b8bcc4 30%, #f2f4f7 48%, #9aa0aa 70%, #d5d8de 100%);
  box-shadow: 0 30px 60px rgba(180,190,205,0.12);
  color: #33363c;
}
.tier-dark {
  background:
    radial-gradient(ellipse 120% 60% at 20% 0%, rgba(130, 140, 160, 0.4), transparent 55%),
    radial-gradient(ellipse 100% 50% at 90% 100%, rgba(0, 0, 0, 0.6), transparent 60%),
    linear-gradient(135deg, #3c414d 0%, #171922 30%, #4d5364 48%, #101218 70%, #2d323e 100%);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  color: #e2e6ee;
}
.tier-bid { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.bid-label { font-size: 10px; letter-spacing: 0.34em; font-weight: 700; opacity: 0.75; }
.tier-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.45) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 1.1s ease;
}
.tier-card:hover::before { transform: translateX(120%); }
.tier-name {
  font-family: var(--serif); font-weight: 800;
  font-size: 21px; line-height: 1.2; margin-bottom: 10px;
}
.tier-meta { font-size: 10px; letter-spacing: 0.13em; font-weight: 600; line-height: 1.9; opacity: 0.85; }
.tier-mono {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -46%);
  font-family: var(--serif); font-weight: 800;
  font-size: 165px; opacity: 0.16; pointer-events: none;
}
.tier-price {
  font-family: var(--serif); font-weight: 800;
  font-size: 25px; text-align: center; letter-spacing: 0.02em;
}

.presented {
  max-width: 780px; margin: 0 auto 36px;
  border: 1px solid var(--gold-dim); border-radius: 13px; padding: 26px 26px;
  background: rgba(201,168,106,0.03);
}
.presented-label { font-size: 11px; letter-spacing: 0.38em; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.presented-line {
  font-family: var(--serif); font-weight: 700; font-size: clamp(14px, 1.7vw, 20px);
  letter-spacing: 0.04em; color: #f2efe8; margin-bottom: 9px; line-height: 1.45;
}
.presented-sub { font-size: 12px; color: #b9b4a9; }

.benefit-grid {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.bcard {
  border: 1px solid var(--gold-dim); border-radius: 11px; padding: 17px 17px 19px;
  background: rgba(255,255,255,0.015); text-align: left;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.bcard:hover { border-color: var(--gold); transform: translateY(-3px); }
.bcard:nth-child(4) { grid-column: 1 / 2; }
.benefit-grid .bcard:nth-child(4) { margin-left: auto; }
.bcard-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; gap: 10px; }
.bcard-title { font-family: var(--serif); font-size: 14px; font-weight: 600; color: #e9e6df; }
.bcard-num { font-family: var(--serif); font-weight: 800; font-size: 21px; color: var(--gold); }
.bcard p { font-size: 11.5px; color: #b9b4a9; }
@media (min-width: 901px) {
  .benefit-grid { grid-template-columns: repeat(6, 1fr); }
  .bcard { grid-column: span 2; }
  .bcard:nth-child(4) { grid-column: 2 / 4; margin-left: 0; }
  .bcard:nth-child(5) { grid-column: 4 / 6; }
}

/* ---------- the ask ---------- */
.ask { background: var(--panel); padding: 56px 6vw 52px; text-align: center; }
.receives { max-width: 560px; margin: 0 auto 32px; }
.receives-label { font-size: 11px; letter-spacing: 0.38em; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.receives-list { list-style: none; }
.receives-list li {
  font-family: var(--serif); font-size: 13.5px; color: #e9e6df;
  padding: 8px 0; border-bottom: 1px solid rgba(201,168,106,0.15);
}
.receives-list li:last-child { border-bottom: none; }
.convos { margin-bottom: 38px; }
.convos-brands {
  font-family: var(--sans); font-weight: 600; font-size: clamp(14px, 1.9vw, 21px);
  letter-spacing: 0.3em; color: #f2efe8; margin-top: 4px;
}

.finale {
  position: relative; max-width: 820px; margin: 0 auto; border-radius: 16px;
  padding: 44px 24px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,106,0.14), transparent 60%),
    radial-gradient(ellipse 90% 70% at 50% 110%, rgba(120, 24, 24, 0.16), transparent 60%),
    linear-gradient(180deg, #10131c, #07080c);
  border: 1px solid rgba(201,168,106,0.2);
  overflow: hidden;
}
.finale-kicker { font-size: 11px; letter-spacing: 0.42em; color: #d9d5cc; font-weight: 600; margin-bottom: 12px; }
.finale-title {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(28px, 4.4vw, 54px); color: var(--gold-bright); line-height: 1.1;
  margin-bottom: 12px; text-shadow: 0 0 80px rgba(201,168,106,0.3);
}
.finale-sub { font-size: 12.5px; color: #cfccc4; margin-bottom: 8px; }
.finale-date { font-size: 12px; letter-spacing: 0.32em; color: var(--gold); font-weight: 600; }

/* ---------- footer ---------- */
.footer { padding: 50px 6vw 44px; text-align: center; background: var(--bg); }
.footer-logos {
  display: flex; justify-content: center; gap: clamp(34px, 8vw, 120px);
  flex-wrap: wrap; margin-bottom: 34px;
}
.flogo { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.footer-cta-label { font-size: 11px; letter-spacing: 0.42em; color: #d9d5cc; font-weight: 600; margin-bottom: 14px; }
.footer-fine { margin-top: 18px; font-size: 11px; color: #77746c; }

/* ---------- access gate ---------- */
.gate {
  position: fixed; inset: 0; z-index: 1000;
  display: flex;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background:
    radial-gradient(ellipse 60% 45% at 50% 30%, rgba(201, 168, 106, 0.1), transparent 65%),
    linear-gradient(180deg, #07080c 0%, #0d0f16 55%, #07080c 100%);
  padding: 16px;
}
.gate.gate-hidden { display: none; }
body.gate-locked { overflow: hidden; }
body.gate-locked > *:not(.gate) { visibility: hidden; }
.gate-panel {
  width: 100%; max-width: 640px; text-align: center;
  margin: auto;
  background: rgba(5, 6, 10, 0.9); border: 1px solid var(--gold-dim);
  border-radius: 16px; padding: 34px 30px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7);
}
.gate-brand {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(20px, 2.6vw, 30px); letter-spacing: 0.14em; color: var(--gold);
  margin-bottom: 8px;
}
.gate-sub { font-size: 11px; letter-spacing: 0.4em; color: #b9b4a9; font-weight: 600; margin-bottom: 26px; }
.gate-input {
  width: 100%; padding: 13px 16px; border-radius: 9px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.15);
  color: var(--ink); font-family: var(--sans); font-size: 14px;
  outline: none; transition: border-color 0.3s ease;
}
.gate-input:focus { border-color: var(--gold); }
#gate-pass-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.gate-btn { white-space: nowrap; }
.gate-error { color: #e07a6a; font-size: 12.5px; margin-top: 14px; min-height: 16px; }
.gate-nda {
  height: 230px; overflow-y: auto; text-align: left;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 16px 18px; margin-bottom: 18px;
  font-size: 11.5px; line-height: 1.75; color: #c5c2ba; white-space: pre-wrap;
}
.gate-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px;
}
.gate-grid .gate-initials { max-width: 100%; }
.gate-consent {
  display: flex; gap: 10px; align-items: flex-start; text-align: left;
  font-size: 11.5px; color: #b9b4a9; line-height: 1.6; margin-bottom: 18px;
  cursor: pointer;
}
.gate-consent input { margin-top: 3px; accent-color: var(--gold); }
@media (max-width: 560px) {
  .gate { padding: 10px; }
  .gate-panel { padding: 22px 16px; border-radius: 12px; }
  .gate-brand { font-size: 19px; letter-spacing: 0.1em; }
  .gate-sub { font-size: 9.5px; letter-spacing: 0.3em; margin-bottom: 18px; }
  .gate-nda { height: 190px; padding: 12px 12px; font-size: 11px; margin-bottom: 14px; }
  .gate-grid { grid-template-columns: 1fr; gap: 8px; margin-bottom: 12px; }
  .gate-input { padding: 12px 13px; font-size: 16px; }
  .gate-consent { font-size: 11px; margin-bottom: 14px; }
  .gate-btn { width: 100%; }
  #gate-pass-form { flex-direction: column; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .cards-grid, .pillars { grid-template-columns: 1fr; }
  .grow { grid-template-columns: 1fr; gap: 14px; }
  .grow-flip .gimg { order: 1; }
  .grow-flip .gtext { order: 2; }
  .gtext, .grow-flip .gtext { text-align: center; }
  .statgrid { grid-template-columns: repeat(2, 1fr); }
  .fighters { grid-template-columns: 1fr; }
  .vs-badge { justify-self: center; padding: 4px 0; }
  .countgrid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: 1fr; }
  .infobar { padding: 0 4vw 24px; margin-top: 20px; }
  .topbar-inner { gap: 18px; flex-direction: column; }
}
@media (max-width: 560px) {
  .countgrid { grid-template-columns: 1fr; }
  .count-big { white-space: normal; }
  .tier-card { width: 100%; max-width: 300px; }
}
