/* ============================================
   SPACE.KE — Where Digital Meets Physical
   Glassmorphic, minimal, premium design
   ============================================ */

/* Brand & Design Tokens */
:root {
  /* Brand — refined */
  --space-green: #22C55E;
  --space-green-dim: #16A34A;
  --kenya-red: #EF4444;
  --white: #FFFFFF;

  /* Gold accent for warmth + premium feel */
  --accent-gold: #F59E0B;

  --bg-primary: #0A0F0A;
  --bg-secondary: #0D120D;
  --bg-tertiary: #111611;

  --text-primary: #F5F5F5;
  --text-secondary: rgba(245, 245, 245, 0.75);
  --text-muted: rgba(245, 245, 245, 0.5);

  --glass-bg: rgba(34, 197, 94, 0.04);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(34, 197, 94, 0.25);
  --glass-blur: 16px;
  --glass-blur-heavy: 24px;
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Monospace typography class */
.mono,
.logo,
.step-number,
.stat-number,
.section-tagline,
.card-headline,
.service-icon,
.contact-email {
  font-family: 'JetBrains Mono', monospace;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Animations
   ============================================ */

@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(34, 197, 94, 0.4), 0 0 20px rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 0 16px rgba(34, 197, 94, 0.6), 0 0 40px rgba(34, 197, 94, 0.3), 0 0 60px rgba(34, 197, 94, 0.1); }
}

@keyframes cursorTrailFade {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.5); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Hero stagger reveal */
.hero-content > * {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}
.hero-content > :nth-child(1) { animation-delay: 0ms; }
.hero-content > :nth-child(2) { animation-delay: 200ms; }
.hero-content > :nth-child(3) { animation-delay: 400ms; }
.hero-content > :nth-child(4) { animation-delay: 600ms; }

/* Staggered card entrance — children start hidden */
.services-grid > *,
.domains-grid > *,
.products-grid > *,
.steps-grid > *,
.about-stats > * {
  opacity: 0;
  transform: translateY(30px);
}

.stagger-in > * {
  animation: fadeInUp 0.6s ease-out forwards;
}
.stagger-in > :nth-child(1) { animation-delay: 0ms; }
.stagger-in > :nth-child(2) { animation-delay: 100ms; }
.stagger-in > :nth-child(3) { animation-delay: 200ms; }
.stagger-in > :nth-child(4) { animation-delay: 300ms; }
.stagger-in > :nth-child(5) { animation-delay: 400ms; }
.stagger-in > :nth-child(6) { animation-delay: 500ms; }

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   Scroll Progress Bar
   ============================================ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--space-green);
  z-index: 200;
  transition: width 0.1s linear;
}

/* ============================================
   Scroll-Down Indicator
   ============================================ */

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted);
  animation: bounceDown 2s ease-in-out infinite;
  transition: opacity 0.4s ease;
}

/* ============================================
   Section Divider Lines
   ============================================ */

.about-section,
.services-section,
.domains-section,
.products-section,
.approach-section,
.contact-section {
  position: relative;
}

.about-section::before,
.services-section::before,
.domains-section::before,
.products-section::before,
.approach-section::before,
.contact-section::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--space-green), transparent);
  opacity: 0.2;
}

/* ============================================
   Header / Navigation
   ============================================ */

header {
  background: rgba(10, 15, 10, 0.8);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo .space { color: var(--space-green); }
.logo .dot { color: var(--white); }
.logo .ke { color: var(--kenya-red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--space-green);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--space-green);
}

/* Active section dot indicator */
.nav-links a.active::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--space-green);
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--glass-bg);
}

/* ============================================
   Section Headers (reusable)
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--kenya-red);
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

/* Hero video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 10, 0.7);
  z-index: 1;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--kenya-red);
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.gradient-text {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--space-green) 0%, var(--white) 50%, var(--kenya-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* ============================================
   Neon CTA Button
   ============================================ */

.cta-neon {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: transparent;
  color: var(--space-green);
  border: 1px solid var(--space-green);
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  animation: neonPulse 2s ease-in-out infinite;
}

.cta-neon:hover {
  background: rgba(34, 197, 94, 0.1);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.5), 0 0 40px rgba(34, 197, 94, 0.2);
}

/* ============================================
   About Section
   ============================================ */

.about-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(10, 15, 10, 0.88) 0%, rgba(10, 15, 10, 0.75) 100%),
              url('images/about-nairobi.jpg') center / cover no-repeat;
  background-color: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.about-text .lead-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.7;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: var(--glass-border-hover);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--space-green);
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* (Convergence cards removed — replaced by Domains section) */

.card-headline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.card-list {
  list-style: none;
  padding: 0;
}

