/* Nunito font is loaded via <link rel="preconnect"> + <link rel="stylesheet"> in each page's
   <head> (faster than @import, which serializes the font fetch behind the CSS download). */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* =========================================================================
   THEME — Cinematic Pacific Northwest sci-fi / alien invasion at golden hour
   =========================================================================
   Token system is layered: RAW palette (single source of truth) →
   SEMANTIC tokens (what components should reference) →
   BACKWARD-COMPAT ALIASES (so old --black / --purple etc. keep working
   while we incrementally refactor existing references). Edit the RAW
   layer to re-theme the entire site.
   ========================================================================= */
:root {
  /* --- RAW PALETTE ----------------------------------------------------- */
  /* Warm sky / sunset zone */
  --sky-coral:        #E8A18B;   /* soft coral/salmon — sunset warm */
  --sky-peach:        #F2C4A8;   /* dusty peach */
  --sky-cream:        #F5E6D3;   /* warm cream highlight */
  --sky-mauve:        #B89BB0;   /* muted lavender-mauve cloud */
  --sky-blue:         #A8C4D4;   /* pale sky blue */
  --sun-glow:         #FBF3E0;   /* warm off-white sun */

  /* Cool city / distance zone */
  --steel-slate:      #5B7A8C;   /* slate blue-grey */
  --steel-deep:       #3A5560;   /* deep teal-slate */
  --steel-muted:      #7C95A3;   /* muted steel */

  /* Deep ocean zone */
  --ocean-top:        #1B5E6B;   /* shallows */
  --ocean-deep:       #0A2A33;   /* deep water */
  --ocean-abyss:      #06161A;   /* near-black */

  /* Bioluminescent accent (sparingly) */
  --bio-aqua:         #2FD4A8;
  --bio-aqua-bright:  #4FE0C0;

  /* Danger / poster red (primary accent).
     --alert-red is the AA-compliant button fill (4.7:1 against warm white).
     --alert-red-bright is the vibrant poster-red — used for glows and large/bold text only.
     --alert-red-deep is the pressed/border tone. */
  --alert-red:         #C42820;
  --alert-red-bright:  #E63329;
  --alert-red-deep:    #A4221A;

  /* Neutrals */
  --text-warm:        #F5EFE6;   /* warm white on dark */
  --text-deep:        #1A2A30;   /* deep slate on light */

  /* --- SEMANTIC TOKENS ------------------------------------------------- */
  --bg-page:           var(--ocean-deep);
  --bg-section-dark:   var(--ocean-deep);
  --bg-section-deep:   var(--ocean-abyss);
  --bg-card:           #0E2A30;
  --bg-card-hover:     #143540;
  --surface-elevated:  #102E36;
  --bg-overlay:        rgba(10,42,51,0.92);          /* scrolled header */
  --bg-overlay-deep:   rgba(6,22,26,0.85);

  --border-soft:       rgba(47,212,168,0.18);        /* faint aqua edge */
  --border-soft-strong:rgba(47,212,168,0.35);
  --border-coral:      rgba(232,161,139,0.22);
  --border-hairline:   rgba(245,239,230,0.06);

  --text-primary:      var(--text-warm);
  --text-muted:        rgba(245,239,230,0.62);
  --text-faint:        rgba(245,239,230,0.42);
  --text-on-light:     var(--text-deep);

  --accent-primary:    var(--alert-red);
  --accent-pressed:    var(--alert-red-deep);
  --accent-hover:      var(--bio-aqua-bright);
  --accent-glow:       var(--bio-aqua);
  --accent-warm:       var(--sky-coral);

  /* --- SHADOWS / BLOOMS ------------------------------------------------ */
  --shadow-bloom-aqua:  0 0 24px rgba(47,212,168,0.45), 0 0 48px rgba(47,212,168,0.20);
  --shadow-bloom-coral: 0 0 24px rgba(232,161,139,0.40), 0 0 48px rgba(232,161,139,0.18);
  --shadow-cta:         0 6px 18px rgba(196,40,32,0.45), inset 0 1px 0 rgba(255,255,255,0.20);
  --shadow-cta-bloom:   0 0 28px rgba(47,212,168,0.55), 0 0 60px rgba(47,212,168,0.25);
  --shadow-card:        0 12px 28px rgba(0,0,0,0.42), 0 0 0 1px var(--border-soft);
  --shadow-card-hover:  0 18px 40px rgba(0,0,0,0.52), 0 0 32px rgba(47,212,168,0.24), 0 0 0 1px var(--border-soft-strong);
  --shadow-card-warm:   0 18px 40px rgba(0,0,0,0.52), 0 0 32px rgba(232,161,139,0.28), 0 0 0 1px var(--border-coral);

  /* --- GRADIENTS ------------------------------------------------------- */
  --gradient-ocean-depth:    linear-gradient(180deg, var(--ocean-top) 0%, var(--ocean-deep) 55%, var(--ocean-abyss) 100%);
  --gradient-section-down:   linear-gradient(180deg, var(--ocean-deep) 0%, var(--ocean-abyss) 100%);
  --gradient-section-up:     linear-gradient(180deg, var(--ocean-abyss) 0%, var(--ocean-deep) 100%);
  --gradient-golden-hour:    linear-gradient(180deg, var(--sky-cream) 0%, var(--sky-peach) 24%, var(--sky-coral) 50%, var(--steel-slate) 78%, var(--steel-deep) 100%);
  --gradient-sunset-glow:    radial-gradient(ellipse at 75% 22%, rgba(232,161,139,0.32) 0%, transparent 58%);
  --gradient-bio-glow:       radial-gradient(ellipse at 15% 80%, rgba(47,212,168,0.14) 0%, transparent 55%);
  --gradient-mauve-haze:     radial-gradient(ellipse at 28% 12%, rgba(184,155,176,0.20) 0%, transparent 52%);

  /* --- BACKWARD-COMPAT ALIASES ----------------------------------------- */
  /* Existing CSS still references these names; they now map onto the new
     semantic system. Refactor sites incrementally and remove these once
     callers are migrated. */
  --black:          var(--ocean-abyss);
  --dark:           var(--ocean-deep);
  --dark2:          var(--surface-elevated);
  --card:           var(--bg-card);
  --purple:         var(--accent-primary);     /* big swap: orange → poster red */
  --purple-bright:  var(--accent-hover);       /* bio-aqua bright on hover */
  --teal:           var(--accent-glow);        /* bio-aqua */
  --rose:           var(--sky-mauve);          /* dusty mauve for warm variety */
  --amber:          var(--bio-aqua);            /* unified teal accent */
  --green:          var(--accent-glow);
  --neon-green:     var(--accent-hover);
  --white:          var(--text-primary);
  --gray:           var(--text-muted);
  --border:         var(--border-soft);
  --border-light:   var(--border-hairline);
}

