/* ==========================================================================
   OpenSummit.AI V2 — Landing page section styles
   ========================================================================== */

/* ── Global overflow fix ────────────────────────────────────── */
html, body { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }

/* ── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: auto;
  padding: 120px 0 0;
  overflow: visible;
  background: 
    radial-gradient(ellipse 60% 40% at 30% 30%, rgba(255,40,40,.05) 0%, transparent 70%),
    linear-gradient(180deg, var(--ink) 0%, rgba(255,250,248,1) 45%, rgba(255,250,248,1) 100%);
}
.hero__glow-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero__glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 1;
}
.hero__glow--red {
  width: 1000px; height: 700px;
  background: radial-gradient(ellipse, rgba(255,50,50,.15) 0%, rgba(255,77,77,.06) 40%, transparent 100%);
  top: -150px; left: 50%; transform: translateX(-50%);
  animation: hero-pulse 8s ease-in-out infinite alternate;
}
.hero__glow--amber {
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,120,60,.1) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation: hero-pulse 10s ease-in-out 2s infinite alternate;
}
@keyframes hero-pulse {
  from { opacity: 0.7; transform: translateX(-50%) scale(1); }
  to   { opacity: 1; transform: translateX(-50%) scale(1.08); }
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 1   0 0 0 0 1   0 0 0 0.15 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
/* Hero content */
.hero__content {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  padding-bottom: 64px;
  text-align: center;
}
.hero__meta-strip {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 14px; font-weight: 600; color: var(--fog-2);
}
.hero__meta-strip span { white-space: nowrap; }
.hero__content .hero__lede { font-size: 16px; line-height: 1.55; }
@media (min-width: 960px) {
  .hero__content .hero__lede { font-size: 18px; }
}

/* Announcement bar */
.hero__announce {
  display: inline-flex;
  padding: 10px 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 0 40px rgba(139,92,246,0.06);
}

