/* ============================================================
   PB GALA — V3 — Light glassmorphic theme
   Soft pastel gradient bg + frosted glass cards + bold red accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --pb-red: #ED1C24;
  --pb-red-600: #C5161D;
  --pb-red-700: #600A0D;
  --pb-red-50: #FDF2F2;
  --pb-red-100: #FBE4E5;
  --pb-ink: #16181C;
  --pb-ink-2: #2B2F36;
  --pb-graphite: #4A5159;
  --pb-slate: #6B7280;
  --pb-mute: #9AA1AA;
  --pb-line: rgba(22, 24, 28, 0.08);
  --pb-line-strong: rgba(22, 24, 28, 0.14);
  --pb-paper: #FFFFFF;
  --pb-cream: #FAF6EE;

  /* Glass surfaces */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 18px 50px rgba(22, 24, 28, 0.10), 0 6px 14px rgba(22, 24, 28, 0.05);
  --glass-shadow-lg: 0 30px 80px rgba(237, 28, 36, 0.12), 0 8px 20px rgba(22, 24, 28, 0.06);

  --font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--pb-ink);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%,    rgba(237, 28, 36, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 100% 20%,  rgba(255, 200, 130, 0.32) 0%, transparent 60%),
    radial-gradient(ellipse 90% 70% at 50% 110%,  rgba(180, 200, 255, 0.30) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 0% 100%,   rgba(237, 28, 36, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #FFF8F2 0%, #F4F1FB 50%, #FFF6F0 100%);
  background-attachment: fixed;
  position: relative;
}

/* Soft floating orbs that shimmer */
body::before, body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
body::before {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(237, 28, 36, 0.35), transparent 70%);
  top: -10%; right: -8%;
  animation: float1 22s ease-in-out infinite;
}
body::after {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 180, 90, 0.28), transparent 70%);
  bottom: -15%; left: -10%;
  animation: float2 28s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 60px) scale(1.1); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -50px) scale(0.95); }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--pb-red); color: #fff; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* Glass card primitive */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: var(--glass-shadow);
}

.kw {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.kw::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -0.04em;
  height: 0.14em;
  background: var(--pb-red);
  border-radius: 2px;
}

/* ============================================================
   NAV — floating glass pill
   ============================================================ */
.nav {
  position: fixed;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 40px);
  max-width: 1200px;
  transition: all 320ms cubic-bezier(.2,.7,.2,1);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 14px 20px 14px 24px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 10px 30px rgba(22, 24, 28, 0.08);
}
.nav.scrolled .nav-inner {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 40px rgba(22, 24, 28, 0.12);
}
.nav-brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 13px; }
.nav-brand .nav-logo {
  height: 55px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 13px; font-weight: 600;
  color: var(--pb-graphite);
}
.nav-links a { transition: color 200ms; }
.nav-links a:hover { color: var(--pb-red); }
.nav-edition {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--pb-ink);
  color: #fff;
  border-radius: 999px;
  font-weight: 700; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap;
}
.nav-edition::before { content: ''; width: 6px; height: 6px; background: var(--pb-red); border-radius: 50%; }
@media (max-width: 860px) { .nav-links { display: none; } }
@media (max-width: 720px) {
  .nav-brand .nav-logo { height: 32px; }
}

