/* ═══════════════════════════════════════════════════════════════
   ZENIXRA – Premium Dark Theme 2025/2026
   
   "Simplicity is the ultimate sophistication." — Steve Jobs
   
   #121212 canvas, muted neon #A1FF4F accents,
   high contrast, WCAG compliant, mobile-first.
   Inspired by Awwwards 2025-2026 winners.
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  /* Core palette — #121212 base like Awwwards winners */
  --bg-primary: #121212;
  --bg-secondary: #161616;
  --bg-card: #1A1A1A;
  --bg-card-hover: #1E1E1E;

  /* Neon accents */
  --neon-green: #A1FF4F;
  --neon-cyan: #00ffaa;
  --neon-purple: #B44FFF;
  --neon-blue: #4F8BFF;
  --neon-pink: #FF4F8B;

  /* Gradients */
  --gradient-main: linear-gradient(135deg, #A1FF4F 0%, #00ffaa 100%);
  --gradient-purple: linear-gradient(135deg, #B44FFF 0%, #4F8BFF 100%);
  --gradient-warm: linear-gradient(135deg, #B44FFF 0%, #FF4F8B 100%);

  /* Text — high contrast on #121212 */
  --text-primary: #F5F5F5;
  --text-secondary: rgba(245, 245, 245, 0.6);
  --text-tertiary: rgba(245, 245, 245, 0.35);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 12vh, 160px);
  --container-max: 1200px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) and (pointer: coarse) {
  body { cursor: auto; }
  .custom-cursor, .custom-cursor-ring, #cursor-canvas { display: none !important; }
}

a { color: inherit; text-decoration: none; cursor: none; }
button, input { cursor: none; font-family: inherit; }
img { max-width: 100%; display: block; }

::selection {
  background: rgba(161, 255, 79, 0.25);
  color: var(--text-primary);
}

/* ─── Accent utility ─── */
.accent {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   LOADER
═══════════════════════════════════════════ */
.loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s, visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════════════════
   CUSTOM CURSOR — Neon glow trail
═══════════════════════════════════════════ */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.3s;
  box-shadow: 0 0 12px rgba(161, 255, 79, 0.6);
  mix-blend-mode: difference;
}

.custom-cursor.hovering {
  width: 40px; height: 40px;
  background: rgba(161, 255, 79, 0.15);
  border: 1.5px solid var(--neon-green);
  box-shadow: 0 0 30px rgba(161, 255, 79, 0.3);
  mix-blend-mode: normal;
}

.custom-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(161, 255, 79, 0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out-expo),
              height 0.4s var(--ease-out-expo),
              border-color 0.3s,
              opacity 0.3s;
}

.custom-cursor-ring.hovering {
  width: 60px; height: 60px;
  border-color: rgba(161, 255, 79, 0.1);
  opacity: 0.5;
}

#cursor-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9998;
}

/* ═══════════════════════════════════════════
   LANGUAGE SWITCHER
   Minimal, elegant, Jobs-level restraint.
═══════════════════════════════════════════ */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.3s;
}

.lang-btn:hover {
  color: var(--text-primary);
}

.lang-btn.active {
  color: var(--neon-green);
  background: rgba(161, 255, 79, 0.08);
}

.lang-divider {
  color: var(--text-tertiary);
  font-size: 0.7rem;
  opacity: 0.3;
}

.desktop-lang {
  margin-left: 16px;
}

.mobile-lang {
  display: none;
}

@media (max-width: 768px) {
  .desktop-lang { display: none; }
  .mobile-lang {
    display: flex;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 8px;
  }
}