/* ===== BASE ===== */
body {
  background:
    /* sunset glow upper right */
    radial-gradient(ellipse 70% 55% at 75% 0%, rgba(232,161,139,0.13) 0%, transparent 70%),
    /* mauve cloud upper left */
    radial-gradient(ellipse 50% 40% at 18% 8%, rgba(184,155,176,0.10) 0%, transparent 70%),
    /* bioluminescent depth lower */
    radial-gradient(ellipse 60% 50% at 28% 100%, rgba(47,212,168,0.10) 0%, transparent 70%),
    /* deep ocean column */
    linear-gradient(180deg, var(--ocean-deep) 0%, var(--ocean-abyss) 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 17px;
  overflow-x: hidden;
}

/* ===== LAYOUT ===== */
section { padding: 96px 40px; }
.container { max-width: 1100px; margin: 0 auto; }

/* ===== TYPOGRAPHY UTILITIES ===== */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon-green);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 0 10px rgba(79,224,192,0.7);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--neon-green);
  box-shadow: 0 0 8px rgba(79,224,192,1);
  flex-shrink: 0;
}
.section-title {
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.35),
    0 6px 20px rgba(0,0,0,0.40);
}
.section-title span {
  color: var(--accent-glow);
  text-shadow: 0 2px 0 rgba(0,0,0,0.30);
}
.section-blurb {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 600px;
  font-weight: 400;
  margin-bottom: 48px;
}

/* ===== BLURB BOX ===== */
#blurb { background: var(--black); padding: 64px 40px; position: relative; }
.blurb-box {
  max-width: 820px; margin: 0 auto; text-align: center;
  border: 1px solid var(--border); background: var(--card);
  padding: 52px 60px; position: relative;
}
.blurb-box::before {
  content: '◆'; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%); background: var(--black);
  color: var(--amber); padding: 0 12px; font-size: 14px;
}
.blurb-text {
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-size: clamp(17px, 2.6vw, 24px);
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  line-height: 1.65;
  letter-spacing: 0;
}
.blurb-text strong { color: var(--teal); font-style: normal; font-weight: 800; }
.blurb-tagline {
  margin-top: 20px; font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose); font-weight: 600; font-style: normal;
}

/* ===== BUTTONS ===== */
@keyframes btn-bounce {
  0%   { transform: translateY(0); }
  28%  { transform: translateY(-8px); }
  52%  { transform: translateY(-3px); }
  72%  { transform: translateY(-6px); }
  88%  { transform: translateY(-2px); }
  100% { transform: translateY(-4px); }
}
.btn-primary {
  background: var(--accent-primary);
  color: var(--text-warm);
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  text-shadow: 0 1px 1px rgba(0,0,0,0.35);
  box-shadow:
    0 4px 14px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 0 -2px 0 rgba(0,0,0,0.18);
  transition: background 0.2s, box-shadow 0.25s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--accent-primary);
  animation: btn-bounce 0.42s ease forwards;
  box-shadow:
    0 6px 18px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -2px 0 rgba(0,0,0,0.22),
    0 0 28px rgba(47,212,168,0.55),
    0 0 56px rgba(47,212,168,0.22);
}
.btn-outline {
  background: rgba(6,22,26,0.60);
  backdrop-filter: blur(8px);
  color: var(--text-primary);
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1.5px solid rgba(168,196,212,0.65);
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--accent-glow);
  color: var(--accent-glow);
  animation: btn-bounce 0.42s ease forwards;
  box-shadow: 0 0 22px rgba(47,212,168,0.5), 0 0 44px rgba(47,212,168,0.18);
}
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-glow);
  text-decoration: none;
  border: 1px solid rgba(47,212,168,0.3);
  padding: 8px 16px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-teal:hover {
  background: rgba(47,212,168,0.12);
  border-color: var(--accent-hover);
  color: var(--accent-hover);
  animation: btn-bounce 0.42s ease forwards;
  box-shadow: 0 0 16px rgba(47,212,168,0.45);
}

/* ===== SCROLL HEADER ===== */
.scroll-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-overlay);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  transition: box-shadow 0.4s ease;
  box-shadow: none;
}
.scroll-header.scrolled {
  box-shadow: 0 1px 0 rgba(47,212,168,0.10) inset, 0 6px 24px rgba(0,0,0,0.4);
}
.header-left { display: flex; flex-direction: row; align-items: center; gap: 18px; }
.header-logo {
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
}
.header-logo img { display: block; height: 44px; width: auto; }
.header-logo span { color: var(--teal); }
.header-dates {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-size: 13px;
  color: var(--text-primary);
  white-space: nowrap;
  line-height: 1;
}
.hd-date { font-weight: 700; letter-spacing: 0.10em; }
.hd-sep  { color: var(--teal); font-weight: 400; }
.hd-loc  { font-weight: 500; letter-spacing: 0.01em; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
/* Legacy flat-nav anchor styles removed — superseded by .nav-link / .nav-dropdown in the PRIMARY NAV section.
   They set color:var(--gray) with higher specificity than .nav-link, which turned the "Who We Are" link gray. */
.header-nav .sep { color: rgba(245,239,230,0.18); font-size: 10px; }
.header-nav .social-icons { display: flex; gap: 8px; margin-left: 8px; }
.header-nav .social-icons a { font-size: 13px; padding: 4px 6px; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  /* Enlarged tap target without shifting header layout */
  padding: 14px 10px;
  margin: -14px -10px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--bg-overlay-deep);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border-soft);
  padding: 24px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 18px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  font-weight: 600;
}
.mobile-menu a:hover { color: var(--accent-glow); }

