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

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --pink:        #FD358F;
  --pink-dark:        #65012e; 
  --pink-glow:   rgba(255, 42, 109, 0.3);
  --purple:      #BF00FF;
  --purple-glow: rgba(191, 0, 255, 0.25);
  --cyan:        #00C8FF;
  --cyan-glow:   rgba(0, 200, 255, 0.2);
  --lime:        #C3FF00;
  --lime-dark:   #5c7800; 
  --lime-glow:   rgba(195, 255, 0, 0.25);

  --dark:        #06000E;
  --dark-mid:    #0D0019;
  --text:        #EDE0FF;
  --text-muted:  rgba(237, 224, 255, 0.5);
  --text-subtle: rgba(237, 224, 255, 0.22);

  --card-bg:       rgba(255, 255, 255, 0.04);
  --card-bg-hover: rgba(255, 255, 255, 0.07);
  --card-border:   rgba(255, 255, 255, 0.08);

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 32px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Ojuju', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s ease, color 0.4s ease;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

/* ============================================================
   GRAIN OVERLAY
   ============================================================ */
.grain {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 8s steps(10) infinite;
}

@keyframes grain-shift {
  0%   { transform: translate(0,   0);    }
  10%  { transform: translate(-5%, -8%);  }
  20%  { transform: translate(-10%, 5%);  }
  30%  { transform: translate(5%, -12%);  }
  40%  { transform: translate(-5%,  20%); }
  50%  { transform: translate(-15%, 10%); }
  60%  { transform: translate(15%,  0);   }
  70%  { transform: translate(0,    10%); }
  80%  { transform: translate(3%,  -15%); }
  90%  { transform: translate(-10%, 7%);  }
  100% { transform: translate(0,   0);    }
}

/* ============================================================
   AMBIENT ORBS
   ============================================================ */
.orb-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  mix-blend-mode: screen;
  opacity: 0.55;
}

.orb-1 {
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, var(--pink) 0%, transparent 68%);
  top: -280px;
  right: -120px;
  animation: float-a 26s ease-in-out infinite;
}

.orb-2 {
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 68%);
  top: 180px;
  left: -180px;
  animation: float-b 32s ease-in-out infinite;
  opacity: 0.45;
}

.orb-3 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 68%);
  bottom: -80px;
  right: 18%;
  animation: float-c 21s ease-in-out infinite;
  opacity: 0.38;
}

.orb-4 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--lime) 0%, transparent 68%);
  bottom: 28%;
  left: 8%;
  animation: float-d 24s ease-in-out infinite;
  opacity: 0.28;
}

