/* =========================================================
   ET SHROOMFEST 2026
   Vibe: deep-space black + UFO mushroom blues + alien-beam green
   ========================================================= */

/* ===== Custom display font (TheFarmerOriginal-Rounded) ===== */
@font-face {
  font-family: 'The Farmer';
  src: url('./assets/fonts/TheFarmerOriginal-Rounded.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Pulled directly from the ET Fungi UFO mushroom logo */
  --bg-1: #000000;          /* hard black backdrop */
  --bg-2: #03060f;          /* near-black with a blue undertone */
  --bg-3: #061635;          /* deep nebula blue */
  --ink: #eaf6ff;           /* almost-white with a cool tint */
  --ink-soft: #9bc0dc;      /* dusty light blue */
  --blue-bright: #2BA9F2;   /* mushroom-cap mid blue */
  --blue-light: #7DE0FF;    /* belly / beam cyan */
  --blue-pale:  #C9E4F0;    /* the palest stripe in the beam */
  --blue-deep:  #0A2D5C;    /* outline / dark navy */
  --blue-ink:   #0E4DA4;    /* body shadow blue */
  --green-neon: #5FFF3A;    /* alien-beam neon green */
  --green-glow: #9CFF7A;    /* lighter glow tone */

  /* Signature gradients — beam-light to neon-green and blue-stack */
  --grad-beam: linear-gradient(135deg, #5FFF3A 0%, #7DE0FF 45%, #2BA9F2 100%);
  --grad-stack: linear-gradient(180deg, #7DE0FF 0%, #2BA9F2 50%, #0A2D5C 100%);
  --grad-alien: linear-gradient(135deg, #5FFF3A, #2BA9F2 60%, #0A2D5C);

  --font-display: 'The Farmer', 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Space Grotesk', system-ui, -apple-system, sans-serif;

  --radius: 18px;
  --maxw: 1200px;
}

/* ===== Reset / base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-1);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green-neon); }

/* ===== Cosmic background layer ===== */
.cosmos {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at top, rgba(10,45,92,.55), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(3,6,15,1), transparent 70%),
    var(--bg-1);
  overflow: hidden;
}
.aurora {
  position: absolute;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  filter: blur(140px);
  opacity: .35;
  animation: drift 32s ease-in-out infinite;
}
.aurora-blue  { top: -25%; left: -15%; background: radial-gradient(circle, var(--blue-bright), transparent 60%); }
.aurora-green { top: 25%; right: -20%; background: radial-gradient(circle, var(--green-neon), transparent 65%); animation-delay: -10s; opacity: .22; }
.aurora-deep  { bottom: -30%; left: 15%; background: radial-gradient(circle, var(--blue-deep), transparent 60%); animation-delay: -18s; opacity: .55; }

@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(4vw, -3vw) scale(1.08); }
  66%      { transform: translate(-3vw, 4vw) scale(.95); }
}

.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, #fff, transparent),
    radial-gradient(1px 1px at 80% 10%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 50% 60%, #fff, transparent),
    radial-gradient(1px 1px at 90% 70%, #fff, transparent),
    radial-gradient(1px 1px at 10% 80%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 35% 15%, #7DE0FF, transparent),
    radial-gradient(1px 1px at 65% 45%, #fff, transparent),
    radial-gradient(1px 1px at 25% 55%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 75% 85%, #5FFF3A, transparent);
  background-size: 600px 600px;
  opacity: .55;
  animation: twinkle 6s ease-in-out infinite alternate;
}
@keyframes twinkle {
  from { opacity: .35; }
  to   { opacity: .8; }
}

/* Subtle horizon grid like a UFO landing strip */
.grid-floor {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 45vh;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.2) 60%, rgba(0,0,0,.85) 100%),
    repeating-linear-gradient(90deg, rgba(95,255,58,.08) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(43,169,242,.07) 0 1px, transparent 1px 80px);
  transform: perspective(700px) rotateX(60deg);
  transform-origin: bottom;
  opacity: .55;
  pointer-events: none;
}

/* ===== Container ===== */
.container {
  width: min(100% - 40px, var(--maxw));
  margin-inline: auto;
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(43, 169, 242, 0.15);
  transition: background .3s, border-color .3s;
}
.nav.scrolled { background: rgba(0, 0, 0, 0.9); border-bottom-color: rgba(95,255,58,.18); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(95,255,58,.5));
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.brand-text em {
  font-style: normal;
  background: var(--grad-beam);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--grad-beam);
  transition: width .25s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--grad-beam);
  color: #00121f !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .5px;
  box-shadow: 0 4px 22px rgba(95,255,58,.45);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(95,255,58,.7); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(43,169,242,.35);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 120px;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  text-align: center;
  z-index: 2;
  max-width: 920px;
}

/* Glowing landing-pad behind the logo */
.hero-orb {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 620px;
  height: 620px;
  max-width: 90vw;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(95,255,58,.18) 0%, rgba(43,169,242,.18) 40%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .55; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: .9;  transform: translate(-50%,-50%) scale(1.08); }
}

