
/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

:root {
  /* Purple/Black Dark Theme Colors */
  --ink: #07040a;         /* Deepest black/purple background */
  --ink2: #0f0a16;        /* Slightly lighter for cards */
  --surface: #1a1025;     /* Surface hover */
  --surface2: #241635;
  --line: rgba(178, 88, 255, 0.15);  /* Purple tinted borders */
  --line2: rgba(178, 88, 255, 0.25);
  --muted: #8e8ba0;
  --soft: #b8b5cc;
  --snow: #f8f8fa;
  --white: #ffffff;

  /* Accent — Vibrant Purple */
  --accent: #b258ff;
  --accent2: #c682ff;
  --accent-dim: rgba(178, 88, 255, 0.15);
  --accent-glow: rgba(178, 88, 255, 0.4);

  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background: var(--ink);
  color: var(--snow);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--ink); }

/* ─────────────────────────────────────────
   SCROLLBAR
───────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--surface2); border-radius: 4px; }

/* ─────────────────────────────────────────
   UTILITY
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--line2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--soft);
  font-family: var(--font-display);
  background: var(--ink2);
}

.tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s ease infinite;
}

@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { opacity:.8; transform:scale(1.2); box-shadow: 0 0 10px 2px var(--accent-glow); }
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}

nav.solid {
  background: rgba(7, 4, 10, 0.85);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 32px; height: 32px;
  position: relative;
  flex-shrink: 0;
}

.logo-mark svg { width: 100%; height: 100%; }

.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}

.nav-links a:hover { color: var(--white); background: var(--surface); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  outline: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--snow);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer - FIXED height and solid background */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); 
  left: 0; 
  right: 0;
  height: 100vh; /* Fallback */
  height: calc(100dvh - var(--nav-h)); /* Accurate height for mobile */
  background: #07040a; /* Solid background, no transparency */
  border-top: 1px solid var(--line);
  padding: 32px 24px 100px;
  z-index: 9998;
  flex-direction: column;
  align-items: stretch; /* Fix content stretching */
  gap: 12px;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .3s, opacity .3s;
  overflow-y: auto; 
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  display: block;
  padding: 16px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--soft);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}

.mobile-menu a:hover { background: var(--surface); color: var(--white); }
.mobile-menu-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu-cta .btn { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  border: none;
  outline: none;
}

.btn-ghost {
  background: transparent;
  color: var(--soft);
  border: 1px solid var(--line2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--white); background: var(--accent-dim); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 12px;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line2);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* ─────────────────────────────────────────
   NOISE OVERLAY
───────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 80px) 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Radial glow behind hero */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle 600px at 50% 20%, rgba(178, 88, 255, 0.12) 0%, transparent 70%),
    radial-gradient(circle 400px at 80% 80%, rgba(100, 50, 255, 0.08) 0%, transparent 60%);
}

/* Grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.hero-tag {
  margin-bottom: 28px;
  animation: fadeUp .6s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeUp .6s .1s ease both;
}

.hero h1 .word-line {
  display: block;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 40px var(--accent-glow);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeUp .6s .2s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp .6s .3s ease both;
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  background: rgba(26, 16, 37, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: fadeUp .6s .4s ease both;
  max-width: 700px;
  margin: 0 auto;
}

.hero-stat {
  flex: 1;
  padding: 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  min-width: 0;
}

.hero-stat:last-child { border-right: none; }

.h-stat-n {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1.1;
  margin-bottom: 6px;
}

.h-stat-t {
  font-size: .75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
}

/* ─────────────────────────────────────────
   PLATFORM MARQUEE
───────────────────────────────────────── */
.marquee-section {
  padding: 48px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink2);
}