@keyframes float-a {
  0%,100% { transform: translate(0, 0)    scale(1);   }
  33%      { transform: translate(-70px, 55px) scale(1.08); }
  66%      { transform: translate(55px, -35px) scale(0.92); }
}
@keyframes float-b {
  0%,100% { transform: translate(0, 0)     scale(1);   }
  33%      { transform: translate(90px, -65px) scale(1.05); }
  66%      { transform: translate(-45px, 75px) scale(0.95); }
}
@keyframes float-c {
  0%,100% { transform: translate(0, 0);     }
  50%      { transform: translate(-75px, -55px); }
}
@keyframes float-d {
  0%,100% { transform: translate(0, 0); }
  50%      { transform: translate(55px, 38px); }
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.gradient-text {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-warm {
  background: linear-gradient(135deg, var(--lime) 0%, var(--cyan) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-muted);
  flex-shrink: 0;
}

.section-heading {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

/* ============================================================
   GLASS
   ============================================================ */
.glass {
  background: var(--card-bg);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
              transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.glass-hover:hover {
  background: var(--card-bg-hover);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 0 48px rgba(255,42,109,0.07);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: 'Ojuju', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 0 28px var(--pink-glow), 0 0 56px var(--purple-glow);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 40px var(--pink-glow), 0 0 80px var(--purple-glow);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--card-border);
}

.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}

.btn-lime {
  background: var(--lime);
  color: #000;
  box-shadow: 0 0 24px var(--lime-glow);
}

.btn-lime:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 40px var(--lime-glow);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease),
              border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(6,0,14,0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 14px 0;
  border-bottom: 1px solid var(--card-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--pink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta { display: flex; align-items: center; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(6,0,14,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a:not(.btn) {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.mobile-menu a:not(.btn):hover { color: var(--pink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-float-tags {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-float-tag {
  position: absolute;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-subtle);
  white-space: nowrap;
  animation: tag-float 20s ease-in-out infinite;
}

.hero-float-tag:nth-child(1) { top: 18%; right: 8%; animation-delay: 0s; }
.hero-float-tag:nth-child(2) { top: 42%; right: 5%; animation-delay: -7s; }
.hero-float-tag:nth-child(3) { top: 65%; right: 12%; animation-delay: -14s; }
.hero-float-tag:nth-child(4) { top: 30%; right: 22%; animation-delay: -3s; opacity: 0.5; }

@keyframes tag-float {
  0%,100% { transform: translateY(0) rotate(-1deg); opacity: 0.22; }
  50%      { transform: translateY(-12px) rotate(1deg); opacity: 0.38; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
  width: fit-content;
}

.hero-badge .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(195,255,0,0.4); }
  50%      { opacity: 0.7; transform: scale(0.85); box-shadow: 0 0 0 5px rgba(195,255,0,0); }
}

.hero-title {
  font-size: clamp(4.2rem, 13vw, 12rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.hero-title-line1 {
  display: block;
  color: var(--text);
}

.hero-title-line2 {
  display: block;
  background: linear-gradient(120deg, var(--pink) 0%, var(--purple) 45%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1.3rem, 3.5vw, 2.8rem);
  font-weight: 200;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-style: italic;
}

.hero-description {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 400;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-subtle);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(237,224,255,0.2), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,100% { opacity: 0.3; }
  50%      { opacity: 0.8; }
}

/* ============================================================
   NEXT EVENT
   ============================================================ */
.next-event-card {
  padding: 52px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.next-event-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,42,109,0.07) 0%,
    rgba(191,0,255,0.04) 50%,
    rgba(0,200,255,0.03) 100%);
  pointer-events: none;
  border-radius: inherit;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.event-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.event-tag-date {
  background: rgba(255,42,109,0.12);
  color: var(--pink);
  border: 1px solid rgba(255,42,109,0.22);
}

.event-tag-time {
  background: rgba(191,0,255,0.1);
  color: var(--purple);
  border: 1px solid rgba(191,0,255,0.2);
}

.event-tag-location {
  background: rgba(0,200,255,0.09);
  color: var(--cyan);
  border: 1px solid rgba(0,200,255,0.18);
}

.next-event-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 24px;
}

.next-event-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 40px;
}

.next-event-footer {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.book-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.book-pill-inner { display: flex; flex-direction: column; }
.book-pill-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.book-pill-title {
  font-weight: 700;
  color: var(--text);
}

/* ============================================================
   ARCHIVE
   ============================================================ */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.archive-card {
  padding: 32px;
  border-radius: var(--radius);
  cursor: default;
  display: flex;
  flex-direction: column;
}

.archive-emoji {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.archive-edition {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 8px;
}

.archive-book-title {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 4px;
}

.archive-author {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.archive-takeaway {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
  flex: 1;
}

.archive-vibe {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-block;
}

/* ============================================================
   TICKETS
   ============================================================ */
.tickets-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.6;
  margin-bottom: 0;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.ticket-card {
  padding: 36px 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.ticket-card.featured {
  background: linear-gradient(135deg, rgba(255,42,109,0.08), rgba(191,0,255,0.06));
  border-color: rgba(255,42,109,0.22);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  padding: 4px 11px;
  border-radius: 100px;
}

.ticket-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.ticket-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.ticket-price {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 18px 0 20px;
}

.ticket-price sup {
  font-size: 1.4rem;
  vertical-align: super;
  font-weight: 700;
}

.ticket-features {
  flex: 1;
  margin-bottom: 28px;
}

.ticket-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--card-border);
}

.ticket-features li:last-child { border-bottom: none; }

.tick {
  color: var(--lime);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 52px;
}

details {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background 0.25s, border-color 0.25s;
}

details[open] {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.13);
}

summary {
  padding: 22px 26px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: color 0.2s;
}

summary:hover { color: var(--pink); }
summary::-webkit-details-marker { display: none; }

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 300;
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}

details[open] .faq-icon {
  background: rgba(255,42,109,0.14);
  border-color: rgba(255,42,109,0.28);
  color: var(--pink);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 26px 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-heading {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 20px;
}

.contact-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s;
}

.social-chip:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

.contact-form-wrap {
  padding: 40px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  font-family: 'Ojuju', sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-subtle);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(255,42,109,0.38);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(255,42,109,0.1);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--card-border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 900;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-subtle);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

/* ============================================================
   FADE IN
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.32s; }
.delay-4 { transition-delay: 0.44s; }
.delay-5 { transition-delay: 0.56s; }

/* ============================================================
   EVENT PAGE
   ============================================================ */
.event-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.event-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(6,0,14,0.0) 35%,
    rgba(6,0,14,0.7) 75%,
    var(--dark) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.event-hero-content { position: relative; z-index: 1; }

.event-edition-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
}

.event-main-title {
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
  margin-bottom: 18px;
}

.event-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.event-detail-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 40px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.event-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-right: 1px solid var(--card-border);
  flex: 1;
  min-width: 160px;
}

.event-detail-item:last-child { border-right: none; }

.detail-icon { font-size: 1.3rem; flex-shrink: 0; }

.detail-text { display: flex; flex-direction: column; gap: 2px; }

.detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.detail-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* About / What to expect */
.event-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.event-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.event-description p + p { margin-top: 18px; }
.event-description em { color: var(--text); font-style: italic; }

.event-description li {
  text-align: center;
  list-style-type: none;
}

.expect-card {
  padding: 36px;
  border-radius: var(--radius);
}

.expect-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.expect-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
}

.expect-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

/* Host */
.host-card {
  padding: 32px;
  border-radius: var(--radius);
  display: flex;
  gap: 24px;
  align-items: center;
  max-width: 580px;
}

.host-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  flex-shrink: 0;
}