/* ═══════════════════════════════════════════
   NAVIGATION — Floating glass
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s var(--ease-out-expo);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(161, 255, 79, 0.06);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.logo-zen { color: var(--text-primary); }
.logo-ixra {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gradient-main);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }
.nav-cta-link { color: var(--neon-green) !important; font-weight: 600; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(18, 18, 18, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: right 0.5s var(--ease-out-expo);
    border-left: 1px solid rgba(161, 255, 79, 0.08);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1.1rem; }
  .nav-toggle { display: flex; }
}

/* ═══════════════════════════════════════════
   HERO — Canvas + overlay + readable title
   Readability fix: text-shadow, stroke, overlay
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

/* Overlay: ensures text readability over particles */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  background:
    /* Dark center overlay for readability */
    radial-gradient(ellipse at 50% 50%, rgba(18, 18, 18, 0.6) 0%, transparent 70%),
    /* Subtle neon glow top */
    radial-gradient(ellipse at 50% 0%, rgba(161, 255, 79, 0.04) 0%, transparent 60%),
    /* Purple glow bottom-right */
    radial-gradient(ellipse at 80% 80%, rgba(180, 79, 255, 0.03) 0%, transparent 50%),
    /* Fade to background at bottom */
    linear-gradient(to bottom, transparent 60%, var(--bg-primary) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-green);
  background: rgba(161, 255, 79, 0.06);
  border: 1px solid rgba(161, 255, 79, 0.12);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
}

/* HERO TITLE — Readability fix (Jobs mandate) */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  color: #f5f5f5;
  text-shadow:
    0 0 15px rgba(161, 255, 79, 0.7),
    0 0 30px rgba(0, 0, 0, 0.8),
    0 4px 20px rgba(0, 0, 0, 0.5);
  -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
  paint-order: stroke fill;
}

.title-line { display: block; }

/* Hero accent — brighter glow for IXRA */
.accent-hero {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(161, 255, 79, 0.5));
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
}

.tagline-accent {
  color: var(--text-primary);
  font-weight: 600;
}

/* Hero App Showcase */
.hero-app-showcase {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
}

.app-showcase-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 12px;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(161, 255, 79, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(161, 255, 79, 0); }
}

.app-showcase-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.store-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s var(--ease-out-expo);
  color: var(--text-primary);
}

.store-badge:hover {
  background: rgba(161, 255, 79, 0.08);
  border-color: rgba(161, 255, 79, 0.25);
  box-shadow: 0 0 30px rgba(161, 255, 79, 0.1);
  transform: translateY(-2px);
}

.badge-text { text-align: left; }
.badge-text small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  line-height: 1;
}
.badge-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Hero explore CTA */
.hero-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--bg-primary);
  background: var(--gradient-main);
  transition: all 0.4s var(--ease-out-expo);
  opacity: 0;
  transform: translateY(20px);
}

.hero-explore-btn:hover {
  box-shadow:
    0 0 40px rgba(161, 255, 79, 0.3),
    0 0 80px rgba(161, 255, 79, 0.1);
  transform: translateY(-3px) scale(1.03);
}

.hero-explore-btn svg { transition: transform 0.3s; }
.hero-explore-btn:hover svg { transform: translate(3px, -3px); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--neon-green), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ═══════════════════════════════════════════
   SECTION COMMON — Consistent rhythm
═══════════════════════════════════════════ */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-pad) clamp(20px, 4vw, 40px);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 8vh, 80px);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════════ */
.products {
  position: relative;
  background: var(--bg-primary);
}

.products::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(161, 255, 79, 0.15), transparent);
}

/* Featured product card */
.product-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.6s var(--ease-out-expo);
  margin-bottom: 80px;
}

.product-card:hover {
  border-color: rgba(161, 255, 79, 0.12);
  transform: translateY(-4px);
}

.product-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(161, 255, 79, 0.03) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity 0.6s;
  opacity: 0;
}

.product-card:hover .product-glow { opacity: 1; }

.product-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

@media (max-width: 768px) {
  .product-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.product-info {
  padding: clamp(32px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 20px;
}

.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon-green);
}

.status-dot.live { animation: pulse 2s ease-in-out infinite; }

.product-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.product-tagline {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.product-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.product-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.product-features-list li svg {
  color: var(--neon-green);
  flex-shrink: 0;
}

.product-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge-product {
  padding: 10px 20px !important;
}

/* Web App CTA — understated, confident */
.web-try-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--neon-green);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-bottom: 1px solid rgba(161,255,79,0.3);
  padding-bottom: 3px;
  transition: gap 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.88;
}
.web-try-btn:hover {
  gap: 11px;
  border-bottom-color: var(--neon-green);
  opacity: 1;
}
.web-try-btn .arrow-icon {
  transition: transform 0.2s ease;
}
.web-try-btn:hover .arrow-icon {
  transform: translate(2px, -2px);
}