.marquee-label {
  text-align: center;
  font-size: .75rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.marquee-fade-l, .marquee-fade-r {
  position: absolute;
  top: 0; bottom: 0; width: 80px;
  z-index: 3; pointer-events: none;
}
.marquee-fade-l { left: 0; background: linear-gradient(90deg, var(--ink2), transparent); }
.marquee-fade-r { right: 0; background: linear-gradient(-90deg, var(--ink2), transparent); }

.marquee-track {
  overflow: hidden;
  margin-bottom: 16px;
}

.marquee-inner {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scroll-left 35s linear infinite;
}

.marquee-track.rev .marquee-inner {
  animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left  { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@keyframes scroll-right { from { transform: translateX(-50%) } to { transform: translateX(0) } }

.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--soft);
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}
.platform-chip:hover {
  border-color: var(--accent);
  background: var(--surface2);
  color: var(--white);
}

.platform-chip .chip-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   SECTIONS COMMON
───────────────────────────────────────── */
section { position: relative; z-index: 2; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .tag { margin-bottom: 24px; }

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-header h2 em {
  font-style: normal;
  color: var(--accent);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   FEATURES
───────────────────────────────────────── */
.features {
  padding: 120px 0;
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

/* Card base */
.feat-card {
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}

.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(178, 88, 255, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.feat-card:hover { 
  border-color: var(--line2); 
  transform: translateY(-4px); 
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.feat-card:hover::before { opacity: 1; }

/* Bento layout */
.feat-card.c1 { grid-column: span 5; }
.feat-card.c2 { grid-column: span 7; }
.feat-card.c3 { grid-column: span 4; }
.feat-card.c4 { grid-column: span 4; }
.feat-card.c5 { grid-column: span 4; }
.feat-card.c6 { grid-column: span 12; }

.feat-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--accent);
}

.feat-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.feat-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Card 2 - Platforms visual */
.feat-platforms-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.feat-plat-badge {
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--soft);
}

.feat-plat-badge.active {
  background: var(--accent-dim);
  border-color: rgba(178, 88, 255, 0.4);
  color: var(--accent2);
}

/* Card 6 - Wide stats */
.feat-card.c6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 48px;
}

.wide-stat {
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.wide-stat-n {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.wide-stat-n span { color: var(--accent); }

.wide-stat-t {
  font-size: .875rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.wide-divider {
  width: 1px;
  align-self: stretch;
  background: var(--line);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
.how {
  padding: 120px 0;
  background: var(--ink2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.how-step {
  background: var(--ink2);
  padding: 56px 40px;
  position: relative;
  transition: background .3s;
}

.how-step:hover { background: var(--surface); }

.step-num {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-block;
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 4px;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
  display: block;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.how-step p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  background: var(--surface);
  border: 1px solid var(--line2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--soft);
  z-index: 2;
}

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing {
  padding: 120px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}

.price-card {
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}

.price-card:hover { transform: translateY(-6px); }

.price-card.featured {
  border-color: rgba(178, 88, 255, 0.5);
  background: linear-gradient(160deg, rgba(178, 88, 255, 0.08) 0%, var(--ink2) 60%);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.price-popular {
  position: absolute;
  top: 24px; right: 24px;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 100px;
  font-family: var(--font-display);
}

.price-plan {
  font-size: .875rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 16px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-cur {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--soft);
  align-self: flex-start;
  margin-top: 8px;
}

.price-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
}

.price-per {
  font-size: 1rem;
  color: var(--muted);
}

.price-tagline {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.price-divider {
  height: 1px;
  background: var(--line);
  margin-bottom: 32px;
}

.price-features {
  list-style: none;
  margin-bottom: 40px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--soft);
}

.price-features li .ck {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .8rem;
  color: var(--accent);
  font-weight: 700;
}

.price-card .btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-size: 1rem;
}

/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
.cta-band {
  padding: 0 0 120px;
}

.cta-inner {
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(178, 88, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-inner h2 em { font-style: normal; color: var(--accent); }

.cta-inner p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  background: var(--ink);
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.footer-brand p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 20px;
}

.footer-links {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  font-size: .9375rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: .875rem;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--soft);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom a:hover { color: var(--accent); }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   MOBILE RESPONSIVE FIXES
───────────────────────────────────────── */

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  .features-bento { grid-template-columns: repeat(6, 1fr); }
  .feat-card.c1, .feat-card.c2 { grid-column: span 6; }
  .feat-card.c3, .feat-card.c4 { grid-column: span 3; }
  .feat-card.c5, .feat-card.c6 { grid-column: span 6; }
  
  .how-steps { grid-template-columns: 1fr; gap: 0; }
  .step-arrow { display: none; }
  
  .pricing-grid { padding: 0 20px; }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: calc(var(--nav-h) + 40px) 20px 60px; }
  .hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); letter-spacing: -1px; }
  
  .hero-stats { flex-direction: column; width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line); }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--line); padding: 20px; }
  .hero-stat:last-child { border-bottom: none; }

  /* Features bento */
  .features-bento { grid-template-columns: 1fr; gap: 12px; }
  .feat-card.c1, .feat-card.c2, .feat-card.c3, .feat-card.c4, .feat-card.c5, .feat-card.c6 { grid-column: span 1; }
  .feat-card { padding: 32px 24px; }

  .feat-card.c6 { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .wide-divider { width: 100%; height: 1px; }

  /* How */
  .how-step { padding: 40px 24px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .price-card { padding: 40px 24px; }

  /* CTA */
  .cta-inner { padding: 56px 24px; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { gap: 32px; flex-direction: column; width: 100%; }
  .footer-col { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Spacing */
  .features, .how, .pricing { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }
}

/* ---- 480px ---- */
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3rem); }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; }
  
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; }
}

/* ─────────────────────────────────────────
   WAVEFORM ANIMATION (hero background)
───────────────────────────────────────── */
.hero-waveform {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  pointer-events: none;
  z-index: 1;
  opacity: .15;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  padding: 0 20px;
  overflow: hidden;
}

.wv-bar {
  width: 4px;
  background: var(--accent);
  border-radius: 4px 4px 0 0;
  animation: wv-anim var(--d, 1.2s) ease-in-out infinite alternate;
  flex-shrink: 0;
}