/* Trust row */
/* ── Hero Stats Grid ────────────────────────────────────────────────── */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.hero__stat-card {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: 20px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  overflow: visible;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s, background 0.3s, border-color 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.hero__stat-card:hover {
  transform: translateY(-4px);
  background: #0c0a16;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 60px rgba(139,92,246,0.12);
}
.hero__stat-card:hover .hero__stat-num,
.hero__stat-card:hover .hero__stat-venue,
.hero__stat-card:hover .hero__stat-date { color: #fff; }
.hero__stat-card:hover .hero__stat-label,
.hero__stat-card:hover .hero__stat-venue-sub,
.hero__stat-card:hover .hero__stat-day { color: rgba(255,255,255,0.5); }
.hero__stat-card:hover .hero__stat-icon { background: rgba(139,92,246,0.15); color: #a78bfa; }
.hero__stat-card:hover .hero__stat-icon--amber { background: rgba(229,160,75,0.15); color: #e5a04b; }
.hero__stat-card:hover .hero__stat-icon--red { background: rgba(239,68,68,0.15); color: #ef4444; }
.hero__stat-card:hover .hero__stat-bar { background: rgba(255,255,255,0.08); }
.hero__stat-card::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(0,229,204,0.12), rgba(229,160,75,0.12));
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
}
.hero__stat-card:hover::after {
  opacity: 0.9;
}
.hero__stat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(139,92,246,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #8b5cf6;
  margin-bottom: 16px;
}
.hero__stat-icon--amber {
  background: rgba(229,160,75,0.1);
  color: #d4940a;
}
.hero__stat-icon--red {
  background: rgba(239,68,68,0.1);
  color: #dc2626;
}
.hero__stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--fog-0);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  font-family: var(--ff-display);
}
.hero__stat-plus {
  font-size: 28px;
  color: #0d9488;
  font-weight: 700;
}
.hero__stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fog-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}
.hero__stat-bar {
  height: 4px;
  border-radius: 4px;
  background: rgba(0,0,0,0.06);
  margin-top: 16px;
  overflow: hidden;
}
.hero__stat-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  transition: width 1.5s cubic-bezier(0.16,1,0.3,1);
}
.hero__stat-bar-fill--teal {
  background: linear-gradient(90deg, #0d9488, #14b8a6);
}
.hero__stat-venue {
  font-size: 28px;
  font-weight: 800;
  color: var(--fog-0);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero__stat-venue-sub {
  font-size: 22px;
  font-weight: 700;
  color: var(--fog-3);
  line-height: 1.1;
}
.hero__stat-day {
  font-size: 14px;
  font-weight: 700;
  color: var(--fog-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero__stat-date {
  font-size: 32px;
  font-weight: 800;
  color: var(--fog-0);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 2px;
}
/* Inline countdown between title and lede */
.hero__inline-countdown {
  display: flex;
  justify-content: center;
  margin: 12px 0 8px;
}
.hero__inline-countdown .cd { gap: 8px; }
.hero__inline-countdown .cd__cell {
  min-width: auto;
  padding: 8px 14px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
}
.hero__inline-countdown .cd__num { font-size: 24px; color: var(--ink); font-weight: 800; }
.hero__inline-countdown .cd__lbl { font-size: 9px; color: rgba(0,0,0,0.4); font-weight: 700; }
.hero__inline-countdown .cd__sep { font-size: 20px; color: rgba(0,0,0,0.2); padding-bottom: 10px; }
@media (max-width: 600px) {
  .hero__inline-countdown .cd__cell { padding: 6px 10px; }
  .hero__inline-countdown .cd__num { font-size: 18px; }
  .hero__inline-countdown .cd__sep { font-size: 16px; }
  .hero { padding: 100px 0 0; overflow-x: hidden; }
  .hero__inner, .hero__content { overflow-x: hidden; max-width: 100vw; }
  .hero__announce { font-size: 12px; padding: 8px 16px; }
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn {
    width: 100%;
    text-align: center; justify-content: center;
    padding: 16px 20px; font-size: 14px;
    white-space: normal;
  }
  .hero__stats { width: 100%; }
  .t-billboard { font-size: 36px !important; }
}
@media (max-width: 900px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 500px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero__stat-card { padding: 20px 16px 18px; border-radius: 16px; overflow: hidden; }
  
  .hero__stat-num { font-size: 32px; }
  .hero__stat-icon { width: 36px; height: 36px; border-radius: 10px; margin-bottom: 12px; }
  .hero__stat-icon svg { width: 18px; height: 18px; }
  .hero__stat-venue { font-size: 22px; }
  .hero__stat-venue-sub { font-size: 17px; }
  .hero__stat-date { font-size: 26px; }
  .hero__stat-label { font-size: 11px; }
}

/* Price countdown in hero */
.hero__countdown-wrap {
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 48px;
  border-radius: 24px;
  background: #0c0a16;
  border: 1px solid rgba(139,92,246,0.15);
  box-shadow: 0 0 80px rgba(139,92,246,0.06);
  width: fit-content;
}
.hero__countdown-label {
  font-size: 18px;
  font-weight: 700;
  color: #e5a04b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hero__countdown-wrap .cd { gap: 16px; }
.hero__countdown-wrap .cd__cell {
  min-width: 100px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
}
.hero__countdown-wrap .cd__num { font-size: 48px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.hero__countdown-wrap .cd__lbl { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; }
.hero__countdown-wrap .cd__sep { font-size: 36px; color: rgba(255,255,255,.3); font-weight: 700; padding-bottom: 16px; }
@media (max-width: 700px) {
  .hero__countdown-wrap { padding: 28px 20px; }
  .hero__countdown-wrap .cd__cell { min-width: 72px; padding: 16px 14px; }
  .hero__countdown-wrap .cd__num { font-size: 36px; }
  .hero__countdown-wrap .cd__sep { font-size: 28px; }
  .hero__countdown-label { font-size: 14px; }
}
/* ── Teams page (mobile-first) ──────────────────────────────────────── */
.tp { min-height: 100vh; background: var(--ink); }

/* Nav */
.tp__nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,11,20,.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.tp__nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 600px; margin: 0 auto;
  padding: 0 20px; height: 56px;
}
.tp__nav-logo img { height: 30px; border-radius: 4px; }
.tp__nav-back {
  font-size: 13px; font-weight: 600; color: #fff;
  text-decoration: none;
}

/* Hero */
.tp__hero {
  position: relative; overflow: hidden;
  text-align: center;
  padding: 48px 24px 40px;
}
.tp__hero-glow {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(248,180,168,.18) 0%, transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.tp__pill {
  display: inline-block;
  padding: 5px 14px; border-radius: 100px;
  background: rgba(0,229,204,.08); color: var(--teal);
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.tp__title {
  font-family: var(--ff-display); font-size: clamp(32px, 8vw, 48px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.05;
  color: var(--fog-0); margin: 0;
}
.tp__subtitle {
  margin: 12px auto 0; max-width: 360px;
  font-size: 16px; line-height: 1.5; color: var(--fog-2);
}

/* Main container */
.tp__main {
  max-width: 480px; margin: 0 auto;
  padding: 0 20px 48px;
  display: flex; flex-direction: column; gap: 28px;
}

/* Calculator card */
.tp__card {
  background: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 20px; padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

/* Seat selector */
.tp__seat-row {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  margin-bottom: 20px;
}
.tp__seat-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--line-3); background: var(--ink);
  font-size: 24px; font-weight: 700; color: var(--fog-0);
  cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center;
}
.tp__seat-btn:hover { border-color: var(--red); color: var(--red); }
.tp__seat-btn:disabled { opacity: .3; cursor: not-allowed; }
.tp__seat-center { text-align: center; }
.tp__seat-num {
  display: block;
  font-family: var(--ff-display); font-size: 64px; font-weight: 800;
  color: var(--red); line-height: 1; letter-spacing: -.04em;
}
.tp__seat-label { font-size: 13px; color: var(--fog-3); text-transform: uppercase; letter-spacing: .1em; }

/* Range slider */
.tp__range-wrap { margin-bottom: 4px; }
.tp__range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  border-radius: 3px;
  outline: none; cursor: pointer;
  margin: 0;
}
.tp__range::-webkit-slider-runnable-track {
  height: 6px; border-radius: 3px;
  background: transparent;
}
.tp__range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--red); border: 3px solid #fff;
  box-shadow: 0 0 12px rgba(255,77,77,.35), 0 2px 4px rgba(0,0,0,.12);
  cursor: pointer; margin-top: -11px;
}
.tp__range::-moz-range-track {
  height: 6px; border-radius: 3px; background: var(--line-2);
}
.tp__range::-moz-range-thumb {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--red); border: 3px solid #fff;
  box-shadow: 0 0 12px rgba(255,77,77,.35), 0 2px 4px rgba(0,0,0,.12);
  cursor: pointer;
}
.tp__range::-moz-range-progress { background: var(--red); height: 6px; border-radius: 3px; }
.tp__range-labels {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--fog-3); margin-top: 4px;
}

/* VIP banner */
.tp__vip {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 20px 0 0; padding: 14px;
  border-radius: 14px;
  background: rgba(247,185,85,.06); border: 1px solid rgba(247,185,85,.2);
  animation: fadeUp 400ms ease-out both;
}
.tp__vip-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.tp__vip strong { display: block; font-size: 14px; color: var(--amber); }
.tp__vip-sub { display: block; font-size: 13px; color: var(--fog-3); margin-top: 2px; }

/* Breakdown rows */
.tp__breakdown {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.tp__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; color: var(--fog-1);
}
.tp__row span:last-child { font-weight: 700; font-variant-numeric: tabular-nums; }
.tp__row--green { color: var(--teal); }
.tp__row--total {
  padding-top: 14px; margin-top: 4px;
  border-top: 2px solid var(--line-3);
  font-size: 17px; font-weight: 700;
}
.tp__row--total span:last-child { font-size: 22px; }

/* CTA */
.tp__cta {
  display: block; width: 100%; margin-top: 24px;
  padding: 16px; border-radius: 14px;
  background: var(--red); color: #fff;
  font-size: 17px; font-weight: 700; text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,77,77,.25);
  transition: transform .2s, box-shadow .2s;
}
.tp__cta:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(255,77,77,.35); }
.tp__cta-note { text-align: center; font-size: 12px; color: var(--fog-3); margin-top: 10px; }

/* Includes list */
.tp__includes {
  background: var(--ink); border: 1px solid var(--line-2);
  border-radius: 20px; padding: 24px;
}
.tp__section-title {
  font-size: 18px; font-weight: 700; color: var(--fog-0);
  margin: 0 0 16px;
}
.tp__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.tp__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--fog-2);
}
.tp__check { color: var(--teal); font-weight: 700; font-size: 15px; flex-shrink: 0; }
.tp__check--gold { color: var(--amber); }
.tp__list-vip { animation: fadeUp 400ms ease-out both; }

/* FAQ */
.tp__facts {
  display: flex; flex-direction: column; gap: 0;
}
.tp__facts .tp__section-title { margin-bottom: 12px; }
.tp__faq {
  border-bottom: 1px solid var(--line-2);
  padding: 14px 0;
}
.tp__faq:first-of-type { border-top: 1px solid var(--line-2); }
.tp__faq summary {
  font-size: 15px; font-weight: 600; color: var(--fog-0);
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.tp__faq summary::-webkit-details-marker { display: none; }
.tp__faq summary::after { content: '+'; font-size: 18px; color: var(--fog-3); }
.tp__faq[open] summary::after { content: '−'; }
.tp__faq p { margin: 8px 0 0; font-size: 14px; color: var(--fog-2); line-height: 1.5; }

/* Event strip */
.tp__event {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; border-radius: 14px;
  background: var(--ink-2); border: 1px solid var(--line-2);
}
.tp__event-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0,229,204,.4);
}
.tp__event strong { font-size: 15px; color: var(--fog-0); display: block; }
.tp__event-meta { font-size: 13px; color: var(--fog-3); display: block; }

