/* ==========================================================================
   LYCANS — CINEMATIC REDESIGN DESIGN SYSTEM & STYLESHEET
   Unleash the player within.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Background Palette */
  --bg-black: #060709;
  --bg-deep: #0B0D12;
  --bg-surface: #10141C;
  --bg-surface-2: #161B26;
  --bg-card: rgba(16, 20, 28, 0.72);
  --bg-card-hover: rgba(22, 27, 38, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-hover: rgba(255, 255, 255, 0.07);

  /* Athletic Neon Accents */
  --emerald: #00F59B;
  --emerald-glow: rgba(0, 245, 155, 0.35);
  --emerald-dim: rgba(0, 245, 155, 0.12);
  --emerald-border: rgba(0, 245, 155, 0.28);
  
  --gold: #FFD84D;
  --gold-glow: rgba(255, 216, 77, 0.35);
  --gold-dim: rgba(255, 216, 77, 0.12);
  --gold-border: rgba(255, 216, 77, 0.28);

  --cyan: #00D2FF;
  --cyan-glow: rgba(0, 210, 255, 0.3);
  --cyan-dim: rgba(0, 210, 255, 0.1);

  --purple: #8B5CF6;
  --purple-glow: rgba(139, 92, 246, 0.3);

  /* Typography & Ink */
  --text-white: #FFFFFF;
  --text-pure: #F8FAFC;
  --text-body: #94A3B8;
  --text-muted: #64748B;
  --text-dark: #080A0E;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.14);
  --border-active: rgba(255, 255, 255, 0.3);

  /* Shadows & Glows */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 12px 36px -8px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border-subtle);
  --shadow-elevated: 0 24px 60px -12px rgba(0, 0, 0, 0.8), 0 0 40px -10px rgba(0, 245, 155, 0.1);
  --glow-emerald: 0 0 30px rgba(0, 245, 155, 0.25);
  --glow-gold: 0 0 30px rgba(255, 216, 77, 0.25);

  /* Fonts */
  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-brand: 'Sora', sans-serif;
  --font-sans: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Container */
  --max-w: 1240px;
  --header-h: 84px;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-black);
  color: var(--text-pure);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-black);
  color: var(--text-pure);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-surface-2);
  border-radius: var(--r-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--border-active);
}

::selection {
  background: var(--emerald);
  color: var(--bg-black);
}

/* ── CINEMATIC CUSTOM CURSOR ── */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }
  a, button, input, textarea, select, label, [role="button"] {
    cursor: none !important;
  }
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .custom-cursor {
    display: block;
  }
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  box-shadow: 0 0 10px var(--emerald), 0 0 20px var(--emerald);
  transition: transform 0.1s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.2s;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(0, 245, 155, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(0, 245, 155, 0.15);
  transition: width 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2),
              height 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2),
              border-color 0.25s,
              background-color 0.25s,
              transform 0.12s linear;
}

/* Crosshair Reticle ticks on ring */
.cursor-ring::before, .cursor-ring::after {
  content: '';
  position: absolute;
  background: var(--emerald);
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.3s;
}
.cursor-ring::before {
  top: -4px;
  bottom: -4px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%) scaleY(0);
}
.cursor-ring::after {
  left: -4px;
  right: -4px;
  top: 50%;
  height: 1px;
  transform: translateY(-50%) scaleX(0);
}

/* Cursor State: Hover / Interactive */
body.cursor-hover .cursor-ring {
  width: 58px;
  height: 58px;
  border-color: var(--gold);
  background: rgba(255, 216, 77, 0.08);
  box-shadow: 0 0 25px rgba(255, 216, 77, 0.3);
}
body.cursor-hover .cursor-dot {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.4);
  box-shadow: 0 0 12px var(--gold);
}
body.cursor-hover .cursor-ring::before,
body.cursor-hover .cursor-ring::after {
  background: var(--gold);
  opacity: 0.8;
  transform: translateX(-50%) scaleY(1);
}
body.cursor-hover .cursor-ring::after {
  transform: translateY(-50%) scaleX(1);
}

/* Cursor State: Action / Button */
body.cursor-action .cursor-ring {
  width: 64px;
  height: 64px;
  border-color: var(--emerald);
  background: rgba(0, 245, 155, 0.15);
  box-shadow: 0 0 30px var(--emerald-glow);
}