/* ===== SUB-PAGE HERO BANNER — dramatic golden hour over ocean ===== */
.page-hero {
  padding-top: 64px;
  height: 40vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  background:
    /* bright sun bloom upper right — the key light */
    radial-gradient(ellipse 60% 70% at 80% 5%, rgba(251,243,224,0.62) 0%, rgba(245,206,180,0.42) 20%, rgba(232,161,139,0.22) 45%, transparent 70%),
    /* warm coral wash across top half */
    radial-gradient(ellipse 110% 55% at 50% 0%, rgba(232,161,139,0.55) 0%, rgba(232,161,139,0.25) 40%, transparent 75%),
    /* mauve cloud bloom upper left */
    radial-gradient(ellipse 55% 50% at 18% 16%, rgba(184,155,176,0.50) 0%, transparent 60%),
    /* deep coral fade into the sky band */
    radial-gradient(ellipse 70% 30% at 50% 38%, rgba(230,51,41,0.10) 0%, transparent 70%),
    /* bioluminescent shimmer near the bottom */
    radial-gradient(ellipse 65% 35% at 50% 100%, rgba(47,212,168,0.28) 0%, transparent 65%),
    /* GOLDEN-HOUR depth gradient — peach sky → coral → steel → deep ocean.
       Ocean pushed LOWER (88%) so sunset zone dominates the visual field. */
    linear-gradient(180deg,
      var(--sky-peach)             0%,
      var(--sky-coral)             18%,
      rgba(232,161,139,0.85)       34%,
      var(--steel-slate)           52%,
      var(--steel-deep)            68%,
      var(--ocean-top)             80%,
      var(--ocean-deep)            92%,
      var(--ocean-abyss)          100%
    );
  border-bottom: 1px solid var(--border-soft-strong);
  box-shadow:
    inset 0 -1px 0 rgba(47,212,168,0.20),
    0 8px 36px rgba(0,0,0,0.50);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  /* faint atmospheric grid — only visible in ocean zone, masked away from sky */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47,212,168,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,212,168,0.06) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, transparent 0%, transparent 55%, black 78%, black 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 55%, black 78%, black 100%);
  animation: gridMove 32s linear infinite;
  opacity: 0.85;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.page-hero-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-deep);
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.45);
}
.page-hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--alert-red);
  box-shadow: 0 0 8px rgba(196,40,32,0.55), 0 0 16px rgba(255,255,255,0.30);
}
.page-hero-title {
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 1.0;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.4),
    0 6px 22px rgba(0,0,0,0.45),
    0 0 38px rgba(232,161,139,0.18);
}
.page-hero-title span {
  color: var(--accent-glow);
  text-shadow: 0 2px 0 rgba(0,0,0,0.35);
}
.page-hero-sub {
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0;
  max-width: 520px;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55), 0 1px 0 rgba(0,0,0,0.35);
}
@media (max-width: 768px) {
  .page-hero-sub {
    text-shadow: 0 1px 4px rgba(0,0,0,0.95), 0 2px 20px rgba(0,0,0,0.85), 0 0 8px rgba(0,0,0,0.70);
    font-weight: 600;
  }
}

/* ===== CARDS — EXHIBITORS ===== */
.exhibitor-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.exhibitor-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(47,212,168,0.22), 0 0 0 1px rgba(47,212,168,0.12);
}
.exhibitor-logo {
  width: 64px; height: 64px;
  border-radius: 8px;
  background: var(--dark2);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 1px solid var(--border);
}
.exhibitor-name {
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 6px;
}
.exhibitor-cat {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 2px;
  font-weight: 700;
}
.cat-dev     { background: rgba(47,212,168,0.12);   color: var(--purple-bright); }
.cat-vendor  { background: rgba(47,212,168,0.12);   color: var(--teal); }
.cat-tabletop{ background: rgba(47,212,168,0.12);   color: var(--amber); }
.cat-cosplay { background: rgba(184,155,176,0.14);  color: var(--rose); }
.cat-food    { background: rgba(79,224,192,0.12); color: var(--neon-green); }

/* ===== CARDS — PROGRAMMING ===== */
.prog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.prog-card:hover { border-color: var(--amber); }
.prog-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prog-name {
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0;
  margin-bottom: 6px;
}
.prog-desc { font-size: 14px; color: var(--gray); line-height: 1.65; font-weight: 400; }

/* ===== CARDS — GUESTS ===== */
.guest-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.25s;
}
.guest-card:hover { border-color: var(--rose); transform: translateY(-3px); }
.guest-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--dark2);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  border: 2px solid var(--border);
}
.guest-name {
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0;
  margin-bottom: 4px;
}
.guest-role {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 10px;
}
.guest-blurb { font-size: 13px; color: var(--gray); line-height: 1.65; font-weight: 400; }

/* ===== SPONSOR TIERS ===== */
.sponsor-tier { margin-bottom: 48px; }
.sponsor-tier-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sponsor-tier-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.sponsor-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; position: relative; padding-top: 18px; }
.sponsor-logo {
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gray);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.sponsor-logo.platinum { width: 240px; height: 90px; font-size: 20px; }
.sponsor-logo.gold     { width: 180px; height: 72px; font-size: 17px; }
.sponsor-logo.silver   { width: 130px; height: 56px; font-size: 13px; }

/* ===== SPONSOR BILLBOARD LIGHTING ===== */

/* Light bar mounted above each sponsor row */
.sponsor-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 3px;
  border-radius: 2px;
}

/* Shimmer sweep on sponsor logos */
.sponsor-logo::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
  animation: sponsorShimmer ease-in-out infinite;
  pointer-events: none;
}

/* — PLATINUM — bright white-blue backlight, most dramatic */
.tier-platinum .sponsor-logo.platinum {
  border-color: rgba(79,224,192,0.72);
  background: linear-gradient(160deg, #0F3C46 0%, #0A2E38 55%, #11424E 100%);
  box-shadow:
    0 0 22px 6px  rgba(79,224,192,0.62),
    0 0 55px 16px rgba(47,212,168,0.3),
    0 0 100px 32px rgba(47,212,168,0.15),
    inset 0 1px 0 rgba(245,239,230,0.22),
    inset 0 0 28px rgba(79,224,192,0.07);
  color: rgba(245,239,230,0.88);
  animation: platinumPulse 2.8s ease-in-out infinite;
}
.tier-platinum .sponsor-logo.platinum:hover {
  box-shadow:
    0 0 34px 9px  rgba(79,224,192,0.82),
    0 0 75px 22px rgba(47,212,168,0.44),
    0 0 130px 42px rgba(47,212,168,0.22),
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 0 40px rgba(79,224,192,0.12);
}
.tier-platinum .sponsor-logo.platinum::after {
  background: linear-gradient(105deg, transparent 0%, rgba(79,224,192,0.22) 50%, transparent 100%);
  animation-duration: 3s;
  animation-delay: 0s;
}
.tier-platinum .sponsor-row::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(47,212,168,0.45) 15%,
    rgba(79,224,192,0.95) 50%,
    rgba(47,212,168,0.45) 85%,
    transparent 100%);
  box-shadow: 0 0 14px 5px rgba(79,224,192,0.6), 0 0 32px 12px rgba(47,212,168,0.28);
  animation: lightBarPlatinum 2.8s ease-in-out infinite;
}

/* — GOLD — warm amber backlight, confident */
.tier-gold .sponsor-logo.gold {
  border-color: rgba(232,161,139,0.68);
  background: linear-gradient(160deg, #3A2418 0%, #2A1A12 55%, #38221A 100%);
  box-shadow:
    0 0 16px 4px  rgba(232,161,139,0.6),
    0 0 40px 12px rgba(232,161,139,0.3),
    0 0 75px 24px rgba(232,161,139,0.14),
    inset 0 1px 0 rgba(251,243,224,0.18),
    inset 0 0 20px rgba(232,161,139,0.06);
  color: rgba(245,206,180,0.9);
  animation: goldPulse 3.4s ease-in-out infinite;
}
.tier-gold .sponsor-logo.gold:hover {
  box-shadow:
    0 0 26px 7px  rgba(232,161,139,0.8),
    0 0 58px 18px rgba(232,161,139,0.44),
    0 0 105px 34px rgba(232,161,139,0.2),
    inset 0 1px 0 rgba(251,243,224,0.26),
    inset 0 0 32px rgba(232,161,139,0.1);
}
.tier-gold .sponsor-logo.gold::after {
  background: linear-gradient(105deg, transparent 0%, rgba(232,161,139,0.16) 50%, transparent 100%);
  animation-duration: 3.8s;
  animation-delay: 0.6s;
}
.tier-gold .sponsor-row::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(196,137,118,0.38) 15%,
    rgba(232,161,139,0.88) 50%,
    rgba(196,137,118,0.38) 85%,
    transparent 100%);
  box-shadow: 0 0 11px 4px rgba(232,161,139,0.55), 0 0 26px 9px rgba(232,161,139,0.24);
  animation: lightBarGold 3.4s ease-in-out infinite;
}