/* Footer */
.tp__footer {
  text-align: center; padding: 24px 20px;
  border-top: 1px solid var(--line-2);
}
.tp__footer p { font-size: 12px; color: var(--fog-3); margin: 0; }
.tp__footer a { color: var(--red); text-decoration: none; }

/* Desktop: widen */
@media (min-width: 768px) {
  .tp__main { max-width: 560px; padding: 0 32px 64px; }
  .tp__hero { padding: 64px 32px 48px; }
  .tp__card { padding: 36px 32px; }
  .tp__seat-num { font-size: 80px; }
}

/* Venue slider — between hero and social proof */
.vslider { padding: 0; }
.vslider__wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--ink-2);
}
.vslider__img-wrap {
  position: relative;
  width: 100%; aspect-ratio: 21 / 9; overflow: hidden;
}
.vslider__img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 35%;
  animation: vsFade 0.4s ease;
}
@keyframes vsFade { from { opacity: 0; } to { opacity: 1; } }
.vslider__arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.1);
  color: #0d0b14;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.vslider__arrow:hover { background: #fff; border-color: rgba(0,0,0,.15); }
.vslider__arrow--left { left: 16px; }
.vslider__arrow--right { right: 16px; }
.vslider__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
  background: rgba(255,255,255,.85);
  border-top: 1px solid var(--line);
}
.vslider__caption { font-size: 13px; color: var(--fog-2); }
.vslider__dots { display: flex; gap: 8px; }
.vslider__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: none;
  cursor: pointer; transition: background 0.2s;
}
.vslider__dot--on { background: var(--red); box-shadow: 0 0 8px var(--red); }
.vslider__count { font-size: 12px; color: var(--fog-3); font-family: var(--ff-display); }
@media (max-width: 700px) {
  .vslider__img-wrap { aspect-ratio: 16 / 10; }
  .vslider__arrow { width: 36px; height: 36px; }
  .vslider__arrow--left { left: 10px; }
  .vslider__arrow--right { right: 10px; }
}

/* ── VenueHero — full-bleed venue image + countdown overlay ─────── */
.vhero {
  width: 100%; max-width: 1200px; margin: -20px auto 0;
  padding: 0 var(--gutter);
}
.vhero__img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  border: 1px solid var(--line-2);
}
.vhero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  display: block;
}
.vhero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.05) 40%, rgba(0,0,0,.4) 100%);
  pointer-events: none;
}
.vhero__pill {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 10px 28px; border-radius: 100px;
  font-size: 16px; font-weight: 600; letter-spacing: .02em;
  color: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.12);
  white-space: nowrap;
  text-align: center;
}
.vhero__countdown {
  position: absolute; bottom: 20px; right: 20px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-med);
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,.1);
}
.vhero__countdown .cd { gap: 4px; }
.vhero__countdown .cd__cell { min-width: 48px; }
.vhero__countdown .cd__num { font-size: 28px; color: #fff; }
.vhero__countdown .cd__lbl { font-size: 10px; color: rgba(255,255,255,.6); text-transform: uppercase; }
.vhero__countdown .cd__sep { color: rgba(255,255,255,.3); font-size: 24px; }
@media (max-width: 768px) {
  .vhero__img-wrap { aspect-ratio: 16 / 10; }
  .vhero__pill { font-size: 15px; padding: 12px 20px; top: 10px; }
  .vhero__countdown { bottom: 12px; right: 12px; padding: 8px 14px; }
  .vhero__countdown .cd__num { font-size: 22px; }
  .vhero__countdown .cd__cell { min-width: 38px; }
}
.hero__top {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero__title {
  font-size: clamp(2.4rem, 5.5vw, var(--t-billboard));
  max-width: 20ch;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.03em;
}
.hero__lede {
  max-width: 56ch;
  color: var(--fog-1);
}
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 12px;
  justify-content: center;
}
.hero__countdown-wrap {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 28px;
  border-radius: var(--r-med);
  background:
    linear-gradient(180deg, rgba(255,245,230,.04), rgba(255,245,230,.01)),
    rgba(20, 17, 29, .5);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(20px);
  box-shadow: var(--sh-card);
  max-width: 520px;
}
.hero__cd-label { margin-bottom: 4px; }
.hero__cd-foot { color: var(--fog-3); letter-spacing: .02em; }
.hero__urgency { color: var(--fog-3); letter-spacing: .02em; margin-top: 8px; }
.hero__meta {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.hero__meta-cell { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.hero__meta-label { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--fog-3); font-weight: 600; }
.hero__meta-val { font-size: 14px; font-weight: 600; color: var(--fog-1); white-space: nowrap; }
.hero__meta-logos { display: flex; align-items: center; gap: 6px; flex-wrap: nowrap; }
@media (max-width: 700px) {
  .hero { padding: 80px 0 24px; min-height: auto; }
  .hero__inner { gap: 12px; }
  .hero__countdown-wrap { margin-top: 12px; padding: 16px 20px; }
  .hero__lede { font-size: 1.05rem; }
  .hero__meta { gap: 10px 16px; }
  .hero__meta-val { font-size: 13px; }
}

/* ── Countdown ─────────────────────────────────────────────────────────── */
.cd {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--ff-display);
}
.cd__cell {
  display: flex; flex-direction: column; gap: 6px;
  min-width: 96px; padding: 16px 20px;
  border-radius: var(--r-med);
  background: var(--ink-3);
  border: 1px solid var(--line-2);
  box-shadow: var(--sh-cushion);
  text-align: center;
}
.cd__num { font-size: 32px; font-weight: 700; color: var(--fog-0); letter-spacing: -.02em; line-height: 1; }
.cd__lbl { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; color: var(--fog-3); }
.cd__sep { font-size: 22px; color: var(--fog-4); font-weight: 700; padding-bottom: 12px; }
@media (max-width: 700px) {
  .cd__cell { min-width: 64px; padding: 12px 10px; }
  .cd__num { font-size: 28px; }
  .cd__sep { display: none; }
}

/* ── Marquee ───────────────────────────────────────────────────────────── */
.marq {
  margin-top: 0;
  padding: 18px 0;
  border: none;
  overflow: hidden;
  background: #0d0b14;
  position: relative;
  z-index: 2;
}
.marq__track {
  display: flex; gap: 64px;
  animation: marq 60s linear infinite;
  width: max-content;
  padding-left: 64px;
}
.marq__item {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--ff-display);
  font-size: 18px; font-weight: 600;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.marq__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); }
@keyframes marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ── Social Proof ──────────────────────────────────────────────────────── */
.sp { padding-top: 0; padding-bottom: 0; }