.host-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

.host-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.host-bio { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Event ticket section */
.event-ticket-wrap {
  text-align: center;
}

.event-ticket-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 52px;
}

.event-ticket-card {
  width: 280px;
  padding: 36px 30px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.event-ticket-card.highlighted {
  background: rgba(195,255,0,0.05);
  border-color: rgba(195,255,0,0.2);
}

.event-ticket-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--lime);
  color: #000;
  padding: 3px 10px;
  border-radius: 100px;
}

.ticket-spots {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-subtle);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .archive-grid,
  .tickets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  div > .nav-theme-toggle { display: none; }   /* moves into hamburger menu on mobile */

  .hamburger { display: flex; }

  .nav-cta .btn {
    padding: 9px 16px;
    font-size: 13px;
  }

  section { padding: 72px 0; }

  .next-event-card { padding: 28px 24px; }

  .archive-grid { grid-template-columns: 1fr; }

  .tickets-grid { grid-template-columns: 1fr; }

  .faq-grid { grid-template-columns: 1fr; }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-inner { flex-direction: column; text-align: center; }

  .event-content-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .event-detail-bar { flex-direction: column; }

  .event-detail-item {
    border-right: none;
    border-bottom: 1px solid var(--card-border);
  }

  .event-detail-item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }

  .next-event-footer { flex-direction: column; align-items: flex-start; }

  .archive-grid { gap: 12px; }

  .event-ticket-row { flex-direction: column; align-items: center; }

  .event-ticket-card { width: 100%; max-width: 340px; }
}

/* ============================================================
   THEME TOGGLE BUTTON
   ============================================================ */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  line-height: 1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
              transform 0.3s var(--ease);
}

.theme-toggle:hover {
  background: var(--card-bg-hover);
  transform: scale(1.12) rotate(20deg);
}

/* ============================================================
   LIGHT THEME
   ============================================================ */
[data-theme="light"] {
  --dark:          #F8F3FF;
  --dark-mid:      #EDE6FF;
  --text:          #150025;
  --text-muted:    rgba(21, 0, 37, 0.52);
  --text-subtle:   rgba(21, 0, 37, 0.22);
  --card-bg:       rgba(255, 255, 255, 0.62);
  --card-bg-hover: rgba(255, 255, 255, 0.86);
  --card-border:   rgba(21, 0, 37, 0.08);
}

/* Orbs: multiply mode renders colors INTO the light background */
[data-theme="light"] .orb {
  mix-blend-mode: multiply;
  opacity: 0.52;
}

