/* ─── Reset & Base ─── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #06060a;
  --bg-card: #0f0f16;
  --bg-card-hover: #161622;
  --text: #f0eef6;
  --text-muted: #8a879a;
  --accent-1: #ff6b35;   /* warm tangerine */
  --accent-2: #c552f7;   /* electric purple */
  --accent-3: #35e4c8;   /* mint teal */
  --accent-4: #ffcc00;   /* bazaar gold */
  --gradient-main: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
  --gradient-warm: linear-gradient(135deg, var(--accent-1), var(--accent-4));
  --gradient-cool: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ─── Custom Cursor ─── */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--accent-1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1.5px solid var(--accent-2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--accent-3);
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(6,6,10,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.logo-icon {
  color: var(--accent-1);
  font-size: 22px;
}

.navbar nav {
  display: flex;
  gap: 36px;
}

.navbar nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s;
}

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

.navbar nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar nav a:hover::after {
  width: 100%;
}

.btn-nav {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255,107,53,0.4);
  background: rgba(255,107,53,0.08);
  color: var(--accent-1);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: none;
  transition: all 0.3s;
}

.btn-nav:hover {
  background: rgba(255,107,53,0.18);
  border-color: var(--accent-1);
  box-shadow: 0 0 30px rgba(255,107,53,0.15);
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  padding: 120px 64px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}

.shape-1 {
  width: 600px; height: 600px;
  background: var(--accent-1);
  top: -200px; left: -100px;
  animation: float 12s ease-in-out infinite;
}

.shape-2 {
  width: 500px; height: 500px;
  background: var(--accent-2);
  bottom: -150px; right: -50px;
  animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px; height: 300px;
  background: var(--accent-3);
  top: 40%; left: 50%;
  animation: float 10s ease-in-out infinite 2s;
}

.shape-4 {
  width: 200px; height: 200px;
  background: var(--accent-4);
  top: 20%; right: 20%;
  animation: float 8s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease forwards;
}

.tag-dot {
  width: 8px; height: 8px;
  background: var(--accent-3);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: revealLine 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero h1 .line:nth-child(2) { animation-delay: 0.15s; }
.hero h1 .line:nth-child(3) { animation-delay: 0.3s; }

.hero h1 .small {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--text-muted);
}