/* Venue image strip */
.sp__venue-img {
  position: relative;
  width: 100%; height: 200px;
  overflow: hidden;
  border-radius: var(--r-lg);
  margin-bottom: 24px;
}
.sp__venue-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%;
}
.sp__venue-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(255,255,255,.9) 100%);
}
@media (max-width: 700px) {
  .sp__venue-img { height: 140px; }
}
.sp__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.sp__stat {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.sp__stat-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--fog-0);
}
.sp__stat-label {
  font-size: 12px;
  color: var(--fog-2);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}
.sp__divider {
  width: 1px; height: 32px;
  background: var(--line-2);
}
.sp__bar-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 0 16px;
}
.sp__bar {
  height: 4px; border-radius: var(--r-pill);
  background: var(--ink-3);
  overflow: hidden;
}
.sp__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--amber));
  box-shadow: 0 0 16px -2px rgba(255,77,77,.5);
}

@media (max-width: 600px) {
  .sp__row { gap: 16px; }
  .sp__stat-num { font-size: 1.5rem; }
  .sp__divider { height: 24px; }
  .sp__logo-row { font-size: 13px; gap: 12px; }
}

/* ── Speakers ──────────────────────────────────────────────────────────── */
.speakers {
  padding-top: 40px;
}
.speakers .section-head {
  margin-bottom: 32px;
  position: relative; overflow: hidden;
  background: rgba(255,250,248,1);
}
.speakers::before {
  content: ''; position: absolute; pointer-events: none;
  width: 800px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(248,180,168,.14) 0%, transparent 70%);
  top: -100px; right: -200px;
  filter: blur(80px);
}
.speakers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1170px;
  margin: 0 auto;
  grid-auto-rows: minmax(0, auto);
  gap: 20px;
}
@media (max-width: 1100px) {
  .speakers__grid { grid-template-columns: 1fr 1fr; }
}
/* Mobile: 2-col grid, flip tiles stay visible */
@media (max-width: 700px) {
  .speakers__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sp-tile { aspect-ratio: 3/4 !important; max-width: none !important; }
  .sp-tile__front, .sp-tile__back { border-radius: 12px; }
  .sp-tile__name { font-size: 14px; }
  .sp-tile__org { font-size: 10px; }
  .sp-tile__hint { font-size: 8px; top: 6px !important; right: 8px !important; padding: 3px 8px !important; }
  .sp-tile__back .sp-tile__name { font-size: 12px; }
  .sp-tile__back .sp-tile__org { font-size: 9px; }
  .sp-tile__talk-text { font-size: 10px !important; line-height: 1.3 !important; }
  .sp-tile__back-head { padding-bottom: 4px; margin-bottom: 0; border-bottom: none !important; }
  .sp-tile__back { padding: 10px !important; gap: 4px !important; justify-content: center !important; }
}

/* Mobile speaker card — no flip, tap to expand */
.sp-tile-m { display: none; }
@media (max-width: 700px) {
  .sp-tile-m {
    display: flex; flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line-2);
    background: rgba(245,243,240,.7);
  }
  .sp-tile-m__card { cursor: pointer; }
  .sp-tile-m__img-wrap {
    position: relative; width: 100%; aspect-ratio: 3 / 4;
    overflow: hidden;
  }
  .sp-tile-m__img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  }
  .sp-tile-m__initials {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--acc, var(--red)), var(--ink-3));
    display: grid; place-items: center;
    color: var(--fog-0); font-family: var(--ff-display); font-weight: 700; font-size: 32px;
  }
  .sp-tile-m__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
  }
  .sp-tile-m__info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px;
  }
  .sp-tile-m__name {
    font-family: var(--ff-display); font-weight: 700; font-size: 15px;
    color: #fff; line-height: 1.2;
  }
  .sp-tile-m__org { font-size: 11px; color: rgba(255,255,255,.7); margin-top: 2px; }
  .sp-tile-m__detail {
    padding: 12px;
    border-top: 1px solid var(--line-2);
    animation: pcardSlide 0.2s ease;
  }
  .sp-tile-m__detail p {
    font-size: 13px; line-height: 1.45; color: var(--fog-1);
  }
}
.speakers__foot {
  margin-top: 40px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--line);
}

/* Speaker tile — interactive flip card */
.sp-tile {
  position: relative;
  perspective: 800px;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  max-width: 364px;
}
.sp-tile__front,
.sp-tile__back {
  position: absolute; inset: 0;
  border-radius: var(--r-med);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.5s cubic-bezier(.4,.2,.2,1);
  overflow: hidden;
  border: 1px solid var(--line-2);
}
.sp-tile__front {
  transform: rotateY(0deg);
}
.sp-tile__back {
  transform: rotateY(180deg);
  background: var(--ink-2);
  border: 1px solid var(--line-3);
  display: flex; flex-direction: column; justify-content: center;
  padding: 24px 20px;
  gap: 16px;
  box-shadow: var(--sh-card);
}
.sp-tile--flipped .sp-tile__front { transform: rotateY(-180deg); }
.sp-tile--flipped .sp-tile__back { transform: rotateY(0deg); }

/* Front — full image with name overlay */
.sp-tile__img-wrap {
  position: relative; width: 100%; height: 100%;
}
.sp-tile__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.sp-tile:hover .sp-tile__img { transform: scale(1.03); filter: brightness(1.1); }
.sp-tile__initials {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--acc, var(--red)), var(--ink-3));
  display: grid; place-items: center;
  color: var(--fog-0);
  font-family: var(--ff-display); font-weight: 700; font-size: 48px;
}
.sp-tile__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.5) 35%, rgba(0,0,0,.1) 55%, transparent 100%);
}
.sp-tile__img-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 18px 16px;
}
.sp-tile__name {
  font-family: var(--ff-display); font-weight: 700; font-size: 18px;
  color: #fff; line-height: 1.2;
  text-shadow: 0 1px 8px rgba(0,0,0,.6), 0 0 2px rgba(0,0,0,.4);
}

.sp-tile__org {
  font-size: 12px; color: rgba(255,255,255,.85); margin-top: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  font-weight: 500; letter-spacing: .01em;
}
.sp-tile__hint {
  position: absolute; top: 10px; right: 12px;
  font-size: 9px; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.6); font-weight: 600;
  background: rgba(0,0,0,.35); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  padding: 4px 10px; border-radius: 100px;
}
.sp-tile__flip-prompt {
  position: absolute; bottom: 0; left: 0; right: 0;
  text-align: center; padding: 8px 0;
  font-size: 10px; font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .3s ease;
}
.sp-tile:not(.sp-tile--flipped) .sp-tile__flip-prompt { opacity: 1; animation: promptPulse 2.5s ease-in-out infinite; }
@keyframes promptPulse { 0%,100%{opacity:.7} 50%{opacity:1} }