/* — SILVER — cool metallic backlight, understated */
.tier-silver .sponsor-logo.silver {
  border-color: rgba(168,196,212,0.58);
  background: linear-gradient(160deg, #1F353F 0%, #182A33 55%, #1D323C 100%);
  box-shadow:
    0 0 11px 3px  rgba(168,196,212,0.5),
    0 0 28px 8px  rgba(124,149,163,0.25),
    0 0 52px 16px rgba(124,149,163,0.12),
    inset 0 1px 0 rgba(168,196,212,0.14),
    inset 0 0 16px rgba(168,196,212,0.05);
  color: rgba(168,196,212,0.82);
  animation: silverPulse 4.2s ease-in-out infinite;
}
.tier-silver .sponsor-logo.silver:hover {
  box-shadow:
    0 0 18px 5px  rgba(168,196,212,0.68),
    0 0 44px 13px rgba(124,149,163,0.36),
    0 0 78px 24px rgba(124,149,163,0.18),
    inset 0 1px 0 rgba(168,196,212,0.2),
    inset 0 0 26px rgba(168,196,212,0.08);
}
.tier-silver .sponsor-logo.silver::after {
  background: linear-gradient(105deg, transparent 0%, rgba(168,196,212,0.1) 50%, transparent 100%);
  animation-duration: 4.6s;
  animation-delay: 1.2s;
}
.tier-silver .sponsor-row::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(91,122,140,0.3) 15%,
    rgba(168,196,212,0.72) 50%,
    rgba(91,122,140,0.3) 85%,
    transparent 100%);
  box-shadow: 0 0 8px 3px rgba(168,196,212,0.42), 0 0 20px 7px rgba(124,149,163,0.2);
  animation: lightBarSilver 4.2s ease-in-out infinite;
}

/* Billboard keyframes */
@keyframes platinumPulse {
  0%, 100% {
    box-shadow:
      0 0 22px 6px  rgba(79,224,192,0.62),
      0 0 55px 16px rgba(47,212,168,0.3),
      0 0 100px 32px rgba(47,212,168,0.15),
      inset 0 1px 0 rgba(245,239,230,0.22),
      inset 0 0 28px rgba(79,224,192,0.07);
  }
  50% {
    box-shadow:
      0 0 34px 9px  rgba(79,224,192,0.82),
      0 0 78px 24px rgba(47,212,168,0.44),
      0 0 135px 46px rgba(47,212,168,0.22),
      inset 0 1px 0 rgba(245,239,230,0.32),
      inset 0 0 44px rgba(232,246,255,0.12);
  }
}
@keyframes goldPulse {
  0%, 100% {
    box-shadow:
      0 0 16px 4px  rgba(232,161,139,0.6),
      0 0 40px 12px rgba(232,161,139,0.3),
      0 0 75px 24px rgba(232,161,139,0.14),
      inset 0 1px 0 rgba(251,243,224,0.18),
      inset 0 0 20px rgba(232,161,139,0.06);
  }
  50% {
    box-shadow:
      0 0 26px 7px  rgba(232,161,139,0.8),
      0 0 60px 18px rgba(232,161,139,0.42),
      0 0 108px 36px rgba(232,161,139,0.2),
      inset 0 1px 0 rgba(251,243,224,0.26),
      inset 0 0 32px rgba(232,161,139,0.1);
  }
}
@keyframes silverPulse {
  0%, 100% {
    box-shadow:
      0 0 11px 3px  rgba(168,196,212,0.5),
      0 0 28px 8px  rgba(124,149,163,0.25),
      0 0 52px 16px rgba(124,149,163,0.12),
      inset 0 1px 0 rgba(168,196,212,0.14),
      inset 0 0 16px rgba(168,196,212,0.05);
  }
  50% {
    box-shadow:
      0 0 18px 5px  rgba(168,196,212,0.66),
      0 0 44px 13px rgba(124,149,163,0.34),
      0 0 78px 24px rgba(124,149,163,0.17),
      inset 0 1px 0 rgba(168,196,212,0.2),
      inset 0 0 26px rgba(168,196,212,0.08);
  }
}
@keyframes lightBarPlatinum {
  0%, 100% { opacity: 0.78; }
  50%       { opacity: 1; box-shadow: 0 0 20px 8px rgba(79,224,192,0.72), 0 0 42px 16px rgba(47,212,168,0.34); }
}
@keyframes lightBarGold {
  0%, 100% { opacity: 0.72; }
  50%       { opacity: 1; box-shadow: 0 0 15px 6px rgba(232,161,139,0.68), 0 0 34px 12px rgba(232,161,139,0.3); }
}
@keyframes lightBarSilver {
  0%, 100% { opacity: 0.62; }
  50%       { opacity: 0.9; box-shadow: 0 0 10px 4px rgba(168,196,212,0.52), 0 0 24px 9px rgba(124,149,163,0.24); }
}
@keyframes sponsorShimmer {
  0%, 18%  { transform: translateX(-160%); opacity: 0; }
  22%       { opacity: 1; }
  58%       { transform: translateX(290%);  opacity: 1; }
  62%       { opacity: 0; }
  100%      { transform: translateX(-160%); opacity: 0; }
}

/* ===== INVOLVED CARDS ===== */
.involved-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  transition: border-color 0.25s;
}
.involved-card:hover { border-color: var(--amber); }
.involved-img {
  width: 64px; height: 64px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.involved-title {
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0;
  margin-bottom: 8px;
}
.involved-desc { font-size: 16px; color: var(--gray); line-height: 1.7; font-weight: 400; margin-bottom: 16px; }

/* ===== MEDIA CARDS ===== */
.media-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.25s;
}
.media-card:hover { border-color: var(--amber); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(47,212,168,0.18); }
.media-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.media-title {
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0;
  margin-bottom: 10px;
}
.media-desc { font-size: 16px; color: var(--gray); line-height: 1.7; font-weight: 400; margin-bottom: 20px; }
.media-btn {
  display: inline-block;
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bio-aqua);
  text-decoration: none;
  border: 1px solid rgba(47,212,168,0.35);
  padding: 8px 20px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: all 0.2s;
}
.media-btn:hover { background: rgba(47,212,168,0.1); border-color: var(--bio-aqua); box-shadow: 0 0 12px rgba(47,212,168,0.35); }

