:root {
  --red: #e8000e;
  --red-bright: #ff1a27;
  --red-glow: rgba(232,0,14,0.4);
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --silver: #c8cdd6;
  --silver-dim: #6b7280;
  --white: #f5f5f5;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(232,0,14,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.2s, height 0.2s;
}

/* ===== GRAIN OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 1000;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 6vw;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(232,0,14,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(232,0,14,0.04) 0%, transparent 60%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,0,14,0.12);
  border: 1px solid rgba(232,0,14,0.3);
  border-radius: 2px;
  padding: 6px 14px;
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s ease both;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--red-bright);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

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

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 7vw, 110px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  animation: fadeSlideUp 0.8s 0.1s ease both;
}

h1 span {
  color: var(--red);
  display: block;
  text-shadow: 0 0 40px var(--red-glow), 0 0 80px rgba(232,0,14,0.2);
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--silver-dim);
  letter-spacing: 1px;
  line-height: 1.7;
  max-width: 420px;
  margin: 24px 0 40px;
  animation: fadeSlideUp 0.8s 0.2s ease both;
}

.stats-row {
  display: flex;
  gap: 36px;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}

.stat-num em {
  color: var(--red);
  font-style: normal;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver-dim);
  font-weight: 400;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeSlideUp 0.8s 0.4s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 4px 30px rgba(232,0,14,0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.btn-primary::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.4s;
}

.btn-primary:hover::after { left: 100%; }
.btn-primary:hover {
  box-shadow: 0 6px 50px rgba(232,0,14,0.6);
  transform: translateY(-2px);
}

.btn-primary svg { flex-shrink: 0; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--silver);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--white); }

/* ===== HERO RIGHT – LOGO ===== */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 0 80px;
}

.logo-wrap {
  position: relative;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

.logo-wrap img {
  width: clamp(240px, 28vw, 400px);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(232,0,14,0.5)) drop-shadow(0 0 80px rgba(232,0,14,0.2));
  animation: float 4s ease-in-out infinite;
}

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

/* ===== ORBIT RINGS ===== */
.orbit {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(232,0,14,0.15);
  pointer-events: none;
}
.orbit-1 { width: 460px; height: 460px; animation: spin 20s linear infinite; border-color: rgba(232,0,14,0.08); }
.orbit-2 { width: 580px; height: 580px; animation: spin 35s linear infinite reverse; border-style: dashed; }
.orbit-3 { width: 680px; height: 680px; animation: spin 50s linear infinite; border-color: rgba(255,255,255,0.04); }

.orbit-1::before, .orbit-2::before {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  top: -4px; left: 50%;
  box-shadow: 0 0 12px var(--red);
}

@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* ===== EQ BARS (HERO) ===== */
.eq-bars {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  align-items: flex-end;
  height: 60px;
  z-index: 1;
  opacity: 0.4;
}

.eq-bar {
  width: 5px;
  background: linear-gradient(to top, var(--red), rgba(232,0,14,0.2));
  border-radius: 2px 2px 0 0;
  animation: eq 1s ease-in-out infinite alternate;
}

.eq-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 45px; animation-delay: 0.15s; }
.eq-bar:nth-child(3) { height: 30px; animation-delay: 0.3s; }
.eq-bar:nth-child(4) { height: 55px; animation-delay: 0.05s; }
.eq-bar:nth-child(5) { height: 35px; animation-delay: 0.25s; }
.eq-bar:nth-child(6) { height: 50px; animation-delay: 0.4s; }
.eq-bar:nth-child(7) { height: 25px; animation-delay: 0.1s; }
.eq-bar:nth-child(8) { height: 40px; animation-delay: 0.35s; }
.eq-bar:nth-child(9) { height: 18px; animation-delay: 0.2s; }

@keyframes eq {
  from { transform: scaleY(0.3); }
  to { transform: scaleY(1); }
}

/* ===== SECTION DIVIDER ===== */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,0,14,0.4), rgba(232,0,14,0.6), rgba(232,0,14,0.4), transparent);
  position: relative;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 6vw;
  position: relative;
}

.section-tag {
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  font-weight: 300;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 60px;
}