/* ============================================================
   HERO — light, airy, floating elements
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-inner { width: 100%; position: relative; z-index: 2; }

.hero-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pb-red);
  margin-bottom: 36px;
  box-shadow: 0 4px 16px rgba(22, 24, 28, 0.06);
  opacity: 0;
  animation: rise 800ms cubic-bezier(.16,1,.3,1) 200ms forwards;
}
.hero-eyebrow-pill::before {
  content: ''; width: 8px; height: 8px;
  background: var(--pb-red); border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(48px, 6vw, 90px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: var(--pb-ink);
  opacity: 0;
  animation: rise 1000ms cubic-bezier(.16,1,.3,1) 350ms forwards;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  max-width: 50ch;
  color: var(--pb-graphite);
  font-weight: 500;
  margin-bottom: 40px;
  opacity: 0;
  animation: rise 1000ms cubic-bezier(.16,1,.3,1) 500ms forwards;
}
.hero-sub strong { font-weight: 800; color: var(--pb-ink); }

.hero-meta-card {
  padding: 32px;
  border-radius: 24px;
  opacity: 0;
  animation: rise 1000ms cubic-bezier(.16,1,.3,1) 700ms forwards;
}
.hero-meta-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--pb-line);
}
.hero-meta-row:last-child { border-bottom: 0; }
.hero-meta-row:first-child { padding-top: 0; }
.hero-meta-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pb-slate);
}
.hero-meta-value { font-weight: 800; font-size: 17px; letter-spacing: -0.01em; text-align: right; }

/* Floating decorative card on right side */
.hero-deco {
  position: relative;
  height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.hero-card {
  position: absolute;
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 20px 50px rgba(22, 24, 28, 0.12);
}
.hero-card-1 {
  top: 0; left: 0;
  width: 240px;
  animation: floatCard1 8s ease-in-out infinite;
}
.hero-card-2 {
  top: 50%; right: 0;
  transform: translateY(-50%);
  width: 260px;
  background: var(--pb-ink);
  color: #fff;
  border-color: rgba(255,255,255,0.1);
  animation: floatCard2 9s ease-in-out infinite;
}
.hero-card-3 {
  bottom: 0; left: 30%;
  width: 220px;
  background: var(--pb-red);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
  animation: floatCard3 10s ease-in-out infinite;
}
@keyframes floatCard1 {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  50% { transform: translate(8px, -10px) rotate(-2deg); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(-50%) rotate(2deg); }
  50% { transform: translateY(calc(-50% - 12px)) rotate(2deg); }
}
@keyframes floatCard3 {
  0%, 100% { transform: translate(0, 0) rotate(-1deg); }
  50% { transform: translate(-6px, 8px) rotate(-1deg); }
}

.hero-card-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; margin-bottom: 10px; }
.hero-card-title { font-weight: 800; font-size: 20px; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 12px; }
.hero-card-stat { font-weight: 800; font-size: 36px; line-height: 1; letter-spacing: -0.03em; margin-top: 4px; }

@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(237,28,36,0.5); } 50% { box-shadow: 0 0 0 10px rgba(237,28,36,0); } }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-deco { height: 360px; }
  .hero-card-1 { width: 200px; }
  .hero-card-2 { width: 220px; }
  .hero-card-3 { width: 200px; }
}

/* ============================================================
   COUNTDOWN — glass strip
   ============================================================ */
.countdown {
  padding: 32px 0;
  position: relative;
  z-index: 1;
}
.countdown-inner {
  padding: 24px 32px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.countdown-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pb-graphite);
  display: flex; align-items: center; gap: 12px;
}
.countdown-label::before {
  content: ''; width: 8px; height: 8px;
  background: var(--pb-red); border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
.countdown-units { display: flex; gap: 28px; align-items: center; }
.countdown-unit { text-align: center; min-width: 56px; }
.countdown-num {
  font-weight: 800; font-size: 32px; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums; line-height: 1; color: var(--pb-ink);
}
.countdown-suffix { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pb-slate); margin-top: 6px; }
.countdown-divider { font-size: 28px; font-weight: 300; opacity: 0.2; }
@media (max-width: 720px) {
  .countdown-inner { border-radius: 32px; }
  .countdown-units { gap: 16px; } .countdown-num { font-size: 26px; } .countdown-divider { display: none; }
}

/* ============================================================
   SECTION CHROME
   ============================================================ */
.section { padding: 120px 0; position: relative; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pb-red); margin-bottom: 20px;
}
.section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--pb-red); }

