/* ==========================================================================
   CREAIONX LUXURY IT DESIGN SYSTEM
   Base Dark: #0a0a0a | Gold Accents: #a78b71, #c9b8a0, #e8d5b7
   Typography: 'Playfair Display' (Italic/Editorial) + 'Inter' (UI Precision)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;0,900;1,400;1,600;1,700;1,900&display=swap');

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #121212;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-glass-hover: rgba(201, 184, 160, 0.4);
  --border-glass-active: rgba(232, 213, 183, 0.6);

  /* Gold Palette */
  --gold-base: #a78b71;
  --gold-light: #c9b8a0;
  --gold-hover: #e8d5b7;
  --gold-dark: #7a634e;
  --gold-glow: rgba(167, 139, 113, 0.2);
  --gold-glow-strong: rgba(167, 139, 113, 0.4);
  --gold-glow-card: rgba(167, 139, 113, 0.3);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-normal: 0.4s var(--ease-smooth);
  --transition-slow: 0.7s var(--ease-smooth);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: #f3f3f3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-primary);
  color: #d1d5db;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Radial Dot Grid Background Overlay */
.bg-dots {
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  background-position: 0 0;
}

/* Global Ambient Lighting */
.ambient-glow-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at 50% 0%, rgba(167, 139, 113, 0.18) 0%, rgba(10, 10, 10, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-center {
  box-shadow: 0 0 120px rgba(167, 139, 113, 0.22);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: rgba(167, 139, 113, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 184, 160, 0.6);
}

/* Typography Helpers */
.font-serif {
  font-family: var(--font-serif);
}
.font-sans {
  font-family: var(--font-sans);
}
.italic-editorial {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
}
.text-gold {
  color: var(--gold-base);
}
.text-gold-light {
  color: var(--gold-light);
}
.text-gold-hover:hover {
  color: var(--gold-hover);
}
.gold-gradient-text {
  background: linear-gradient(135deg, #ffffff 20%, #e8d5b7 60%, #a78b71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gold-accent-text {
  background: linear-gradient(135deg, #e8d5b7 0%, #a78b71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Tracking / Small Uppercase */
.tracking-luxury {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.6875rem; /* 11px */
  font-weight: 600;
}

.tracking-role {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.75rem; /* 12px */
  font-weight: 400;
  color: var(--gold-light);
}

/* Glassmorphism Card System */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  border-color: var(--border-glass-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(167, 139, 113, 0.15);
}

.glass-pill {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
}

/* Buttons System */
.btn-primary {
  background: #ffffff;
  color: #0a0a0a;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1px solid #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 213, 183, 0.3);
}

.btn-bordered {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-bordered:hover {
  border-color: var(--gold-light);
  color: var(--gold-hover);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 25px rgba(167, 139, 113, 0.2);
}

.btn-gold {
  background: linear-gradient(135deg, #c9b8a0 0%, #a78b71 100%);
  color: #0a0a0a;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(167, 139, 113, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e8d5b7 0%, #c9b8a0 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 213, 183, 0.4);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-normal);
}

.site-nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: rgba(167, 139, 113, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.brand-logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.75rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.logo-dot {
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--gold-base);
}

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

.nav-link {
  font-size: 0.6875rem; /* 11px */
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.35rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-light);
  transition: width var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Audio FX Toggle Button */
.audio-toggle-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: #9ca3af;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

.audio-toggle-btn.active {
  color: var(--gold-light);
  border-color: var(--gold-base);
  box-shadow: 0 0 12px rgba(167, 139, 113, 0.3);
}

/* Mobile Hamburger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(24px);
  border-left: 1px solid rgba(167, 139, 113, 0.2);
  z-index: 2000;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.5s var(--ease-out-expo);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   LIVE NOTIFICATION PILL
   ========================================================================== */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: border-color var(--transition-fast);
}

.live-pill:hover {
  border-color: rgba(167, 139, 113, 0.4);
}

.live-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4ade80; /* green-400 */
  box-shadow: 0 0 10px #4ade80;
  animation: pulseGreen 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulseGreen {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

.live-tag {
  color: #4ade80;
  font-weight: 700;
  font-size: 0.5rem; /* 8px */
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.live-text {
  color: #ffffff;
  font-size: 0.75rem; /* 12px */
  font-weight: 400;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 8.5rem;
  padding-bottom: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.5rem, 6.5vw, 5.25rem);
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-headline span.gold-highlight {
  color: var(--gold-base);
  font-family: var(--font-serif);
  font-style: italic;
  position: relative;
}

.hero-subtext {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  color: #9ca3af;
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
  font-weight: 300;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* ==========================================================================
   INTERACTIVE HERO NODE & SATELLITES CANVAS
   ========================================================================== */
.hero-visual-stage {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 2rem auto 0 auto;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

/* SVG Neural Lines Layer */
.neural-svg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* Pulsing Branch Neural Connection Lines */
.node-line {
  stroke-width: 2.5;
  stroke: url(#goldLinearGradient);
  fill: none;
  animation: pulsingBranch 3.5s ease-in-out infinite alternate;
}

@keyframes pulsingBranch {
  0% {
    opacity: 0.35;
    stroke-width: 2;
  }
  50% {
    opacity: 0.75;
    stroke-width: 3;
  }
  100% {
    opacity: 0.45;
    stroke-width: 2.5;
  }
}

.node-line-dashed {
  stroke: var(--gold-hover);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 5 15;
  animation: dashFlow 20s linear infinite;
  opacity: 0.7;
}

@keyframes dashFlow {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* Central Interactive Node (16:9 Glass Card) */
.central-node {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 680px;
  aspect-ratio: 16 / 9;
  background: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 184, 160, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 100px rgba(167, 139, 113, 0.2), 0 30px 60px rgba(0, 0, 0, 0.9);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: all var(--transition-normal);
}

.central-node:hover {
  border-color: rgba(232, 213, 183, 0.4);
  box-shadow: 0 0 120px rgba(167, 139, 113, 0.3), 0 35px 70px rgba(0, 0, 0, 0.95);
}

/* Central Node Header & Controls */
.node-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.85rem;
}

.node-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.node-indicator {
  width: 10px;
  height: 10px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-base);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.6; }
}

.node-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.node-tabs {
  display: flex;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.25rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.node-tab-btn {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 0.65rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.node-tab-btn.active, .node-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-hover);
}

/* Central Node Body Display */
.node-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}

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

.telemetry-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  text-align: left;
}

.telemetry-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.telemetry-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-sans);
}

.telemetry-chart {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.telemetry-chart-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-base), var(--gold-hover));
  width: 78%;
  border-radius: 2px;
  transition: width 1s ease-in-out;
}

.node-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.75rem;
  font-size: 0.75rem;
  color: #6b7280;
}

/* ==========================================================================
   SATELLITE MEDIA CARDS
   ========================================================================== */
.satellite-card {
  position: absolute;
  z-index: 15;
  width: 260px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0.85rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  text-align: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.4s ease,
              box-shadow 0.5s ease;
  will-change: transform;
}

.satellite-card:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: rgba(201, 184, 160, 0.5);
  box-shadow: 0 0 60px rgba(167, 139, 113, 0.35), 0 20px 40px rgba(0, 0, 0, 0.8);
}