/* ===== TICKET SECTION ===== */
.eventbrite-embed {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
}
.eventbrite-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); margin-bottom: 16px; font-weight: 600; }
.eventbrite-logo { font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-weight: 800; font-size: 26px; color: var(--white); margin-bottom: 6px; letter-spacing: 0.01em; }
.eventbrite-logo span { color: #f05537; }
.eventbrite-desc { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 28px; font-weight: 400; }
.eventbrite-btn {
  display: block; width: 100%; padding: 16px;
  background: var(--accent-primary);
  color: var(--text-warm);
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-size: 15px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  text-shadow: 0 1px 1px rgba(0,0,0,0.35);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow:
    0 4px 14px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 0 -2px 0 rgba(0,0,0,0.18);
  transition: box-shadow 0.25s, transform 0.2s;
}
.eventbrite-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 22px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 0 28px rgba(47,212,168,0.55),
    0 0 56px rgba(47,212,168,0.22);
}
.countdown-label-top {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 20px; font-weight: 600;
}
.countdown-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 32px;
}
.cd-unit {
  background: var(--card); border: 1px solid var(--border);
  padding: 20px 12px; text-align: center;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.cd-num {
  font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-weight: 800; font-size: 48px;
  color: var(--amber); line-height: 1;
  text-shadow: 0 0 20px rgba(47,212,168,0.7), 0 0 40px rgba(47,212,168,0.35);
}
.cd-lbl { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-top: 4px; font-weight: 600; }
/* General Info page — standalone event countdown band (compact, centered) */
.gi-countdown { padding: 44px 40px 8px; }
.gi-countdown-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.gi-countdown .countdown-label-top { margin-bottom: 16px; }
.gi-countdown .countdown-row { margin-bottom: 0; }
.ticket-tiers { display: flex; flex-direction: column; gap: 10px; }
.tier-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--card); border: 1px solid var(--border);
  padding: 16px 20px; border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
  user-select: none;
}
.tier-row:hover { border-color: var(--amber); }
.tier-row:focus-visible {
  outline: 2px solid var(--bio-aqua);
  outline-offset: 2px;
}
.tier-row.featured { border-color: var(--amber); background: rgba(47,212,168,0.08); }

/* Selected state — teal highlight, independent of featured */
.tier-row.selected {
  border-color: var(--bio-aqua);
  background: rgba(47,212,168,0.10);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(47,212,168,0.25),
    0 0 18px rgba(47,212,168,0.18),
    0 4px 16px rgba(0,0,0,0.35);
}
/* Checkmark badge — top-right corner */
.tier-row.selected::after {
  content: '✓';
  position: absolute;
  top: -9px; right: 10px;
  background: var(--bio-aqua);
  color: var(--ocean-abyss);
  font-size: 10px; font-weight: 900;
  line-height: 1;
  padding: 3px 6px;
  border-radius: 2px;
  letter-spacing: 0;
  box-shadow: 0 0 10px rgba(47,212,168,0.55);
}
/* When both featured + selected, keep amber "most popular" badge visible */
.tier-row.featured.selected { border-color: var(--bio-aqua); }

.tier-info { display: flex; flex-direction: column; gap: 2px; }
.tier-name {
  font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-size: 15px;
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--white);
}
.tier-desc { font-size: 12px; color: var(--gray); font-weight: 400; }
.tier-price { font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-weight: 800; font-size: 28px; color: var(--bio-aqua); letter-spacing: 0; }

/* ===== CARD SURFACES — underwater depth, lifted ===== */
/* Lighter dark-teal substrate with stronger coral top sheen and brighter
   aqua edge glow, so cards feel slightly lifted and atmospheric rather
   than buried. Reads as "object hovering in lit water". */
.exhibitor-card,
.prog-card,
.guest-card,
.involved-card,
.media-card,
.eventbrite-embed,
.cd-unit,
.tier-row,
.blurb-box,
.footer-newsletter,
.substack-embed {
  background:
    /* coral horizon sheen across the top — more visible */
    linear-gradient(180deg, rgba(232,161,139,0.14) 0%, rgba(232,161,139,0.04) 18%, transparent 32%),
    /* faint aqua bloom across the bottom */
    linear-gradient(0deg, rgba(47,212,168,0.06) 0%, transparent 28%),
    /* lighter vertical depth — sub starts brighter, fades to bg-card */
    linear-gradient(180deg,
      #1A4350 0%,
      #163C48 35%,
      #123440 65%,
      #0E2A33 100%
    );
  box-shadow:
    /* top inner highlight — coral warm rim */
    inset 0 1px 0 rgba(232,161,139,0.30),
    /* side aqua hint */
    inset 1px 0 0 rgba(47,212,168,0.10),
    inset -1px 0 0 rgba(47,212,168,0.10),
    /* bottom dark line for depth */
    inset 0 -1px 0 rgba(0,0,0,0.45),
    /* outer edge — brighter aqua hairline */
    0 0 0 1px rgba(47,212,168,0.32),
    /* outer aqua bloom — atmospheric glow */
    0 0 0 2px rgba(47,212,168,0.10),
    0 0 18px rgba(47,212,168,0.14),
    /* deep drop shadow for suspended feel */
    0 18px 36px rgba(0,0,0,0.50);
}