.hero-logo {
  position: relative;
  width: clamp(220px, 40vw, 380px);
  margin: 10px auto 18px;
  filter:
    drop-shadow(0 0 28px rgba(43,169,242,.55))
    drop-shadow(0 0 60px rgba(95,255,58,.35));
  z-index: 1;
}
/* Subtle white wash behind the "EXTRATERRESTRIAL FUNGI" wordmark
   (which is baked into the bottom of the logo image) */
.hero-logo::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 8%;
  height: 33%;
  background: radial-gradient(ellipse at center,
    rgba(255,255,255,.24) 0%,
    rgba(255,255,255,.12) 55%,
    transparent 100%);
  filter: blur(12px);
  border-radius: 32px;
  z-index: 1;
  pointer-events: none;
}
.hero-logo img { width: 100%; height: auto; position: relative; z-index: 2; }

/* Make sure text/cta sit ON TOP of the beam that extends past the logo */
.kicker,
.hero-title,
.hero-tag,
.hero-cta,
.scroll-cue { position: relative; z-index: 3; }

/* ===== Tractor beam — descends from UFO onto the date/location panel ===== */
.hero-beam {
  position: absolute;
  top: 72%;             /* where the UFO's underside emits the beam in the artwork */
  left: 50%;
  transform: translateX(-50%);
  width: 62%;           /* matches the beam mouth in the logo art */
  height: clamp(360px, 48vh, 560px);
  pointer-events: none;
  z-index: 1;
}
.beam-inner {
  position: absolute;
  inset: 0;
  /* Trapezoid widening downward */
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
  background:
    /* white-cyan core stripe */
    linear-gradient(90deg,
      transparent 28%,
      rgba(255,255,255,.55) 44%,
      rgba(201,228,240,.75) 50%,
      rgba(255,255,255,.55) 56%,
      transparent 72%),
    /* outer neon-green wash */
    linear-gradient(180deg,
      rgba(95,255,58,0) 0%,
      rgba(95,255,58,.28) 6%,
      rgba(95,255,58,.45) 50%,
      rgba(95,255,58,.6) 88%,
      rgba(95,255,58,0) 100%);
  filter: blur(10px);
  mix-blend-mode: screen;
  opacity: .9;
  animation: beamShimmer 4.5s ease-in-out infinite;
}
/* Pool of light landing on the date/location panel below */
.beam-pool {
  position: absolute;
  bottom: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 240%;
  height: 30%;
  background: radial-gradient(ellipse at center,
    rgba(95,255,58,.55) 0%,
    rgba(125,224,255,.35) 30%,
    transparent 70%);
  filter: blur(22px);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: beamShimmer 4.5s ease-in-out infinite;
}
@keyframes beamShimmer {
  0%, 100% { opacity: .8;  filter: blur(12px); }
  50%      { opacity: 1;   filter: blur(7px); }
}

.kicker {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: .8rem;
  color: var(--blue-light);
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 13vw, 10rem);
  line-height: .92;
  letter-spacing: 3px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-title .line { display: block; }