/* Phone Mockup */
.product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.phone-mockup { position: relative; width: 260px; }

.phone-frame {
  position: relative;
  border-radius: 36px;
  padding: 12px;
  background: linear-gradient(145deg, #222222, #1A1A1A);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 25px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  background: #0F0F0F;
  aspect-ratio: 9 / 19;
}

.phone-glow {
  position: absolute;
  bottom: -20%; left: 50%;
  transform: translateX(-50%);
  width: 150%; height: 60%;
  background: radial-gradient(ellipse, rgba(161, 255, 79, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Phone App Demo */
.phone-app-demo {
  padding: 20px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-header-mock {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-top: 28px;
}

.app-logo-mock {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--bg-primary);
}

.app-header-mock span { font-size: 0.8rem; font-weight: 600; }

.app-city-selector {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.city-item {
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-tertiary);
  transition: all 0.3s;
}

.city-item.active {
  background: rgba(161, 255, 79, 0.1);
  border-color: rgba(161, 255, 79, 0.25);
  color: var(--neon-green);
}

.app-result-mock {
  background: rgba(161, 255, 79, 0.04);
  border: 1px solid rgba(161, 255, 79, 0.08);
  border-radius: 16px;
  padding: 20px 16px;
  margin-bottom: 16px;
  text-align: center;
}

.result-label {
  font-size: 0.65rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.result-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--neon-green);
  margin-bottom: 12px;
}

.result-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
}

.result-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient-main);
  border-radius: 100px;
  transition: width 2s var(--ease-out-expo);
}

.result-bar-fill.animate { width: 72%; }

.app-detail-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-tertiary);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* ─── Upcoming Section ─── */
.upcoming-section { margin-top: 20px; }

.upcoming-header {
  text-align: center;
  margin-bottom: 48px;
}

.upcoming-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.upcoming-subtitle {
  font-size: 0.95rem;
  color: var(--text-tertiary);
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 640px) {
  .upcoming-grid { grid-template-columns: 1fr; gap: 16px; }
}

.upcoming-card {
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
}

.upcoming-card:hover {
  border-color: rgba(180, 79, 255, 0.15);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.upcoming-card-inner {
  padding: 32px 24px;
  text-align: center;
}

.upcoming-icon {
  margin-bottom: 20px;
  color: var(--neon-purple);
  opacity: 0.5;
}

.upcoming-placeholder {
  width: 100%; height: 100px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(180, 79, 255, 0.05), rgba(79, 139, 255, 0.05));
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

/* Neon orb placeholders for game teasers */
.neon-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.5;
  animation: orbFloat 6s ease-in-out infinite;
}

.neon-orb-1 {
  width: 60px; height: 60px;
  background: rgba(161, 255, 79, 0.3);
  top: 20%; left: 30%;
  animation-delay: 0s;
}

.neon-orb-2 {
  width: 50px; height: 50px;
  background: rgba(180, 79, 255, 0.4);
  top: 25%; left: 40%;
  animation-delay: -2s;
}

.neon-orb-3 {
  width: 55px; height: 55px;
  background: rgba(0, 255, 170, 0.3);
  top: 15%; left: 35%;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -10px) scale(1.1); }
  66% { transform: translate(-10px, 5px) scale(0.9); }
}

.glitch-lines {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(180, 79, 255, 0.02) 3px,
    rgba(180, 79, 255, 0.02) 4px
  );
  animation: glitchScroll 8s linear infinite;
}