/* ===== FADE IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== FOOTER ===== */
footer {
  background:
    linear-gradient(180deg, var(--ocean-deep) 0%, var(--ocean-abyss) 70%);
  border-top: 1px solid var(--border-soft);
  box-shadow:
    inset 0 1px 0 rgba(47,212,168,0.12),
    inset 0 6px 28px rgba(0,0,0,0.45);
  padding: 64px 40px 32px;
  position: relative;
}
/* Horizon line — bright warm bloom where the page world meets the footer */
footer::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent              0%,
    rgba(232,161,139,0.55)  12%,
    rgba(251,243,224,0.92)  32%,
    rgba(255,255,255,1.0)   50%,
    rgba(251,243,224,0.92)  68%,
    rgba(232,161,139,0.55)  88%,
    transparent            100%
  );
  box-shadow:
    0 0 14px rgba(251,243,224,0.80),
    0 0 30px rgba(232,161,139,0.55),
    0 0 60px rgba(232,161,139,0.30),
    0 0 100px rgba(232,161,139,0.15);
  pointer-events: none;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-newsletter {
  background: var(--card);
  border: none;
  padding: 40px;
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.footer-newsletter-text h3 {
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 30px; color: var(--white);
  letter-spacing: 0; margin-bottom: 6px;
}
.footer-newsletter-text h3 span { color: var(--amber); }
.footer-newsletter-text p { font-size: 14px; color: var(--gray); line-height: 1.65; font-weight: 400; }
.substack-embed { background: transparent; border: none; box-shadow: none; padding: 0; min-width: 280px; }
/* Very narrow phones: let the newsletter column shrink instead of overflowing */
@media (max-width: 400px) {
  .footer-newsletter { padding: 28px 20px; }
  .substack-embed, .vgx-sub { min-width: 0; width: 100%; }
}

/* Custom newsletter subscribe widget — orange Subscribe button reveals a blue
   email field; on submit we hand off to Substack's subscribe page (email prefilled). */
.vgx-sub { min-width: 280px; }
.vgx-sub-toggle, .vgx-sub-go {
  background: #FF6719; color: #fff; border: none; cursor: pointer;
  font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-weight: 800; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
  padding: 13px 26px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  box-shadow: 0 4px 12px rgba(255,103,25,0.35);
  transition: background 0.2s, box-shadow 0.25s, transform 0.15s;
}
.vgx-sub-toggle:hover, .vgx-sub-go:hover {
  background: #ff7c38; transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255,103,25,0.55);
}
.vgx-sub-fields { display: flex; gap: 8px; align-items: stretch; animation: vgxSubIn 0.25s ease; }
.vgx-sub-fields[hidden] { display: none; }
.vgx-sub-input {
  flex: 1; min-width: 0;
  background: #17539e; border: 1px solid #2f6fc0; color: #fff;
  font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-size: 14px; padding: 12px 14px; outline: none;
}
.vgx-sub-input::placeholder { color: rgba(255,255,255,0.72); }
.vgx-sub-input:focus { border-color: #4f93e0; box-shadow: 0 0 0 2px rgba(79,147,224,0.30); }
@keyframes vgxSubIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.substack-label { font-size: 10px; color: var(--gray); margin-bottom: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.substack-form { display: flex; }
.substack-input {
  flex: 1; padding: 11px 14px;
  background: var(--black); border: 1px solid var(--border); border-right: none;
  color: var(--white); font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-size: 13px; outline: none;
}
.substack-input::placeholder { color: var(--gray); }
.substack-btn {
  padding: 11px 18px;
  background: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  color: var(--text-warm);
  font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  text-shadow: 0 1px 1px rgba(0,0,0,0.35);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 0 -2px 0 rgba(0,0,0,0.18);
  transition: background 0.2s, box-shadow 0.25s;
}
.substack-btn:hover {
  background: var(--accent-primary);
  animation: btn-bounce 0.42s ease forwards;
  box-shadow:
    0 6px 14px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 0 22px rgba(47,212,168,0.55),
    0 0 44px rgba(47,212,168,0.22);
}
.footer-cols {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand { font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: 0; color: var(--white); margin-bottom: 12px; }
.footer-brand span { color: var(--amber); }
.footer-brand img { display: block; height: 52px; width: auto; }
.footer-blurb { font-size: 15px; color: var(--gray); line-height: 1.7; max-width: 400px; font-weight: 400; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px; background: var(--card); border: 1px solid var(--border);
  color: var(--gray); display: flex; align-items: center; justify-content: center;
  font-size: 14px; text-decoration: none; transition: all 0.2s; cursor: pointer;
}
.social-icon:hover {
  border-color: var(--accent-glow);
  color: var(--accent-glow);
  box-shadow: 0 0 14px rgba(47,212,168,0.45);
}
.footer-col-title {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); font-weight: 700; margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: var(--bio-aqua); text-decoration: none; transition: color 0.2s; font-weight: 400; }
.footer-links a:hover { color: var(--accent-glow); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 11px; color: var(--gray); letter-spacing: 0.05em; font-weight: 500; }
.footer-copy span { color: var(--amber); }
.footer-social svg { display: block; }

/* Just In-Builds credit backlink (followed brand-anchor link) */
.jib-credit {
  --jib-credit-color: var(--gray);
  --jib-credit-hover: #c8862b;
  display: inline-flex; align-items: center; gap: 0.35em;
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-size: 11px; letter-spacing: 0.05em; line-height: 1;
  color: var(--jib-credit-color); text-decoration: none; opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.jib-credit strong { font-weight: 700; }
.jib-credit:hover { color: var(--jib-credit-hover); opacity: 1; }

/* ===== FOOTER GRID (simplified footer variant — no newsletter) ===== */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { display: block; margin-bottom: 12px; }
.footer-logo img { display: block; height: 52px; width: auto; }
.footer-tagline { font-size: 14px; color: var(--gray); line-height: 1.7; font-weight: 400; margin-bottom: 16px; }

/* ===== ANIMATIONS ===== */
@keyframes gridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 72px 72px; }
}
@keyframes heroShift {
  0%   { filter: brightness(1); }
  100% { filter: brightness(1.1) hue-rotate(8deg); }
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ===== GET INVOLVED — FOREST ENCHANTMENT ===== */
#get-involved {
  position: relative;
  overflow: hidden;
}
#get-involved .container {
  position: relative;
  z-index: 1;
}
.forest-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Fairy lights */
.fairy-light {
  position: absolute;
  border-radius: 50%;
  animation: fairyFloat ease-in-out infinite;
  animation-play-state: paused;
}
.fairy-light.f-amber {
  width: 6px; height: 6px;
  background: #d4920a;
  box-shadow: 0 0 8px 3px rgba(232,161,139,0.75), 0 0 22px 8px rgba(232,161,139,0.35);
}
.fairy-light.f-teal {
  width: 5px; height: 5px;
  background: #00c4b4;
  box-shadow: 0 0 8px 3px rgba(47,212,168,0.75), 0 0 20px 8px rgba(47,212,168,0.35);
}
.fairy-light.f-green {
  width: 4px; height: 4px;
  background: #b0f078;
  box-shadow: 0 0 7px 3px rgba(79,224,192,0.75), 0 0 18px 6px rgba(79,224,192,0.35);
}

/* Mushrooms */
.deco-mushroom {
  position: absolute;
  bottom: 0;
  transform: scaleY(0) scaleX(0.8);
  transform-origin: bottom center;
  animation: mushroomGrow 0.75s cubic-bezier(0.34,1.56,0.64,1) forwards;
  animation-play-state: paused;
  display: block;
  line-height: 1;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.5)) drop-shadow(0 0 12px rgba(79,224,192,0.2));
}

/* Sparkles */
.deco-sparkle {
  position: absolute;
  font-size: 13px;
  animation: sparkleTwinkle ease-in-out infinite;
  animation-play-state: paused;
}

/* SVG roots */
.deco-roots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110px;
}
.root-path {
  stroke-dasharray: 1700;
  stroke-dashoffset: 1700;
  transition: stroke-dashoffset 3.5s ease-out;
}
.root-path-b {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 4.2s ease-out 0.6s;
}
.root-path-c {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  transition: stroke-dashoffset 2.8s ease-out 1s;
}