/* Cursor Floating Label Badge */
.cursor-label {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) scale(0);
  background: var(--emerald);
  color: var(--bg-black);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
  pointer-events: none;
  z-index: 10001;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s;
  opacity: 0;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 245, 155, 0.4);
}

body.cursor-labeled .cursor-label {
  transform: translate(-50%, calc(-50% + 42px)) scale(1);
  opacity: 1;
}

/* Click Particle Burst Canvas / Element */
.click-particle {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 1;
  animation: clickWave 0.5s ease-out forwards;
  z-index: 9998;
}

@keyframes clickWave {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

/* ── ATMOSPHERIC CINEMATIC BACKDROP ── */
.cinematic-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Subtle stadium grid scanlines */
.grid-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 30%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black 20%, transparent 80%);
  opacity: 0.6;
}

/* Glowing volumetric spotlights */
.spotlight {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  pointer-events: none;
  will-change: transform;
}
.spotlight-1 {
  top: -150px;
  left: 15%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
  animation: pulseGlow 12s infinite alternate ease-in-out;
}
.spotlight-2 {
  top: 15%;
  right: 5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  animation: pulseGlow 15s infinite alternate-reverse ease-in-out;
  opacity: 0.12;
}
.spotlight-3 {
  bottom: 10%;
  left: 20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  opacity: 0.09;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9) translate(0, 0); opacity: 0.12; }
  50% { transform: scale(1.15) translate(30px, 20px); opacity: 0.22; }
  100% { transform: scale(0.95) translate(-20px, -10px); opacity: 0.14; }
}

/* Ambient dynamic particle canvas */
#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.65;
}

/* ── LAYOUT UTILITIES ── */
.relative { position: relative; }
.z-10 { position: relative; z-index: 10; }
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

/* ── FLOATING GLASS NAVIGATION ── */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 1.5rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: padding 0.3s ease;
}

.nav-wrapper.scrolled {
  padding: 10px 1.5rem;
}

.navbar {
  pointer-events: all;
  width: 100%;
  max-width: 960px;
  background: rgba(12, 16, 23, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--r-full);
  padding: 8px 12px 8px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-wrapper.scrolled .navbar {
  background: rgba(8, 11, 16, 0.92);
  border-color: rgba(0, 245, 155, 0.2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 245, 155, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
  transition: transform 0.25s ease;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  transition: transform 0.25s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 6px;
}

.nav-link {
  color: var(--text-body);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--r-full);
  transition: color 0.2s, background-color 0.2s;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Audio FX Toggle Button */
.audio-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  position: relative;
}

.audio-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-color: var(--border-light);
}

.audio-toggle-btn.sound-on {
  color: var(--emerald);
  border-color: var(--emerald-border);
  background: var(--emerald-dim);
  box-shadow: 0 0 12px rgba(0, 245, 155, 0.2);
}

.audio-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}
.audio-bar {
  width: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: height 0.2s;
}
.audio-bar:nth-child(1) { height: 6px; }
.audio-bar:nth-child(2) { height: 12px; }
.audio-bar:nth-child(3) { height: 8px; }

.audio-toggle-btn.sound-on .audio-bar:nth-child(1) { animation: soundWave 0.8s infinite alternate ease-in-out; }
.audio-toggle-btn.sound-on .audio-bar:nth-child(2) { animation: soundWave 0.8s infinite 0.2s alternate ease-in-out; }
.audio-toggle-btn.sound-on .audio-bar:nth-child(3) { animation: soundWave 0.8s infinite 0.4s alternate ease-in-out; }

@keyframes soundWave {
  0% { height: 3px; }
  100% { height: 14px; }
}

/* Nav CTA Pill Button */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--emerald) 0%, #00C878 100%);
  color: var(--bg-black);
  padding: 9px 18px 9px 20px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 245, 155, 0.3);
  position: relative;
  overflow: hidden;
}

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

.btn-nav-cta:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 24px rgba(0, 245, 155, 0.45);
}

.btn-nav-cta:hover::before {
  left: 100%;
}

.btn-nav-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-black);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: transform 0.2s;
}

.btn-nav-cta:hover .btn-nav-arrow {
  transform: translateX(2px);
}

