/* =============================================
   SURGE STARTUPS MEETUP 2026 — PREMIUM DARK THEME
   ============================================= */

:root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #A8860A;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #161616;
  --dark-3: #1E1E1E;
  --dark-4: #242424;
  --white: #FFFFFF;
  --white-80: rgba(255,255,255,0.8);
  --white-50: rgba(255,255,255,0.5);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.1);
  --white-5: rgba(255,255,255,0.05);
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ===== SHARED UTILITIES ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }

.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  background: rgba(212, 175, 55, 0.08);
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 60px;
  color: var(--white);
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #0A0A0A;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 18px 44px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.4), 0 8px 32px rgba(0,0,0,0.5);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: var(--transition);
  border-radius: 999px;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.6), 0 16px 48px rgba(0,0,0,0.6);
}

.cta-btn:hover::after { opacity: 1; }

.cta-large {
  font-size: 1.2rem;
  padding: 22px 56px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 40px rgba(212,175,55,0.4); }
  50%       { box-shadow: 0 0 80px rgba(212,175,55,0.7); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0.4; }
}

@keyframes floatParticle {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(var(--drift)) scale(0.5); opacity: 0; }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212,175,55,0.08) 0%, transparent 70%),
    linear-gradient(180deg, #0A0A0A 0%, #111111 100%);
  text-align: center;
  padding: 24px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(212,175,55,0.03) 0px, rgba(212,175,55,0.03) 1px,
      transparent 1px, transparent 80px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(212,175,55,0.03) 0px, rgba(212,175,55,0.03) 1px,
      transparent 1px, transparent 80px
    );
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  animation: floatParticle var(--duration) var(--delay) infinite ease-in;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge-pill {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 22px;
  text-shadow: 0 0 60px rgba(212,175,55,0.15);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white-80);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 18px 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white-80);
}

.meta-icon { font-size: 1.1rem; }

.meta-divider {
  width: 1px;
  height: 24px;
  background: rgba(212,175,55,0.3);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 36px;
}

.hero-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--white-50);
  letter-spacing: 1px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollBounce 2s infinite;
  box-shadow: 0 0 12px var(--gold);
}

/* =============================================
   WHY ATTEND
   ============================================= */
.why-attend {
  background: var(--dark);
}

.why-attend::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.reason-card {
  background: var(--dark-3);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.06), transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.reason-card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.1);
}

.reason-card:hover::before { opacity: 1; }

.reason-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.reason-card p {
  font-size: 0.95rem;
  color: var(--white-80);
  line-height: 1.5;
}

.reason-card strong { color: var(--white); }

/* =============================================
   HIGHLIGHTS
   ============================================= */
.highlights {
  background: var(--black);
}

.highlights::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.highlight-card {
  background: var(--dark-3);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius);
  padding: 28px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.highlight-card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateX(6px);
  background: var(--dark-4);
}

.check-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 0 16px rgba(212,175,55,0.3);
}

.highlight-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.highlight-card p {
  font-size: 0.875rem;
  color: var(--white-50);
}

/* =============================================
   AGENDA / TIMELINE
   ============================================= */
.agenda {
  background: var(--dark);
}

.agenda::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 140px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,0.4) 10%, rgba(212,175,55,0.4) 90%, transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  margin-bottom: 36px;
  align-items: flex-start;
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 135px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid rgba(212,175,55,0.4);
  z-index: 1;
}

.gold-time::after {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(212,175,55,0.6);
  width: 16px;
  height: 16px;
  left: 133px;
}

.timeline-time {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  padding-top: 18px;
  text-align: right;
  padding-right: 8px;
}

.timeline-content {
  background: var(--dark-3);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: rgba(212,175,55,0.3);
  background: var(--dark-4);
}

.gold-time .timeline-content {
  border-color: rgba(212,175,55,0.35);
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.03));
  box-shadow: 0 0 30px rgba(212,175,55,0.1);
}

.timeline-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.gold-time .timeline-content h3 {
  color: var(--gold-light);
}

.timeline-content p {
  font-size: 0.875rem;
  color: var(--white-50);
}

/* =============================================
   VENUE
   ============================================= */
.venue {
  background: var(--black);
}

.venue::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.venue-card {
  background: var(--dark-3);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  box-shadow: 0 0 60px rgba(0,0,0,0.4);
}

.venue-big-icon {
  font-size: 5rem;
  display: block;
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.3));
}

.venue-icon-wrap {
  min-width: 120px;
  text-align: center;
}

.venue-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}