/* Activate on scroll */
#get-involved.forest-active .fairy-light,
#get-involved.forest-active .deco-mushroom,
#get-involved.forest-active .deco-sparkle {
  animation-play-state: running;
}
#get-involved.forest-active .root-path  { stroke-dashoffset: 0; }
#get-involved.forest-active .root-path-b { stroke-dashoffset: 0; }
#get-involved.forest-active .root-path-c { stroke-dashoffset: 0; }

/* Forest keyframes */
@keyframes fairyFloat {
  0%, 100% { transform: translate(0, 0);         opacity: 0.2; }
  30%       { transform: translate(14px, -22px);  opacity: 0.9; }
  65%       { transform: translate(-10px, -36px); opacity: 0.55; }
}
@keyframes mushroomGrow {
  0%   { transform: scaleY(0) scaleX(0.8);    opacity: 0; }
  55%  { transform: scaleY(1.18) scaleX(0.95); opacity: 1; }
  75%  { transform: scaleY(0.93) scaleX(1.04); }
  100% { transform: scaleY(1) scaleX(1);       opacity: 1; }
}
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0;   transform: scale(0) rotate(0deg); }
  40%       { opacity: 1;   transform: scale(1.4) rotate(22deg); }
  70%       { opacity: 0.5; transform: scale(0.85) rotate(-12deg); }
}

/* ===== TICKETS — RISING GAME TOKENS ===== */
#tickets {
  position: relative;
  overflow: hidden;
}
#tickets .container {
  position: relative;
  z-index: 1;
}
.ticket-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Growing roots */
.ticket-root-svg {
  position: absolute;
  bottom: 0;
  width: 230px;
  height: 100%;
  overflow: visible;
}
.ticket-root-svg.r-left  { left: 0; }
.ticket-root-svg.r-right { right: 0; }

.trp {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trp-trunk   { transition: stroke-dashoffset 2.4s ease-out 0s;    }
.trp-accent  { transition: stroke-dashoffset 1.6s ease-out 0.7s;  }
.trp-branch-a{ transition: stroke-dashoffset 1.5s ease-out 1.4s;  }
.trp-branch-b{ transition: stroke-dashoffset 1.3s ease-out 1.8s;  }
.trp-tendril-a{ transition: stroke-dashoffset 1.1s ease-out 2.4s; }
.trp-tendril-b{ transition: stroke-dashoffset 0.9s ease-out 2.8s; }
.trp-tip     { transition: stroke-dashoffset 0.8s ease-out 3.2s;  }

.ticket-star {
  position: absolute;
  bottom: -10px;
  font-size: 16px;
  animation: starRise linear infinite;
  animation-play-state: paused;
  opacity: 0;
  color: #d4920a;
  text-shadow: 0 0 10px rgba(232,161,139,0.9), 0 0 24px rgba(232,161,139,0.5);
  filter: drop-shadow(0 0 4px rgba(232,161,139,0.8));
}

.ticket-plus {
  position: absolute;
  bottom: -10px;
  font-size: 14px;
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-weight: 800;
  animation: plusRise linear infinite;
  animation-play-state: paused;
  opacity: 0;
}

/* Activate on scroll */
#tickets.tickets-active .ticket-star,
#tickets.tickets-active .ticket-plus {
  animation-play-state: running;
}
#tickets.tickets-active .trp { stroke-dashoffset: 0; }
@keyframes starRise {
  0%   { transform: translateY(0)      rotate(0deg)   scale(1);   opacity: 0;   }
  10%  { opacity: 1;                                                             }
  40%  { transform: translateY(-40vh)  rotate(140deg) scale(1.2);               }
  75%  { transform: translateY(-78vh)  rotate(280deg) scale(0.9); opacity: 0.7; }
  100% { transform: translateY(-115vh) rotate(360deg) scale(0.6); opacity: 0;   }
}
@keyframes plusRise {
  0%   { transform: translateY(0)      translateX(0)    scale(1);   opacity: 0;   }
  10%  { opacity: 1;                                                              }
  30%  { transform: translateY(-28vh)  translateX(10px) scale(1.1);              }
  60%  { transform: translateY(-60vh)  translateX(-8px) scale(1);   opacity: 0.8;}
  85%  { transform: translateY(-92vh)  translateX(5px);              opacity: 0.4;}
  100% { transform: translateY(-115vh) translateX(0)    scale(0.7); opacity: 0;  }
}

