/* ============================================================
  RED RUSH: DON'T TOUCH RED — LANDING PAGE
   Aesthetic: Arcade Brutalism — raw, kinetic, red-dominant
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Bebas+Neue&family=DM+Sans:wght@300;400;500&display=swap');

/* --- Variables --- */
:root {
  --red: #ff2244;
  --red-glow: rgba(255, 34, 68, 0.4);
  --red-dim: rgba(255, 34, 68, 0.12);
  --green: #00ff88;
  --blue: #00aaff;
  --gold: #ffcc00;
  --purple: #cc44ff;
  --bg: #080810;
  --bg2: #0d0d1a;
  --surface: #111122;
  --border: rgba(255, 255, 255, 0.07);
  --text: #f0f0f0;
  --muted: rgba(255, 255, 255, 0.4);
  --faint: rgba(255, 255, 255, 0.06);

  --font-display: 'Bebas Neue', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* --- Custom Cursor --- */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s;
  mix-blend-mode: screen;
}

#cursor-trail {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 34, 68, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.08s ease, top 0.08s ease;
}

body:hover #cursor {
  transform: translate(-50%, -50%) scale(1);
}

/* --- Container --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Scanlines --- */
.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 3px,
      rgba(0, 0, 0, 0.08) 3px,
      rgba(0, 0, 0, 0.08) 4px);
  pointer-events: none;
  z-index: 2;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.3s, border-bottom 0.3s;
}

#navbar.scrolled {
  background: rgba(8, 8, 16, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 2px;
  display: flex;
  gap: 4px;
}

.logo-dont {
  color: rgba(255, 255, 255, 0.5);
}

.logo-red {
  color: var(--red);
  text-shadow: 0 0 12px var(--red-glow);
}

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

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--muted);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 9px 20px;
  border-radius: 3px;
  font-size: 10px !important;
  letter-spacing: 3px;
  box-shadow: 0 0 20px rgba(255, 34, 68, 0.3);
  transition: box-shadow 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  box-shadow: 0 0 30px rgba(255, 34, 68, 0.6) !important;
  transform: translateY(-1px);
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(8, 8, 16, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 80px 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mm-link {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--muted);
  transition: color 0.2s;
}

.mm-link:hover {
  color: white;
}

.mm-cta {
  background: var(--red);
  color: white !important;
  padding: 14px 36px;
  border-radius: 3px;
  font-size: 12px;
  box-shadow: 0 0 20px rgba(255, 34, 68, 0.3);
  margin-top: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 32px 80px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 180px);
  line-height: 0.9;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.ht-line {
  display: block;
}

.red-glow {
  color: var(--red);
  text-shadow: 0 0 30px var(--red), 0 0 80px rgba(255, 34, 68, 0.4);
  animation: heroRedPulse 2s ease-in-out infinite alternate;
}

@keyframes heroRedPulse {
  from {
    text-shadow: 0 0 30px var(--red), 0 0 60px rgba(255, 34, 68, 0.3);
  }

  to {
    text-shadow: 0 0 50px var(--red), 0 0 120px rgba(255, 34, 68, 0.5), 0 0 200px rgba(255, 34, 68, 0.2);
  }
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: clamp(14px, 2vw, 18px);
  color: var(--muted);
  letter-spacing: 3px;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: white;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 3px;
  padding: 16px 36px;
  border-radius: 3px;
  box-shadow: 0 0 30px rgba(255, 34, 68, 0.4), 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(255, 34, 68, 0.7), 0 8px 30px rgba(0, 0, 0, 0.5);
}

.btn-icon {
  font-size: 10px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 32px;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hstat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hstat-num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: white;
}

.hstat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--muted);
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.2);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.3);
  }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}

.ticker {
  display: inline-flex;
  gap: 40px;
  animation: ticker 20s linear infinite;
}

.ticker span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.9);
}

.ticker-dot {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 8px !important;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--red);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 24px;
}

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

.section-header .section-title {
  margin-bottom: 0;
}

.text-red {
  color: var(--red);
  text-shadow: 0 0 20px rgba(255, 34, 68, 0.4);
}

/* ============================================================
   THE RULE SECTION
   ============================================================ */
#rule {
  padding: 120px 0;
  background: var(--bg);
}

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

.rule-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.rule-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
  max-width: 440px;
}

.platform-showcase {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--faint);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.2s;
}

.plat-item:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(4px);
}

.plat-item.danger {
  border-color: rgba(255, 34, 68, 0.25);
  background: rgba(255, 34, 68, 0.06);
}

.plat-bar {
  width: 48px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

.green-bar {
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.blue-bar {
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}

.gold-bar {
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.purple-bar {
  background: var(--purple);
  box-shadow: 0 0 10px var(--purple);
}

.red-bar {
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: redBarPulse 1.5s ease infinite alternate;
}

.black-bar {
  background: #334;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes redBarPulse {
  from {
    box-shadow: 0 0 6px var(--red);
  }

  to {
    box-shadow: 0 0 18px var(--red), 0 0 30px rgba(255, 34, 68, 0.4);
  }
}

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

.plat-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: white;
}

.plat-desc {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   FEATURES
   ============================================================ */
#features {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}

.feature-card:hover {
  border-color: rgba(255, 34, 68, 0.3);
  transform: translateY(-3px);
}

.feature-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.fc-large {
  grid-column: span 2;
}

.fc-wide {
  grid-column: span 2;
}

.fc-icon {
  font-size: 28px;
  line-height: 1;
}

.fc-title {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  color: white;
}

.fc-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  flex: 1;
}

.fc-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--red);
  border: 1px solid rgba(255, 34, 68, 0.25);
  border-radius: 2px;
  padding: 3px 8px;
  display: inline-block;
  align-self: flex-start;
}