@keyframes glitchScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.upcoming-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.coming-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--neon-purple);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   FEATURES SECTION — 4 cards, 4 truths
═══════════════════════════════════════════ */
.features {
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(161, 255, 79, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(161, 255, 79, 0.1);
  transform: translateY(-6px);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(161, 255, 79, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s;
}

.feature-card:hover .feature-icon-wrap {
  background: rgba(161, 255, 79, 0.1);
  box-shadow: 0 0 20px rgba(161, 255, 79, 0.1);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   ABOUT / PHILOSOPHY — Zen manifesto
═══════════════════════════════════════════ */
.about {
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.about-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 32px;
  position: relative;
}

.quote-mark {
  font-size: 4rem;
  line-height: 0;
  vertical-align: middle;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  margin-right: 4px;
}

.about-details { margin-bottom: 48px; }

.about-details p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.7;
}

.about-details strong {
  color: var(--neon-green);
  font-weight: 600;
}

.about-origin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.origin-line {
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(161, 255, 79, 0.2), transparent);
}

.about-origin > span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════
   DOWNLOAD / CTA — Convert.
═══════════════════════════════════════════ */
.download {
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(161, 255, 79, 0.1), transparent);
}

.download-content {
  text-align: center;
  margin-bottom: 80px;
}

.download-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.download-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.download-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-badge-lg {
  padding: 16px 32px !important;
  border-radius: var(--radius-md) !important;
  font-size: 1rem;
}

.store-badge-lg:hover {
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow: 0 0 50px rgba(161, 255, 79, 0.15) !important;
}

/* Newsletter */
.newsletter {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-inner {
  text-align: center;
  padding: 48px 36px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.newsletter p {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s;
}

.newsletter-form input::placeholder { color: var(--text-tertiary); }

.newsletter-form input:focus {
  border-color: rgba(161, 255, 79, 0.3);
  box-shadow: 0 0 0 3px rgba(161, 255, 79, 0.05);
}

.newsletter-form button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  background: var(--gradient-main);
  border: none;
  color: var(--bg-primary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.4s var(--ease-out-expo);
  white-space: nowrap;
}

.newsletter-form button:hover {
  box-shadow: 0 0 30px rgba(161, 255, 79, 0.25);
  transform: translateY(-2px);
}

.newsletter-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(161, 255, 79, 0.06);
  font-size: 0.9rem;
  color: var(--neon-green);
}

.newsletter-success.show { display: flex; }

@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
}

/* ═══════════════════════════════════════════
   FOOTER — Quiet confidence
═══════════════════════════════════════════ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 60px clamp(20px, 4vw, 40px) 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 500px) {
  .footer-links-group { grid-template-columns: 1fr; gap: 28px; }
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-tertiary);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--neon-green); }

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-tertiary);
  transition: all 0.3s;
}

.social-icon:hover {
  background: rgba(161, 255, 79, 0.08);
  border-color: rgba(161, 255, 79, 0.2);
  color: var(--neon-green);
  transform: translateY(-2px);
}

.footer-divider {
  width: 100%; height: 1px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 24px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-made {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.obsession-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   COST CALCULATOR
═══════════════════════════════════════════ */
.calc-section {
  margin-bottom: 80px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}

.calc-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(161, 255, 79, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.calc-header {
  text-align: center;
  margin-bottom: 44px;
}

.calc-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.calc-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Three-column layout: form | globe | result */
.calc-body {
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  gap: 32px;
  align-items: start;
}

/* Globe column */
.calc-globe-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 8px;
  gap: 12px;
}

#calc-globe-canvas {
  width: 200px;
  height: 200px;
  display: block;
  border-radius: 50%;
  cursor: grab;
}

#calc-globe-canvas:active { cursor: grabbing; }

.globe-city-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--neon-green);
  letter-spacing: 0.04em;
  text-align: center;
  min-height: 1.2em;
  transition: opacity 0.3s;
  text-shadow: 0 0 12px rgba(161, 255, 79, 0.5);
}

/* Form */
.calc-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* City select */
.calc-select-wrap { position: relative; }