[data-theme="light"] .grain {
  opacity: 0.022;
}

/* Nav */
[data-theme="light"] .nav.scrolled {
  background: rgba(248, 243, 255, 0.9);
  border-bottom-color: rgba(21, 0, 37, 0.07);
}

/* Mobile menu */
[data-theme="light"] .mobile-menu {
  background: rgba(248, 243, 255, 0.98);
}

/* Hero */
[data-theme="light"] .hero-badge {
  background: rgba(21, 0, 37, 0.05);
  border-color: rgba(21, 0, 37, 0.09);
}

[data-theme="light"] .hero-title-line1 {
  background: linear-gradient(135deg, #150025 0%, rgba(21, 0, 37, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="light"] .scroll-line {
  background: linear-gradient(to bottom, rgba(21, 0, 37, 0.16), transparent);
}

/* Buttons */
[data-theme="light"] .btn-secondary {
  background: rgba(21, 0, 37, 0.05);
  border-color: rgba(21, 0, 37, 0.1);
  color: var(--text);
}

[data-theme="light"] .btn-secondary:hover {
  background: rgba(21, 0, 37, 0.1);
  border-color: rgba(21, 0, 37, 0.17);
}

[data-theme="light"] .btn-outline {
  border-color: rgba(21, 0, 37, 0.15);
  color: var(--text);
}

[data-theme="light"] .btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
}

/* FAQ accordion */
[data-theme="light"] details[open] {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(21, 0, 37, 0.12);
}

/* Forms */
[data-theme="light"] .form-input,
[data-theme="light"] .form-textarea {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(21, 0, 37, 0.1);
  color: var(--text);
}

[data-theme="light"] .form-input::placeholder,
[data-theme="light"] .form-textarea::placeholder {
  color: rgba(21, 0, 37, 0.28);
}

[data-theme="light"] .form-input:focus,
[data-theme="light"] .form-textarea:focus {
  background: #fff;
  border-color: rgba(255, 42, 109, 0.38);
  box-shadow: 0 0 0 3px rgba(255, 42, 109, 0.08);
}

/* Footer */
[data-theme="light"] footer {
  border-top-color: rgba(21, 0, 37, 0.07);
}

/* ── Event page specific ── */
[data-theme="light"] .event-hero-gradient {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(248, 243, 255, 0) 35%,
    rgba(248, 243, 255, 0.75) 75%,
    #F8F3FF 100%
  );
}

[data-theme="light"] .event-hero::before {
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(195, 255, 0, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(0, 200, 255, 0.16) 0%, transparent 60%);
}

[data-theme="light"] .event-detail-bar {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(21, 0, 37, 0.08);
}

[data-theme="light"] .event-detail-item {
  border-right-color: rgba(21, 0, 37, 0.07);
  border-bottom-color: rgba(21, 0, 37, 0.07);
}

[data-theme="light"] .edition-strip {
  background: rgba(195, 255, 0, 0.15);
  border-bottom-color: rgba(21, 0, 37, 0.07);
  color: rgba(21, 0, 37, 0.45);
}

[data-theme="light"] .countdown-unit {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(21, 0, 37, 0.08);
}

[data-theme="light"] .countdown-sep {
  color: rgba(21, 0, 37, 0.2);
}

[data-theme="light"] .sticky-cta {
  background: rgba(248, 243, 255, 0.96);
  border-top-color: rgba(21, 0, 37, 0.08);
}

[data-theme="light"] .edition-number {
  -webkit-text-stroke: 1px rgba(21, 0, 37, 0.04);
}

[data-theme="light"] .venue-icon {
  background: rgba(0, 200, 255, 0.12);
  border-color: rgba(0, 200, 255, 0.22);
}

/* ============================================================
   HERO SPLIT LAYOUT + GIF
   ============================================================ */