/* Mobile Nav Toggle */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-white);
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ── HERO SECTION ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(16, 24, 38, 0.8) 0%, var(--bg-black) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}

/* Hero Eyebrow Pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 216, 77, 0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(255, 216, 77, 0.1);
}

.eyebrow-pulsar {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
}

.eyebrow-pulsar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  animation: pulseRing 1.8s infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Hero Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.hero-headline .highlight-gold {
  color: var(--gold);
  text-shadow: 0 0 35px rgba(255, 216, 77, 0.35);
  font-style: normal;
}

.hero-headline .highlight-emerald {
  background: linear-gradient(135deg, #00F59B 0%, #00D2FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Subtitle */
.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 490px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* Live Active Status Pill */
.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 24, 34, 0.85);
  border: 1px solid rgba(0, 245, 155, 0.25);
  border-radius: var(--r-full);
  padding: 6px 14px 6px 10px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.status-avatar-stack {
  display: flex;
  align-items: center;
}
.status-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--bg-black);
  margin-left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
.status-avatar:first-child { margin-left: 0; }
.status-avatar.av-1 { background: #00F59B; color: #060709; }
.status-avatar.av-2 { background: #FFD84D; color: #060709; }
.status-avatar.av-3 { background: #00D2FF; color: #060709; }

.status-text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-pure);
  letter-spacing: 0.01em;
}
.status-text span {
  color: var(--emerald);
}

/* Hero Action Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, #FFA800 100%);
  color: var(--bg-black);
  padding: 15px 24px 15px 28px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(255, 216, 77, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary-glow:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 216, 77, 0.5);
}

.btn-arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-black);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.25s;
}

.btn-primary-glow:hover .btn-arrow-circle {
  transform: translateX(3px);
}

.btn-secondary-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-pure);
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--border-light);
  padding: 14px 26px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  backdrop-filter: blur(10px);
}

.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-white);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* ── HERO RIGHT — 3D PERSPECTIVE PHONE SHOWCASE ── */
.hero-mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  perspective: 1200px;
}

.phone-stage-3d {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.1, 0.9, 0.2, 1);
  will-change: transform;
}

.phone-glow-aura {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 245, 155, 0.22) 0%, rgba(255, 216, 77, 0.12) 40%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.phone-mockup-img {
  position: relative;
  z-index: 2;
  max-height: calc(100vh - 210px);
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 25px rgba(0, 245, 155, 0.15));
  border-radius: 28px;
}

/* Floating HUD Live Widgets on Phone */
.hud-badge-floating {
  position: absolute;
  z-index: 5;
  background: rgba(12, 16, 24, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 245, 155, 0.15);
  animation: floatHUD 5s ease-in-out infinite alternate;
}

.hud-top-left {
  top: 12%;
  left: -28px;
  border-color: rgba(0, 245, 155, 0.35);
}

.hud-bottom-right {
  bottom: 14%;
  right: -24px;
  animation-delay: -2.5s;
  border-color: rgba(255, 216, 77, 0.35);
}

@keyframes floatHUD {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(1deg); }
}

.hud-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.hud-icon.icon-emerald { background: var(--emerald-dim); color: var(--emerald); }
.hud-icon.icon-gold { background: var(--gold-dim); color: var(--gold); }

.hud-info {
  display: flex;
  flex-direction: column;
}
.hud-title {
  font-size: 11px;
  font-family: var(--font-display);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hud-val {
  font-size: 13.5px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-pure);
}

/* ── VELOCITY MARQUEE SECTION ── */
.marquee-wrapper {
  position: relative;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  overflow: hidden;
  z-index: 10;
}

.marquee-wrapper::before, .marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-deep) 0%, transparent 100%);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-deep) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: scrollMarquee 36s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 2.2rem;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-body);
  white-space: nowrap;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}

.marquee-item:hover {
  color: var(--text-white);
}

/* ── SECTION BASE STYLES ── */
section {
  position: relative;
  padding: 7.5rem 0;
  z-index: 10;
}

.sec-header {
  margin-bottom: 3.5rem;
}
.sec-header.center {
  text-align: center;
}
.sec-header.center .sec-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-body);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.sec-title em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 0 25px rgba(255, 216, 77, 0.25);
}