.calc-select {
  width: 100%;
  padding: 13px 40px 13px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.9rem;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.calc-select:focus {
  outline: none;
  border-color: rgba(161, 255, 79, 0.4);
  box-shadow: 0 0 0 3px rgba(161, 255, 79, 0.06);
}

.calc-select option { background: #1a1a1a; color: var(--text-primary); }

.select-arrow {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  pointer-events: none;
}

/* Row: m² + Floors */
.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.calc-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.calc-input:focus {
  outline: none;
  border-color: rgba(161, 255, 79, 0.4);
  box-shadow: 0 0 0 3px rgba(161, 255, 79, 0.06);
}

.calc-input::placeholder { color: var(--text-tertiary); }

.calc-input.input-error {
  border-color: rgba(255, 80, 80, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.06) !important;
}

/* Floors stepper */
.calc-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 48px;
}

.stepper-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.stepper-btn:hover {
  background: rgba(161, 255, 79, 0.12);
  border-color: rgba(161, 255, 79, 0.3);
  color: var(--neon-green);
}

#floors-display {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

/* Quality buttons */
.calc-quality-btns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.qual-btn {
  padding: 10px 6px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-tertiary);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.qual-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-secondary);
}

.qual-btn.active {
  background: rgba(161, 255, 79, 0.08);
  border-color: rgba(161, 255, 79, 0.35);
  color: var(--neon-green);
}

.qual-name {
  font-size: 0.75rem;
  font-weight: 600;
  display: block;
}

.qual-range {
  font-size: 0.65rem;
  opacity: 0.6;
  display: block;
  font-family: var(--font-display);
}

/* Submit */
.calc-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  background: var(--gradient-main);
  color: var(--bg-primary);
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  margin-top: 4px;
}

.calc-submit:hover {
  box-shadow: 0 0 30px rgba(161, 255, 79, 0.28), 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.calc-submit svg { transition: transform 0.3s; flex-shrink: 0; }
.calc-submit:hover svg { transform: translateX(4px); }

/* Result panel */
.calc-result { position: relative; }

.calc-result-inner {
  min-height: 340px;
  background: rgba(161, 255, 79, 0.02);
  border: 1px solid rgba(161, 255, 79, 0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s;
}

.calc-result-inner.has-result {
  border-color: rgba(161, 255, 79, 0.15);
  align-items: flex-start;
}

/* Empty state */
.result-empty-state {
  text-align: center;
  color: var(--text-tertiary);
}

.result-empty-state svg {
  display: block;
  margin: 0 auto 16px;
  opacity: 0.2;
}

.result-empty-state p {
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Result content */
.result-content { width: 100%; }

.result-total-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}

.result-total-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--neon-green);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.result-per-sqm {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* Breakdown bars */
.result-breakdown {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.breakdown-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.breakdown-label > span:first-child {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.breakdown-pct {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-tertiary);
  font-family: var(--font-display);
}

.breakdown-bar-track {
  height: 5px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  overflow: hidden;
}

.breakdown-bar {
  height: 100%;
  border-radius: 100px;
  width: 0;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.structure-bar  { background: linear-gradient(to right, #A1FF4F, #4FFFDF); }
.foundation-bar { background: linear-gradient(to right, #4FFFDF, #4FA1FF); }
.exterior-bar   { background: linear-gradient(to right, #B44FFF, #FF4FA1); }
.finishing-bar  { background: linear-gradient(to right, #FF9A4F, #FFDF4F); }

.result-note {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  line-height: 1.55;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 14px;
  margin-top: 4px;
}

/* Calc responsive */
@media (max-width: 900px) {
  .calc-quality-btns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .calc-body {
    grid-template-columns: 1fr 160px 1fr;
    gap: 20px;
  }
  #calc-globe-canvas { width: 150px; height: 150px; }
}

@media (max-width: 768px) {
  .calc-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .calc-globe-wrap {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding-top: 0;
  }
  #calc-globe-canvas { width: 120px; height: 120px; }
  .calc-result-inner { min-height: 200px; }
}

/* ═══════════════════════════════════════════
   ANIMATIONS — GSAP-driven, CSS fallback
═══════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
}

/* ─── Responsive fine-tuning ─── */
@media (max-width: 768px) {
  .hero-content { padding-top: 100px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .hero-app-showcase { padding: 20px; }
  .store-badges { flex-direction: column; align-items: stretch; }
  .store-badge { justify-content: center; }
  .product-visual { padding: 20px; }
  .phone-mockup { width: 220px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-line, .pulse-dot, .glitch-lines, .neon-orb { animation: none !important; }
}

/* Loading state */
body.loading { overflow: hidden; }