/* Satellite Positions in 2D Space */
.satellite-top-left {
  top: 5%;
  left: 3%;
}

.satellite-top-right {
  top: 5%;
  right: 3%;
}

.satellite-bottom-left {
  bottom: 5%;
  left: 4%;
}

.satellite-bottom-right {
  bottom: 5%;
  right: 4%;
}

.satellite-img-wrap {
  width: 100%;
  height: 125px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0.75rem;
  background: #141414;
}

.satellite-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.85) contrast(1.1);
  transition: filter var(--transition-slow), transform var(--transition-slow);
}

.satellite-card:hover .satellite-img {
  filter: grayscale(0%) brightness(1) contrast(1.05);
  transform: scale(1.06);
}

.satellite-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.satellite-caption {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.satellite-sub {
  font-size: 0.6875rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   ENTERPRISE METRICS STRIP
   ========================================================================== */
.metrics-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  padding: 3rem 1.5rem;
  margin-top: 4rem;
}

.metrics-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-number {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 40%, #c9b8a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-base);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.metric-desc {
  font-size: 0.8125rem;
  color: #6b7280;
}

/* ==========================================================================
   FEATURES GRID (IT DOMAINS)
   ========================================================================== */
.section-wrapper {
  padding: 7rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4.5rem auto;
}

.section-tag {
  font-size: 0.6875rem; /* 11px */
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold-base);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.section-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.section-description {
  font-size: 1.0625rem;
  color: #9ca3af;
  font-weight: 300;
  line-height: 1.7;
}

/* 4-Column Grid for Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: all var(--transition-normal);
  position: relative;
}

.feature-card:hover {
  border-color: rgba(201, 184, 160, 0.4);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(167, 139, 113, 0.12);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(167, 139, 113, 0.1);
  border: 1px solid rgba(167, 139, 113, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon-box {
  transform: scale(1.1);
  background: rgba(167, 139, 113, 0.2);
  border-color: var(--gold-light);
  color: var(--gold-hover);
  box-shadow: 0 0 20px rgba(167, 139, 113, 0.3);
}

.feature-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.25rem; /* 20px */
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.feature-body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.875rem; /* 14px */
  color: #9ca3af;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.feature-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-base);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.feature-card:hover .feature-learn-more {
  color: var(--gold-hover);
  transform: translateX(4px);
}