/* ===== MAPLE LEAF PARTICLES ===== */
.maple-leaf {
  position: absolute;
  opacity: 0;
  animation: leafDrift linear infinite;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
}
@keyframes leafDrift {
  0%   { transform: translateY(0) rotate(0deg) translateX(0px);        opacity: 0; }
  6%   { opacity: 0.7; }
  88%  { opacity: 0.45; }
  100% { transform: translateY(120vh) rotate(600deg) translateX(55px); opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .scroll-header { padding: 0 24px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 24px; }
  footer { padding: 64px 24px 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-newsletter { grid-template-columns: 1fr; }
  .page-hero-content { padding: 0 24px; }
  .sponsor-logo.platinum { width: 180px; }
}
/* Narrower desktops: drop the venue text so all five nav items + CTA fit
   without crowding (Past Editions added 2026-07-07). */
@media (max-width: 1290px) {
  .header-dates .hd-sep,
  .header-dates .hd-loc { display: none; }
}
@media (max-width: 700px) {
  /* Beside the logo on a phone, drop the location so the date stays readable
     and doesn't crowd the hamburger. */
  .header-dates .hd-sep,
  .header-dates .hd-loc { display: none; }
  .header-logo img { height: 38px; }
  .header-dates { font-size: 11.5px; }
  .header-left { gap: 12px; }
}
@media (max-width: 600px) {
  /* On phones the Get Tickets CTA takes priority on the bar, so drop the
     date/location here (still shown on tablet and desktop) and tighten the
     bar so the logo, CTA and hamburger all fit. */
  .header-dates { display: none; }
  .scroll-header { padding: 0 16px; }
  .header-logo img { height: 34px; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .blurb-box { padding: 36px 28px; }
  .countdown-row { grid-template-columns: repeat(2,1fr); }
  .sponsor-logo.platinum,
  .sponsor-logo.gold,
  .sponsor-logo.silver { width: 100%; }
}

/* ===== APPLY MODAL (shared — moved from index.html) ===== */
.apply-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(6,22,26,0.88);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: modalFadeIn 0.25s ease;
}
.apply-modal-overlay[hidden] { display: none; }
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.apply-modal {
  background: var(--bg-card);
  border: 1px solid var(--bio-aqua);
  box-shadow: 0 0 0 1px rgba(47,212,168,0.12), 0 24px 64px rgba(0,0,0,0.65),
              0 0 40px rgba(47,212,168,0.15);
  max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.25s ease;
}
@keyframes modalSlideIn {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.apply-modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; color: var(--text-muted);
  font-size: 18px; cursor: pointer; line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.apply-modal-close:hover { color: var(--text-primary); }
#applyModalContent { padding: 36px 36px 32px; }
.modal-title {
  font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-weight: 900; font-size: 22px;
  color: var(--text-primary); margin-bottom: 6px; padding-right: 32px;
}
.modal-desc {
  font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-size: 14px; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 28px;
}
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.modal-field { display: flex; flex-direction: column; gap: 6px; }
.modal-label {
  font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted);
}
.modal-label .req { color: var(--bio-aqua); margin-left: 2px; }
.modal-input, .modal-textarea, .modal-select {
  background: var(--surface-elevated); border: 1px solid var(--border-soft);
  color: var(--text-primary); font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-size: 14px;
  padding: 10px 14px; outline: none; width: 100%;
  transition: border-color 0.2s;
}
.modal-input:focus, .modal-textarea:focus, .modal-select:focus {
  border-color: var(--bio-aqua); box-shadow: 0 0 0 2px rgba(47,212,168,0.10);
}
.modal-input.invalid, .modal-textarea.invalid, .modal-select.invalid {
  border-color: var(--alert-red-bright);
}
.modal-select option { background: var(--ocean-abyss); }
.modal-textarea { resize: vertical; min-height: 90px; }
.modal-checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.modal-checkbox-row input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--bio-aqua); width: 16px; height: 16px; }
.modal-checkbox-row label { font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-size: 14px; color: var(--text-primary); cursor: pointer; line-height: 1.5; }
.modal-submit {
  background: var(--bio-aqua); color: var(--ocean-abyss);
  font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-weight: 800; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 28px; border: none; cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  min-width: 160px; margin-top: 8px;
}
.modal-submit:hover:not(:disabled) { background: var(--bio-aqua-bright); }
.modal-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.modal-spinner {
  width: 16px; height: 16px; border: 2px solid rgba(6,22,26,0.25);
  border-top-color: var(--ocean-abyss);
  border-radius: 50%; animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.modal-success {
  text-align: center; padding: 16px 0;
  color: var(--bio-aqua); font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-size: 15px; font-weight: 700;
}
/* Toast */
.vgx-toast {
  position: fixed; bottom: 32px; left: 0; right: 0;
  margin-inline: auto; width: max-content; max-width: calc(100% - 32px);
  background: var(--surface-elevated); border: 1px solid var(--border-soft);
  color: var(--text-primary); font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 12px 24px; z-index: 3000;
  animation: toastIn 0.2s ease, toastOut 0.3s ease 2.2s forwards;
  white-space: nowrap;
}
@keyframes toastIn  { from { opacity:0; transform: translateY(12px); } to { opacity:1; transform: translateY(0); } }
@keyframes toastOut { to   { opacity:0; transform: translateY(8px); } }

/* ===== PRIMARY NAV (redesign) ===== */
.primary-nav { display: flex; align-items: center; gap: 16px; }
.header-nav { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-primary); font-weight: 700;
  text-decoration: none; white-space: nowrap;
  padding: 8px 11px; background: none; border: none; cursor: pointer;
  transition: color 0.2s, text-shadow 0.2s;
}
.nav-link:hover,
.nav-item:focus-within > .nav-link,
.nav-item.open > .nav-link {
  color: var(--accent-glow); text-shadow: 0 0 12px rgba(47,212,168,0.55);
}
.nav-caret { font-size: 9px; transition: transform 0.2s; }
.nav-item:hover .nav-caret, .nav-item.open .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 196px;
  list-style: none; padding: 8px;
  background: var(--bg-overlay-deep);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--border-soft); border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 1001;
}
.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown,
.nav-item.open > .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  display: block; white-space: nowrap;
  font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-size: 12px; letter-spacing: 0.03em;
  color: var(--text-primary); text-decoration: none; font-weight: 600;
  padding: 9px 12px; border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: rgba(47,212,168,0.12); color: var(--accent-glow); }
.nav-dropdown a.nav-disabled { color: var(--text-faint); cursor: not-allowed; }
.nav-dropdown a.nav-disabled:hover { background: none; color: var(--text-faint); }
.nav-cta {
  display: inline-block; white-space: nowrap;
  font-family: 'brandon-grotesque', 'Nunito', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-warm); text-decoration: none;
  padding: 11px 24px; background: var(--accent-primary);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  text-shadow: 0 1px 1px rgba(0,0,0,0.35);
  box-shadow: var(--shadow-cta);
  transition: background 0.2s, box-shadow 0.25s, transform 0.2s;
  animation: nav-cta-pulse 2.8s ease-in-out infinite;
}
.nav-cta:hover {
  background: var(--alert-red-bright); transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(196,40,32,0.55), 0 0 30px rgba(230,51,41,0.45);
  animation: none;
}
@keyframes nav-cta-pulse {
  0%, 100% { box-shadow: var(--shadow-cta); }
  50% { box-shadow: 0 6px 18px rgba(196,40,32,0.5), 0 0 24px rgba(230,51,41,0.42); }
}

/* Mobile-only header CTA — hidden on desktop (the in-nav .nav-cta shows there). */
.header-cta-mobile { display: none; }

/* Mobile accordion menu */
.m-accordion { border-bottom: 1px solid var(--border-hairline); }
.m-acc-header {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-primary);
  padding: 15px 2px;
}
.m-caret { font-size: 12px; color: var(--accent-glow); transition: transform 0.25s; }
.m-accordion.open .m-caret { transform: rotate(180deg); }
.m-acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; display: flex; flex-direction: column; }
.m-accordion.open .m-acc-panel { max-height: 520px; }
.m-acc-panel a {
  font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-size: 13px; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; font-weight: 600;
  padding: 11px 0 11px 18px;
}
.m-acc-panel a:hover { color: var(--accent-glow); }
.m-acc-panel a.nav-disabled { color: var(--text-faint); cursor: not-allowed; }
.m-direct {
  display: block; font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-primary);
  text-decoration: none; padding: 15px 2px; border-bottom: 1px solid var(--border-hairline);
}
.m-direct:hover { color: var(--accent-glow); }
.m-cta {
  display: block; text-align: center; margin-top: 18px;
  font-family: 'brandon-grotesque', 'Nunito', sans-serif; font-size: 15px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-warm);
  text-decoration: none; padding: 15px 24px; background: var(--accent-primary);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: var(--shadow-cta);
}

/* Show hamburger / hide desktop nav below 1090px (5 nav items + CTA need room) */
@media (max-width: 1090px) {
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  /* Surface the Get Tickets CTA on the bar itself (out of the hamburger menu). */
  .header-cta-mobile {
    display: inline-flex !important; align-items: center;
    margin-left: auto; margin-right: 10px;
    padding: 12px 16px; font-size: 11px; animation: none;
  }
}

/* Smallest phones: tighten logo + CTA so both still fit beside the hamburger. */
@media (max-width: 360px) {
  .header-logo img { height: 30px; }
  .header-cta-mobile { padding: 13px 12px; font-size: 10.5px; margin-right: 8px; }
}