/* Back */
.sp-tile__back-head {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-2);
}
.sp-tile__back .sp-tile__name { font-size: 20px; color: var(--fog-0); }
.sp-tile__back .sp-tile__org { color: var(--fog-2); }
.sp-tile__back .sp-tile__hint { color: var(--fog-3); }
.sp-tile__talk-text {
  font-size: 15px; line-height: 1.55; color: var(--fog-1); text-wrap: pretty;
}
.sp-tile__back .sp-tile__hint {
  position: absolute; bottom: 10px; right: 14px;
  color: rgba(255,255,255,.3);
}

/* Featured glow */
.sp-tile--featured .sp-tile__front { border-color: rgba(255,77,77,.25); }
.sp-tile--featured .sp-tile__back { border-color: rgba(255,77,77,.25); }

/* ── Program ──────────────────────────────────────────────────────────── */
/* Program — editorial rows */
/* ── Program v4 — editorial ── */

/* Header */
.pg-header {
  display: grid; grid-template-columns: 1fr auto; gap: 40px;
  align-items: end;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-2);
}
.pg-header__h2 {
  font-family: var(--ff-display); font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.05;
  color: var(--fog-0); margin-top: 8px;
}
.pg-header__details {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px;
}
.pg-header__detail-label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--fog-3);
}
.pg-header__detail-value {
  display: block; font-size: 15px; font-weight: 600; color: var(--fog-0); margin-top: 2px;
}

/* Timeline */
.tl { position: relative; }
.tl__row {
  display: grid; grid-template-columns: 80px 32px 1fr;
  gap: 0; min-height: 0;
}
.tl__time-col { padding: 24px 0; text-align: right; padding-right: 16px; }
.tl__time {
  font-family: var(--ff-display); font-size: 22px; font-weight: 900;
  color: var(--fog-0); letter-spacing: -.03em; line-height: 1;
}
.tl__dur { font-size: 11px; font-weight: 600; color: var(--fog-3); margin-top: 4px; }

/* Vertical line + dot */
.tl__line {
  position: relative;
  display: flex; justify-content: center;
}
.tl__line::before {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 2px; background: var(--line-2);
}
.tl__dot {
  position: relative; z-index: 1; margin-top: 28px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--fog-0); border: 3px solid var(--ink);
  box-shadow: 0 0 0 2px var(--line-2);
}
.tl__dot--end { background: var(--fog-3); }
.tl__row--end .tl__time-col { padding: 16px 0; padding-right: 16px; }
.tl__end-label { padding: 16px 0; font-size: 14px; color: var(--fog-3); font-weight: 500; }

/* Cards area */
.tl__cards { padding: 10px 0 10px 20px; display: flex; gap: 12px; }
.tl__cards--dual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Event card ── */
.ev {
  position: relative;
  padding: 16px 20px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.08);
  display: flex; flex-direction: column; gap: 6px;
  transition: transform .4s cubic-bezier(.2,1,.3,1), box-shadow .4s, border-color .3s;
  flex: 1;
}
.ev:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.12);
}
.ev--has-photo {
  flex-direction: row; align-items: center; gap: 14px;
}
.ev--has-photo .ev__inner { flex: 1; }