.section-title {
  font-weight: 800;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  max-width: 22ch;
  color: var(--pb-ink);
}
.section-lead {
  font-size: 17px; line-height: 1.55; max-width: 64ch;
  color: var(--pb-graphite); font-weight: 500;
}
@media (max-width: 720px) { .section { padding: 72px 0; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
  align-items: center;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.about-stat {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 20px 50px rgba(22, 24, 28, 0.10);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.about-stat:nth-child(1) { transform: rotate(-1.5deg); }
.about-stat:nth-child(2) {
  background: var(--pb-ink);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
  transform: rotate(1.5deg);
}
.about-stat:nth-child(3) { transform: rotate(-1deg); }
.about-stat:nth-child(4) {
  background: var(--pb-red);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  transform: rotate(1deg);
}
.about-stat:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 28px 60px rgba(22, 24, 28, 0.16);
}
.about-stat .num {
  font-weight: 800; font-size: 56px; line-height: 1;
  color: var(--pb-ink); letter-spacing: -0.04em; margin-bottom: 10px;
}
.about-stat:nth-child(2) .num,
.about-stat:nth-child(4) .num { color: #fff; }
.about-stat .num .accent { color: var(--pb-red); }
.about-stat:nth-child(2) .num .accent,
.about-stat:nth-child(4) .num .accent { color: #fff; opacity: 0.9; }
.about-stat .lbl { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--pb-graphite); line-height: 1.4; }
.about-stat:nth-child(2) .lbl,
.about-stat:nth-child(4) .lbl { color: rgba(255,255,255,0.75); }
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 860px) {
  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-stat .num { font-size: 44px; }
}

/* ============================================================
   AWARDS — glass cards stacked
   ============================================================ */
.awards-list {
  display: grid; gap: 16px; margin-top: 56px;
}
.award-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 36px;
  border-radius: 20px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 8px 24px rgba(22, 24, 28, 0.06);
  transition: all 400ms cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
}
.award-row::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(237, 28, 36, 0.06), transparent 60%);
  opacity: 0; transition: opacity 400ms;
}
.award-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(237, 28, 36, 0.15);
  border-color: rgba(237, 28, 36, 0.25);
}
.award-row:hover::before { opacity: 1; }
.award-row:hover .award-arrow { background: var(--pb-red); border-color: var(--pb-red); color: #fff; transform: translateX(6px); }

.award-num {
  font-weight: 800; font-size: 28px; color: var(--pb-red);
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
  position: relative; z-index: 1;
}
.award-body { display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.award-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pb-slate);
}
.award-title {
  font-weight: 800; font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.1; letter-spacing: -0.02em; color: var(--pb-ink);
}
.award-desc { font-size: 14px; line-height: 1.55; color: var(--pb-graphite); margin-top: 4px; max-width: 56ch; font-weight: 500; }
.award-winner {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 12px;
  padding: 8px 14px;
  border: 1px dashed var(--pb-line-strong);
  border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pb-graphite);
  width: fit-content;
}
.award-winner::before { content: ''; width: 6px; height: 6px; background: var(--pb-red); border-radius: 50%; }
.award-arrow {
  width: 52px; height: 52px;
  border: 1px solid var(--pb-line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--pb-ink);
  transition: all 360ms cubic-bezier(.2,.7,.2,1);
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.5);
}
@media (max-width: 720px) {
  .award-row { grid-template-columns: 1fr; gap: 12px; padding: 24px; }
  .award-arrow { display: none; }
}

/* ============================================================
   AGENDA
   ============================================================ */
.agenda-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
  margin-top: 48px; align-items: start;
}
.agenda-list {
  padding: 16px 32px;
  border-radius: 24px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}
.agenda-row {
  display: grid; grid-template-columns: 80px 1fr; gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--pb-line);
  align-items: baseline;
}
.agenda-row:last-child { border-bottom: 0; }
.agenda-time {
  font-weight: 800; font-size: 22px; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums; color: var(--pb-red);
}
.agenda-content h4 { font-weight: 800; font-size: 19px; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 6px; }
.agenda-content p { font-size: 14px; line-height: 1.5; color: var(--pb-graphite); font-weight: 500; }

