/* StageDoors — main.css
 * Owns: all visual styles for the landing page.
 * Does NOT own: server logic, data models, API routes.
 */

/* ===========================
   TOKENS & RESET
   =========================== */
:root {
  --black: #080b0f;
  --black-2: #0d1117;
  --black-3: #111820;
  --surface: #141c24;
  --surface-2: #1a2535;
  --surface-3: #1f2d3d;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);
  --green: #3ecf8e;
  --green-dim: rgba(62, 207, 142, 0.12);
  --green-glow: rgba(62, 207, 142, 0.25);
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --gold-glow: rgba(201, 168, 76, 0.2);
  --white: #f0f4f8;
  --muted: rgba(240, 244, 248, 0.5);
  --muted-2: rgba(240, 244, 248, 0.3);

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Syne', system-ui, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ===========================
   TYPOGRAPHY
   =========================== */
em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--white);
}

strong {
  font-weight: 700;
  color: var(--white);
}

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), border-color var(--transition), padding var(--transition);
}

.nav--scrolled {
  background: rgba(8, 11, 15, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-svg { width: 36px; height: 36px; flex-shrink: 0; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--white);
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--white); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--green);
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background: #4fdfa0;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--green-glow);
}

/* Mobile hamburger */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.nav-mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--black-2);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--white); }
.mobile-link--cta {
  color: var(--green);
  font-weight: 700;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

/* Subtle grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 0%, transparent 75%);
}

/* Atmospheric glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow--green {
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(62, 207, 142, 0.14) 0%, transparent 70%);
  top: 5%;
  left: -10%;
}
.hero-glow--gold {
  width: 500px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  top: 10%;
  right: -5%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

/* Animated badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 28px;
  text-transform: uppercase;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px var(--green); opacity: 1; }
  50% { box-shadow: 0 0 16px var(--green); opacity: 0.7; }
}

/* Hero logo mark */
.hero-logo-mark {
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
  animation: float 5s ease-in-out infinite;
}

.hero-logo-svg { width: 80px; height: 80px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Hero title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-title em {
  font-style: italic;
  color: var(--green);
}

.hero-title--accent {
  display: inline-block;
  position: relative;
  color: var(--gold);
}
.hero-title--accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* Hero sub */
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
}

.break-md { display: none; }

/* Waitlist form */
.hero-actions { margin-bottom: 48px; }

.waitlist-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.waitlist-input {
  flex: 1;
  min-width: 220px;
  max-width: 340px;
  padding: 13px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.waitlist-input::placeholder { color: var(--muted-2); }
.waitlist-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-dim);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--green);
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: #4fdfa0;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--green-glow);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary--large { padding: 15px 30px; font-size: 1rem; }

.waitlist-note {
  font-size: 0.78rem;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  font-family: var(--font-mono);
}

.waitlist-success {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--green-dim);
  border: 1px solid rgba(62, 207, 142, 0.3);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-weight: 600;
  font-size: 1rem;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-family: var(--font-mono);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted-2);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.scroll-dot {
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ===========================
   SECTIONS
   =========================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section--musicians {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--venues {
  background: var(--black);
}

.section--features {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--cta {
  background: var(--black);
  padding: 80px 0 100px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
  font-family: var(--font-mono);
}

.section-label--right {
  color: var(--gold);
}

.label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--white);
}

.section-title--center {
  text-align: center;
  margin-bottom: 52px;
}

.section-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
}

/* Split layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-layout--reverse {
  direction: rtl;
}
.split-layout--reverse > * { direction: ltr; }

/* ===========================
   FEATURE LIST (in sections)
   =========================== */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===========================
   PROFILE CARDS (musicians section visual)
   =========================== */
.split-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-stack {
  position: relative;
  width: 320px;
  height: 280px;
}

