/* ============================================================================
   Mega Sponsors — module stylesheet
   Brand Sponsorship Marketplace for Events · Mega Tickets USA

   Shared across the whole module:
     /mega-sponsors/              (main landing)
     /mega-sponsors/brands/       (deep dive — brands)
     /mega-sponsors/organizers/   (deep dive — organizers)
     /mega-sponsors/dashboard/    (future dashboard preview / scaffold)

   Load order in each page:
     <link rel="stylesheet" href="/css/mtu-design-system.css">
     <link rel="stylesheet" href="/css/mtu-nav.css">
     <link rel="stylesheet" href="/mega-sponsors/sponsors.css">   <-- wins
   Mirrors the burgundy/navy token convention used by /for-organizers/.
   ========================================================================== */

:root {
  --bg-charcoal:    #08080F;
  --bg-deep:        #05050C;
  --bg-elevated:    #12121C;
  --bg-elevated-2:  #171723;
  --bg-section:     #0C0C14;
  --navy-deep:      #0F1A4A;
  --navy:           #1B2A6B;
  --navy-light:     #2A3F8F;
  --burgundy:       #D20E36;
  --burgundy-deep:  #A00B28;
  --burgundy-light: #E8344E;
  --gold:           #E9B949;
  --success:        #00E08A;

  --glass:          rgba(255,255,255,0.04);
  --glass-strong:   rgba(255,255,255,0.06);
  --line:           rgba(255,255,255,0.08);
  --line-strong:    rgba(255,255,255,0.16);

  --text:       #FFFFFF;
  --text-soft:  rgba(255,255,255,0.72);
  --text-muted: rgba(255,255,255,0.50);
  --text-faint: rgba(255,255,255,0.34);

  --radius:    18px;
  --radius-lg: 24px;
  --radius-sm: 12px;
  --shadow:    0 22px 50px rgba(0,0,0,0.45);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-charcoal);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 920px; }
section { padding: clamp(58px, 8vw, 108px) 0; position: relative; }
.sec-darker { background: var(--bg-section); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-navy {
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(27,42,107,0.30), transparent 62%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--bg-section) 78%);
  border-top: 1px solid var(--line);
}
.center { text-align: center; }
.sec-head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center; }
.sec-head.left { margin-left: 0; text-align: left; }

/* ── Typography ─────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--burgundy-light); padding: 7px 14px;
  border: 1px solid rgba(210,14,54,0.30); border-radius: 999px;
  background: rgba(210,14,54,0.08); margin-bottom: 22px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--burgundy-light); box-shadow: 0 0 10px var(--burgundy-light); }
.eyebrow--gold { color: var(--gold); border-color: rgba(233,185,73,0.30); background: rgba(233,185,73,0.08); }
.eyebrow--gold .dot { background: var(--gold); box-shadow: 0 0 10px var(--gold); }

.h-display { font-size: clamp(38px, 6vw, 68px); line-height: 1.04; letter-spacing: -2px; font-weight: 900; margin: 0 0 22px; }
.h-section { font-size: clamp(29px, 4.2vw, 46px); line-height: 1.08; letter-spacing: -1.2px; font-weight: 800; margin: 0 0 16px; }
.h-sub     { font-size: clamp(21px, 2.4vw, 28px); line-height: 1.2; letter-spacing: -0.6px; font-weight: 800; margin: 0 0 12px; }
.accent { color: var(--burgundy-light); }
.accent-gradient {
  background: linear-gradient(100deg, #fff 0%, var(--burgundy-light) 55%, var(--burgundy) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lede { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: var(--text-soft); max-width: 680px; margin: 0 0 18px; }
.sec-head .lede { margin-left: auto; margin-right: auto; }
.muted { color: var(--text-muted); }
.kicker { font-size: 13px; line-height: 1.6; color: var(--text-muted); max-width: 640px; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 54px; padding: 0 28px; border: 0; border-radius: 13px;
  font-family: inherit; font-size: 15px; font-weight: 700; letter-spacing: 0.2px;
  cursor: pointer; white-space: nowrap;
  transition: transform 150ms var(--ease), box-shadow 250ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--burgundy); color: #fff; box-shadow: 0 8px 24px rgba(210,14,54,0.32); }
.btn-primary:hover { background: var(--burgundy-deep); box-shadow: 0 12px 34px rgba(210,14,54,0.46); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,0.02); color: var(--text); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.42); background: rgba(255,255,255,0.06); transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--burgundy); box-shadow: 0 10px 30px rgba(0,0,0,0.30); }
.btn-light:hover { background: #f1f1f1; transform: translateY(-1px); }
.btn-sm { height: 44px; padding: 0 20px; font-size: 14px; border-radius: 11px; }
.btn-block { width: 100%; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(120px, 16vw, 178px) 0 clamp(64px, 9vw, 100px);
  background:
    radial-gradient(ellipse 56% 48% at 88% -6%, rgba(27,42,107,0.55), transparent 60%),
    radial-gradient(ellipse 50% 44% at 4% 92%, rgba(210,14,54,0.26), transparent 64%),
    var(--bg-charcoal);
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 38%, #000 28%, transparent 76%);
          mask-image: radial-gradient(ellipse at 50% 38%, #000 28%, transparent 76%);
}
.hero::after {
  content: ''; position: absolute; z-index: -1; width: 520px; height: 520px; right: -120px; top: -160px;
  background: radial-gradient(circle, rgba(210,14,54,0.20), transparent 70%); filter: blur(20px); pointer-events: none;
}
.hero .wrap { position: relative; max-width: 900px; }
.hero-trust { font-size: 13px; line-height: 1.6; color: var(--text-muted); margin: 22px 0 0; max-width: 640px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { color: #fff; font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.hero-stats span { color: var(--text-muted); font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-top: 5px; }

/* ── Glass cards / generic cards ────────────────────────────────────────── */
.glass {
  background: linear-gradient(180deg, var(--glass-strong), var(--glass));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.card { background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease); }
.card:hover, .glass:hover { border-color: rgba(210,14,54,0.42); transform: translateY(-3px); box-shadow: 0 20px 44px rgba(0,0,0,0.40); }
.card-ico, .ico-chip {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  background: rgba(210,14,54,0.12); color: var(--burgundy-light);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.ico-chip svg, .card-ico svg { width: 22px; height: 22px; }
.ico-chip.navy { background: rgba(27,42,107,0.40); color: #B0C0FF; }
.ico-chip.gold { background: rgba(233,185,73,0.14); color: var(--gold); }
.card h3 { font-size: 18px; line-height: 1.25; font-weight: 700; margin: 0 0 9px; letter-spacing: -0.2px; }
.card p  { font-size: 14px; line-height: 1.62; color: var(--text-soft); margin: 0; }

/* ── Grids ──────────────────────────────────────────────────────────────── */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 880px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

/* ── Numbered steps (How it works) ──────────────────────────────────────── */
.step { position: relative; padding: 30px 24px; background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color 220ms var(--ease), transform 220ms var(--ease); }
.step:hover { border-color: rgba(210,14,54,0.42); transform: translateY(-3px); }
.step-num { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--burgundy), var(--burgundy-deep)); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 900; margin-bottom: 18px; box-shadow: 0 6px 18px rgba(210,14,54,0.30); }
.step h3 { font-size: 17px; font-weight: 700; line-height: 1.3; margin: 0 0 9px; }
.step p  { font-size: 13.5px; line-height: 1.6; color: var(--text-soft); margin: 0; }