.section-title span { color: var(--silver-dim); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feat-card {
  background: var(--dark2);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s;
  border: 1px solid rgba(255,255,255,0.04);
}

.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,0,14,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feat-card:hover { background: #161616; transform: translateY(-4px); }
.feat-card:hover::before { opacity: 1; }

.feat-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height 0.3s;
  box-shadow: 0 0 12px var(--red-glow);
}

.feat-card:hover::after { height: 100%; }

.feat-icon {
  width: 48px; height: 48px;
  background: rgba(232,0,14,0.1);
  border: 1px solid rgba(232,0,14,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red-bright);
}

.feat-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.feat-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver-dim);
  line-height: 1.7;
  letter-spacing: 0.3px;
}

/* ===== NEW BADGE ===== */
.new-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 2px 7px;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 8px;
  text-transform: uppercase;
  animation: pulse-badge 2s ease infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,0,14,0.4); }
  50% { box-shadow: 0 0 0 4px rgba(232,0,14,0); }
}

/* ===== EQUALISER SHOWCASE ===== */
.eq-section {
  background: var(--dark2);
  padding: 100px 6vw;
  position: relative;
  overflow: hidden;
}

.eq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,0,14,0.05) 0%, transparent 70%);
}

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

.eq-visual {
  position: relative;
  height: 280px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.eq-showcase-bar {
  flex: 1;
  background: linear-gradient(to top, var(--red), #ff6b6b, rgba(232,0,14,0.1));
  border-radius: 3px 3px 0 0;
  position: relative;
  box-shadow: 0 0 20px rgba(232,0,14,0.2);
  animation: eqShowcase 1.8s ease-in-out infinite alternate;
  transform-origin: bottom;
}

.eq-showcase-bar::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 0; right: 0;
  height: 4px;
  background: var(--red-bright);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--red);
}

.eq-showcase-bar:nth-child(1)  { height: 35%; animation-delay: 0.00s; }
.eq-showcase-bar:nth-child(2)  { height: 50%; animation-delay: 0.10s; }
.eq-showcase-bar:nth-child(3)  { height: 65%; animation-delay: 0.05s; }
.eq-showcase-bar:nth-child(4)  { height: 80%; animation-delay: 0.20s; }
.eq-showcase-bar:nth-child(5)  { height: 55%; animation-delay: 0.15s; }
.eq-showcase-bar:nth-child(6)  { height: 90%; animation-delay: 0.30s; }
.eq-showcase-bar:nth-child(7)  { height: 70%; animation-delay: 0.08s; }
.eq-showcase-bar:nth-child(8)  { height: 95%; animation-delay: 0.25s; }
.eq-showcase-bar:nth-child(9)  { height: 60%; animation-delay: 0.18s; }
.eq-showcase-bar:nth-child(10) { height: 75%; animation-delay: 0.35s; }
.eq-showcase-bar:nth-child(11) { height: 45%; animation-delay: 0.12s; }
.eq-showcase-bar:nth-child(12) { height: 85%; animation-delay: 0.28s; }
.eq-showcase-bar:nth-child(13) { height: 40%; animation-delay: 0.03s; }
.eq-showcase-bar:nth-child(14) { height: 70%; animation-delay: 0.22s; }
.eq-showcase-bar:nth-child(15) { height: 55%; animation-delay: 0.38s; }
.eq-showcase-bar:nth-child(16) { height: 80%; animation-delay: 0.07s; }
.eq-showcase-bar:nth-child(17) { height: 50%; animation-delay: 0.17s; }
.eq-showcase-bar:nth-child(18) { height: 65%; animation-delay: 0.33s; }
.eq-showcase-bar:nth-child(19) { height: 35%; animation-delay: 0.13s; }
.eq-showcase-bar:nth-child(20) { height: 60%; animation-delay: 0.27s; }

@keyframes eqShowcase {
  0%   { transform: scaleY(0.4); }
  100% { transform: scaleY(1); }
}

.eq-bands {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 2px;
}

.eq-band-label {
  font-size: 10px;
  color: var(--silver-dim);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ===== EQ PRESETS ===== */
.presets-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.preset-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--silver-dim);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
}

.preset-chip.active, .preset-chip:hover {
  background: rgba(232,0,14,0.15);
  border-color: rgba(232,0,14,0.4);
  color: var(--red-bright);
}