.venue-info p {
  color: var(--white-80);
  font-size: 1rem;
  margin-bottom: 24px;
  max-width: 500px;
}

.venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.venue-tag {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
}

/* =============================================
   TICKET SECTION
   ============================================= */
.ticket {
  background: var(--dark);
}

.ticket::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.ticket-card {
  display: flex;
  align-items: stretch;
  background: var(--dark-3);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(212,175,55,0.1), 0 40px 80px rgba(0,0,0,0.5);
  max-width: 820px;
  margin: 0 auto;
  animation: pulse-gold 4s infinite;
}

.ticket-left {
  flex: 1;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.06), transparent);
}

.ticket-price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(212,175,55,0.4);
}

.ticket-price span {
  font-size: 1.2rem;
  color: var(--white-50);
  font-family: var(--font-body);
  font-weight: 400;
}

.ticket-tag {
  font-size: 0.8rem;
  color: var(--white-50);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.ticket-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--white-50);
  letter-spacing: 0.5px;
}

.ticket-divider {
  width: 2px;
  background: repeating-linear-gradient(
    180deg,
    rgba(212,175,55,0.3) 0px,
    rgba(212,175,55,0.3) 12px,
    transparent 12px,
    transparent 20px
  );
  position: relative;
  flex-shrink: 0;
}

.ticket-hole {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dark);
  left: -14px;
}

.ticket-hole.top { top: -14px; }
.ticket-hole.bottom { bottom: -14px; }

.ticket-right {
  flex: 1;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ticket-right h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.include-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.include-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--white-80);
}

.include-list .check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
}

/* =============================================
   TRUST SECTION
   ============================================= */
.trust {
  background: var(--black);
}

.trust::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.trust-card {
  background: var(--dark-3);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  transition: var(--transition);
}

.trust-card:hover {
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.trust-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.875rem;
  color: var(--white-50);
}

.trust-statement {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 28px 40px;
}

.trust-statement p {
  font-size: 1.1rem;
  color: var(--white-80);
  line-height: 1.7;
}

.trust-statement strong {
  color: var(--gold);
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-big-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-sub {
  font-size: 1.15rem;
  color: var(--white-80);
  max-width: 480px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.cta-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--white-50);
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

/* =============================================
   AFTER PAYMENT
   ============================================= */
.after-payment {
  background: var(--black);
}

.after-payment::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.step-card {
  background: var(--dark-3);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  max-width: 260px;
  flex: 1;
  min-width: 200px;
  transition: var(--transition);
}

.step-card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

.step-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 8px;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--white-50);
}

.step-arrow {
  font-size: 1.8rem;
  color: rgba(212,175,55,0.3);
  font-weight: 300;
  flex-shrink: 0;
}

/* =============================================
   TERMS
   ============================================= */
.terms {
  background: var(--dark);
  padding: 60px 0;
}

.terms::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.terms-box {
  background: var(--dark-4);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 40px 48px;
  max-width: 640px;
  margin: 0 auto;
}

.terms-box h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.terms-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.terms-list li {
  font-size: 0.95rem;
  color: var(--white-80);
}

.terms-list strong {
  color: var(--white);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 48px 0 32px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-text {
  font-size: 0.875rem;
  color: var(--white-50);
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin: 14px 0 16px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--white-50);
  border: 1px solid rgba(212,175,55,0.22);
  background: rgba(212,175,55,0.06);
  border-radius: 999px;
  padding: 6px 12px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  border-color: rgba(212,175,55,0.55);
  background: rgba(212,175,55,0.13);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* =============================================
   REGISTRATION MODAL
   ============================================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--dark-2);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 48px 44px;
  position: relative;
  box-shadow: 0 0 100px rgba(212, 175, 55, 0.12), 0 40px 80px rgba(0, 0, 0, 0.7);
  transform: translateY(32px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,0.3) transparent;
}

.modal-backdrop.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-box::-webkit-scrollbar { width: 4px; }
.modal-box::-webkit-scrollbar-track { background: transparent; }
.modal-box::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); border-radius: 2px; }

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--white-80);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}

.modal-close:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--gold);
}

.modal-header {
  margin-bottom: 36px;
  text-align: center;
}

.modal-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.07);
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 0.875rem;
  color: var(--white-50);
}

/* Form groups */
.reg-form { display: flex; flex-direction: column; gap: 22px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--white-80);
}

.req { color: var(--gold); }

.form-group input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.form-group input::placeholder { color: rgba(255,255,255,0.28); }