.agenda-card {
  padding: 36px;
  border-radius: 24px;
  background: var(--pb-ink);
  color: #fff;
  position: relative; overflow: hidden;
  box-shadow: 0 24px 50px rgba(22, 24, 28, 0.20);
}
.agenda-card-mark {
  position: absolute; top: -20px; right: -20px;
  width: 220px; opacity: 0.06;
  filter: brightness(0) invert(1);
}
.agenda-card-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pb-red); margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
}
.agenda-card-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--pb-red); border-radius: 50%; }
.agenda-card h3 { font-weight: 800; font-size: 28px; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 18px; }
.agenda-card-info {
  display: grid; gap: 14px; margin-top: 24px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative; z-index: 1;
}
.agenda-card-info-row { display: flex; justify-content: space-between; gap: 24px; font-size: 14px; }
.agenda-card-info-row .k { opacity: 0.55; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; }
.agenda-card-info-row .v { font-weight: 700; text-align: right; }
@media (max-width: 860px) { .agenda-grid { grid-template-columns: 1fr; gap: 24px; } .agenda-card { padding: 28px; } }

/* ============================================================
   SPONSORS
   ============================================================ */
.sponsors-tier {
  margin-top: 48px;
  padding: 32px;
  border-radius: 24px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}
.sponsors-tier-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.sponsors-tier-name { display: flex; align-items: baseline; gap: 14px; }
.sponsors-tier-num { font-weight: 700; font-size: 13px; color: var(--pb-mute); letter-spacing: 0.04em; font-variant-numeric: tabular-nums; }
.sponsors-tier-label { font-weight: 800; font-size: clamp(28px, 4vw, 44px); letter-spacing: -0.03em; line-height: 1; color: var(--pb-ink); }
.sponsors-tier-label.gold { color: #B8870E; }
.sponsors-tier-label.silver { color: #6B7280; }
.sponsors-tier-meta {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pb-slate);
  padding: 6px 12px;
  background: rgba(22, 24, 28, 0.05);
  border-radius: 999px;
}

.sponsors-grid {
  display: grid; gap: 12px;
}
.sponsors-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.sponsors-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.sponsors-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 860px) {
  .sponsors-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .sponsors-grid.cols-6 { grid-template-columns: repeat(3, 1fr); }
}