/* Photo */
.ev__photo-wrap {
  width: 64px; height: 64px; border-radius: 12px; overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.ev__photo { width: 100%; height: 100%; object-fit: cover; }

/* Meta row */
.ev__meta { display: flex; align-items: center; gap: 8px; }
.ev__track-label {
  font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}
.ev__tag {
  font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 6px;
  background: #111111; color: #fff;
}
.ev__tag--gold {
  background: linear-gradient(135deg, #d4a53c, #f7c948, #d4a53c);
  color: #1a1400;
}

/* Title */
.ev__title {
  font-family: var(--ff-display); font-size: 15px; font-weight: 800;
  color: #111111; letter-spacing: -.02em; line-height: 1.2;
}
.ev__sub { font-size: 13px; color: #555555; line-height: 1.4; font-weight: 600; }

/* Speaker */
.ev__speaker { margin-top: 2px; }
.ev__speaker-name {
  font-size: 13px; font-weight: 700; color: #111111; display: block;
}
.ev__speaker-role { font-size: 12px; color: #666666; font-weight: 600; display: block; margin-top: 1px; }

/* Panel */
.ev--panel {
  padding: 28px 32px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,.06), 0 12px 40px rgba(0,0,0,.1);
  border: 1px solid rgba(0,0,0,.08);
}
.ev--panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.12);
}
.ev__tag--panel {
  background: #6366f1; color: #ffffff;
}
.ev__panel-title {
  font-family: var(--ff-display); font-size: 24px; font-weight: 900;
  color: #111111; letter-spacing: -.03em;
}
.ev__panel-grid {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px;
}
.ev__panellist {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 6px; border-radius: 100px;
  background: #f5f5f5; border: 1px solid rgba(0,0,0,.1);
  font-size: 13px; font-weight: 700; color: #111111;
  transition: border-color .2s, box-shadow .2s;
}
.ev__panellist:hover { border-color: rgba(0,0,0,.2); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.ev__panellist-initial {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--fog-0); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; letter-spacing: .02em;
}
.ev__panel-mod {
  font-size: 14px; color: rgba(0,0,0,0.5); font-weight: 600; margin-top: 12px;
  padding-top: 12px; border-top: 1px solid rgba(0,0,0,.08);
}
.ev__panel-mod strong { color: #111111; }
.ev__panel-mod-role {
  display: block; font-size: 12px; color: rgba(0,0,0,0.4); font-weight: 600; margin-top: 2px;
}

/* Break */
.ev--break {
  background: #f8f8f8; border-style: dashed; border-color: rgba(0,0,0,.1);
  box-shadow: none; flex: 1;
}
.ev--break:hover { transform: none; box-shadow: none; }
.ev__break-bar { display: flex; align-items: center; gap: 14px; }
.ev__break-icon { font-size: 32px; }
.ev__break-title { font-size: 16px; font-weight: 800; color: #111111; }
.ev__break-sub { font-size: 13px; color: #666666; font-weight: 600; }

/* Keynote — glowing shadow cards (GlowingShadow effect) */
@property --glow-hue {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --glow-rotate {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --glow-bg-x {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --glow-bg-y {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --glow-translate-y {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --glow-bg-size {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --glow-opacity {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --glow-blur {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --glow-scale {
  syntax: "<number>";
  inherits: true;
  initial-value: 2;
}
@property --glow-radius {
  syntax: "<number>";
  inherits: true;
  initial-value: 2;
}
@property --white-shadow {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

.ev--keynote {
  --card-color: #ffffff;
  --border-width: 2px;
  --glow-bg-size: 1;
  --glow-hue: 0;
  --glow-rotate: 0;
  --animation-speed: 4s;
  --interaction-speed: 0.55s;
  --glow-scale: 1.5;
  --scale-factor: 1;
  --glow-blur: 6;
  --glow-opacity: 1;
  --glow-radius: 100;
  --glow-rotate-unit: 1deg;

  background: var(--card-color);
  border: var(--border-width) solid rgba(255,255,255,.06);
  box-shadow: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

/* Glowing border — rainbow bleeds in from edges */
.ev--keynote::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  z-index: 0;
  background: conic-gradient(
    from calc(var(--glow-hue) * 1deg),
    #00e5cc 0deg,
    #0099ff 90deg,
    #a855f7 180deg,
    #f59e0b 270deg,
    #00e5cc 360deg
  );
  filter: blur(6px);
  opacity: 0.2;
  animation: glow-hue-cycle var(--animation-speed) linear infinite;
  transition: opacity 0.4s ease;
}

/* White oval over text area (left-biased), glow shows at edges */
.ev--keynote::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  z-index: 1;
  background: radial-gradient(ellipse 65% 80% at 30% 50%, #ffffff 45%, rgba(255,255,255,0.9) 60%, rgba(255,255,255,0.4) 78%, transparent 100%);
  pointer-events: none;
}

/* Orbiting glow orb */
.ev--keynote > .glow {
  --glow-translate-y: 0;
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  animation: glow-orb-rotate var(--animation-speed) linear infinite;
  transform: rotateZ(calc(var(--glow-rotate) * var(--glow-rotate-unit)));
  transform-origin: center;
  border-radius: calc(var(--glow-radius) * 10vw);
  pointer-events: none;
  z-index: -2;
}

.ev--keynote > .glow::after {
  content: '';
  display: block;
  z-index: -2;
  filter: blur(calc(var(--glow-blur) * 10px));
  width: 130%;
  height: 130%;
  left: -15%;
  top: -15%;
  background: hsl(calc(var(--glow-hue) * 1deg) 85% 65%);
  position: relative;
  border-radius: 50%;
  animation: glow-hue-cycle var(--animation-speed) linear infinite;
  transform: scaleY(calc(var(--glow-scale) * var(--scale-factor) / 1.1))
             scaleX(calc(var(--glow-scale) * var(--scale-factor) * 1.2))
             translateY(calc(var(--glow-translate-y) * 1%));
  opacity: var(--glow-opacity);
}

/* Hover: intensify glow at edges */
.ev--keynote:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.08);
}

.ev--keynote:hover::before {
  opacity: 0.35;
  filter: blur(8px);
}

.ev--keynote:hover::after {
  background: radial-gradient(ellipse 60% 75% at 30% 50%, #ffffff 35%, rgba(255,255,255,0.75) 55%, rgba(255,255,255,0.2) 78%, transparent 100%);
}

.ev--keynote:hover > .glow::after {
  --glow-blur: 2;
  --glow-opacity: 0.5;
  --glow-scale: 2.5;
}

/* Inner content sits above glow layers */
.ev--keynote > .ev__inner,
.ev--keynote > .ev__photo-wrap { position: relative; z-index: 3; }
.ev--keynote > .glow { z-index: 0; }

.ev--keynote .ev__tag {
  background: linear-gradient(135deg, #00e5cc, #00c4ae); color: #050810;
  font-size: 11px; padding: 4px 12px; font-weight: 800;
}
.ev--keynote .ev__title {
  font-size: 20px; color: #111111; font-weight: 900;
}
.ev--keynote .ev__speaker-name {
  font-size: 16px; color: #111111; font-weight: 800;
}
.ev--keynote .ev__speaker-role {
  color: #555555; font-weight: 600;
}
.ev--keynote .ev__track-label {
  color: rgba(0,0,0,0.35);
}
.ev--keynote .ev__photo-wrap {
  box-shadow: 0 4px 20px rgba(0,229,204,.15);
  border: 2px solid rgba(0,229,204,.2);
}

/* Glow animations */
@keyframes glow-hue-cycle {
  from { --glow-hue: 0; }
  to   { --glow-hue: 360; }
}

@keyframes glow-bg-orbit {
  0%   { --glow-bg-x: 0;   --glow-bg-y: 0; }
  25%  { --glow-bg-x: 100; --glow-bg-y: 0; }
  50%  { --glow-bg-x: 100; --glow-bg-y: 100; }
  75%  { --glow-bg-x: 0;   --glow-bg-y: 100; }
  100% { --glow-bg-x: 0;   --glow-bg-y: 0; }
}

@keyframes glow-orb-rotate {
  from {
    --glow-rotate: -70;
    --glow-translate-y: -65;
  }
  25%  { --glow-translate-y: -65; }
  50%  { --glow-translate-y: -65; }
  75%  { --glow-translate-y: -65; }
  to {
    --glow-rotate: 290;
    --glow-translate-y: -65;
  }
}

/* TBA */
.ev--tba {
  border-style: dashed; border-color: var(--line-2);
  background: var(--ink);
}

/* Responsive */
@media (max-width: 900px) {
  .pg-header { grid-template-columns: 1fr; gap: 24px; }
  .tl__row { grid-template-columns: 56px 24px 1fr; }
  .tl__time-col { padding-right: 8px; }
  .tl__time { font-size: 17px; }
  .tl__cards { padding-left: 12px; }
  .tl__cards--dual { grid-template-columns: 1fr; }
  .ev { padding: 14px 16px; border-radius: 12px; }
  .ev--has-photo { flex-direction: row; align-items: center; gap: 12px; }
  .ev__photo-wrap { width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0; }
  .ev--panel { padding: 22px 20px; }
  .ev__panel-title { color: #111111; font-size: 20px; }
  .ev__title { color: #111111; font-size: 16px; }

  /* Tame keynote glow on mobile */
  .ev--keynote { overflow: hidden; }
  .ev--keynote::before {
    inset: 0;
    filter: blur(4px);
    opacity: 0.15;
  }
  .ev--keynote::after {
    background: radial-gradient(ellipse 70% 90% at 40% 50%, #ffffff 50%, rgba(255,255,255,0.92) 65%, rgba(255,255,255,0.5) 80%, transparent 100%);
  }
  .ev--keynote > .glow { display: none; }
}

/* ── Venue ────────────────────────────────────────────────────────────── */
/* Venue — 2-col with image slider + map */
.venue__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.venue__copy .t-h1 { margin-top: 12px; }
.venue__facts {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.venue__fact { display: flex; flex-direction: column; gap: 4px; }
.venue__right { display: flex; flex-direction: column; gap: 16px; }

/* Image slider */
.venue__slider {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--ink-2);
}
.venue__slide-wrap {
  width: 100%; aspect-ratio: 16 / 10; overflow: hidden;
}
.venue__slide-img {
  width: 100%; height: 100%; object-fit: cover;
  animation: venueFadeIn 0.4s ease;
}
@keyframes venueFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.venue__slide-caption {
  padding: 12px 16px;
  font-size: 13px; color: var(--fog-2);
  background: rgba(10,12,20,.85);
  border-top: 1px solid rgba(255,255,255,.06);
}
.venue__arrow {
  position: absolute;
  top: 50%; transform: translateY(-70%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(10,12,20,.75);
  border: 1px solid rgba(255,255,255,.1);
  color: #ffffff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.venue__arrow:hover { background: rgba(10,12,20,.9); border-color: rgba(255,255,255,.2); }
.venue__arrow--left { left: 12px; }
.venue__arrow--right { right: 12px; }
.venue__dots {
  position: absolute; bottom: 48px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.venue__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: none; cursor: pointer;
  transition: background 0.2s;
}
.venue__dot--active { background: var(--red); box-shadow: 0 0 8px var(--red); }

/* Map below slider */
.venue__map-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  height: 200px;
}
.venue__map-embed iframe { display: block; width: 100%; height: 100%; }

@media (max-width: 900px) {
  .venue__grid { grid-template-columns: 1fr; gap: 40px; }
}

.pricing {
  padding-top: 48px; padding-bottom: 48px;
  position: relative; overflow: hidden;
}
.pricing::before {
  content: ''; position: absolute; pointer-events: none;
  width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(247,185,85,.1) 0%, transparent 70%);
  top: -150px; left: 50%; transform: translateX(-50%);
  filter: blur(80px);
}
.pricing .section-head { gap: 8px; margin-bottom: 24px; }
/* ── Pricing ──────────────────────────────────────────────────────────── */
.price__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  padding: 40px 32px 36px;
  border-radius: 24px;
  background: var(--ink);
  border: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 8px 32px rgba(0,0,0,.06);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .25s;
  overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 24px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,0,0,.015) 0%, transparent 70%);
  pointer-events: none;
}
.price-card:hover {
  border-color: var(--line-3);
  transform: translateY(-4px);
  box-shadow: 0 2px 6px rgba(0,0,0,.05), 0 16px 48px rgba(0,0,0,.10);
}

/* ── Featured (VIP Gold) ── */
.price-card--featured {
  background: linear-gradient(175deg, #fffdf8 0%, #fff9ed 30%, var(--ink) 80%);
  border-color: rgba(215, 170, 80, .45);
  box-shadow:
    0 0 0 1px rgba(215,170,80,.12),
    0 4px 24px rgba(215,170,80,.12),
    0 16px 64px -8px rgba(215,170,80,.18);
  transform: translateY(-16px) scale(1.02);
  z-index: 2;
}
.price-card--featured::before {
  background:
    radial-gradient(ellipse at 30% -20%, rgba(247,185,85,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 10%, rgba(196,122,61,.06) 0%, transparent 50%);
}
.price-card--featured:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(215,170,80,.18),
    0 8px 40px rgba(215,170,80,.18),
    0 24px 80px -8px rgba(215,170,80,.22);
}

/* ── Ribbon ── */
.price-card__ribbon {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  padding: 8px 20px 7px;
  background: linear-gradient(135deg, #f7b955 0%, #d4943a 100%);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 4px 16px rgba(215,170,80,.35);
  color: #1a1520;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.price-card__ribbon .t-eyebrow { color: #1a1520; font-size: 11px; }
.price-card__ribbon .t-eyebrow::before { display: none; }

/* ── Head ── */
.price-card__head { display: flex; flex-direction: column; gap: 6px; }
.price-card__name { margin-top: 2px; font-size: 22px; font-weight: 700; letter-spacing: -.02em; }

/* ── Price number ── */
.price-card__num {
  display: flex; align-items: flex-start; gap: 4px;
  line-height: 1;
  padding: 4px 0 0;
}
.price-card__currency { font-size: 20px; font-weight: 600; padding-top: 12px; color: var(--fog-3); }
.price-card__amount {
  font-family: var(--ff-display); font-size: 72px; font-weight: 800;
  letter-spacing: -.05em; color: var(--fog-0);
  line-height: .9;
}
.price-card--featured .price-card__amount {
  background: linear-gradient(180deg, #c47a3d 0%, #f7b955 50%, #c47a3d 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-card__plus { font-size: 40px; padding-top: 10px; margin-right: 4px; color: var(--amber); }
.price-card__per { font-size: 18px; padding-top: 54px; margin-left: 8px; color: var(--fog-3); }

/* ── Separator ── */
.price-card__sep {
  width: 100%; height: 1px;
  background: var(--line-2);
  margin: 4px 0;
}
.price-card--featured .price-card__sep {
  background: linear-gradient(90deg, transparent, rgba(215,170,80,.3), transparent);
}

/* ── Features ── */
.price-card__feats {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.price-card__feats li {
  position: relative;
  padding-left: 30px;
  font-size: 15px; line-height: 1.5;
  color: var(--fog-2);
}
.price-card__feats li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(34, 197, 94, .08);
  color: #22c55e;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 20px; text-align: center;
}
.price-card--featured .price-card__feats li::before {
  background: rgba(215,170,80,.1);
  color: #c47a3d;
}
.price-card--team .price-card__feats li::before {
  background: rgba(0,229,204,.08);
  color: var(--teal);
}

/* ── CTA button overrides ── */
.price-card .btn { margin-top: auto; font-weight: 700; font-size: 15px; letter-spacing: -.01em; }
.price-card--featured .btn--gold {
  background: #d4943a;
  color: #1a1520; border: none;
  box-shadow: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
  transition: background .2s, transform .2s;
}
.price-card--featured .btn--gold:hover {
  background: #c47a3d;
  transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .price__grid { grid-template-columns: 1fr; max-width: 420px; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-4px); }
  .price-card__ribbon { position: relative; top: auto; left: auto; transform: none; border-radius: 10px; margin: -24px -20px 12px; padding: 10px 16px 9px; text-align: center; }
}
/* Pricing: mobile accordion vs desktop grid */
.pricing-mobile-wrap { display: none; }
.pricing-desktop-wrap { display: block; }

@media (max-width: 768px) {
  .pricing-mobile-wrap { display: block; }
  .pricing-desktop-wrap { display: none; }
}

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
}
.faq__head .t-h1 { margin-top: 12px; }
.faq__head p { margin-top: 24px; }
.faq__list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 20px 0;
  text-align: left;
  transition: color var(--d-fast);
}
.faq__q .t-h4 { font-size: 17px; line-height: 1.35; font-weight: 600; }
.faq__q:hover { color: var(--red); }
.faq__toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink-3);
  border: 1px solid var(--line-2);
  color: var(--fog-1);
  flex-shrink: 0;
  transition: transform var(--d-med) var(--e-out), background var(--d-fast);
}
.faq__item.is-open .faq__toggle { transform: rotate(180deg); background: var(--red); color: #fff; border-color: var(--red); }
.faq__a {
  overflow: hidden;
  transition: max-height var(--d-med) var(--e-inout);
}
.faq__a p {
  padding: 0 72px 24px 0;
  color: var(--fog-1);
  font-size: 15px; line-height: 1.55;
  text-wrap: pretty;
}
@media (max-width: 900px) {
  .faq__layout { grid-template-columns: 1fr; gap: 48px; }
  .faq__a p { padding-right: 0; }
}

/* ── Final CTA ────────────────────────────────────────────────────────── */
.final { padding-top: var(--s-6); }
.final__card {
  position: relative;
  padding: 80px 48px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255,77,77,.2), transparent 70%),
    linear-gradient(180deg, rgba(255,245,240,.85), rgba(245,243,240,.9));
  border: 1px solid rgba(255,77,77,.2);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--sh-floating), var(--sh-glow-red);
}
.final__glow {
  position: absolute;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,77,.25), transparent 60%);
  filter: blur(100px);
  top: -400px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.final__title { position: relative; }
@media (max-width: 700px) {
  .final__card { padding: 56px 24px; }
}

/* ── Speakers header layout (copy + stats side by side) ───────── */
.speakers__header {
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: start;
}
.speakers__stats-side {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--line);
  border: 1px solid var(--line-2);
  border-radius: var(--r-med);
  overflow: hidden;
  min-width: 240px;
}
.speakers__stat-box {
  background: var(--ink);
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.speakers__stat-box--highlight {
  background: linear-gradient(135deg, rgba(255,77,77,.08), var(--ink));
}
.speakers__stat-num {
  font-family: var(--ff-display); font-weight: 700; font-size: 28px;
  color: var(--fog-0); letter-spacing: -.02em; line-height: 1;
}
.speakers__stat-box--highlight .speakers__stat-num { color: var(--red); }
.speakers__stat-lbl {
  font-size: 12px; color: var(--fog-3); text-transform: uppercase;
  letter-spacing: .08em; font-weight: 500;
}
@media (max-width: 900px) {
  .speakers__header { grid-template-columns: 1fr; gap: 16px; }
  .speakers__stats-side { min-width: 0; }
  .speakers__stat-box { padding: 12px 16px; }
  .speakers__stat-num { font-size: 20px; }
  .speakers__stat-lbl { font-size: 10px; }
}

/* ── Speakers logo strip ─────────────────────────────────────────────────── */
.speakers__logos {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.speakers__logos-label { color: var(--fog-3); text-transform: uppercase; letter-spacing: .1em; font-size: 11px; }
.speakers__logos-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center;
}
.speakers__logo-tile {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 14px;
  background: #0d0b14;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  width: 180px;
  height: 80px;
  transition: background .3s, transform .2s;
  min-height: 64px;
  overflow: hidden;
}
.speakers__logo-tile--wide {
  width: 220px;
  padding: 16px 12px;
}
.speakers__logo-tile:hover {
  background: #1a1826;
  transform: translateY(-2px);
}
.speakers__logo {
  height: 36px; width: auto; max-width: 100%; opacity: 1;
  border-radius: 0;
  transition: opacity 0.3s;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
@media (max-width: 700px) {
  .speakers__logos-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .speakers__logo-tile {
    width: auto;
    height: 60px;
    padding: 10px 12px;
    border-radius: 10px;
    min-height: auto;
  }
  .speakers__logo { height: 22px; }
}

/* ── Contact form ────────────────────────────────────────────────────── */
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start;
}
.contact__copy { display: flex; flex-direction: column; gap: 16px; }
.contact__details {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 16px;
  padding: 24px;
  border-radius: 16px;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
}
.contact__detail {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500; color: var(--fog-1);
}
.contact__detail svg { color: var(--fog-3); flex-shrink: 0; }
.contact__detail a { color: var(--fog-0); text-decoration: underline; text-underline-offset: 3px; }
.contact__detail-icon { font-size: 18px; }
.contact__form {
  display: flex; flex-direction: column; gap: 16px;
  padding: 32px;
  border-radius: 20px;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.contact__field { display: flex; flex-direction: column; gap: 6px; }
.contact__field label {
  font-size: 13px; font-weight: 600; color: var(--fog-2); text-transform: uppercase; letter-spacing: .08em;
}
.contact__field input,
.contact__field textarea {
  background: rgba(0,0,0,.03);
  border: 1px solid var(--line-2);
  border-radius: var(--r-med);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--fog-0);
  font-family: var(--ff-body);
  transition: border-color 0.2s;
}
.contact__field input:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255,77,77,.15);
}
.contact__field input::placeholder,
.contact__field textarea::placeholder { color: var(--fog-4); }
.contact__submit { width: 100%; justify-content: center; margin-top: 4px; }
.contact__submit--sent { background: var(--teal); }
.contact__success {
  text-align: center; font-size: 14px; color: var(--teal); margin-top: 8px;
}
@media (max-width: 700px) {
  .contact__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.footer {
  padding: 96px 0 40px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(255,77,77,.04), transparent 70%),
    var(--ink);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: var(--fog-2); font-size: 14.5px; transition: color var(--d-fast); }
.footer__col a:hover { color: var(--fog-0); }
.footer__col .t-eyebrow { margin-bottom: 8px; }
.footer__foot {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer__foot a { transition: color var(--d-fast); }
.footer__foot a:hover { color: var(--fog-0); }
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ── Sponsor page ───────────────────────────────────────────────── */
.sponsor__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.sponsor__card {
  padding: 36px 28px;
  border-radius: 20px;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.sponsor__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.sponsor__card--featured {
  border-color: rgba(139,92,246,0.3);
  background: linear-gradient(160deg, rgba(139,92,246,0.06), var(--ink-2));
  box-shadow: 0 0 60px rgba(139,92,246,0.06);
  transform: scale(1.03);
}
.sponsor__card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.sponsor__tier-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.sponsor__tier-badge--platinum {
  background: rgba(139,92,246,0.15);
  color: #a78bfa;
}
.sponsor__tier-badge--gold {
  background: rgba(229,160,75,0.15);
  color: #e5a04b;
}
.sponsor__tier-badge--silver {
  background: rgba(255,255,255,0.06);
  color: var(--fog-2);
}
.sponsor__price {
  font-size: 36px;
  font-weight: 800;
  color: var(--fog-0);
  letter-spacing: -0.03em;
  font-family: var(--ff-display);
}
.sponsor__gst {
  font-size: 16px;
  font-weight: 500;
  color: var(--fog-3);
}
.sponsor__perks {
  list-style: none;
  padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.sponsor__perks li {
  font-size: 15px;
  color: var(--fog-1);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.sponsor__perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00e5cc;
  font-weight: 700;
}
.sponsor__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.sponsor__stat { text-align: center; }
.sponsor__stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--fog-0);
  font-family: var(--ff-display);
  letter-spacing: -0.02em;
}
.sponsor__stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fog-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
@media (max-width: 800px) {
  .sponsor__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .sponsor__card--featured { transform: none; }
  .sponsor__card--featured:hover { transform: translateY(-4px); }
  .sponsor__stats { gap: 24px; }
  .sponsor__stat-num { font-size: 28px; }
}