.form-group input:focus {
  border-color: rgba(212, 175, 55, 0.6);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.form-group input.invalid {
  border-color: rgba(220, 60, 60, 0.6);
  box-shadow: 0 0 0 3px rgba(220,60,60,0.1);
}

.field-error {
  font-size: 0.75rem;
  color: #FF6B6B;
  min-height: 16px;
  display: block;
}

/* Phone with prefix */
.phone-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.phone-wrap:focus-within {
  border-color: rgba(212, 175, 55, 0.6);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.phone-wrap.invalid {
  border-color: rgba(220, 60, 60, 0.6);
  box-shadow: 0 0 0 3px rgba(220,60,60,0.1);
}

.phone-prefix {
  padding: 14px 14px 14px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white-50);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.1);
  user-select: none;
}

.phone-wrap input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  flex: 1;
  border-radius: 0 !important;
}

.phone-wrap input:focus { box-shadow: none !important; }

/* Squad grid */
.squad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.squad-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--white-80);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 10px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.squad-btn:hover {
  border-color: rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.08);
  color: var(--gold);
}

.squad-btn.selected {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.08));
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

.squad-grid.invalid-squad .squad-btn:not(.selected) {
  border-color: rgba(220,60,60,0.4);
}

/* Referral toggle */
.referral-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ref-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--white-80);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 12px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.ref-btn:hover {
  border-color: rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.08);
  color: var(--gold);
}

.ref-btn.selected[data-val="no"] {
  border-color: rgba(120,200,120,0.6);
  background: rgba(80,180,80,0.1);
  color: #7BC87B;
  box-shadow: 0 0 16px rgba(80,180,80,0.15);
}

.ref-btn.selected[data-val="yes"] {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.08));
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

.referral-toggle.invalid-ref .ref-btn:not(.selected) {
  border-color: rgba(220,60,60,0.4);
}

/* Slide-down for referred_by input */
.referral-name-group {
  animation: fadeUp 0.3s ease forwards;
}

/* Price row */
.form-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
  padding: 14px 20px;
}

.form-price-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-50);
}

.form-price-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-display);
}

.form-price-note {
  font-size: 0.75rem;
  color: var(--white-50);
  font-family: var(--font-body);
  font-weight: 400;
}

/* Submit button */
.cta-submit {
  width: 100%;
  text-align: center;
  padding: 18px;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
}

/* Form terms */
.form-terms {
  font-size: 0.75rem;
  color: var(--white-50);
  text-align: center;
  line-height: 1.6;
}

/* Success state */
.reg-success {
  text-align: center;
  padding: 20px 0 10px;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
  animation: fadeUp 0.5s ease forwards;
}

.reg-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 14px;
}

.reg-success p {
  font-size: 1rem;
  color: var(--white-80);
  line-height: 1.7;
  margin-bottom: 20px;
}

.success-details {
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  padding: 18px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.success-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.success-detail-row .sd-label {
  color: var(--white-50);
  font-weight: 600;
}

.success-detail-row .sd-val {
  color: var(--white);
  font-weight: 600;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .hero-meta {
    flex-direction: column;
    gap: 14px;
    padding: 20px;
  }

  .meta-divider { width: 40px; height: 1px; }

  .timeline::before { left: 0; }

  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 24px;
    gap: 8px;
  }

  .timeline-item::after {
    left: -6px;
    top: 6px;
  }

  .gold-time::after { left: -8px; }

  .timeline-time {
    text-align: left;
    padding-top: 0;
    padding-right: 0;
    font-size: 0.75rem;
  }

  .venue-card {
    flex-direction: column;
    padding: 36px 24px;
    gap: 24px;
    text-align: center;
  }

  .venue-tags { justify-content: center; }

  .ticket-card {
    flex-direction: column;
  }

  .ticket-divider {
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      rgba(212,175,55,0.3) 0px,
      rgba(212,175,55,0.3) 12px,
      transparent 12px,
      transparent 20px
    );
  }

  .ticket-hole {
    top: -14px;
    left: auto;
  }

  .ticket-hole.top { left: -14px; top: -14px; }
  .ticket-hole.bottom { left: auto; right: -14px; top: -14px; }

  .ticket-left, .ticket-right {
    padding: 36px 28px;
    align-items: center;
    text-align: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    width: 100%;
    text-align: center;
  }

  .steps-row { flex-direction: column; align-items: center; }

  .terms-box { padding: 28px 24px; }

  .cta-large { font-size: 1.05rem; padding: 18px 36px; }

  .modal-box { padding: 36px 24px; }
  .modal-title { font-size: 1.6rem; }
  .squad-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { gap: 8px 10px; }
  .footer-links a { font-size: 0.78rem; padding: 6px 10px; }
}