/* ==========================================================================
   FRAME-BASED SCROLL ANIMATION & JOURNEY
   ========================================================================== */
.journey-stage {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 3rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.journey-scrubber {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 2rem;
}

.scrubber-step {
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.scrubber-step.active {
  background: rgba(167, 139, 113, 0.08);
  border: 1px solid rgba(167, 139, 113, 0.25);
}

.step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-base);
  margin-bottom: 0.25rem;
  display: block;
}

.step-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.step-sub {
  font-size: 0.75rem;
  color: #6b7280;
}

.frame-display-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
  min-height: 400px;
}

.frame-info-pane {
  text-align: left;
}

.frame-badge {
  display: inline-block;
  background: rgba(167, 139, 113, 0.15);
  color: var(--gold-light);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.frame-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.frame-body {
  font-size: 0.9375rem;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.frame-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.frame-spec-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
  color: #d1d5db;
}

.frame-spec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
}

.frame-canvas-pane {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 50px rgba(167, 139, 113, 0.1);
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   INTERACTIVE IT TERMINAL & LIVE BENCHMARK
   ========================================================================== */
.terminal-window {
  background: #0d0d0d;
  border: 1px solid rgba(201, 184, 160, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 80px rgba(167, 139, 113, 0.15);
  overflow: hidden;
  font-family: 'Courier New', Courier, monospace;
  text-align: left;
}

.terminal-titlebar {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.terminal-title {
  font-size: 0.75rem;
  color: #9ca3af;
  letter-spacing: 0.1em;
}

.terminal-screen {
  padding: 1.5rem;
  min-height: 280px;
  max-height: 380px;
  overflow-y: auto;
  color: #e5e7eb;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.terminal-line {
  margin-bottom: 0.4rem;
}

.term-gold { color: var(--gold-light); }
.term-green { color: #34d399; }
.term-gray { color: #6b7280; }
.term-blue { color: #60a5fa; }

.terminal-input-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.term-prompt {
  color: var(--gold-base);
  font-weight: 700;
}

.terminal-input {
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: inherit;
  font-size: inherit;
  flex-grow: 1;
  outline: none;
}

/* ==========================================================================
   INTERACTIVE ROI & INFRASTRUCTURE ESTIMATOR
   ========================================================================== */
.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 3rem;
  backdrop-filter: blur(16px);
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.slider-label {
  color: #d1d5db;
  font-weight: 500;
}

.slider-val {
  color: var(--gold-light);
  font-weight: 700;
}

.custom-range {
  width: 100%;
  accent-color: var(--gold-base);
  cursor: pointer;
}

.calc-results-card {
  background: rgba(167, 139, 113, 0.04);
  border: 1px solid rgba(167, 139, 113, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  box-shadow: 0 0 60px rgba(167, 139, 113, 0.1);
}

.calc-stat-big {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 40%, #e8d5b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   PRICING SECTION (3-TIERED LUXURY)
   ========================================================================== */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.billing-switch {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 0.35rem;
  display: flex;
  position: relative;
  cursor: pointer;
}

.billing-option {
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #9ca3af;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  border: none;
  background: none;
  cursor: pointer;
}

.billing-option.active {
  background: #ffffff;
  color: #0a0a0a;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.discount-badge {
  background: rgba(167, 139, 113, 0.2);
  color: var(--gold-hover);
  border: 1px solid var(--gold-base);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: all var(--transition-normal);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 184, 160, 0.4);
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.9), 0 0 40px rgba(167, 139, 113, 0.15);
}

/* Center 'Pro' Highlighted Card */
.pricing-card.featured-pro {
  border: 1px solid rgba(167, 139, 113, 0.4);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 100px rgba(167, 139, 113, 0.2), 0 30px 60px rgba(0, 0, 0, 0.9);
  transform: scale(1.03);
}

.pricing-card.featured-pro:hover {
  transform: scale(1.03) translateY(-8px);
  border-color: var(--gold-light);
  box-shadow: 0 0 120px rgba(167, 139, 113, 0.35), 0 35px 70px rgba(0, 0, 0, 0.95);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c9b8a0 0%, #a78b71 100%);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(167, 139, 113, 0.4);
}

.tier-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.tier-desc {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 2rem;
}

.tier-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.tier-price {
  font-family: var(--font-sans);
  font-size: 3rem; /* 48px */
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.tier-period {
  font-size: 0.875rem;
  color: #6b7280;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  flex-grow: 1;
}

.feature-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #d1d5db;
}

.gold-check {
  color: var(--gold-light);
  flex-shrink: 0;
}

/* ==========================================================================
   TEAM SECTION (2-COLUMN LARGE CARDS 4:5 ASPECT RATIO)
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.team-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  text-align: left;
}

.team-card:hover {
  border-color: rgba(201, 184, 160, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(167, 139, 113, 0.2);
  transform: translateY(-6px);
}

.team-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: #141414;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.85) contrast(1.1);
  transition: filter var(--transition-slow), transform var(--transition-slow);
}

.team-card:hover .team-img {
  filter: grayscale(0%) brightness(1) contrast(1.05);
  transform: scale(1.04);
}

.team-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.team-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.85rem;
  color: #ffffff;
}

.team-role {
  font-size: 0.75rem; /* 12px */
  letter-spacing: 0.25em; /* ultra-thin wide-tracked */
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER (5 COLUMNS)
   ========================================================================== */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #080808;
  padding: 6rem 1.5rem 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 3rem;
  text-align: left;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-bio {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 320px;
}

.social-icons-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  border-color: var(--gold-light);
  color: var(--gold-hover);
  background: rgba(167, 139, 113, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(167, 139, 113, 0.3);
}

.footer-col-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.footer-link {
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-hover);
}

/* Join Digest Search Box */
.digest-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.digest-desc {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.6;
}

.digest-input-form {
  position: relative;
  display: flex;
  align-items: center;
}

.digest-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 0.85rem 3.5rem 0.85rem 1.25rem;
  color: #ffffff;
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.digest-input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 20px rgba(167, 139, 113, 0.2);
}

.digest-submit-btn {
  position: absolute;
  right: 5px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #0a0a0a;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.digest-submit-btn:hover {
  background: var(--gold-hover);
  transform: scale(1.05);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6b7280;
}

/* ==========================================================================
   CONSULTATION MODAL & TOAST
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #111111;
  border: 1px solid rgba(167, 139, 113, 0.3);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 580px;
  width: 100%;
  box-shadow: 0 0 100px rgba(167, 139, 113, 0.25), 0 30px 60px rgba(0, 0, 0, 0.95);
  position: relative;
  text-align: left;
  transform: scale(0.95);
  transition: transform 0.4s var(--ease-out-expo);
}

.modal-overlay.open .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: #9ca3af;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  color: #ffffff;
  border-color: var(--gold-light);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 15px rgba(167, 139, 113, 0.2);
}

/* Toast */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #171717;
  border: 1px solid var(--gold-base);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(167, 139, 113, 0.2);
  z-index: 4000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s var(--ease-out-expo);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   CUSTOM CURSOR (DESKTOP ONLY)
   ========================================================================== */
.custom-cursor-dot, .custom-cursor-ring {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold-hover);
  box-shadow: 0 0 10px var(--gold-base);
}

.custom-cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 184, 160, 0.45);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.custom-cursor-ring.active {
  width: 54px;
  height: 54px;
  border-color: var(--gold-hover);
  background: rgba(167, 139, 113, 0.08);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .satellite-card {
    width: 220px;
  }
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-container .digest-box {
    grid-column: span 3;
  }
}

@media (max-width: 992px) {
  .nav-links, .nav-actions .btn-primary {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-visual-stage {
    min-height: auto;
    flex-direction: column;
    padding-top: 1rem;
  }
  .satellite-card {
    position: static;
    width: 100%;
    max-width: 400px;
    margin: 1rem auto;
  }
  .neural-svg-canvas {
    display: none; /* Mobile optimization for neural lines */
  }
  .central-node {
    max-width: 100%;
    aspect-ratio: auto;
    min-height: 340px;
    margin-bottom: 2rem;
  }
  .metrics-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .pricing-card.featured-pro {
    transform: none;
  }
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .calculator-grid {
    grid-template-columns: 1fr;
  }
  .journey-scrubber {
    grid-template-columns: repeat(2, 1fr);
  }
  .frame-display-container {
    grid-template-columns: 1fr;
  }
  .custom-cursor-dot, .custom-cursor-ring {
    display: none; /* Disable cursor on tablets/mobiles */
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 7rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .metrics-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-container .digest-box {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .telemetry-grid {
    grid-template-columns: 1fr;
  }
  .journey-scrubber {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