/* ── Feature / benefit list ─────────────────────────────────────────────── */
.feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-list .check { flex-shrink: 0; width: 23px; height: 23px; border-radius: 999px; background: rgba(210,14,54,0.18); color: var(--burgundy-light); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.feature-list .check svg { width: 13px; height: 13px; }
.feature-list span { color: var(--text-soft); font-size: 15px; line-height: 1.5; }
.feature-list b { color: #fff; font-weight: 600; }
.feature-list--gold .check { background: rgba(233,185,73,0.18); color: var(--gold); }

/* ── Audience split (For Brands / For Organizers) ───────────────────────── */
.aud-panel { padding: clamp(30px, 4vw, 46px); border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.aud-panel.brand { background: linear-gradient(165deg, rgba(210,14,54,0.16), rgba(18,18,28,0.6) 60%); border: 1px solid rgba(210,14,54,0.28); }
.aud-panel.org   { background: linear-gradient(165deg, rgba(27,42,107,0.32), rgba(18,18,28,0.6) 60%); border: 1px solid rgba(43,63,143,0.40); }
.aud-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; padding: 7px 13px; border-radius: 999px; margin-bottom: 18px; }
.aud-tag.brand { color: var(--burgundy-light); background: rgba(210,14,54,0.14); border: 1px solid rgba(210,14,54,0.32); }
.aud-tag.org   { color: #B0C0FF; background: rgba(27,42,107,0.40); border: 1px solid rgba(43,63,143,0.5); }

/* ── Asset cards (What brands can activate) ─────────────────────────────── */
.asset-card { background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; height: 100%; transition: border-color 220ms var(--ease), transform 220ms var(--ease); }
.asset-card:hover { border-color: rgba(210,14,54,0.42); transform: translateY(-3px); }
.asset-card h3 { display: flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 800; margin: 0 0 18px; letter-spacing: -0.2px; }
.asset-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.asset-list li { position: relative; padding-left: 22px; font-size: 14px; line-height: 1.5; color: var(--text-soft); }
.asset-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 2px; background: var(--burgundy); transform: rotate(45deg); }

/* ── Sponsorship packages (pricing tiers) ───────────────────────────────── */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 980px) { .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.pkg {
  display: flex; flex-direction: column; background: var(--bg-elevated);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; position: relative;
  transition: border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.pkg:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.pkg--featured {
  border-color: rgba(210,14,54,0.55);
  background: linear-gradient(180deg, rgba(210,14,54,0.12), var(--bg-elevated) 56%);
  box-shadow: 0 0 0 1px rgba(210,14,54,0.24), 0 28px 60px rgba(210,14,54,0.16);
}
.pkg-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--burgundy); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; white-space: nowrap; }
.pkg-name { font-size: 14px; font-weight: 800; letter-spacing: 0.4px; text-transform: uppercase; color: var(--burgundy-light); }
.pkg--featured .pkg-name { color: var(--burgundy-light); }
.pkg-price { font-size: clamp(30px, 4vw, 40px); font-weight: 900; letter-spacing: -1.4px; margin: 14px 0 4px; line-height: 1; }
.pkg-range { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px; }
.pkg-desc { font-size: 14px; color: var(--text-soft); line-height: 1.55; margin: 16px 0 22px; }
.pkg-inc { list-style: none; padding: 22px 0 0; margin: 0 0 26px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pkg-inc li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; line-height: 1.45; color: var(--text-soft); }
.pkg-inc .check { flex-shrink: 0; width: 20px; height: 20px; border-radius: 999px; background: rgba(0,224,138,0.14); color: var(--success); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.pkg-inc .check svg { width: 12px; height: 12px; }
.pkg .btn { margin-top: auto; }

/* ── Why MTU diff blocks ────────────────────────────────────────────────── */
.diff { background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; transition: border-color 220ms var(--ease), transform 220ms var(--ease); }
.diff:hover { border-color: rgba(210,14,54,0.42); transform: translateY(-3px); }
.diff h3 { font-size: 17px; font-weight: 800; margin: 0 0 10px; display: flex; align-items: center; gap: 12px; }
.diff p { font-size: 14px; color: var(--text-soft); line-height: 1.62; margin: 0; }

/* ── Example match diagram ──────────────────────────────────────────────── */
.match-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; }
@media (max-width: 880px) { .match-grid { grid-template-columns: 1fr; } }
.match-card { background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; }
.match-card.brand { border-color: rgba(210,14,54,0.30); background: linear-gradient(180deg, rgba(210,14,54,0.10), var(--bg-elevated) 60%); }
.match-card.event { border-color: rgba(43,63,143,0.45); background: linear-gradient(180deg, rgba(27,42,107,0.22), var(--bg-elevated) 60%); }
.match-label { font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.match-title { font-size: 22px; font-weight: 900; letter-spacing: -0.6px; margin: 0 0 18px; }
.match-rows { display: flex; flex-direction: column; gap: 11px; }
.match-rows div { display: flex; gap: 10px; font-size: 13.5px; line-height: 1.5; }
.match-rows dt { color: var(--text-muted); min-width: 96px; font-weight: 600; }
.match-rows dd { color: var(--text-soft); margin: 0; }
.match-mid { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.match-fit { width: 116px; height: 116px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: radial-gradient(circle, rgba(0,224,138,0.20), rgba(0,224,138,0.04) 70%); border: 2px solid rgba(0,224,138,0.5); box-shadow: 0 0 40px rgba(0,224,138,0.18); }
.match-fit b { font-size: 26px; font-weight: 900; color: var(--success); line-height: 1; }
.match-fit span { font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--success); margin-top: 4px; }
.match-arrow { color: var(--text-faint); }
@media (max-width: 880px) { .match-arrow { transform: rotate(90deg); } }

/* ── Ecosystem grid ─────────────────────────────────────────────────────── */
.eco-card { display: flex; gap: 16px; padding: 24px; background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color 220ms var(--ease), transform 220ms var(--ease); }
.eco-card:hover { border-color: rgba(233,185,73,0.40); transform: translateY(-3px); }
.eco-card .ico-chip { margin-bottom: 0; }
.eco-card h3 { font-size: 16px; font-weight: 800; margin: 0 0 6px; }
.eco-card p { font-size: 13.5px; color: var(--text-soft); line-height: 1.55; margin: 0; }

/* ── FAQ accordion ──────────────────────────────────────────────────────── */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-elevated); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color 200ms var(--ease); }
.faq-item.open { border-color: rgba(210,14,54,0.42); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 21px 24px; background: none; border: 0; color: #fff; font-family: inherit; font-size: 16px; font-weight: 700; text-align: left; cursor: pointer; }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--burgundy-light); border-radius: 2px; transition: transform 250ms var(--ease); }
.faq-icon::before { top: 11px; left: 4px; width: 16px; height: 2px; }
.faq-icon::after  { left: 11px; top: 4px; width: 2px; height: 16px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 320ms var(--ease); }
.faq-a > div { padding: 0 24px 22px; color: var(--text-soft); font-size: 15px; line-height: 1.65; }

/* ── Segmented control / tabs ───────────────────────────────────────────── */
.seg { display: inline-flex; padding: 5px; background: var(--bg-elevated); border: 1px solid var(--line); border-radius: 999px; gap: 4px; }
.seg button { border: 0; background: none; color: var(--text-muted); font-family: inherit; font-size: 14px; font-weight: 700; padding: 11px 24px; border-radius: 999px; cursor: pointer; transition: color 180ms var(--ease), background 180ms var(--ease); white-space: nowrap; }
.seg button.active { color: #fff; background: var(--burgundy); box-shadow: 0 6px 18px rgba(210,14,54,0.30); }
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeUp 420ms var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ── Forms ──────────────────────────────────────────────────────────────── */
.form-shell { display: grid; grid-template-columns: 1fr 0.85fr; gap: 40px; align-items: start; }
@media (max-width: 980px) { .form-shell { grid-template-columns: 1fr; gap: 30px; } }
.ms-form { background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 38px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.col-2 { grid-column: 1 / -1; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--text-soft); letter-spacing: 0.2px; }
.field label .req { color: var(--burgundy-light); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-charcoal); border: 1px solid var(--line-strong); border-radius: 11px;
  color: #fff; font-family: inherit; font-size: 15px; padding: 13px 15px; transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--burgundy); box-shadow: 0 0 0 3px rgba(210,14,54,0.18); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff80' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field option { background: #12121c; color: #fff; }
.hint { font-size: 12px; color: var(--text-faint); line-height: 1.5; }
.chip-group { display: flex; flex-wrap: wrap; gap: 9px; }
.chip-opt { position: relative; }
.chip-opt input { position: absolute; opacity: 0; pointer-events: none; }
.chip-opt label { display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--text-soft); cursor: pointer; transition: all 160ms var(--ease); user-select: none; }
.chip-opt input:checked + label { background: rgba(210,14,54,0.14); border-color: var(--burgundy); color: #fff; }
.chip-opt input:focus-visible + label { box-shadow: 0 0 0 3px rgba(210,14,54,0.20); }
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-foot { margin-top: 24px; }
.form-foot .legal { font-size: 12px; color: var(--text-faint); line-height: 1.55; margin: 14px 0 0; }
.form-thanks { display: none; text-align: center; background: var(--bg-elevated); border: 1px solid rgba(0,224,138,0.4); border-radius: var(--radius-lg); padding: 48px 34px; }
.form-thanks .tick { width: 64px; height: 64px; border-radius: 50%; background: rgba(0,224,138,0.14); color: var(--success); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-thanks .tick svg { width: 30px; height: 30px; }
.form-thanks h3 { font-size: 23px; font-weight: 800; margin: 0 0 10px; }
.form-thanks p { color: var(--text-soft); font-size: 15px; line-height: 1.65; margin: 0 auto; max-width: 440px; }
.form-aside .glass { padding: 30px 28px; }
.form-aside h3 { font-size: 19px; font-weight: 800; margin: 0 0 16px; letter-spacing: -0.3px; }

/* ── Pill / badge / status (shared + dashboard) ─────────────────────────── */
.pill { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: 0.4px; padding: 6px 12px; border-radius: 999px; background: var(--glass-strong); border: 1px solid var(--line); color: var(--text-soft); }
.status { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 999px; }
.status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status--draft     { color: #9aa0b4; background: rgba(154,160,180,0.12); }
.status--review    { color: var(--gold); background: rgba(233,185,73,0.12); }
.status--active    { color: #6aa9ff; background: rgba(59,130,246,0.14); }
.status--matched   { color: var(--burgundy-light); background: rgba(210,14,54,0.14); }
.status--approved  { color: var(--success); background: rgba(0,224,138,0.14); }
.status--completed { color: var(--success); background: rgba(0,224,138,0.10); }
.status--rejected  { color: #ff7a86; background: rgba(255,71,87,0.12); }

/* ── CTA band ───────────────────────────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 58%, var(--navy) 100%); border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 50px 50px; pointer-events: none; -webkit-mask-image: radial-gradient(ellipse, #000 40%, transparent 82%); mask-image: radial-gradient(ellipse, #000 40%, transparent 82%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(30px, 4.6vw, 48px); font-weight: 900; line-height: 1.05; letter-spacing: -1.2px; margin: 0 0 14px; }
.cta-band p { color: rgba(255,255,255,0.88); font-size: 17px; margin: 0 auto 32px; max-width: 600px; line-height: 1.6; }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.06); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: #fff; }
.cta-fine { font-size: 13px; color: rgba(255,255,255,0.78); margin: 20px auto 0; max-width: 560px; }

/* ── Quote / institutional copy ─────────────────────────────────────────── */
.quote-band { border-radius: var(--radius-lg); border: 1px solid var(--line); background: linear-gradient(160deg, rgba(27,42,107,0.30), var(--bg-elevated) 70%); padding: clamp(36px, 5vw, 60px); position: relative; overflow: hidden; }
.quote-band::before { content: '\201C'; position: absolute; top: -28px; left: 24px; font-size: 180px; color: rgba(210,14,54,0.16); font-family: Georgia, serif; line-height: 1; }
.quote-band p { position: relative; font-size: clamp(18px, 2.2vw, 25px); line-height: 1.55; font-weight: 600; color: #fff; margin: 0; max-width: 860px; }
.quote-band p + p { font-size: clamp(15px, 1.6vw, 18px); font-weight: 400; color: var(--text-soft); margin-top: 18px; }

/* ── Footer (mirrors site convention) ───────────────────────────────────── */
.footer { border-top: 1px solid var(--line); background: var(--bg-section); padding: 52px 0 32px; color: var(--text-muted); font-size: 13px; }
.footer .wrap { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 720px) { .footer .wrap { grid-template-columns: 1fr 1fr; } }
.footer h5 { color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin: 0 0 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a:hover { color: #fff; }
.footer-meta { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo img { height: 28px; width: auto; }

/* ── Reveal-on-scroll ───────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 720ms var(--ease), transform 720ms var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .tab-pane.active { animation: none; }
}

/* ── Utilities ──────────────────────────────────────────────────────────── */
.mt-0 { margin-top: 0; } .mt-12 { margin-top: 12px; } .mt-20 { margin-top: 20px; } .mt-28 { margin-top: 28px; } .mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.maxw-680 { max-width: 680px; } .maxw-760 { max-width: 760px; }
.anchor { position: relative; top: -72px; visibility: hidden; }

/* ════════════════════════════════════════════════════════════════════════
   v2 — Premium visual / marketplace experience
   Additive: every selector below is new, so the brands/organizers/dashboard
   pages that share this file are unaffected.
   ════════════════════════════════════════════════════════════════════════ */

/* ── Hero: event atmosphere backdrop ────────────────────────────────────── */
.hero--event {
  background:
    radial-gradient(ellipse 42% 55% at 16% -6%, rgba(210,14,54,0.42), transparent 58%),
    radial-gradient(ellipse 46% 60% at 84% -6%, rgba(27,42,107,0.50), transparent 62%),
    radial-gradient(circle at 50% 128%, rgba(233,185,73,0.10), transparent 52%),
    linear-gradient(90deg, rgba(5,5,12,0.97) 0%, rgba(5,5,12,0.80) 46%, rgba(5,5,12,0.50) 100%),
    linear-gradient(180deg, rgba(5,5,12,0.55) 0%, transparent 36%, rgba(5,5,12,0.94) 100%),
    url('/images/concert-hero.jpg') 50% 16% / cover no-repeat,
    #05050c;
}
@media (max-width: 1000px) {
  .hero--event {
    background:
      radial-gradient(ellipse 70% 42% at 50% -6%, rgba(210,14,54,0.32), transparent 60%),
      linear-gradient(180deg, rgba(5,5,12,0.88) 0%, rgba(6,6,14,0.80) 42%, rgba(6,6,14,0.96) 100%),
      url('/images/concert-hero.jpg') 50% 16% / cover no-repeat,
      #05050c;
  }
}
.hero-fx { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.hero-beam { position: absolute; top: -12%; width: 46%; height: 130%; mix-blend-mode: screen; opacity: 0.5; filter: blur(6px); transform-origin: top center; animation: beamSway 9s var(--ease) infinite alternate; }
.hero-beam.l { left: 6%;  background: linear-gradient(180deg, rgba(210,14,54,0.42), transparent 62%); transform: rotate(14deg); }
.hero-beam.r { right: 6%; background: linear-gradient(180deg, rgba(120,150,255,0.40), transparent 62%); transform: rotate(-14deg); animation-delay: -3s; }
@keyframes beamSway { from { transform: rotate(11deg); } to { transform: rotate(17deg); } }
.hero-beam.r { animation-name: beamSwayR; }
@keyframes beamSwayR { from { transform: rotate(-17deg); } to { transform: rotate(-11deg); } }
.hero-bokeh { position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.5) 0, transparent 60%),
    radial-gradient(circle, rgba(233,185,73,0.5) 0, transparent 60%),
    radial-gradient(circle, rgba(232,52,78,0.55) 0, transparent 60%),
    radial-gradient(circle, rgba(176,192,255,0.5) 0, transparent 60%),
    radial-gradient(circle, rgba(255,255,255,0.35) 0, transparent 60%),
    radial-gradient(circle, rgba(233,185,73,0.4) 0, transparent 60%);
  background-repeat: no-repeat;
  background-size: 7px 7px, 5px 5px, 9px 9px, 6px 6px, 4px 4px, 8px 8px;
  background-position: 12% 30%, 28% 64%, 47% 22%, 66% 54%, 78% 36%, 90% 66%;
  filter: blur(0.4px); opacity: 0.85; animation: bokehFloat 7s ease-in-out infinite alternate;
}
@keyframes bokehFloat { from { transform: translateY(0); opacity: 0.6; } to { transform: translateY(-12px); opacity: 0.95; } }
.hero-crowd { position: absolute; left: 0; right: 0; bottom: -2px; width: 100%; height: clamp(120px, 18vw, 220px); color: #02020a; opacity: 0.92; }
.hero-crowd svg { width: 100%; height: 100%; display: block; }
.hero--event::before { content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 26%, transparent 72%);
          mask-image: radial-gradient(ellipse at 50% 30%, #000 26%, transparent 72%); }

.hero--split .wrap { max-width: 1240px; }
.hero-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
@media (max-width: 1000px) { .hero-split { grid-template-columns: 1fr; gap: 44px; } }
.hero-micro { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; font-size: 13px; color: var(--text-soft); }
.hero-micro svg { width: 16px; height: 16px; color: var(--burgundy-light); flex-shrink: 0; }
.hero-trustbar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-trustbar span { font-size: 11.5px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-soft); }
.hero-trustbar i { width: 5px; height: 5px; border-radius: 50%; background: var(--burgundy-light); box-shadow: 0 0 8px var(--burgundy-light); flex-shrink: 0; }
@media (max-width: 600px) { .hero-trustbar i { display: none; } .hero-trustbar { gap: 7px 12px; } }

/* Hero composition — 3 stacked flow cards + connector */
.hero-art { position: relative; padding: 8px 0; }
.flow-card {
  position: relative; background: linear-gradient(165deg, rgba(23,23,35,0.92), rgba(12,12,20,0.82));
  border: 1px solid var(--line-strong); border-radius: 18px; padding: 18px 20px;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55); z-index: 2;
}
.flow-card + .flow-card { margin-top: 26px; }
.flow-card.is-match { border-color: rgba(210,14,54,0.55); background: linear-gradient(165deg, rgba(40,12,22,0.94), rgba(14,12,18,0.86)); box-shadow: 0 0 0 1px rgba(210,14,54,0.30), 0 26px 64px rgba(210,14,54,0.20); }
.flow-card .fc-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.fc-label { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.fc-label .fc-ico { width: 26px; height: 26px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); color: var(--burgundy-light); }
.fc-label .fc-ico svg { width: 15px; height: 15px; }
.is-match .fc-label .fc-ico { background: rgba(210,14,54,0.18); }
.fc-title { font-size: 17px; font-weight: 800; letter-spacing: -0.3px; margin: 0 0 10px; }
.fc-rows { display: flex; flex-direction: column; gap: 7px; }
.fc-rows .r { display: flex; justify-content: space-between; gap: 12px; font-size: 12.5px; }
.fc-rows .r span { color: var(--text-muted); }
.fc-rows .r b { color: #fff; font-weight: 700; }
.fc-meter { height: 7px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; margin-top: 4px; }
.fc-meter > i { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--burgundy), var(--burgundy-light)); transition: width 1100ms var(--ease); }
.hero-art.in .fc-meter > i { width: var(--w, 92%); }
.fc-status { display: inline-flex; align-items: center; gap: 7px; margin-top: 13px; font-size: 11.5px; font-weight: 800; letter-spacing: 0.3px; padding: 6px 11px; border-radius: 999px; background: rgba(255,255,255,0.05); color: var(--text-soft); }
.fc-status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.fc-status.go::before { background: var(--success); box-shadow: 0 0 8px var(--success); }
.fc-status.match::before { background: var(--burgundy-light); box-shadow: 0 0 8px var(--burgundy-light); }
.flow-card.f1 { animation: floaty 6s ease-in-out infinite; }
.flow-card.f2 { animation: floaty 6s ease-in-out infinite; animation-delay: -2s; }
.flow-card.f3 { animation: floaty 6s ease-in-out infinite; animation-delay: -4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
/* connector node between cards */
.flow-link { position: relative; height: 26px; margin: -4px 0; display: flex; justify-content: center; z-index: 1; }
.flow-link::before { content: ''; position: absolute; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--burgundy), transparent); }
.flow-link span { position: absolute; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; background: var(--bg-charcoal); border: 1px solid var(--burgundy); color: var(--burgundy-light); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 18px rgba(210,14,54,0.4); }
.flow-link span svg { width: 14px; height: 14px; animation: linkPulse 1.8s ease-in-out infinite; }
@keyframes linkPulse { 0%,100% { transform: translateY(0); opacity: 0.7; } 50% { transform: translateY(3px); opacity: 1; } }

/* ── Positioning band ───────────────────────────────────────────────────── */
.band { position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(125deg, var(--burgundy-deep) 0%, #2a0a16 42%, var(--navy-deep) 100%);
  border: 1px solid rgba(255,255,255,0.10); padding: clamp(36px, 5vw, 56px); text-align: center; }
.band::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 18% 20%, rgba(255,255,255,0.08), transparent 42%), radial-gradient(circle at 82% 80%, rgba(210,14,54,0.24), transparent 48%); }
.band > * { position: relative; }
.band h2 { font-size: clamp(24px, 3.4vw, 40px); font-weight: 900; letter-spacing: -1px; line-height: 1.12; margin: 0; }
.band h2 .accent { color: #fff; -webkit-text-fill-color: currentColor; }
.band-trio { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 22px; }
.band-trio .pill { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.20); color: #fff; font-weight: 700; }

/* ── The Sponsorship Flow (timeline) ────────────────────────────────────── */
.flow-rail { position: relative; margin-top: 12px; }
.flow-rail::before { content: ''; position: absolute; left: 0; right: 0; top: 33px; height: 3px; background: var(--line-strong); border-radius: 999px; }
.flow-rail .flow-progress { position: absolute; left: 0; top: 33px; height: 3px; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--burgundy), var(--burgundy-light)); transition: width 1400ms var(--ease); box-shadow: 0 0 14px rgba(210,14,54,0.6); }
.flow-rail.in .flow-progress { width: 100%; }
.flow-steps5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.flow-s { text-align: center; padding: 0 6px; }
.flow-s .node { width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%; background: var(--bg-elevated); border: 3px solid var(--line-strong); display: flex; align-items: center; justify-content: center; color: var(--text-muted); position: relative; z-index: 1; transition: border-color 400ms var(--ease), color 400ms var(--ease), transform 400ms var(--ease), box-shadow 400ms var(--ease); }
.flow-s .node svg { width: 26px; height: 26px; }
.flow-s .node b { position: absolute; top: -8px; right: -8px; width: 24px; height: 24px; border-radius: 50%; background: var(--burgundy); color: #fff; font-size: 12px; font-weight: 900; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(210,14,54,0.4); }
.flow-rail.in .flow-s.on .node { border-color: var(--burgundy); color: var(--burgundy-light); transform: translateY(-2px); box-shadow: 0 0 0 6px rgba(210,14,54,0.10), 0 14px 30px rgba(210,14,54,0.18); }
.flow-s h3 { font-size: 15px; font-weight: 800; margin: 0 0 7px; letter-spacing: -0.2px; }
.flow-s p { font-size: 13px; line-height: 1.55; color: var(--text-soft); margin: 0; }
@media (max-width: 900px) {
  .flow-rail::before, .flow-rail .flow-progress { left: 33px; top: 0; bottom: 0; right: auto; width: 3px; height: auto; }
  .flow-rail.in .flow-progress { width: 3px; height: 100%; }
  .flow-steps5 { grid-template-columns: 1fr; gap: 26px; }
  .flow-s { text-align: left; display: grid; grid-template-columns: 68px 1fr; gap: 18px; align-items: start; }
  .flow-s .node { margin: 0; }
}

/* ── Live Sponsorship Opportunities (marketplace cards) ─────────────────── */
.opp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 820px) { .opp-grid { grid-template-columns: 1fr; } }
.opp-card { position: relative; background: linear-gradient(180deg, var(--bg-elevated-2), var(--bg-elevated)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; overflow: hidden; transition: border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease); }
.opp-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--burgundy), var(--burgundy-light), transparent); opacity: 0.85; }
.opp-card:hover { border-color: rgba(210,14,54,0.45); transform: translateY(-4px); box-shadow: 0 26px 56px rgba(0,0,0,0.45); }
.opp-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.opp-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--burgundy-light); background: rgba(210,14,54,0.12); border: 1px solid rgba(210,14,54,0.30); border-radius: 999px; padding: 6px 11px; }
.opp-badge svg { width: 13px; height: 13px; }
.opp-card h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.4px; margin: 0 0 4px; }
.opp-budget { display: flex; align-items: baseline; gap: 8px; margin: 12px 0 16px; }
.opp-budget b { font-size: clamp(26px, 3.4vw, 34px); font-weight: 900; letter-spacing: -1.2px; color: #fff; line-height: 1; }
.opp-budget small { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-muted); }
.opp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.opp-stat { display: flex; gap: 10px; align-items: flex-start; }
.opp-stat .si { width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0; background: rgba(255,255,255,0.05); color: var(--burgundy-light); display: flex; align-items: center; justify-content: center; }
.opp-stat .si svg { width: 15px; height: 15px; }
.opp-stat span { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: var(--text-muted); }
.opp-stat b { display: block; font-size: 13.5px; font-weight: 700; color: #fff; margin-top: 2px; line-height: 1.3; }
.opp-assets { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.opp-assets .pill { font-size: 11px; padding: 5px 10px; background: var(--glass-strong); }
.opp-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.opp-foot .btn { flex: 1; }
.opp-match { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; }
.opp-match b { font-size: 17px; font-weight: 900; color: var(--success); line-height: 1; }
.opp-match span { font-size: 9.5px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase; color: var(--text-muted); }

/* ── Old vs Mega comparison ─────────────────────────────────────────────── */
.vs { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: stretch; }
@media (max-width: 880px) { .vs { grid-template-columns: 1fr; gap: 16px; } }
.vs-col { border-radius: var(--radius-lg); padding: 32px 28px; }
.vs-col h3 { font-size: 18px; font-weight: 800; margin: 0 0 4px; }
.vs-col .vs-sub { font-size: 12px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; margin: 0 0 20px; }
.vs-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.vs-col li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.4; }
.vs-col li .vi { flex-shrink: 0; width: 22px; height: 22px; border-radius: 999px; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.vs-col li .vi svg { width: 12px; height: 12px; }
.vs-old { background: linear-gradient(180deg, #14141a, #101015); border: 1px solid var(--line); }
.vs-old h3, .vs-old li { color: var(--text-muted); }
.vs-old .vs-sub { color: rgba(255,255,255,0.32); }
.vs-old li .vi { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); }
.vs-new { background: linear-gradient(180deg, rgba(210,14,54,0.14), var(--bg-elevated) 64%); border: 1px solid rgba(210,14,54,0.50); box-shadow: 0 0 0 1px rgba(210,14,54,0.20), 0 26px 60px rgba(210,14,54,0.16); }
.vs-new h3 { color: #fff; }
.vs-new .vs-sub { color: var(--burgundy-light); }
.vs-new li { color: var(--text-soft); }
.vs-new li b { color: #fff; font-weight: 700; }
.vs-new li .vi { background: rgba(0,224,138,0.16); color: var(--success); }
.vs-mid { display: flex; align-items: center; justify-content: center; }
.vs-mid span { width: 52px; height: 52px; border-radius: 50%; background: var(--bg-charcoal); border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; color: var(--text-muted); }
@media (max-width: 880px) { .vs-mid span { transform: rotate(90deg); } }

/* ── Mockups (phone / dashboard / report) ───────────────────────────────── */
.mock-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 26px; align-items: stretch; }
@media (max-width: 940px) { .mock-grid { grid-template-columns: 1fr; } }
.mock-stack { display: flex; flex-direction: column; gap: 26px; }

/* phone */
.phone { width: 264px; max-width: 100%; margin: 0 auto; aspect-ratio: 264 / 540; background: #0a0a12; border: 9px solid #16161f; border-radius: 40px; box-shadow: 0 30px 70px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.05); position: relative; overflow: hidden; }
.phone::before { content: ''; position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 92px; height: 22px; background: #16161f; border-radius: 0 0 14px 14px; z-index: 5; }
.ph-screen { position: absolute; inset: 0; padding: 40px 14px 16px; display: flex; flex-direction: column; gap: 11px; background: radial-gradient(circle at 50% 0%, rgba(210,14,54,0.16), transparent 55%), #0a0a12; }
.ph-poster { border-radius: 14px; height: 128px; background: linear-gradient(135deg, var(--navy) 0%, var(--burgundy-deep) 100%); position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 12px; }
.ph-poster::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 40%), radial-gradient(circle at 80% 70%, rgba(233,185,73,0.30), transparent 46%); }
.ph-poster b { position: relative; color: #fff; font-size: 15px; font-weight: 900; letter-spacing: -0.3px; line-height: 1.1; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.ph-spon { display: flex; align-items: center; gap: 9px; background: rgba(233,185,73,0.10); border: 1px solid rgba(233,185,73,0.34); border-radius: 11px; padding: 9px 11px; }
.ph-spon .lg { width: 28px; height: 28px; border-radius: 7px; background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy-deep)); flex-shrink: 0; }
.ph-spon span { font-size: 9px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; color: var(--gold); display: block; }
.ph-spon b { font-size: 12px; color: #fff; font-weight: 800; }
.ph-qr { margin-top: auto; align-self: center; width: 96px; height: 96px; border-radius: 12px; background: #fff; padding: 9px; }
.ph-qr svg { width: 100%; height: 100%; display: block; }
.ph-label { text-align: center; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.ph-push { position: absolute; top: 40px; left: 12px; right: 12px; z-index: 6; display: flex; gap: 10px; align-items: center; background: rgba(24,24,34,0.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid var(--line-strong); border-radius: 14px; padding: 10px 12px; box-shadow: 0 14px 34px rgba(0,0,0,0.5); transform: translateY(-130%); opacity: 0; animation: pushIn 5.5s ease-in-out infinite; }
.ph-push .pi { width: 30px; height: 30px; border-radius: 8px; background: var(--burgundy); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ph-push .pi svg { width: 16px; height: 16px; }
.ph-push small { font-size: 9px; font-weight: 800; letter-spacing: 0.4px; text-transform: uppercase; color: var(--text-muted); display: block; }
.ph-push b { font-size: 11.5px; color: #fff; font-weight: 700; line-height: 1.25; display: block; }
@keyframes pushIn { 0% { transform: translateY(-130%); opacity: 0; } 8%,40% { transform: translateY(0); opacity: 1; } 50%,100% { transform: translateY(-130%); opacity: 0; } }

/* dashboard + report mock cards */
.mock { background: linear-gradient(180deg, var(--bg-elevated-2), var(--bg-elevated)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; }
.mock-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.mock-head h4 { font-size: 14px; font-weight: 800; margin: 0; display: flex; align-items: center; gap: 9px; }
.mock-head h4 svg { width: 17px; height: 17px; color: var(--burgundy-light); }
.mock-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.mock-row:last-child { border-bottom: 0; }
.mock-row .av { width: 32px; height: 32px; border-radius: 9px; background: linear-gradient(135deg, var(--navy), var(--burgundy-deep)); flex-shrink: 0; }
.mock-row .mr-main b { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.mock-row .mr-main small { font-size: 11.5px; color: var(--text-muted); }
.mock-row .mr-end { margin-left: auto; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mock-kpi { background: var(--bg-charcoal); border: 1px solid var(--line); border-radius: 12px; padding: 14px 12px; text-align: center; }
.mock-kpi b { display: block; font-size: 22px; font-weight: 900; letter-spacing: -1px; }
.mock-kpi span { font-size: 10px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: var(--text-muted); }
.mock-bars { display: flex; align-items: flex-end; gap: 8px; height: 78px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.mock-bars i { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--burgundy-light), var(--burgundy-deep)); min-height: 8px; opacity: 0.45; transition: height 900ms var(--ease), opacity 900ms var(--ease); }
.mock.in .mock-bars i { opacity: 1; }

/* ── Before / During / After ────────────────────────────────────────────── */
.bda-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .bda-grid { grid-template-columns: 1fr; } }
.bda { position: relative; background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; overflow: hidden; transition: border-color 500ms var(--ease), box-shadow 500ms var(--ease), transform 240ms var(--ease); }
.bda::before { content: ''; position: absolute; top: -40%; right: -30%; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(210,14,54,0.22), transparent 70%); opacity: 0; transition: opacity 700ms var(--ease); }
.bda.lit { border-color: rgba(210,14,54,0.40); box-shadow: 0 22px 50px rgba(210,14,54,0.10); }
.bda.lit::before { opacity: 1; }
.bda:hover { transform: translateY(-3px); }
.bda-phase { display: inline-flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--burgundy-light); margin-bottom: 6px; position: relative; }
.bda-step { font-size: 12px; font-weight: 800; color: var(--text-faint); position: relative; }
.bda h3 { font-size: 21px; font-weight: 900; letter-spacing: -0.5px; margin: 4px 0 18px; position: relative; }
.bda ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; position: relative; }
.bda li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; line-height: 1.45; color: var(--text-soft); }
.bda li .vi { flex-shrink: 0; width: 20px; height: 20px; border-radius: 999px; background: rgba(210,14,54,0.16); color: var(--burgundy-light); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.bda li .vi svg { width: 11px; height: 11px; }

/* ── Enhanced match dashboard (score ring + criteria) ───────────────────── */
.match-ring { width: 150px; height: 150px; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative;
  background: conic-gradient(var(--success) calc(var(--p,0) * 1%), rgba(255,255,255,0.08) 0);
  transition: background 1400ms var(--ease); }
.match-ring::before { content: ''; position: absolute; inset: 10px; border-radius: 50%; background: var(--bg-elevated); }
.match-ring .rc { position: relative; text-align: center; }
.match-ring .rc b { font-size: 34px; font-weight: 900; letter-spacing: -1.5px; color: var(--success); line-height: 1; }
.match-ring .rc span { display: block; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-top: 3px; }
.match-crit { display: flex; flex-direction: column; gap: 13px; width: 100%; max-width: 230px; margin: 22px auto 0; }
.crit { }
.crit .cl { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 5px; }
.crit .cl span { color: var(--text-muted); font-weight: 600; }
.crit .cl b { color: #fff; font-weight: 700; }
.crit .cbar { height: 6px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.crit .cbar > i { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--burgundy), var(--burgundy-light)); transition: width 1200ms var(--ease); }
.match-mid.in .crit .cbar > i { width: var(--w, 90%); }

/* ── Who this is for ────────────────────────────────────────────────────── */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 880px) { .who-grid { grid-template-columns: 1fr; } }
.who { border-radius: var(--radius-lg); padding: clamp(28px, 3.4vw, 40px); }
.who.brand { background: linear-gradient(165deg, rgba(210,14,54,0.14), var(--bg-elevated) 60%); border: 1px solid rgba(210,14,54,0.30); }
.who.org { background: linear-gradient(165deg, rgba(27,42,107,0.30), var(--bg-elevated) 60%); border: 1px solid rgba(43,63,143,0.42); }
.who h3 { font-size: 20px; font-weight: 800; margin: 0 0 6px; }
.who .who-sub { font-size: 12.5px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; color: var(--text-muted); margin: 0 0 20px; }
.who-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.who-chip { display: inline-flex; align-items: center; gap: 7px; padding: 9px 13px; border-radius: 11px; font-size: 13px; font-weight: 600; color: var(--text-soft); background: var(--glass-strong); border: 1px solid var(--line); transition: border-color 160ms var(--ease), transform 160ms var(--ease); }
.who-chip:hover { transform: translateY(-2px); }
.who.brand .who-chip:hover { border-color: rgba(210,14,54,0.42); }
.who.org .who-chip:hover { border-color: rgba(43,63,143,0.6); }
.who-chip .wd { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.who.brand .who-chip .wd { background: var(--burgundy-light); }
.who.org .who-chip .wd { background: #7e97ff; }

/* ── Mini feature cards (For Brands / For Organizers) ───────────────────── */
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
.mini { display: flex; gap: 12px; align-items: center; padding: 15px 16px; background: var(--glass-strong); border: 1px solid var(--line); border-radius: 14px; transition: border-color 180ms var(--ease), transform 180ms var(--ease); }
.mini:hover { transform: translateY(-2px); border-color: rgba(210,14,54,0.4); }
.mini .mi { width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0; background: rgba(210,14,54,0.12); color: var(--burgundy-light); display: flex; align-items: center; justify-content: center; }
.mini .mi svg { width: 17px; height: 17px; }
.mini b { font-size: 13.5px; font-weight: 700; color: #fff; line-height: 1.25; }

/* ── Sticky mobile CTA bar ──────────────────────────────────────────────── */
.mcta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; display: none; gap: 10px; padding: 10px; background: rgba(12,12,20,0.92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border: 1px solid var(--line-strong); border-radius: 16px; box-shadow: 0 18px 40px rgba(0,0,0,0.55); transform: translateY(140%); transition: transform 380ms var(--ease); }
.mcta.show { transform: translateY(0); }
.mcta .btn { flex: 1; height: 50px; font-size: 14.5px; }
@media (max-width: 768px) { .mcta { display: flex; } }

/* ── Multi-step form wizard ─────────────────────────────────────────────── */
.ms-form.wizard .wz-step { display: none; }
.ms-form.wizard .wz-step.active { display: block; animation: fadeUp 360ms var(--ease); }
.wz-head { margin-bottom: 26px; }
.wz-bar { height: 6px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; margin-bottom: 16px; }
.wz-bar > i { display: block; height: 100%; width: 20%; border-radius: 999px; background: linear-gradient(90deg, var(--burgundy), var(--burgundy-light)); transition: width 360ms var(--ease); }
.wz-dots { display: flex; gap: 6px; flex-wrap: wrap; }
.wz-dot { flex: 1; min-width: 0; display: flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 700; color: var(--text-faint); transition: color 240ms var(--ease); }
.wz-dot .n { width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: var(--bg-charcoal); border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; transition: all 240ms var(--ease); }
.wz-dot .n svg { width: 12px; height: 12px; }
.wz-dot.done { color: var(--text-soft); }
.wz-dot.done .n { background: rgba(0,224,138,0.16); border-color: var(--success); color: var(--success); }
.wz-dot.current { color: #fff; }
.wz-dot.current .n { background: var(--burgundy); border-color: var(--burgundy); color: #fff; box-shadow: 0 0 0 4px rgba(210,14,54,0.16); }
.wz-dot .lab { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 620px) { .wz-dot .lab { display: none; } .wz-dot { flex: 0 0 auto; } }
.wz-step h4 { font-size: 16px; font-weight: 800; margin: 0 0 4px; letter-spacing: -0.2px; }
.wz-step .wz-hint { font-size: 13px; color: var(--text-muted); margin: 0 0 18px; }
.wz-nav { display: flex; gap: 12px; margin-top: 22px; }
.wz-nav .btn { flex: 1; }
.wz-nav .wz-back { flex: 0 0 auto; }
.wz-step--review .rev-box { background: var(--bg-charcoal); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; }
.wz-step--review .rev-box .rl { display: flex; justify-content: space-between; gap: 14px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.wz-step--review .rev-box .rl:last-child { border-bottom: 0; }
.wz-step--review .rev-box .rl span { color: var(--text-muted); }
.wz-step--review .rev-box .rl b { color: #fff; font-weight: 700; text-align: right; }

@media (prefers-reduced-motion: reduce) {
  .hero-beam, .hero-bokeh, .flow-card.f1, .flow-card.f2, .flow-card.f3, .flow-link span svg, .ph-push { animation: none !important; }
  .flow-card.f1, .flow-card.f2, .flow-card.f3 { transform: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   Event search — "Find Events to Sponsor by Country & City"
   Live query against /api/events (country / city / category / keyword).
   ════════════════════════════════════════════════════════════════════════ */
.search-panel { background: linear-gradient(180deg, var(--bg-elevated-2), var(--bg-elevated)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px, 2.6vw, 28px); box-shadow: var(--shadow); }
.search-row { display: grid; grid-template-columns: 1.1fr 1.1fr 1fr 1.4fr auto; gap: 12px; align-items: end; }
@media (max-width: 980px) { .search-row { grid-template-columns: 1fr 1fr; } .search-row .sf-go { grid-column: 1 / -1; } }
@media (max-width: 560px) { .search-row { grid-template-columns: 1fr; } }
.sf { display: flex; flex-direction: column; gap: 7px; }
.sf label { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-muted); display: flex; align-items: center; gap: 7px; }
.sf label svg { width: 14px; height: 14px; color: var(--burgundy-light); }
.sf select, .sf input { width: 100%; height: 50px; background: var(--bg-charcoal); border: 1px solid var(--line-strong); border-radius: 12px; color: #fff; font-family: inherit; font-size: 15px; padding: 0 14px; transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease); }
.sf input::placeholder { color: var(--text-faint); }
.sf select:focus, .sf input:focus { outline: none; border-color: var(--burgundy); box-shadow: 0 0 0 3px rgba(210,14,54,0.18); }
.sf select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff80' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.sf option { background: #12121c; color: #fff; }
.sf-go .btn { width: 100%; height: 50px; white-space: nowrap; }
.search-chips { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 16px; }
.search-chips .lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-faint); margin-right: 2px; }
.qchip { font-size: 13px; font-weight: 600; color: var(--text-soft); background: var(--glass-strong); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; cursor: pointer; transition: all 150ms var(--ease); font-family: inherit; }
.qchip:hover { border-color: rgba(210,14,54,0.4); color: #fff; transform: translateY(-1px); }
.qchip.active { background: var(--burgundy); border-color: var(--burgundy); color: #fff; }

.search-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin: 30px 0 18px; }
.search-meta .sm-count { font-size: 14px; color: var(--text-soft); }
.search-meta .sm-count b { color: #fff; font-weight: 800; }
.search-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 920px) { .search-results { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .search-results { grid-template-columns: 1fr; } }

.ev-card { display: flex; flex-direction: column; background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease); }
.ev-card:hover { border-color: rgba(210,14,54,0.45); transform: translateY(-4px); box-shadow: 0 24px 50px rgba(0,0,0,0.45); }
.ev-media { position: relative; aspect-ratio: 16 / 10; background-size: cover; background-position: center; background-color: #14141b; }
.ev-media.placeholder { background: linear-gradient(135deg, var(--navy-deep), var(--burgundy-deep)); display: flex; align-items: center; justify-content: center; }
.ev-media.placeholder svg { width: 42px; height: 42px; color: rgba(255,255,255,0.55); }
.ev-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,8,15,0.82)); }
.ev-media .ev-cat { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 10.5px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: rgba(8,8,15,0.7); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid var(--line-strong); color: #fff; }
.ev-media .ev-date { position: absolute; bottom: 12px; left: 12px; z-index: 2; font-size: 12px; font-weight: 700; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.ev-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ev-body h3 { font-size: 16px; font-weight: 800; letter-spacing: -0.2px; margin: 0; line-height: 1.25; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ev-loc { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-muted); }
.ev-loc svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--burgundy-light); }
.ev-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 14px; }
.ev-price { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.ev-price b { color: #fff; font-weight: 800; font-size: 14px; }
.ev-foot .btn { white-space: nowrap; }

/* skeleton / empty / error states */
.ev-skel { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-elevated); }
.ev-skel .sk-media { aspect-ratio: 16 / 10; }
.ev-skel .sk-line { height: 12px; border-radius: 6px; margin: 14px 18px 0; }
.ev-skel .sk-line.s { width: 60%; }
.sk-shimmer, .ev-skel .sk-media, .ev-skel .sk-line { background: linear-gradient(100deg, rgba(255,255,255,0.04) 30%, rgba(255,255,255,0.10) 50%, rgba(255,255,255,0.04) 70%); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.search-empty { grid-column: 1 / -1; text-align: center; padding: 48px 24px; background: var(--bg-elevated); border: 1px dashed var(--line-strong); border-radius: var(--radius-lg); }
.search-empty .ei { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: rgba(210,14,54,0.12); color: var(--burgundy-light); display: flex; align-items: center; justify-content: center; }
.search-empty .ei svg { width: 26px; height: 26px; }
.search-empty h3 { font-size: 18px; font-weight: 800; margin: 0 0 8px; }
.search-empty p { font-size: 14px; color: var(--text-soft); margin: 0 auto 20px; max-width: 420px; line-height: 1.6; }
@media (prefers-reduced-motion: reduce) { .sk-shimmer, .ev-skel .sk-media, .ev-skel .sk-line { animation: none; } }

/* ── Brand logo marks (fictional example brands) ────────────────────────── */
.opp-lead { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo, .opp-logo { width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.22); position: relative; overflow: hidden; }
.brand-logo::after, .opp-logo::after { content: ''; position: absolute; top: -40%; left: -20%; width: 90%; height: 120%; background: linear-gradient(120deg, rgba(255,255,255,0.30), transparent 60%); pointer-events: none; }
.brand-logo svg, .opp-logo svg { width: 23px; height: 23px; position: relative; z-index: 1; }
.brand-logo.sm { width: 34px; height: 34px; border-radius: 10px; }
.brand-logo.sm svg { width: 18px; height: 18px; }
.brand-energy    { background: linear-gradient(135deg, #FF6A3D, #D20E36); }
.brand-transport { background: linear-gradient(135deg, #3A56C9, #0F1A4A); }
.brand-food      { background: linear-gradient(135deg, #F0B24A, #C2541F); }
.brand-lifestyle { background: linear-gradient(135deg, #C24AE8, #6A2AD2); }
.brand-fashion   { background: linear-gradient(135deg, #E84A7F, #9C1F4E); }
.brand-tech      { background: linear-gradient(135deg, #2BC0E0, #1463C9); }
.brand-spirits   { background: linear-gradient(135deg, #8E6BD8, #3A2A8F); }
.brand-wellness  { background: linear-gradient(135deg, #39D98A, #1FA36B); }
.brand-realty    { background: linear-gradient(135deg, #6E7C99, #2B3550); }
.brand-finance   { background: linear-gradient(135deg, #D9B24A, #8A6A1F); }
/* sponsor banner mark inside the phone mockup */
.ph-spon .lg { display: flex; align-items: center; justify-content: center; color: #fff; }
.ph-spon .lg svg { width: 16px; height: 16px; }

/* ── Brand vitrine (showcase wall + ticker) ─────────────────────────────── */
.vitrine { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1000px) { .vitrine { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .vitrine { grid-template-columns: repeat(2, 1fr); } }
.vit-tile {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 13px;
  padding: 30px 18px 26px; border-radius: 18px; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-elevated-2) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: border-color 240ms var(--ease), transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.vit-tile::before { content: ''; position: absolute; top: -55%; left: 50%; transform: translateX(-50%); width: 130%; height: 90%; background: radial-gradient(ellipse at center, rgba(210,14,54,0.20), transparent 70%); opacity: 0; transition: opacity 320ms var(--ease); pointer-events: none; }
/* glass-shelf reflection along the bottom */
.vit-tile::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent); }
.vit-tile:hover { transform: translateY(-6px); border-color: rgba(210,14,54,0.42); box-shadow: 0 26px 54px rgba(0,0,0,0.48); }
.vit-tile:hover::before { opacity: 1; }
.vit-tile .brand-logo { width: 58px; height: 58px; border-radius: 17px; transition: transform 280ms var(--ease); }
.vit-tile .brand-logo svg { width: 29px; height: 29px; }
.vit-tile:hover .brand-logo { transform: scale(1.06) rotate(-3deg); }
.vit-name { font-size: 14.5px; font-weight: 800; letter-spacing: -0.2px; line-height: 1.2; }
.vit-cat { font-size: 10.5px; font-weight: 700; letter-spacing: 0.7px; text-transform: uppercase; color: var(--text-muted); }

.marquee { position: relative; overflow: hidden; padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: mqScroll 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.mq-chip { display: inline-flex; align-items: center; gap: 11px; padding: 11px 18px 11px 11px; white-space: nowrap; border-radius: 999px; background: var(--glass-strong); border: 1px solid var(--line); }
.mq-chip .brand-logo { width: 32px; height: 32px; border-radius: 10px; box-shadow: none; }
.mq-chip .brand-logo svg { width: 17px; height: 17px; }
.mq-chip b { font-size: 13.5px; font-weight: 700; color: #fff; }
.mq-chip span { font-size: 11px; color: var(--text-muted); margin-left: 2px; }
@keyframes mqScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; } .vit-tile:hover .brand-logo { transform: none; } }

/* ════════════════════════════════════════════════════════════════════════
   BRAND SHOWCASE ARENA
   ════════════════════════════════════════════════════════════════════════ */
.arena { position: relative; isolation: isolate; overflow: hidden;
  background:
    radial-gradient(ellipse 50% 50% at 15% 0%, rgba(210,14,54,0.18), transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 0%, rgba(27,42,107,0.30), transparent 62%),
    var(--bg-deep); }
.arena-fx { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.arena-fx .hero-beam { opacity: 0.32; }

/* ── Camera 1 — Cinematic Brand Stage ───────────────────────────────────── */
.stage { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(28px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(18,18,28,0.86), rgba(8,8,15,0.92)); border: 1px solid var(--line-strong);
  box-shadow: var(--shadow); }
.stage::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 90% at 50% -20%, rgba(210,14,54,0.22), transparent 60%),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255,255,255,0.015) 38px 39px); }
.stage::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 46%; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5)); }
.stage-head { position: relative; text-align: center; max-width: 640px; margin: 0 auto 30px; }
.stage-head h3 { font-size: clamp(22px, 3vw, 34px); font-weight: 900; letter-spacing: -0.8px; margin: 0; }
.stage-canvas { position: relative; min-height: 230px; display: flex; align-items: center; justify-content: center; }
/* connector lines layer */
.stage-lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.stage-lines path { stroke: url(#arenaGrad); stroke-width: 1.5; vector-effect: non-scaling-stroke; fill: none; stroke-linecap: round; stroke-dasharray: 5 7; opacity: 0.4; animation: dashFlow 1.6s linear infinite; }
@keyframes dashFlow { to { stroke-dashoffset: -24; } }
/* central match hub */
.stage-hub { position: relative; z-index: 3; width: clamp(120px, 16vw, 168px); height: clamp(120px, 16vw, 168px); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  background: radial-gradient(circle, rgba(210,14,54,0.30), rgba(12,12,20,0.9) 72%); border: 1px solid rgba(210,14,54,0.5);
  box-shadow: 0 0 50px rgba(210,14,54,0.35), inset 0 0 30px rgba(210,14,54,0.18); }
.stage-hub::before, .stage-hub::after { content: ''; position: absolute; inset: -2px; border-radius: 50%; border: 1px solid rgba(210,14,54,0.35); animation: hubPulse 3s ease-out infinite; }
.stage-hub::after { animation-delay: 1.5s; }
@keyframes hubPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.45); opacity: 0; } }
.stage-hub b { font-size: 13px; font-weight: 900; letter-spacing: 0.4px; color: #fff; line-height: 1.1; }
.stage-hub span { font-size: 9.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--burgundy-light); margin-top: 5px; }
.stage-scan { position: absolute; z-index: 2; width: clamp(150px, 20vw, 220px); height: clamp(150px, 20vw, 220px); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); pointer-events: none;
  background: conic-gradient(from 0deg, transparent 0 300deg, rgba(210,14,54,0.30) 360deg); -webkit-mask: radial-gradient(circle, transparent 38%, #000 39%); mask: radial-gradient(circle, transparent 38%, #000 39%); animation: scanSpin 4s linear infinite; }
@keyframes scanSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }
/* floating brand nodes */
.stage-node { position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px; padding: 9px 13px 9px 9px; border-radius: 14px;
  background: linear-gradient(160deg, rgba(23,23,35,0.95), rgba(12,12,20,0.9)); border: 1px solid var(--line-strong); box-shadow: 0 14px 34px rgba(0,0,0,0.5);
  animation: floaty 6s ease-in-out infinite; }
.stage-node .brand-logo { width: 32px; height: 32px; border-radius: 9px; box-shadow: none; }
.stage-node .brand-logo svg { width: 17px; height: 17px; }
.stage-node b { font-size: 12.5px; font-weight: 800; color: #fff; white-space: nowrap; }
.stage-node small { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; color: var(--text-muted); }
.stage-node.n1 { top: 4%;  left: 2%; }
.stage-node.n2 { bottom: 6%; left: 8%;  animation-delay: -2s; }
.stage-node.n3 { top: 6%;  right: 3%;  animation-delay: -1s; }
.stage-node.n4 { bottom: 4%; right: 9%; animation-delay: -3s; }
.stage-event { position: absolute; z-index: 3; right: 50%; transform: translateX(50%); bottom: -2%; display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(27,42,107,0.5); border: 1px solid rgba(43,63,143,0.6); font-size: 11.5px; font-weight: 800; color: #cdd7ff; white-space: nowrap; }
@media (max-width: 760px) {
  /* Absolute corner layout overlaps on narrow screens — switch to a clean
     grid: hub on top, 4 nodes as a 2×2, Event Audience pill below. */
  .stage { padding: 24px 16px 28px; }
  .stage-canvas { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: center; min-height: 0; }
  .stage-lines, .stage-scan { display: none; }
  .stage-node { position: static; width: 100%; animation: none; padding: 11px 12px; }
  .stage-node small { display: block; }
  .stage-node b { font-size: 12px; }
  .stage-hub { order: -1; grid-column: 1 / -1; margin: 0 auto 4px; }
  .stage-event { position: static; order: 1; grid-column: 1 / -1; transform: none; justify-self: center; margin: 6px 0 0; }
}
.stage-badges { position: relative; z-index: 3; display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 30px; }
.stage-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; padding: 8px 13px; border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid var(--line-strong); color: var(--text-soft); }
.stage-badge svg { width: 14px; height: 14px; color: var(--burgundy-light); }

/* ── Camera 2 — Featured Sponsorship Campaigns ──────────────────────────── */
.camp-filters { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin: 0 auto 30px; }
.fchip { font-size: 13px; font-weight: 700; color: var(--text-soft); background: var(--glass-strong); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; cursor: pointer; font-family: inherit; transition: all 160ms var(--ease); }
.fchip:hover { border-color: rgba(210,14,54,0.4); color: #fff; }
.fchip.active { background: var(--burgundy); border-color: var(--burgundy); color: #fff; box-shadow: 0 8px 22px rgba(210,14,54,0.32); }
.camp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; perspective: 1400px; }
@media (max-width: 1040px) { .camp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .camp-grid { grid-template-columns: 1fr; } }
.camp { position: relative; display: flex; flex-direction: column; border-radius: var(--radius-lg); padding: 26px 24px; overflow: hidden;
  background: linear-gradient(180deg, rgba(23,23,35,0.92), rgba(14,14,22,0.96)); border: 1px solid var(--line-strong);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transform-style: preserve-3d; transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease), opacity 320ms var(--ease);
  box-shadow: 0 14px 36px rgba(0,0,0,0.4); }
.camp::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--burgundy), var(--burgundy-light), transparent); }
.camp::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity 240ms var(--ease); box-shadow: inset 0 0 0 1px rgba(210,14,54,0.4), 0 0 60px rgba(210,14,54,0.18); }
.camp:hover { border-color: rgba(210,14,54,0.5); box-shadow: 0 34px 70px rgba(0,0,0,0.5); }
.camp:hover::after { opacity: 1; }
.camp.is-hidden { display: none; }
.camp-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.camp-id { display: flex; align-items: center; gap: 13px; min-width: 0; }
.camp-logo { width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.22); position: relative; overflow: hidden; }
.camp-logo::after { content: ''; position: absolute; top: -40%; left: -20%; width: 90%; height: 130%; background: linear-gradient(120deg, rgba(255,255,255,0.3), transparent 60%); }
.camp-logo svg { width: 25px; height: 25px; position: relative; z-index: 1; }
.camp-demo { font-size: 9.5px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase; color: var(--gold); background: rgba(233,185,73,0.12); border: 1px solid rgba(233,185,73,0.3); border-radius: 999px; padding: 4px 9px; }
.camp-status { display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 800; letter-spacing: 0.3px; padding: 6px 11px; border-radius: 999px; white-space: nowrap; }
.camp-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.cs-open { color: var(--success); background: rgba(0,224,138,0.12); }
.cs-looking { color: var(--gold); background: rgba(233,185,73,0.12); }
.cs-premium { color: var(--burgundy-light); background: rgba(210,14,54,0.14); }
.cs-impact { color: #ff8aa0; background: rgba(255,71,87,0.14); }
.camp-name { font-size: 20px; font-weight: 900; letter-spacing: -0.5px; margin: 0 0 4px; line-height: 1.15; }
.camp-cat { font-size: 11.5px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: var(--burgundy-light); margin-bottom: 16px; }
.camp-budget { display: flex; align-items: baseline; gap: 9px; padding: 14px 0; margin-bottom: 14px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.camp-budget b { font-size: clamp(24px, 3vw, 30px); font-weight: 900; letter-spacing: -1.2px; color: #fff; line-height: 1; text-shadow: 0 0 22px rgba(210,14,54,0.4); }
.camp-budget small { font-size: 11px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-muted); }
.camp-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.camp-rows .cr { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; }
.camp-rows .cr .ci { width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0; background: rgba(255,255,255,0.05); color: var(--burgundy-light); display: flex; align-items: center; justify-content: center; }
.camp-rows .cr .ci svg { width: 14px; height: 14px; }
.camp-rows .cr span { color: var(--text-muted); font-weight: 600; display: block; font-size: 10.5px; letter-spacing: 0.3px; text-transform: uppercase; }
.camp-rows .cr b { color: #fff; font-weight: 700; line-height: 1.35; }
.camp-assets { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.camp-assets .pill { font-size: 11px; padding: 5px 10px; background: var(--glass-strong); }
.camp-match { margin-bottom: 18px; }
.camp-match .cm-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 7px; }
.camp-match .cm-top span { font-size: 11px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: var(--text-muted); }
.camp-match .cm-top b { font-size: 14px; font-weight: 900; color: var(--success); }
.camp-bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.camp-bar > i { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, #00C46F, #00E08A); transition: width 1200ms var(--ease); }
.camp.in .camp-bar > i { width: var(--w, 90%); }
.camp-foot { margin-top: auto; }
.camp-foot .btn { width: 100%; }
.camp-hint { text-align: center; font-size: 11.5px; font-weight: 700; color: var(--burgundy-light); margin: 10px 0 0; opacity: 0; max-height: 0; transition: opacity 240ms var(--ease), max-height 240ms var(--ease); }
.camp:hover .camp-hint { opacity: 1; max-height: 24px; }

/* ── Camera 3 — Sponsor Prestige Wall ───────────────────────────────────── */
.prestige { position: relative; border-radius: var(--radius-lg); padding: clamp(26px, 3.4vw, 44px); overflow: hidden;
  background: linear-gradient(180deg, #0b0b14, #06060d); border: 1px solid var(--line-strong); }
.prestige::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 20% 0%, rgba(210,14,54,0.16), transparent 55%), radial-gradient(ellipse 70% 60% at 80% 0%, rgba(27,42,107,0.24), transparent 55%); }
.plaque-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 920px) { .plaque-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .plaque-grid { grid-template-columns: 1fr; } }
.plaque { position: relative; border-radius: 16px; overflow: hidden; min-height: 132px; padding: 20px;
  background: linear-gradient(150deg, rgba(28,28,42,0.9), rgba(12,12,20,0.95)); border: 1px solid var(--line-strong);
  display: flex; flex-direction: column; gap: 12px; transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease); }
.plaque.lg { grid-column: span 2; }
@media (max-width: 520px) { .plaque.lg { grid-column: span 1; } }
.plaque::after { content: ''; position: absolute; top: 0; left: -60%; width: 50%; height: 100%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent); animation: sweep 5.5s ease-in-out infinite; }
.plaque:nth-child(2)::after { animation-delay: 1.2s; } .plaque:nth-child(3)::after { animation-delay: 2.4s; } .plaque:nth-child(4)::after { animation-delay: 0.6s; }
.plaque:nth-child(5)::after { animation-delay: 1.8s; } .plaque:nth-child(6)::after { animation-delay: 3s; } .plaque:nth-child(7)::after { animation-delay: 2.1s; }
@keyframes sweep { 0% { left: -60%; } 55%, 100% { left: 130%; } }
.plaque:hover { transform: translateY(-4px); border-color: rgba(210,14,54,0.45); box-shadow: 0 22px 48px rgba(0,0,0,0.5); }
.plaque-mark { display: flex; align-items: center; gap: 12px; }
.plaque-mark .brand-logo { width: 42px; height: 42px; }
.plaque.lg .plaque-mark .brand-logo { width: 52px; height: 52px; border-radius: 15px; }
.plaque-name { font-size: 16px; font-weight: 900; letter-spacing: -0.3px; }
.plaque.lg .plaque-name { font-size: 20px; }
.plaque-tier { font-size: 10px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase; color: var(--burgundy-light); }
.plaque-tier.gold { color: var(--gold); }
.plaque-tier.navy { color: #9fb0ff; }
.plaque-reveal { margin-top: auto; display: flex; flex-direction: column; gap: 6px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 280ms var(--ease), opacity 280ms var(--ease); }
.plaque:hover .plaque-reveal { max-height: 140px; opacity: 1; }
.plaque-reveal .pr-row { display: flex; justify-content: space-between; gap: 12px; font-size: 11.5px; }
.plaque-reveal .pr-row span { color: var(--text-muted); }
.plaque-reveal .pr-row b { color: #fff; font-weight: 700; }
.plaque-reveal .btn { margin-top: 4px; }

/* ── Why brands want to be featured ─────────────────────────────────────── */
.why4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 920px) { .why4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why4 { grid-template-columns: 1fr; } }
.why4-card { background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; transition: border-color 220ms var(--ease), transform 220ms var(--ease); }
.why4-card:hover { border-color: rgba(210,14,54,0.4); transform: translateY(-3px); }
.why4-card .ico-chip { margin-bottom: 14px; }
.why4-card h3 { font-size: 16px; font-weight: 800; margin: 0 0 8px; }
.why4-card p { font-size: 13.5px; line-height: 1.6; color: var(--text-soft); margin: 0; }

/* ── Brand Activation Formats ───────────────────────────────────────────── */
.fmt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .fmt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .fmt-grid { grid-template-columns: 1fr; } }
.fmt { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(180deg, var(--bg-elevated-2), var(--bg-elevated)); border: 1px solid var(--line); transition: border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease); display: flex; flex-direction: column; }
.fmt:hover { border-color: rgba(210,14,54,0.42); transform: translateY(-4px); box-shadow: 0 24px 50px rgba(0,0,0,0.45); }
.fmt-visual { position: relative; height: 158px; overflow: hidden; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(210,14,54,0.16), transparent 60%), linear-gradient(160deg, var(--navy-deep), #0a0a14); }
.fmt-visual.navy { background: radial-gradient(ellipse at 50% 0%, rgba(27,42,107,0.4), transparent 60%), linear-gradient(160deg, #12183a, #0a0a14); }
.fmt-visual .fmt-bigico { width: 64px; height: 64px; color: rgba(255,255,255,0.85); }
.fmt-visual .fmt-bigico svg { width: 100%; height: 100%; }
.fmt-tag { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: rgba(8,8,15,0.7); border: 1px solid var(--line-strong); color: #fff; }
.fmt-body { padding: 22px 22px 24px; }
.fmt-body h3 { font-size: 17px; font-weight: 800; margin: 0 0 8px; }
.fmt-body p { font-size: 13.5px; line-height: 1.6; color: var(--text-soft); margin: 0; }
/* tiny phone for the app-takeover format visual */
.fmt-phone { width: 116px; aspect-ratio: 116/210; background: #0a0a12; border: 6px solid #16161f; border-radius: 22px; position: relative; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,0.5); }
.fmt-phone .fp-poster { position: absolute; top: 18px; left: 8px; right: 8px; height: 64px; border-radius: 9px; background: linear-gradient(135deg, var(--navy), var(--burgundy-deep)); }
.fmt-phone .fp-spon { position: absolute; top: 88px; left: 8px; right: 8px; height: 26px; border-radius: 7px; background: rgba(233,185,73,0.14); border: 1px solid rgba(233,185,73,0.34); display: flex; align-items: center; gap: 6px; padding: 0 7px; }
.fmt-phone .fp-spon i { width: 14px; height: 14px; border-radius: 4px; background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy-deep)); }
.fmt-phone .fp-spon b { font-size: 7px; color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: 0.4px; }
.fmt-phone .fp-push { position: absolute; top: 20px; left: 6px; right: 6px; height: 30px; border-radius: 9px; background: rgba(24,24,34,0.95); border: 1px solid var(--line-strong); display: flex; align-items: center; gap: 6px; padding: 0 7px; box-shadow: 0 10px 24px rgba(0,0,0,0.5); transform: translateY(-150%); animation: pushIn 5s ease-in-out infinite; }
.fmt-phone .fp-push i { width: 16px; height: 16px; border-radius: 5px; background: var(--burgundy); flex-shrink: 0; }
.fmt-phone .fp-push b { font-size: 7px; color: #fff; font-weight: 700; line-height: 1.2; }

/* ── Organizer Match Simulator ──────────────────────────────────────────── */
.sim { display: grid; grid-template-columns: 1.25fr 1fr; gap: 26px; align-items: stretch; }
@media (max-width: 940px) { .sim { grid-template-columns: 1fr; } }
.sim-panel { background: linear-gradient(180deg, var(--bg-elevated-2), var(--bg-elevated)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 30px); }
.sim-group { margin-bottom: 20px; }
.sim-group:last-child { margin-bottom: 0; }
.sim-group > label { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.sim-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.sim-opt { font-size: 13px; font-weight: 600; color: var(--text-soft); background: var(--bg-charcoal); border: 1px solid var(--line-strong); border-radius: 11px; padding: 9px 14px; cursor: pointer; font-family: inherit; transition: all 150ms var(--ease); }
.sim-opt:hover { border-color: rgba(210,14,54,0.4); color: #fff; }
.sim-opt.on { background: rgba(210,14,54,0.14); border-color: var(--burgundy); color: #fff; }
.sim-result { background: linear-gradient(165deg, rgba(210,14,54,0.14), var(--bg-elevated) 62%); border: 1px solid rgba(210,14,54,0.32); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 32px); display: flex; flex-direction: column; }
.sim-result h4 { font-size: 12px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase; color: var(--burgundy-light); margin: 0 0 14px; }
.sim-fit { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; padding: 8px 15px 8px 12px; margin-bottom: 20px; border-radius: 999px; background: rgba(0,224,138,0.12); border: 1px solid rgba(0,224,138,0.34); transition: background 220ms var(--ease), border-color 220ms var(--ease); }
.sim-fit-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 10px var(--success); flex-shrink: 0; }
.sim-fit b { font-size: 13.5px; font-weight: 800; color: var(--success); letter-spacing: 0.2px; }
.sim-fit small { font-size: 10px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-muted); }
.sim-fit.premium { background: rgba(210,14,54,0.14); border-color: rgba(210,14,54,0.40); }
.sim-fit.premium .sim-fit-dot { background: var(--burgundy-light); box-shadow: 0 0 10px var(--burgundy-light); }
.sim-fit.premium b { color: var(--burgundy-light); }
.sim-types { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.sim-type { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: #fff; background: rgba(255,255,255,0.05); border: 1px solid var(--line-strong); border-radius: 999px; padding: 8px 14px; animation: fadeUp 360ms var(--ease); }
.sim-type .brand-logo { width: 24px; height: 24px; border-radius: 7px; box-shadow: none; }
.sim-type .brand-logo svg { width: 13px; height: 13px; }
.sim-est-label { font-size: 12px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.sim-est { font-size: clamp(30px, 5vw, 42px); font-weight: 900; letter-spacing: -1.5px; line-height: 1; color: #fff; text-shadow: 0 0 30px rgba(210,14,54,0.4); }
.sim-note { font-size: 12px; color: var(--text-muted); line-height: 1.55; margin: 14px 0 22px; }
.sim-result .btn { margin-top: auto; }

@media (prefers-reduced-motion: reduce) {
  .stage-lines path, .stage-hub::before, .stage-hub::after, .stage-scan, .stage-node, .plaque::after, .fmt-phone .fp-push { animation: none !important; }
}

/* ── Real brand logos (campaigns + prestige) — transparent logos sit on the
   dark card directly; opaque/dark badges are clipped round to drop corners ── */
.brand-img { height: 52px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.brand-img img { height: 100%; width: auto; max-width: 174px; object-fit: contain; display: block; }
.brand-img.round { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; box-shadow: 0 0 0 1px rgba(255,255,255,0.10); }
.brand-img.round img { width: 100%; height: 100%; max-width: none; }
.camp > .camp-top { align-items: center; }
.camp-demo { display: inline-block; margin-bottom: 12px; }
.plaque .brand-img { height: 42px; }
.plaque .brand-img.round { width: 42px; height: 42px; }
.plaque.lg .brand-img { height: 54px; }
.plaque.lg .brand-img.round { width: 54px; height: 54px; }
/* light plate for logos designed for white backgrounds (e.g. Five Star) */
.brand-img.plate { background: #fff; border-radius: 10px; padding: 6px 12px; box-shadow: 0 6px 16px rgba(0,0,0,0.3); }
.plaque .brand-img.plate { padding: 5px 9px; border-radius: 8px; }
/* real logo inside the hero composition chip + ticket mockup banner */
.fc-ico img { width: 18px; height: 18px; object-fit: contain; }
.ph-spon .lg img { width: 100%; height: 100%; object-fit: contain; }
/* real logos inside the Match Simulator recommendation chips */
.sim-type .brand-img { height: 22px; }
.sim-type .brand-img.round { width: 22px; height: 22px; }
.sim-type .brand-img.plate { background: #fff; border-radius: 6px; padding: 2px 5px; box-shadow: none; }