.card-list li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--space-green);
  font-weight: 600;
}

/* ============================================
   Services Section
   ============================================ */

.services-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.service-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.12), 0 0 0 1px rgba(34, 197, 94, 0.15);
}

.service-icon {
  font-size: 2rem;
  font-weight: 700;
  color: var(--space-green);
  margin-bottom: 1rem;
  opacity: 0.4;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--space-green);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.service-card > p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Monospace card index labels */
.card-index {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.5;
  letter-spacing: 0.05em;
}

/* Product card platform label */
.product-label {
  display: block;
  font-size: 0.65rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

/* ============================================
   Domains Section
   ============================================ */

.domains-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

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

.domain-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--glass-shadow);
}

.domain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.domain-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 8px 32px rgba(34, 197, 94, 0.12), 0 0 0 1px rgba(34, 197, 94, 0.15);
}

.domain-card h3 {
  font-size: 1.3rem;
  color: var(--space-green);
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.domain-card > p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Domain card background images — right-edge masked */
.domain-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mask-image: linear-gradient(270deg, rgba(0,0,0,1) 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(270deg, rgba(0,0,0,1) 0%, transparent 70%);
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.domain-card:hover::after {
  opacity: 0.25;
}
.domain-card h3,
.domain-card > p,
.domain-card .card-headline {
  position: relative;
  z-index: 1;
}
.domain-card:nth-child(1)::after { background-image: url('images/domain-digital.jpg'); }
.domain-card:nth-child(2)::after { background-image: url('images/domain-energy.jpg'); }
.domain-card:nth-child(3)::after { background-image: url('images/domain-physical.jpg'); }

/* ============================================
   Approach Section
   ============================================ */

.approach-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.step {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.12), 0 0 0 1px rgba(34, 197, 94, 0.15);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--space-green);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.step-capacity {
  font-size: 0.8rem;
  color: var(--kenya-red);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ============================================
   Products Section
   ============================================ */

.products-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(10, 15, 10, 0.9) 0%, rgba(10, 15, 10, 0.8) 100%),
              url('images/network-bg.jpg') center / cover no-repeat;
  background-color: var(--bg-secondary);
}

.products-section .section-header h2,
.products-section .section-description {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

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

.product-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.product-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.12), 0 0 0 1px rgba(34, 197, 94, 0.15);
}

.product-card h3 {
  font-size: 1.05rem;
  color: var(--space-green);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.product-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.contact-content {
  text-align: center;
}

.contact-content h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-description {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.contact-email {
  display: block;
  color: var(--space-green);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.contact-email:hover {
  color: var(--white);
}

.contact-address {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

/* ============================================
   Footer
   ============================================ */

footer {
  background: rgba(10, 15, 10, 0.6);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-top: 1px solid var(--glass-border);
  padding: 2rem 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.footer-contact a {
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--space-green);
}

.footer-contact p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================
   Cursor Trail Particles
   ============================================ */

.cursor-trail-particle {
  position: fixed;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--space-green), transparent);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
  pointer-events: none;
  z-index: 9999;
  animation: cursorTrailFade 0.8s ease-out forwards;
}

/* ============================================
   Responsive — Tablet & Mobile
   ============================================ */

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 15, 10, 0.95);
    backdrop-filter: blur(var(--glass-blur-heavy));
    -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
    border: 1px solid var(--glass-border);
    border-top: none;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: var(--glass-shadow);
  }

  .nav-links.mobile-menu-open {
    display: flex;
  }

  .nav-links a {
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--glass-border);
    font-size: 1rem;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a::after {
    display: none;
  }

  .scroll-indicator {
    bottom: 1.5rem;
  }

  nav {
    position: relative;
  }

  .hero-section {
    min-height: 100vh;
  }

  .gradient-text {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-tagline {
    font-size: 0.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  /* Hide video on mobile, use poster fallback */
  .hero-video { display: none; }
  .hero-section { background: #000 url('images/hero-poster.jpg') center / cover no-repeat; }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .about-section,
  .services-section,
  .domains-section,
  .products-section,
  .approach-section,
  .contact-section {
    padding: 4rem 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .domains-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step {
    padding: 1.5rem 1rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  /* Hide domain card background images on mobile */
  .domain-card::after {
    display: none;
  }
}

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

/* ============================================
   Reduced Motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-section { background: #000 url('images/hero-poster.jpg') center / cover no-repeat; }

  .cta-neon {
    animation: none;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
  }

  .cursor-trail-particle {
    display: none;
  }

  .animate-in {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-content > * {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .stagger-in > * {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .scroll-indicator {
    animation: none;
  }

  /* Disable domain card image hover transition */
  .domain-card::after {
    transition: none;
  }
}