.hero-title .line-1 {
  background: linear-gradient(180deg, var(--blue-light), var(--blue-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(43,169,242,.35);
}
.hero-title .line-2 {
  background: linear-gradient(180deg, var(--green-neon), var(--blue-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(95,255,58,.3);
}

.hero-tag {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-meta {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 20px 32px;
  border: 1px solid rgba(95,255,58,.55);
  border-radius: 16px;
  background: rgba(10,45,92,.42);
  backdrop-filter: blur(10px);
  margin-bottom: 36px;
  /* Illuminated by the beam landing on it */
  box-shadow:
    0 0 90px rgba(95,255,58,.32),
    0 0 50px rgba(125,224,255,.22),
    0 10px 40px rgba(0,0,0,.55),
    inset 0 0 36px rgba(95,255,58,.10),
    inset 0 1px 0 rgba(255,255,255,.12);
}
.meta-block { text-align: left; }
.meta-label {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-neon);
  margin-bottom: 4px;
  text-shadow: 0 0 14px rgba(95,255,58,.55);
}
.meta-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1px;
  line-height: 1.25;
  text-transform: uppercase;
  color: #f6ffff;
  text-shadow: 0 0 14px rgba(125,224,255,.45), 0 0 4px rgba(255,255,255,.6);
}
.meta-divider {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, var(--green-neon), transparent);
  box-shadow: 0 0 8px rgba(95,255,58,.6);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 50px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  text-align: center;
  font-family: var(--font-body);
  letter-spacing: .3px;
}
.btn-primary {
  background: var(--grad-beam);
  color: #00121f;
  box-shadow: 0 6px 28px rgba(95,255,58,.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(95,255,58,.7); color: #00121f; }
.btn-ghost {
  background: rgba(43,169,242,.08);
  color: var(--ink);
  border: 1px solid rgba(43,169,242,.4);
}
.btn-ghost:hover { background: rgba(43,169,242,.18); transform: translateY(-2px); color: var(--ink); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--green-neon);
}
.btn-outline:hover { background: var(--green-neon); color: #00121f; box-shadow: 0 0 22px rgba(95,255,58,.5); }

/* ===== Scroll cue ===== */
.scroll-cue {
  display: inline-block;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(43,169,242,.55);
  border-radius: 16px;
  position: relative;
}
.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--green-neon);
  border-radius: 2px;
  animation: dropper 1.6s ease-in-out infinite;
}
@keyframes dropper {
  0% { opacity: 0; transform: translate(-50%, 0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 18px); }
}

/* ===== Section base ===== */
.section {
  padding: 110px 0;
  position: relative;
}
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: .8rem;
  color: var(--green-neon);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 1.5px;
  margin-bottom: 50px;
  max-width: 900px;
  text-transform: uppercase;
}
.grad-text {
  background: var(--grad-beam);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sub-heading {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 60px 0 24px;
  color: var(--blue-light);
}
.lede { font-size: 1.15rem; color: var(--ink-soft); }
.placeholder-note {
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(95,255,58,.07);
  border: 1px dashed rgba(95,255,58,.4);
  color: rgba(156,255,122,.9);
  border-radius: 10px;
  font-size: .9rem;
  font-style: italic;
}
.placeholder-note code {
  background: rgba(0,0,0,.4);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .85em;
  color: var(--blue-light);
}

/* ===== About ===== */
.about-grid {
  display: grid;
  gap: 22px;
  max-width: 760px;
  font-size: 1.08rem;
}
.about-grid p { color: var(--ink-soft); }
.about-grid .lede { color: var(--ink); font-size: 1.25rem; }

/* ===== Lineup ===== */
.headliners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.artist-card {
  background: rgba(10,45,92,.18);
  border: 1px solid rgba(43,169,242,.18);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.artist-card:hover {
  transform: translateY(-6px);
  border-color: rgba(95,255,58,.5);
  box-shadow: 0 18px 40px rgba(0,0,0,.55), 0 0 30px rgba(95,255,58,.18);
}
.artist-art {
  aspect-ratio: 1;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, var(--c1), var(--c2));
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.artist-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 70%, rgba(255,255,255,.4), transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(0,0,0,.4), transparent 50%);
  mix-blend-mode: overlay;
}
.artist-art::after {
  content: "";
  position: absolute;
  inset: 12% 30% auto 30%;
  height: 35%;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  filter: blur(8px);
}
.artist-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--ink);
}
.artist-tag {
  color: var(--ink-soft);
  font-size: .9rem;
}

.supporting {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.support-pill {
  padding: 10px 22px;
  border: 1px solid rgba(43,169,242,.35);
  border-radius: 999px;
  background: rgba(43,169,242,.06);
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 1px;
}

/* ===== Schedule ===== */
.day-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.day {
  background: rgba(10,45,92,.18);
  border: 1px solid rgba(43,169,242,.18);
  border-radius: var(--radius);
  padding: 28px;
}
.day-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(43,169,242,.25);
}
.day-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.day-date {
  font-family: var(--font-display);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-neon);
}
.day-list { list-style: none; display: grid; gap: 14px; }
.day-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
}
.day-list li.hl .event {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--grad-beam);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.day-list .time {
  font-size: .85rem;
  color: var(--blue-light);
  letter-spacing: 1px;
}
.day-list .event { color: var(--ink); }

/* ===== Tickets ===== */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.ticket-card {
  position: relative;
  background: rgba(10,45,92,.18);
  border: 1px solid rgba(43,169,242,.22);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.ticket-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-neon);
  box-shadow: 0 12px 30px rgba(0,0,0,.45), 0 0 24px rgba(95,255,58,.18);
}
.ticket-card.featured {
  border-color: transparent;
  background:
    linear-gradient(rgba(3,6,15,.92), rgba(3,6,15,.92)) padding-box,
    var(--grad-beam) border-box;
  border: 2px solid transparent;
  box-shadow: 0 18px 50px rgba(95,255,58,.18), 0 0 30px rgba(43,169,242,.25);
}
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-beam);
  color: #00121f;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(95,255,58,.4);
}
.ticket-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ticket-card .price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
  color: var(--green-neon);
  text-shadow: 0 0 20px rgba(95,255,58,.35);
}
.ticket-card .price small {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: 2px;
  color: var(--ink-soft);
  margin-top: 4px;
  text-transform: uppercase;
}
.ticket-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
  font-size: .95rem;
  color: var(--ink-soft);
}
.ticket-card ul li {
  padding-left: 22px;
  position: relative;
}
.ticket-card ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--green-neon);
}
.tier-pill {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(43,169,242,.12);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 600;
}
.ticket-card.featured .tier-pill {
  color: var(--green-neon);
  background: rgba(95,255,58,.12);
}
.addon-note {
  margin-top: 24px;
  text-align: center;
  color: var(--ink-soft);
  font-size: .95rem;
}