@keyframes revealLine {
  to { opacity: 1; transform: translateY(0); }
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.hero-desc {
  max-width: 520px;
  margin: 28px 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn {
  padding: 16px 36px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
}

.btn-primary {
  background: var(--gradient-warm);
  color: #000;
  box-shadow: 0 4px 30px rgba(255,107,53,0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255,107,53,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-num::after {
  content: '+';
  -webkit-text-fill-color: var(--accent-2);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.event-stack {
  position: relative;
  width: 320px;
  height: 420px;
}

.stack-card {
  position: absolute;
  width: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.stack-card-inner {
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
}

.stack-1 {
  background: linear-gradient(145deg, #1a0a2e, #2d1b4e);
  border: 1px solid rgba(197,82,247,0.2);
  top: 0; left: 0;
  z-index: 3;
  animation: cardFloat 6s ease-in-out infinite;
}

.stack-2 {
  background: linear-gradient(145deg, #0a1e2e, #1b3a4e);
  border: 1px solid rgba(53,228,200,0.2);
  top: 80px; left: 60px;
  z-index: 2;
  animation: cardFloat 6s ease-in-out infinite 1s;
}

.stack-3 {
  background: linear-gradient(145deg, #2e1a0a, #4e3a1b);
  border: 1px solid rgba(255,204,0,0.2);
  top: 160px; left: 20px;
  z-index: 1;
  animation: cardFloat 6s ease-in-out infinite 2s;
}

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

.stack-card:hover {
  transform: translateY(-20px) scale(1.03) !important;
  z-index: 10;
}

.stack-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255,107,53,0.2);
  color: var(--accent-1);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stack-badge.upcoming { background: rgba(53,228,200,0.15); color: var(--accent-3); }
.stack-badge.trending { background: rgba(255,204,0,0.15); color: var(--accent-4); }

.stack-icon {
  font-size: 42px;
  margin: 16px 0;
}

.stack-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.stack-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ─── Marquee ─── */
.marquee-section {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
}

.marquee-dot {
  color: var(--accent-1);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Section Shared ─── */
section {
  padding: 120px 64px;
  position: relative;
}

.section-header {
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 20px;
}

.section-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-desc {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-top: 20px;
}

/* ─── Feature Mosaic ─── */
.feature-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.mosaic-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mosaic-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-6px);
}

.mosaic-large {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.mosaic-tall {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}

.mosaic-wide {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.mosaic-number {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 800;
  background: linear-gradient(to bottom, rgba(255,255,255,0.06), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: 16px; right: 24px;
}

.mosaic-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.mosaic-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 400px;
}

.mosaic-visual {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100px;
}

.mosaic-emoji {
  font-size: 48px;
}

/* Pulse rings */
.pulse-ring {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(197,82,247,0.3);
  animation: pulseRing 3s ease-out infinite;
}

.pulse-ring.delay-1 { animation-delay: 1s; }
.pulse-ring.delay-2 { animation-delay: 2s; }

@keyframes pulseRing {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Wave bars */
.wave-bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 80px;
}

.wave-bars .bar {
  width: 10px;
  background: var(--gradient-cool);
  border-radius: 4px;
  animation: waveBar 1.2s ease-in-out infinite;
}

.wave-bars .bar:nth-child(1) { height: 30px; animation-delay: 0s; }
.wave-bars .bar:nth-child(2) { height: 50px; animation-delay: 0.1s; }
.wave-bars .bar:nth-child(3) { height: 35px; animation-delay: 0.2s; }
.wave-bars .bar:nth-child(4) { height: 65px; animation-delay: 0.3s; }
.wave-bars .bar:nth-child(5) { height: 45px; animation-delay: 0.4s; }
.wave-bars .bar:nth-child(6) { height: 55px; animation-delay: 0.5s; }
.wave-bars .bar:nth-child(7) { height: 40px; animation-delay: 0.6s; }

@keyframes waveBar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

/* ─── Categories Grid ─── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.cat-item {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
  background: var(--bg-card);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cat-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.12);
}

.cat-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.5s;
  bottom: -60px; right: -60px;
}

.cat-item:hover .cat-glow { opacity: 0.4; }

.cat-1 .cat-glow { background: var(--accent-1); }
.cat-2 .cat-glow { background: var(--accent-2); }
.cat-3 .cat-glow { background: var(--accent-3); }
.cat-4 .cat-glow { background: #4e8cff; }
.cat-5 .cat-glow { background: var(--accent-3); }
.cat-6 .cat-glow { background: var(--accent-2); }
.cat-7 .cat-glow { background: var(--accent-4); }
.cat-8 .cat-glow { background: var(--accent-1); }

.cat-1:hover { border-color: rgba(255,107,53,0.25); }
.cat-2:hover { border-color: rgba(197,82,247,0.25); }
.cat-3:hover { border-color: rgba(53,228,200,0.25); }
.cat-4:hover { border-color: rgba(78,140,255,0.25); }
.cat-5:hover { border-color: rgba(53,228,200,0.25); }
.cat-6:hover { border-color: rgba(197,82,247,0.25); }
.cat-7:hover { border-color: rgba(255,204,0,0.25); }
.cat-8:hover { border-color: rgba(255,107,53,0.25); }

.cat-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.cat-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cat-count {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── Bento Events Grid ─── */
.events-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-item {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--bg-card);
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  min-height: 220px;
}

.bento-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.1);
}

.bento-hero {
  grid-row: 1 / 3;
  min-height: 460px;
  background: linear-gradient(160deg, #1a0525 0%, #0f1a2e 50%, #0a2520 100%);
}

.bento-hero .bento-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,107,53,0.12), transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(197,82,247,0.1), transparent 50%);
  z-index: 0;
}

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

.bento-sm:nth-child(2) {
  background: linear-gradient(160deg, #1a0a2e, #0f0f16);
}

.bento-sm:nth-child(3) {
  background: linear-gradient(160deg, #0a1e15, #0f0f16);
}

.bento-wide {
  grid-column: 2 / 4;
  background: linear-gradient(160deg, #1e1a0a, #0f0f16);
}

.bento-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255,107,53,0.15);
  color: var(--accent-1);
  width: fit-content;
  margin-bottom: 20px;
}

.bento-badge.hot { background: rgba(255,53,53,0.15); color: #ff5353; }
.bento-badge.trending { background: rgba(255,204,0,0.15); color: var(--accent-4); }

.bento-date {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bento-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 8px 0;
}

.bento-hero .bento-content h3 {
  font-size: 32px;
}

.bento-content p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.bento-footer {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

.bento-price {
  color: var(--accent-3);
  font-weight: 600;
}

/* ─── Social Proof ─── */
.social-proof {
  padding: 100px 64px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.proof-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto 32px;
  letter-spacing: -0.01em;
}

.proof-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.proof-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.proof-author div {
  text-align: left;
}

.proof-author strong {
  display: block;
  font-size: 15px;
}

.proof-author span {
  font-size: 13px;
  color: var(--text-muted);
}

.proof-logos {
  margin-top: 64px;
}

.proof-logos > span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 20px;
}

.logos {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  transition: color 0.3s;
}

.logo-text:hover {
  color: rgba(255,255,255,0.4);
}

/* ─── CTA Section ─── */
.cta-section {
  padding: 140px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.25;
}

.cta-shape-1 {
  width: 500px; height: 500px;
  background: var(--accent-1);
  top: -100px; left: 50%;
  transform: translateX(-50%);
}

.cta-shape-2 {
  width: 400px; height: 400px;
  background: var(--accent-2);
  bottom: -100px; left: 50%;
  transform: translateX(-30%);
}

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

.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 36px;
}

.cta-input-wrap {
  display: inline-flex;
  gap: 12px;
  padding: 6px 6px 6px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
}

.cta-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  width: 240px;
}

.cta-input::placeholder {
  color: var(--text-muted);
}

.cta-note {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── Footer ─── */
.footer {
  padding: 80px 64px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand .logo-icon {
  font-size: 28px;
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--accent-1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── Reveal Animation ─── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.reveal-up:nth-child(2) { transition-delay: 0.1s; }
.reveal-up:nth-child(3) { transition-delay: 0.2s; }
.reveal-up:nth-child(4) { transition-delay: 0.3s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 40px 60px;
  }
  .hero-visual {
    display: none;
  }
  .feature-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .mosaic-large { grid-column: 1 / 3; }
  .mosaic-tall { grid-column: 1 / 3; grid-row: auto; }
  .mosaic-wide { grid-column: 1 / 3; }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .events-bento {
    grid-template-columns: 1fr 1fr;
  }
  .bento-hero {
    grid-column: 1 / 3;
    grid-row: auto;
  }
  .bento-wide {
    grid-column: 1 / 3;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 14px 24px;
  }
  .navbar nav { display: none; }
  section { padding: 80px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-stats { gap: 24px; }
  .feature-mosaic {
    grid-template-columns: 1fr;
  }
  .mosaic-large, .mosaic-tall, .mosaic-wide { grid-column: auto; grid-row: auto; }
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .events-bento {
    grid-template-columns: 1fr;
  }
  .bento-hero, .bento-wide { grid-column: auto; grid-row: auto; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { gap: 40px; }
  .cta-input-wrap {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: 16px;
  }
  .cta-input { width: 100%; }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  .btn, .btn-nav, .cat-item, .bento-item { cursor: pointer; }
  .logos { flex-wrap: wrap; gap: 24px; }
  .hero-actions { flex-direction: column; }
}