/* ===== FORMATS ===== */
.formats-section {
  padding: 80px 6vw;
  position: relative;
}

.format-marquee-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.format-marquee-wrap::before,
.format-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.format-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.format-marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--dark), transparent); }

.format-marquee {
  display: flex;
  gap: 16px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.format-pill {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--silver);
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  padding: 10px 22px;
  border-radius: 2px;
  white-space: nowrap;
  text-transform: uppercase;
}

.format-pill.red {
  background: rgba(232,0,14,0.1);
  border-color: rgba(232,0,14,0.3);
  color: var(--red-bright);
}

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

/* ===== DOWNLOAD CTA ===== */
.download-section {
  padding: 120px 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232,0,14,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 20% 20%, rgba(232,0,14,0.04) 0%, transparent 60%);
}

.download-section .section-title {
  font-size: clamp(52px, 7vw, 100px);
  margin-bottom: 20px;
}

.download-desc {
  font-size: 17px;
  color: var(--silver-dim);
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 50px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 16px 32px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.store-btn:hover {
  border-color: rgba(232,0,14,0.5);
  background: rgba(232,0,14,0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(232,0,14,0.2);
}

.store-btn-text small {
  display: block;
  font-size: 11px;
  color: var(--silver-dim);
  letter-spacing: 1px;
  font-weight: 300;
}

.store-btn-text strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: 'Rajdhani', sans-serif;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  color: var(--silver-dim);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.stars { color: #f5a623; letter-spacing: 2px; font-size: 16px; }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
  color: var(--silver-dim);
}

.footer-brand span { color: var(--red); }

footer p {
  font-size: 12px;
  color: var(--silver-dim);
  letter-spacing: 0.5px;
  font-weight: 300;
}

footer a {
  color: var(--silver-dim);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  transition: color 0.2s;
}

footer a:hover { color: var(--red); }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}

nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232,0,14,0.15);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  width: 32px;
  filter: drop-shadow(0 0 6px rgba(232,0,14,0.5));
}

.nav-logo span { color: var(--red); }

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

.nav-links a {
  color: var(--silver-dim);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 700 !important;
  box-shadow: 0 2px 20px rgba(232,0,14,0.4);
  transition: box-shadow 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
  color: #fff !important;
  box-shadow: 0 4px 30px rgba(232,0,14,0.6) !important;
  transform: translateY(-1px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== HAMBURGER MENU ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 600;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU DRAWER ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  z-index: 450;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  color: var(--silver);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--red); }

.mobile-menu .mobile-cta {
  background: var(--red);
  color: #fff !important;
  padding: 14px 36px;
  border-radius: 2px;
  font-size: 28px;
  box-shadow: 0 4px 30px rgba(232,0,14,0.5);
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .orbit-3 { display: none; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  nav { padding: 16px 5vw; }
  nav .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 5vw 40px;
    text-align: center;
  }
  .hero-left { padding: 0; }
  .hero-right { padding: 20px 0 60px; order: -1; }
  .badge { margin: 0 auto 24px; }
  .hero-sub { max-width: 100%; margin: 20px auto 32px; }

  .stats-row {
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .cta-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

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

  .orbit { display: none; }

  .logo-wrap img { width: clamp(160px, 50vw, 260px); }

  .features { padding: 60px 5vw; }
  .features-grid { grid-template-columns: 1fr; gap: 2px; }
  .feat-card { padding: 28px 22px; }
  .section-title { margin-bottom: 40px; }

  .eq-section { padding: 60px 5vw; }
  .eq-layout { grid-template-columns: 1fr; gap: 40px; }
  .eq-visual { height: 200px; }

  .formats-section { padding: 60px 5vw; }

  .download-section { padding: 80px 5vw; }
  .store-btn { width: 100%; max-width: 320px; justify-content: center; }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 28px 5vw;
    gap: 12px;
  }
}

/* ===== RESPONSIVE — SMALL PHONES ===== */
@media (max-width: 400px) {
  h1 { font-size: clamp(52px, 14vw, 72px); }
  .stats-row { gap: 16px; }
  .stat-num { font-size: 30px; }
  .section-title { font-size: clamp(36px, 10vw, 56px); }
  .logo-wrap img { width: clamp(130px, 44vw, 200px); }
  .mobile-menu a { font-size: 28px; }
}