/* ===== Vendors ===== */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.vendor-tile {
  background: rgba(10,45,92,.18);
  border: 1px solid rgba(43,169,242,.18);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .3s, background .3s, border-color .3s;
}
.vendor-tile:hover {
  transform: translateY(-4px);
  background: rgba(43,169,242,.1);
  border-color: rgba(95,255,58,.35);
}
.vendor-tile h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--green-neon);
}
.vendor-tile p { color: var(--ink-soft); font-size: .98rem; }

/* ===== Location ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.location-info { display: grid; gap: 22px; }
.location-list {
  list-style: none;
  display: grid;
  gap: 12px;
}
.location-list li {
  padding: 12px 16px;
  background: rgba(10,45,92,.2);
  border-radius: 10px;
  border-left: 3px solid var(--green-neon);
  color: var(--ink-soft);
}
.location-list strong {
  color: var(--ink);
  display: inline-block;
  margin-right: 6px;
}
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(43,169,242,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.55);
  aspect-ratio: 4/3;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  /* Tint the map cooler/bluer to match the palette */
  filter: hue-rotate(190deg) saturate(.8) brightness(.85);
}

/* ===== Investors ===== */
.investor-card {
  background: linear-gradient(135deg, rgba(43,169,242,.1), rgba(95,255,58,.06));
  border: 1px solid rgba(43,169,242,.25);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.investor-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--grad-beam);
  z-index: -1;
  border-radius: 26px;
  opacity: .25;
  filter: blur(20px);
}
.investor-card .lede { max-width: 640px; margin: 0 auto 32px; }
.investor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 24px;
}

/* ===== FAQ ===== */
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
}
.faq-list details {
  background: rgba(10,45,92,.18);
  border: 1px solid rgba(43,169,242,.2);
  border-radius: 14px;
  padding: 18px 22px;
  transition: background .25s, border-color .25s;
}
.faq-list details[open] {
  background: rgba(43,169,242,.1);
  border-color: rgba(95,255,58,.4);
}
.faq-list summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--green-neon);
  transition: transform .25s;
}
.faq-list details[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.faq-list details p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

/* ===== Signup ===== */
.signup-card {
  background: linear-gradient(135deg, rgba(43,169,242,.1), rgba(95,255,58,.06));
  border: 1px solid rgba(43,169,242,.25);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  max-width: 760px;
}
.signup-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 30px auto 16px;
  flex-wrap: wrap;
}
.signup-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(43,169,242,.35);
  background: rgba(0,0,0,.5);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
}
.signup-form input::placeholder { color: rgba(155,192,220,.55); }
.signup-form input:focus {
  outline: 2px solid var(--green-neon);
  outline-offset: 2px;
}
.signup-msg {
  color: var(--green-neon);
  font-weight: 600;
  margin-top: 10px;
  text-shadow: 0 0 12px rgba(95,255,58,.4);
}

/* ===== Footer ===== */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(43,169,242,.18);
  background: rgba(0,0,0,.7);
  margin-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.footer-mark {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(95,255,58,.4));
  margin-bottom: 6px;
}
.footer-brand .brand-text { font-size: 1.7rem; }
.footer-brand p { color: var(--ink-soft); font-size: .9rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-self: center;
  justify-content: center;
}
.footer-links a { color: var(--ink-soft); font-size: .9rem; }
.footer-meta { text-align: right; font-size: .85rem; color: var(--ink-soft); }
.footer-meta .copyright { margin-top: 6px; opacity: .7; }

/* ===== Reveal-on-scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0,0,0,.97);
    backdrop-filter: blur(14px);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(43,169,242,.2);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .25s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { font-size: 1.05rem; }
  .hero { padding-top: 40px; }
  .hero-meta {
    flex-direction: column;
    gap: 16px;
  }
  .meta-divider { display: none; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand { align-items: center; }
  .footer-meta { text-align: center; }
  .footer-links { justify-content: center; }
  .section { padding: 80px 0; }
}

@media (max-width: 520px) {
  .hero-meta { padding: 16px 20px; }
  .investor-card, .signup-card { padding: 40px 22px; }
  .floater { width: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  .aurora, .stars, .floater, .hero-logo, .hero-orb, .scroll-cue span { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