.sec-title .neon-green {
  color: var(--emerald);
  text-shadow: 0 0 25px rgba(0, 245, 155, 0.25);
}

.sec-subtitle {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-body);
  font-weight: 400;
  max-width: 520px;
}

/* ── SECTION: HOW IT WORKS ── */
.how-section {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-subtle);
}

.how-head-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-end;
  margin-bottom: 3rem;
}

/* Interactive Tabs Switcher */
.tab-pill-box {
  display: inline-flex;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-full);
  padding: 5px;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--r-full);
  border: none;
  background: transparent;
  color: var(--text-body);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.tab-btn.active {
  background: var(--emerald);
  color: var(--bg-black);
  box-shadow: 0 4px 16px rgba(0, 245, 155, 0.35);
}

.tab-btn:not(.active):hover {
  color: var(--text-white);
}

/* Step Cards Grid */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: var(--shadow-card);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 245, 155, 0.4);
  box-shadow: var(--shadow-elevated);
}

.step-card-header {
  padding: 2rem 2rem 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-card-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background-image: url('../assets/pattern-iso.svg');
  background-size: cover;
  opacity: 0.15;
  pointer-events: none;
}

.step-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: var(--r-sm);
}

.step-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(18, 24, 34, 0.9);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.step-card:hover .step-icon-box {
  transform: scale(1.1) rotate(-3deg);
  border-color: var(--emerald);
  box-shadow: 0 0 20px rgba(0, 245, 155, 0.3);
}

.step-card-body {
  padding: 1.8rem 2rem 2.2rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-body);
  font-weight: 400;
}

/* ── SECTION: FEATURES MATRIX ── */
.features-section {
  background: var(--bg-black);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-card);
}

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

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 245, 155, 0.35);
  box-shadow: var(--shadow-elevated);
}

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

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 1.6rem;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--emerald-dim);
  border-color: var(--emerald-border);
  box-shadow: 0 0 24px rgba(0, 245, 155, 0.25);
  transform: scale(1.08);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}

.feature-badge-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.25rem;
  font-size: 12.5px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--emerald);
  background: var(--emerald-dim);
  border: 1px solid var(--emerald-border);
  padding: 4px 10px;
  border-radius: var(--r-full);
}

/* ── SECTION: APP SCREENS 3D SHOWCASE ── */
.screens-section {
  background: var(--bg-deep);
  overflow: hidden;
}

.screens-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}

.carousel-arrow:hover {
  background: var(--emerald);
  color: var(--bg-black);
  border-color: var(--emerald);
  transform: scale(1.05);
}

/* Scroll Container for App Screens */
.screens-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 1.5rem 0.5rem 2.5rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.screens-carousel-track::-webkit-scrollbar {
  display: none;
}
.screens-carousel-track:active {
  cursor: grabbing;
}

.app-screen-card {
  flex-shrink: 0;
  width: 220px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.app-screen-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: var(--emerald);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 245, 155, 0.2);
}

.app-screen-img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.app-screen-label {
  padding: 12px 16px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-pure);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── SECTION: FOR TURF OWNERS & CALCULATOR ── */
.owners-section {
  background: var(--bg-black);
}

.owners-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

/* Phone Stack Visual */
.owners-phone-stack {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  position: relative;
}

.owners-phone-stack::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 245, 155, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.phone-stacked-item {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-elevated);
  transition: all 0.35s ease;
  position: relative;
  z-index: 2;
}

.phone-stacked-item img {
  width: 100%;
  display: block;
}

.phone-stacked-item:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: var(--emerald);
  z-index: 10;
}

.ps-phone-a { width: 145px; }
.ps-phone-b { width: 165px; margin-bottom: 28px; }
.ps-phone-c { width: 145px; margin-bottom: 56px; }

/* Owners Feature List */
.check-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.5px;
  color: var(--text-pure);
  font-weight: 500;
}

.check-icon-bubble {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--emerald-dim);
  border: 1px solid var(--emerald-border);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 245, 155, 0.2);
}

/* Interactive Revenue Estimator Simulator */
.revenue-calc-card {
  margin-top: 3.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.revenue-calc-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 245, 155, 0.1) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.calc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 10px;
}

.calc-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
}