.sponsor-cell {
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--pb-line);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: all 300ms cubic-bezier(.2,.7,.2,1);
}
.sponsor-cell:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(237, 28, 36, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(22, 24, 28, 0.08);
}
.sponsor-cell:hover .sponsor-logo { opacity: 1; }
.sponsor-logo {
  opacity: 0.7; transition: opacity 300ms;
  font-weight: 800; font-size: 16px; letter-spacing: -0.01em;
  color: var(--pb-ink);
  display: flex; align-items: center; gap: 10px;
  padding: 16px;
}
.sponsor-cell.gold-cell { aspect-ratio: 4 / 3; }
.sponsor-cell.gold-cell .sponsor-logo { font-size: 20px; }
.sponsor-mark-svg { width: 22px; height: 22px; background: var(--pb-red); border-radius: 4px; flex-shrink: 0; }
.sponsor-cell.gold-cell .sponsor-mark-svg { background: #B8870E; width: 26px; height: 26px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 48px; }
.gallery-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding: 6px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(20px);
}
.gallery-tab {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  color: var(--pb-graphite);
  transition: all 200ms;
}
.gallery-tab:hover { color: var(--pb-ink); }
.gallery-tab.active { background: var(--pb-red); color: #fff; }

.gallery-grid {
  column-count: 3;
  column-gap: 14px;
}
.gallery-tile {
  break-inside: avoid;
  margin: 0 0 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(237,28,36,0.05));
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  position: relative; overflow: hidden;
  display: block;
  cursor: pointer; transition: transform 400ms cubic-bezier(.2,.7,.2,1), box-shadow 400ms;
  backdrop-filter: blur(10px);
}
.gallery-tile.placeholder {
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
}
.gallery-tile::after {
  content: attr(data-label); position: absolute; bottom: 12px; left: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pb-graphite); opacity: 0.6; transition: opacity 300ms;
}
.gallery-tile:hover { transform: scale(0.99); box-shadow: 0 14px 30px rgba(22, 24, 28, 0.08); }
.gallery-tile:hover::after { opacity: 1; color: var(--pb-red); }
.gallery-tile .placeholder-mark { font-weight: 800; font-size: 22px; opacity: 0.22; letter-spacing: 0.04em; color: var(--pb-graphite); }
.gallery-tile img {
  width: 100%; height: auto;
  display: block;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile:has(img)::after { color: #fff; opacity: 0; }
.gallery-tile:has(img):hover::after {
  opacity: 1; color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

@media (max-width: 1100px) {
  .gallery-grid { column-count: 2; }
}
@media (max-width: 720px) {
  .gallery-grid {
    column-count: unset;
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -20px;
    padding: 4px 20px 16px;
    scroll-padding: 0 20px;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-tile {
    flex: 0 0 85%;
    scroll-snap-align: start;
    margin: 0;
    aspect-ratio: 4 / 5;
  }
  .gallery-tile img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
  }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 11, 14, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0; pointer-events: none;
  transition: opacity 280ms ease;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-figure {
  max-width: 92vw; max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin: 0;
}
.lightbox-img {
  max-width: 92vw; max-height: 82vh;
  width: auto; height: auto;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  display: block;
}
.lightbox-caption {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 200ms, transform 200ms;
  backdrop-filter: blur(8px);
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255,255,255,0.18); }
.lightbox-close {
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  font-size: 28px; font-weight: 300;
  line-height: 1;
}
.lightbox-nav {
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  padding: 0;
}
.lightbox-nav svg { display: block; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-nav:hover { transform: translateY(-50%) scale(1.05); }
@media (max-width: 720px) {
  .lightbox { padding: 16px; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 28px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 16px; right: 16px; }
}

/* ============================================================
   MARQUEE — soft gradient
   ============================================================ */
.marquee {
  background: linear-gradient(90deg, var(--pb-red), #FF6B47, var(--pb-red));
  padding: 28px 0;
  overflow: hidden; position: relative;
  margin: 40px 0;
}
.marquee-track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-weight: 800; font-size: clamp(28px, 4vw, 52px); letter-spacing: -0.035em;
  color: #fff;
}
.marquee-track .star { color: rgba(255,255,255,0.5); font-weight: 400; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   FINAL CTA — big glass bowl
   ============================================================ */
.cta-final { padding: 80px 0; }
.cta-final-card {
  padding: 96px 48px;
  border-radius: 32px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: var(--glass-shadow-lg);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-final-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(237, 28, 36, 0.18), transparent 65%);
  pointer-events: none;
}
.cta-final h2 {
  font-weight: 800; font-size: clamp(48px, 7vw, 100px);
  line-height: 1; letter-spacing: -0.04em; margin-bottom: 28px;
  position: relative; z-index: 1;
}
.cta-final h2 .lead { display: block; font-size: 0.4em; color: var(--pb-red); letter-spacing: 0.18em; margin-bottom: 14px; font-weight: 700; }
.cta-final p { font-size: 17px; line-height: 1.55; color: var(--pb-graphite); max-width: 56ch; margin: 0 auto 40px; font-weight: 500; position: relative; z-index: 1; }

.cta-meta {
  display: inline-flex; gap: 0;
  padding: 6px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  position: relative; z-index: 1;
}
.cta-meta-item {
  padding: 12px 22px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  border-right: 1px solid var(--pb-line);
  color: var(--pb-ink);
}
.cta-meta-item:last-child { border-right: 0; }
.cta-meta-item .k { opacity: 0.5; margin-right: 8px; font-weight: 600; }

@media (max-width: 720px) {
  .cta-final-card { padding: 60px 28px; }
  .cta-meta {
    flex-direction: column;
    width: 100%;
    border-radius: 24px;
    padding: 8px;
  }
  .cta-meta-item {
    border-right: 0;
    border-bottom: 1px solid var(--pb-line);
    text-align: center;
  }
  .cta-meta-item:last-child { border-bottom: 0; }
}

.footer { padding: 48px 0 36px; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(20px);
}
.footer-brand { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 700; color: var(--pb-graphite); }
.footer-brand .footer-logo {
  height: 55px;
  width: auto;
  display: block;
}
.footer-meta { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pb-slate); }
@media (max-width: 720px) {
  .footer-inner {
    border-radius: 32px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 18px;
    padding: 28px 24px;
  }
  .footer-brand { justify-content: center; }
  .footer-meta { text-align: center; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 800ms cubic-bezier(.16,1,.3,1), transform 800ms cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