/* ============================================================
   HOW TO PLAY
   ============================================================ */
#how {
  padding: 120px 0;
  background: var(--bg);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr 260px;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.step:last-child {
  border-bottom: none;
}

.step-alt {
  direction: ltr;
}

.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  user-select: none;
}

.step-title {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 4px;
  color: white;
  margin-bottom: 12px;
}

.step-body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
}

.step-visual {
  position: relative;
  height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.step-ball {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  animation: ballBounce 1.5s ease-in-out infinite;
}

.sv-red {
  background: var(--red) !important;
  box-shadow: 0 0 12px var(--red) !important;
}

@keyframes ballBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}

.step-plat {
  position: absolute;
  bottom: 0;
  height: 10px;
  border-radius: 4px;
}

.sp-green {
  width: 120px;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.sp-red {
  width: 120px;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: redBarPulse 1.5s infinite alternate;
}

.combo-visual {
  gap: 8px;
  align-items: flex-end;
  padding-bottom: 0;
  height: 90px;
}

.sp-blue {
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
  height: 10px;
  border-radius: 3px;
  position: absolute;
  bottom: 0;
}

.sp-b1 {
  width: 60px;
  left: 10px;
}

.sp-b2 {
  width: 60px;
  left: 85px;
}

.sp-b3 {
  width: 60px;
  left: 160px;
}

.combo-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--blue);
  text-shadow: 0 0 20px var(--blue);
  animation: comboPulse 1s ease-in-out infinite alternate;
}

@keyframes comboPulse {
  from {
    text-shadow: 0 0 10px var(--blue);
  }

  to {
    text-shadow: 0 0 30px var(--blue), 0 0 50px rgba(0, 170, 255, 0.4);
  }
}

.chaos-vis {
  justify-content: center;
  align-items: center;
}

.chaos-label {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--red);
  text-shadow: 0 0 20px var(--red);
  animation: chaosShake 0.1s ease-in-out infinite;
  letter-spacing: 3px;
}

@keyframes chaosShake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-2px);
  }

  75% {
    transform: translateX(2px);
  }
}

/* ============================================================
   CHAOS EVENTS
   ============================================================ */
#chaos {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.chaos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.chaos-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-delay: var(--delay);
}

.chaos-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 34, 68, 0.35);
  background: rgba(255, 34, 68, 0.05);
  box-shadow: 0 8px 32px rgba(255, 34, 68, 0.15);
}

.cc-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.cc-name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 8px;
}

.cc-desc {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   COMBO SECTION
   ============================================================ */
#combo-section {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

.combo-body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  max-width: 460px;
}

.combo-body strong {
  color: white;
  font-weight: 500;
}

.combo-ladder {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cl-step {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  align-items: center;
  gap: 16px;
}

.cl-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted);
}

.cl-bar {
  height: 8px;
  background: var(--blue);
  border-radius: 4px;
  width: var(--w);
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.4);
  transition: width 1s ease;
}

.fire-bar {
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
  animation: firePulse 1s ease infinite alternate;
}

@keyframes firePulse {
  from {
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.4);
  }

  to {
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.7), 0 0 40px rgba(255, 34, 68, 0.3);
  }
}

.cl-mult {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--blue);
  text-align: right;
}

.fire-mult {
  color: var(--gold);
  text-shadow: 0 0 12px var(--gold);
  font-size: 18px;
}

.fire-step .cl-num {
  color: var(--gold);
}

/* ============================================================
   DOWNLOAD
   ============================================================ */
#download {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

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

#downloadCanvas {
  width: 100%;
  height: 100%;
}

#download .container {
  position: relative;
  z-index: 1;
}

.download-content {
  max-width: 640px;
}

.download-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  margin-bottom: 24px;
}

.download-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 48px;
  line-height: 1.7;
}

.download-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-store {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-radius: 8px;
  transition: all 0.2s ease;
  min-width: 180px;
  border: 1px solid;
}

.btn-store.android {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
  color: white;
}

.btn-store.ios {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
  color: white;
}

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

.store-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.store-icon svg {
  width: 100%;
  height: 100%;
}

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

.store-sub {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
}

.store-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
}

.download-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 24px;
}

.waitlist-form {
  display: flex;
  gap: 0;
  max-width: 420px;
}

.waitlist-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  border-radius: 3px 0 0 3px;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: white;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-input:focus {
  border-color: rgba(255, 34, 68, 0.5);
}

.waitlist-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.waitlist-btn {
  background: var(--red);
  border: none;
  border-radius: 0 3px 3px 0;
  padding: 14px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: white;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.waitlist-btn:hover {
  background: #ff3355;
  box-shadow: 0 0 20px rgba(255, 34, 68, 0.5);
}

.waitlist-success {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--green);
  margin-top: 12px;
}

.hidden {
  display: none !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

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

.footer-logo {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  display: flex;
  gap: 4px;
}

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

.footer-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.15);
  width: 100%;
  text-align: center;
}

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

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

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

.reveal-delay-4 {
  transition-delay: 0.6s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .chaos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .fc-large,
  .fc-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  #cursor,
  #cursor-trail {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(60px, 18vw, 100px);
  }

  .rule-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .fc-large,
  .fc-wide {
    grid-column: span 1;
  }

  .chaos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .combo-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .step {
    grid-template-columns: 50px 1fr;
    gap: 20px;
  }

  .step-visual {
    display: none;
  }

  .download-btns {
    flex-direction: column;
  }

  .btn-store {
    min-width: unset;
    width: 100%;
    max-width: 280px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
  }

  .hstat-num {
    font-size: 28px;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-input {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 3px;
  }

  .waitlist-btn {
    border-radius: 3px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .hstat-divider {
    display: none;
  }
}