.calc-badge {
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 4px 10px;
  border-radius: var(--r-full);
}

.calc-sliders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.calc-control-group label {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  font-family: var(--font-display);
  color: var(--text-body);
  font-weight: 600;
  margin-bottom: 8px;
}

.calc-val-display {
  color: var(--emerald);
  font-weight: 700;
}

.calc-slider {
  width: 100%;
  height: 6px;
  background: var(--bg-surface-2);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--emerald);
  cursor: pointer;
  box-shadow: 0 0 10px var(--emerald);
}

.calc-result-row {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.result-label {
  font-size: 14px;
  color: var(--text-body);
}

.result-amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--emerald);
  text-shadow: 0 0 20px rgba(0, 245, 155, 0.35);
}

/* ── SECTION: LAUNCHING SOON / REGISTRATION HUB ── */
.register-section {
  background: var(--bg-deep);
}

.register-hub-card {
  max-width: 840px;
  margin: 0 auto;
  background: radial-gradient(circle at 50% 0%, rgba(24, 32, 48, 0.9) 0%, rgba(12, 16, 24, 0.95) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 245, 155, 0.08);
}

.register-hub-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.015) 20px,
    rgba(255, 255, 255, 0.015) 21px
  );
  pointer-events: none;
}

.reg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
}

.reg-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-align: center;
}

.reg-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* Registration Form */
.reg-form-wrap {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.reg-input, .reg-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--r-full);
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 14px 22px;
  outline: none;
  transition: all 0.25s;
}

.reg-input:focus, .reg-textarea:focus {
  border-color: var(--emerald);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 245, 155, 0.2);
}

.reg-input::placeholder, .reg-textarea::placeholder {
  color: var(--text-muted);
}

.reg-textarea {
  border-radius: var(--r-lg);
  height: 95px;
  resize: none;
}

.btn-reg-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, #FFA800 100%);
  color: var(--bg-black);
  border: none;
  border-radius: var(--r-full);
  padding: 15px 24px;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(255, 216, 77, 0.35);
  width: 100%;
}

.btn-reg-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 216, 77, 0.5);
}

.btn-reg-submit:disabled {
  opacity: 0.8;
}

.reg-note {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

/* Animated Launch Milestones */
.milestones-row {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2.5rem;
}

.mile-col {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid var(--border-subtle);
}
.mile-col:last-child {
  border-right: none;
}

.mile-icon {
  font-size: 24px;
  margin-bottom: 0.5rem;
}

.mile-label {
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mile-status {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
  margin-top: 3px;
}
.mile-done { color: var(--emerald); }
.mile-active { color: var(--gold); }
.mile-soon { color: var(--text-muted); }

/* ── CINEMATIC FOOTER ── */
footer {
  background: var(--bg-black);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 260px;
  margin-top: 1rem;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 14.5px;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--emerald);
  transform: translateX(4px);
}

.footer-bottom-bar {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 12.5px;
  color: var(--text-muted);
  font-family: var(--font-display);
}

.city-pill-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.city-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 3px 10px;
  border-radius: var(--r-full);
  color: var(--text-body);
  font-size: 11.5px;
}

/* ── SCROLL FADE-UP ANIMATIONS ── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* ── RESPONSIVE ADAPTATIONS ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding-top: 20px;
  }
  .hero-right {
    justify-content: center;
  }
  .hud-top-left { left: 0; }
  .hud-bottom-right { right: 0; }
  .how-head-row, .screens-header-row, .owners-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-wrapper {
    padding: 12px 1rem;
  }
  .hero-section {
    padding: 120px 0 60px;
  }
  .step-grid {
    grid-template-columns: 1fr;
  }
  .calc-sliders {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .register-hub-card {
    padding: 2.5rem 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .owners-phone-stack {
    gap: 8px;
  }
  .ps-phone-a { width: 95px; }
  .ps-phone-b { width: 115px; margin-bottom: 16px; }
  .ps-phone-c { width: 95px; margin-bottom: 28px; }
  .owners-grid {
    display: flex;
    flex-direction: column-reverse;
  }
  .btn-primary-glow, .btn-secondary-glass {
    width: 100%;
    justify-content: center;
  }
  .milestones-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .mile-col {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1rem;
  }
  .mile-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