.hero-layout {
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-media {
  flex-shrink: 0;
  width: clamp(260px, 30vw, 400px);
}

.hero-gif-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.45),
    0 0 50px rgba(255, 42, 109, 0.2),
    0 0 90px rgba(191, 0, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-gif {
  width: 100%;
  height: auto;
  display: block;
}

[data-theme="light"] .hero-gif-wrap {
  box-shadow:
    0 24px 72px rgba(21, 0, 37, 0.18),
    0 0 48px rgba(255, 42, 109, 0.12);
  border-color: rgba(21, 0, 37, 0.07);
}

@media (max-width: 960px) {
  .hero-layout { gap: 36px; }
  .hero-media { width: clamp(220px, 28vw, 310px); }
}

@media (max-width: 768px) {
  .hero-layout {
    flex-direction: column;
    gap: 28px;
  }
  .hero-media {
    width: 100%;
    max-width: 100%;
  }
  .hero-gif {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
  }
  .hero-gif-wrap { border-radius: 16px; }
}

/* ============================================================
   MOBILE MENU THEME ROW
   ============================================================ */
.mobile-theme-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--card-border);
  width: 100%;
  justify-content: center;
}

.mobile-theme-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

/* ============================================================
   PHOTO STRIP (Moments)
   ============================================================ */
.moments-section {
  padding: 32px 0 64px;
  position: relative;
  z-index: 1;
}

.photo-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 12px 28px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.photo-strip::-webkit-scrollbar { display: none; }

.strip-photo {
  height: 300px;
  width: auto;
  min-width: 230px;
  max-width: 380px;
  object-fit: cover;
  border-radius: 18px;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
  filter: saturate(0.88);
  border: 1px solid var(--card-border);
}

.strip-photo:hover {
  transform: scale(1.025) rotate(-0.4deg);
  filter: saturate(1.1);
}

@media (max-width: 768px) {
  .strip-photo { height: 210px; min-width: 175px; }
  .photo-strip { padding: 8px 20px 16px; gap: 10px; }
}

/* ============================================================
   SOCIAL FOLLOW SECTION
   ============================================================ */
.social-follow-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.social-follow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.social-follow-card {
  padding: 36px 20px 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  text-decoration: none;
  transition: all 0.28s var(--ease);
}

.social-follow-card:hover {
  transform: translateY(-4px);
}

.social-follow-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.social-follow-icon svg {
  width: 38px;
  height: 38px;
  color: var(--text-muted);
  transition: color 0.25s, transform 0.28s var(--ease);
}

.social-follow-card:hover .social-follow-icon svg {
  transform: scale(1.12);
}

.social-follow-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.social-follow-handle {
  font-size: 13px;
  color: var(--text-muted);
}

/* Platform accent on hover */
.social-follow-card.fb:hover  { border-color: rgba(24,  119, 242, 0.3); box-shadow: 0 16px 40px rgba(24, 119, 242, 0.1); }
.social-follow-card.fb:hover .social-follow-icon svg  { color: #1877F2; }

.social-follow-card.ig:hover  { border-color: rgba(255, 42,  109, 0.3); box-shadow: 0 16px 40px rgba(255, 42, 109, 0.1); }
.social-follow-card.ig:hover .social-follow-icon svg  { color: var(--pink); }

.social-follow-card.tt:hover  { border-color: rgba(0,   200, 255, 0.3); box-shadow: 0 16px 40px rgba(0, 200, 255, 0.1); }
.social-follow-card.tt:hover .social-follow-icon svg  { color: var(--cyan); }

.social-follow-card.dc:hover  { border-color: rgba(88,  101, 242, 0.3); box-shadow: 0 16px 40px rgba(88, 101, 242, 0.1); }
.social-follow-card.dc:hover .social-follow-icon svg  { color: #5865F2; }

.social-follow-card.fbg:hover { border-color: rgba(24,  119, 242, 0.25); box-shadow: 0 16px 40px rgba(24, 119, 242, 0.08); }
.social-follow-card.fbg:hover .social-follow-icon svg { color: #1877F2; }

.social-follow-card.yt:hover  { border-color: rgba(255, 0,   0,   0.3);  box-shadow: 0 16px 40px rgba(255, 0, 0, 0.1); }
.social-follow-card.yt:hover .social-follow-icon svg  { color: #FF0000; }

.social-follow-card.sp:hover  { border-color: rgba(29,  185, 84,  0.3);  box-shadow: 0 16px 40px rgba(29, 185, 84, 0.1); }
.social-follow-card.sp:hover .social-follow-icon svg  { color: #1DB954; }

@media (max-width: 768px) {
  .social-follow-grid { grid-template-columns: repeat(2, 1fr); }
  .social-follow-card { padding: 28px 16px 22px; }
}

@media (max-width: 480px) {
  .social-follow-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