@keyframes wv-anim {
  from { height: 4px; }
  to { height: var(--h, 60px); }
}

/* ─────────────────────────────────────────
   FLOATING CURSOR GLOW (desktop only)
───────────────────────────────────────── */
#cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(178, 88, 255, 0.05) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  transition: left .1s ease-out, top .1s ease-out;
  display: none;
}

@media (hover: hover) {
  #cursor-glow { display: block; }
}
.site-logo{
    height: 60px;
    width: auto;
    max-width: 240px;
    display: block;
    transform: translateY(3px);
}

@media (max-width: 768px){
    .site-logo{
        height: 42px;
        max-width: 170px;
        transform: translate(-25px, 1px);
    }
}

.nav-logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.chip-icon-img{
    width:24px;
    height:24px;
    object-fit:contain;
    display:block;
    flex-shrink:0;
}

.chip-icon-img{
    width:24px;
    height:24px;
    object-fit:contain;
    display:block;
    flex-shrink:0;
}

.chip-icon-bg{
    width:32px;
    height:32px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.logo-img{
    height:42px;
    width:auto;
    display:block;
}

/* ─────────────────────────────────────────
   WHAT IS MUSIC DISTRIBUTION
─────────────────────────────────────────*/

.about-dist{
    padding:120px 0;
}

.dist-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:start;
}

.dist-content{
    background:var(--ink2);
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    padding:42px;
}

.dist-content p{
    color:var(--muted);
    font-size:1.02rem;
    line-height:1.9;
    margin-bottom:22px;
}

.dist-content p:last-child{
    margin-bottom:0;
}

.dist-content strong{
    color:var(--white);
    font-weight:600;
}

.dist-side{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.dist-card{
    background:var(--ink2);
    border:1px solid var(--line);
    border-radius:18px;
    padding:28px;
    transition:.3s;
}

.dist-card:hover{
    transform:translateY(-4px);
    border-color:var(--accent);
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.dist-card span{
    font-size:2rem;
    display:block;
    margin-bottom:16px;
}

.dist-card h4{
    font-family:var(--font-display);
    color:var(--white);
    font-size:1.15rem;
    margin-bottom:10px;
}

.dist-card p{
    color:var(--muted);
    line-height:1.7;
    font-size:.95rem;
}

@media(max-width:900px){

.dist-grid{
    grid-template-columns:1fr;
}

.dist-content{
    padding:30px 24px;
}

}

/* ─────────────────────────────────────────
   WHY CHOOSE AATISTIC
─────────────────────────────────────────*/

.why-aatistic{
    padding:120px 0;
    background:var(--ink2);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.why-box{
    background:var(--ink);
    border:1px solid var(--line);
    border-radius:22px;
    padding:34px;
    transition:.3s;
}

.why-box:hover{
    transform:translateY(-6px);
    border-color:var(--accent);
    box-shadow:0 18px 45px rgba(0,0,0,.35);
}

.why-icon{
    width:62px;
    height:62px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--accent-dim);
    font-size:1.8rem;
    margin-bottom:22px;
}

.why-box h3{
    font-family:var(--font-display);
    color:var(--white);
    font-size:1.25rem;
    margin-bottom:14px;
}

.why-box p{
    color:var(--muted);
    line-height:1.8;
    font-size:.97rem;
}

.why-bottom{
    margin-top:60px;
    text-align:center;
    background:linear-gradient(180deg,var(--surface),var(--ink));
    border:1px solid var(--line);
    border-radius:24px;
    padding:50px;
}

.why-bottom h3{
    font-family:var(--font-display);
    font-size:2rem;
    color:var(--white);
    margin-bottom:20px;
}

.why-bottom p{
    max-width:850px;
    margin:auto;
    color:var(--muted);
    line-height:1.9;
    font-size:1rem;
}

@media(max-width:1000px){

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.why-grid{
    grid-template-columns:1fr;
}

.why-bottom{
    padding:35px 25px;
}

.why-bottom h3{
    font-size:1.6rem;
}

}

/* ───────────────── FAQ ───────────────── */

.faq-section{
    padding:120px 0;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:var(--ink2);
    border:1px solid var(--line);
    border-radius:18px;
    margin-bottom:18px;
    overflow:hidden;
    transition:.3s;
}

.faq-item:hover{
    border-color:var(--accent);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    color:var(--white);
    cursor:pointer;
    padding:24px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
    font-size:1.05rem;
    font-family:var(--font-display);
    font-weight:700;
}

.faq-icon{
    font-size:1.6rem;
    color:var(--accent);
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-answer p{
    padding:0 30px 28px;
    color:var(--muted);
    line-height:1.9;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
}

@media(max-width:768px){

.faq-question{
    padding:22px;
    font-size:1rem;
}

.faq-answer p{
    padding:0 22px 22px;
}

}