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

:root {
  --bg: #0b0e17;
  --bg-card: #131828;
  --bg-card-hover: #1a2038;
  --text: #e2e8f0;
  --text-muted: #8892a8;
  --primary: #7c6ef6;
  --primary-glow: rgba(124, 110, 246, 0.25);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 14, 23, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.logo-icon {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
  border-radius: 1px;
}

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

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100lvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 64px;
}

/* Animated background orbs */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  transition: transform 0.3s ease-out;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 110, 246, 0.4), transparent 70%);
  top: 10%;
  left: 50%;
  margin-left: -250px;
  animation: orbFloat1 8s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.3), transparent 70%);
  top: 40%;
  left: 20%;
  animation: orbFloat2 10s ease-in-out infinite;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(246, 165, 96, 0.25), transparent 70%);
  top: 20%;
  right: 10%;
  animation: orbFloat3 12s ease-in-out infinite;
}

.orb-4 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(232, 126, 161, 0.3), transparent 70%);
  bottom: 15%;
  left: 15%;
  animation: orbFloat4 9s ease-in-out infinite;
}

.orb-5 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 110, 246, 0.2), transparent 70%);
  bottom: 10%;
  right: 20%;
  animation: orbFloat5 11s ease-in-out infinite;
}

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

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.1); }
  66% { transform: translate(30px, -20px) scale(0.9); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 40px); }
}

@keyframes orbFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.15); }
}

@keyframes orbFloat5 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, 30px); }
  66% { transform: translate(-30px, -20px); }
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(124, 110, 246, 0.5);
  animation: particleFloat linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-duration: 14s; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-duration: 18s; animation-delay: -3s; background: rgba(78, 205, 196, 0.5); }
.particle:nth-child(3) { left: 40%; animation-duration: 12s; animation-delay: -6s; }
.particle:nth-child(4) { left: 55%; animation-duration: 16s; animation-delay: -2s; background: rgba(246, 165, 96, 0.4); }
.particle:nth-child(5) { left: 70%; animation-duration: 20s; animation-delay: -8s; }
.particle:nth-child(6) { left: 82%; animation-duration: 15s; animation-delay: -4s; background: rgba(232, 126, 161, 0.4); }
.particle:nth-child(7) { left: 35%; animation-duration: 17s; animation-delay: -10s; background: rgba(78, 205, 196, 0.3); }
.particle:nth-child(8) { left: 60%; animation-duration: 13s; animation-delay: -7s; }

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; transform: translateY(90vh) scale(1); }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(0); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 0 120px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary);
  margin-bottom: 28px;
  background: rgba(124, 110, 246, 0.08);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(124, 110, 246, 0.15);
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(124, 110, 246, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(124, 110, 246, 0); }
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto 28px;
  letter-spacing: -0.02em;
}

/* Animated gradient text */
.gradient-text {
  background: linear-gradient(
    135deg,
    #7c6ef6 0%,
    #4ecdc4 25%,
    #f6a560 50%,
    #e87ea1 75%,
    #7c6ef6 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.6;
  animation: fadeInUp 1s ease 2s both;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border-radius: 11px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.scroll-dot {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--primary);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* ---- FADE-UP ANIMATION ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-delay-1 { animation-delay: 0.15s; }
.fade-delay-2 { animation-delay: 0.3s; }
.fade-delay-3 { animation-delay: 0.45s; }

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

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #7c6ef6, #6558d3);
  color: #fff;
  box-shadow: 0 4px 24px var(--primary-glow);
}

.btn-primary::before {
  background: linear-gradient(135deg, #8f83f8, #7c6ef6);
}

.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(124, 110, 246, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-glow {
  animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 24px var(--primary-glow); }
  50% { box-shadow: 0 4px 40px rgba(124, 110, 246, 0.4); }
}

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

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

/* ---- SECTIONS ---- */
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 56px;
}

/* ---- SHOWS ---- */
.shows {
  padding: 120px 0;
  text-align: center;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  text-align: left;
}

.show-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.show-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(124, 110, 246, 0.06),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.show-card:hover::before {
  opacity: 1;
}

.show-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  border-color: rgba(124, 110, 246, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(124, 110, 246, 0.05);
}

.show-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.show-card:hover .show-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px color-mix(in srgb, var(--accent) 20%, transparent);
}

.show-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.show-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.show-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.card-arrow {
  display: inline-block;
  margin-top: 16px;
  font-size: 1.2rem;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}

.show-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---- ABOUT ---- */
.about {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  transition: transform 0.3s;
}

.about-list li:hover {
  transform: translateX(4px);
}

.about-list svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Platforms */
.platforms {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.platforms-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.platform-logos {
  display: flex;
  gap: 20px;
  align-items: center;
}

.platform-logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
}

.platform-logo svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.platform-logo:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.platform-logo:hover svg {
  color: var(--text);
}

.about-visual {
  display: flex;
  gap: 20px;
}

.stat-card {
  flex: 1;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 110, 246, 0.15);
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #7c6ef6, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #7c6ef6, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ---- CONTACT ---- */
.contact {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #4a5568;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 110, 246, 0.1);
}

.contact-form .btn {
  align-self: flex-start;
}

.contact-alt {
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-alt a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-alt a:hover {
  text-decoration: underline;
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- RESPONSIVE ---- */

/* Tablet */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-visual {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(11, 14, 23, 0.95);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Hero */
  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 36px;
  }

  .hero-content {
    padding: 60px 0 80px;
  }

  .hero-tag {
    font-size: 0.7rem;
    padding: 6px 16px;
  }

  .hero-scroll-hint {
    display: none;
  }

  .orb {
    opacity: 0.25;
  }

  .orb-1 { width: 300px; height: 300px; }
  .orb-2 { width: 250px; height: 250px; }
  .orb-3 { width: 200px; height: 200px; }
  .orb-4, .orb-5 { display: none; }

  /* Buttons */
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Sections */
  .shows,
  .about,
  .contact {
    padding: 80px 0;
  }

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

  .section-sub {
    font-size: 0.95rem;
    margin-bottom: 36px;
  }

  /* Show cards */
  .shows-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .show-card {
    padding: 28px 24px;
  }

  .card-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-visual {
    gap: 12px;
    width: 100%;
    max-width: none;
  }

  .stat-card {
    padding: 24px 12px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-suffix {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Platforms */
  .platforms {
    margin-top: 32px;
    padding-top: 24px;
  }

  .platform-logos {
    gap: 12px;
  }

  .platform-logo {
    width: 36px;
    height: 36px;
  }

  .platform-logo svg {
    width: 18px;
    height: 18px;
  }

  /* Contact */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form .btn {
    align-self: stretch;
    max-width: none;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .about-visual {
    flex-direction: column;
    gap: 12px;
  }

  .stat-card {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    padding: 20px 24px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-suffix {
    font-size: 1.4rem;
  }
}