.profile-card {
  position: absolute;
  width: 300px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.profile-card--back {
  top: 0;
  left: 20px;
  transform: rotate(3deg);
  opacity: 0.6;
  z-index: 1;
}

.profile-card--front {
  top: 30px;
  left: 0;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.profile-card:hover {
  transform: rotate(0) translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.profile-card--front:hover { z-index: 3; }

.profile-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.profile-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
}
.profile-avatar--1 { background: linear-gradient(135deg, #3ecf8e 0%, #1a7a52 100%); }
.profile-avatar--2 { background: linear-gradient(135deg, #c9a84c 0%, #7a5e1a 100%); }

.profile-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.profile-meta {
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

.profile-badge {
  margin-left: auto;
  padding: 3px 10px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
}
.profile-badge--gold {
  background: var(--gold-dim);
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--gold);
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.tag {
  padding: 4px 10px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.profile-gig {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--green-dim);
  border: 1px solid rgba(62, 207, 142, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 500;
}

.gig-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

/* ===========================
   VENUE DASHBOARD (venues section visual)
   =========================== */
.venue-dashboard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 340px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.venue-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.venue-dashboard-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.venue-post-btn {
  padding: 5px 12px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
}
.venue-post-btn:hover {
  background: rgba(201, 168, 76, 0.2);
  box-shadow: 0 2px 8px var(--gold-glow);
}

.gig-listing {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.gig-listing:last-of-type { border-bottom: none; }

.gig-listing-date {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--muted-2);
  width: 36px;
  flex-shrink: 0;
}

.gig-listing-info { flex: 1; min-width: 0; }

.gig-listing-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gig-listing-sub {
  font-size: 0.72rem;
  color: var(--muted-2);
  margin-top: 2px;
}

.gig-listing-status {
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}
.gig-listing-status--open {
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(62, 207, 142, 0.25);
}
.gig-listing-status--review {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.25);
}
.gig-listing-status--booked {
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  border: 1px solid var(--border);
}

.venue-analytics {
  display: flex;
  gap: 4px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.venue-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 6px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
}

.venue-stat-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1;
}

.venue-stat-label {
  font-size: 0.65rem;
  color: var(--muted-2);
  text-align: center;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
}

/* Venue section extras */
.venue-cta-block {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.venue-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-1px);
}

/* ===========================
   FEATURES GRID
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  border-color: rgba(62, 207, 142, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.feature-card--gold:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.feature-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-card-body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===========================
   FINAL CTA SECTION
   =========================== */
.cta-block {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(62, 207, 142, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-logo-small {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  animation: float 5s ease-in-out infinite;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}

.cta-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.waitlist-form--cta {
  max-width: 520px;
  margin: 0 auto 12px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted-2);
  margin-top: 12px;
  max-width: 260px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 80px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
  font-family: var(--font-mono);
}

.footer-link {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color var(--transition);
  font-weight: 400;
}
.footer-link:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted-2);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger feature cards */
.features-grid .feature-card:nth-child(2) { transition-delay: 0.08s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.16s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.18s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.26s; }

.gig-listing:nth-child(3) { transition-delay: 0.08s; }
.gig-listing:nth-child(4) { transition-delay: 0.16s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (min-width: 768px) {
  .break-md { display: inline; }
}

@media (max-width: 960px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .split-layout--reverse { direction: ltr; }
  .split-visual { order: -1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

  .hero { padding: 100px 20px 60px; }
  .hero-logo-svg { width: 64px; height: 64px; }
  .hero-stats { gap: 0; }
  .stat { padding: 0 20px; }
  .stat-num { font-size: 1.5rem; }

  .section { padding: 72px 0; }

  .section-title { font-size: 2rem; }

  .card-stack { width: 280px; height: 250px; }
  .profile-card { width: 260px; padding: 16px; }

  .venue-dashboard { width: 100%; max-width: 340px; }

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

  .waitlist-form { flex-direction: column; align-items: stretch; }
  .waitlist-input { max-width: 100%; }
  .btn-primary { justify-content: center; }

  .cta-block { padding: 40px 20px; border-radius: var(--radius-lg); }

  .footer-links { flex-wrap: wrap; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
