/* -------------------------------------------------------------
 * CORE DESIGN SYSTEM & CYBERNETIC VARIABLES
 * ------------------------------------------------------------- */
:root {
  /* Color Tokens */
  --bg-deep: hsl(240, 40%, 2%);
  --bg-dark: hsl(240, 30%, 4%);
  --bg-card: hsla(240, 30%, 6%, 0.7);
  
  --primary-cyan: hsl(182, 100%, 50%);
  --primary-cyan-rgb: 0, 243, 255;
  --accent-purple: hsl(283, 100%, 50%);
  --accent-purple-rgb: 182, 0, 255;
  --emerald-ok: hsl(152, 100%, 50%);
  --alert-orange: hsl(20, 100%, 50%);
  
  --text-light: hsl(210, 20%, 98%);
  --text-muted: hsl(217, 15%, 65%);
  --border-muted: hsla(217, 30%, 20%, 0.4);
  --border-glow: hsla(182, 100%, 50%, 0.25);
  
  /* Fonts */
  --font-heading: 'Syncopate', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  
  /* Transitions */
  --t-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --t-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --t-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & Custom scrollbars */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-cyan) var(--bg-deep);
  background-color: var(--bg-deep);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Register Named View Timelines for CSS Scroll-Driven Animations */
  timeline-scope: --tl-sec-core, --tl-sec-assembler, --tl-sec-matrix, --tl-sec-chronos, --tl-sec-geo, --tl-sec-uplink;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

/* Custom Scrollbar Styling (Modern web practices) */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary-cyan), var(--accent-purple));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-cyan);
}

/* Selection aesthetics */
::selection {
  background: rgba(0, 243, 255, 0.25);
  color: var(--primary-cyan);
}

/* -------------------------------------------------------------
 * CYBERNETIC DECORATIONS & STARFIELD
 * ------------------------------------------------------------- */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -3;
  pointer-events: none;
}

.cyber-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(138, 153, 173, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 153, 173, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  z-index: -2;
  pointer-events: none;
}

.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: repeating-linear-gradient(
    0deg,
    rgba(2, 2, 5, 0) 0px,
    rgba(2, 2, 5, 0.1) 1px,
    rgba(2, 2, 5, 0) 2px
  );
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
}

/* Custom Cursor Ring */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid var(--primary-cyan);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-purple);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 0 8px rgba(182, 0, 255, 0.6);
}

/* Hover Cursor states (Interactive targets) */
#custom-cursor.hovering .cursor-ring {
  width: 48px;
  height: 48px;
  border-color: var(--accent-purple);
  border-width: 2px;
  box-shadow: 0 0 15px rgba(182, 0, 255, 0.4);
}

#custom-cursor.hovering .cursor-dot {
  background-color: var(--primary-cyan);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.8);
}

@media (max-width: 1024px) {
  #custom-cursor {
    display: none; /* Disable cursor HUD on mobile/tablet viewports */
  }
}

/* -------------------------------------------------------------
 * HOLOGRAPHIC LOADER / BOOT SEQUENCE
 * ------------------------------------------------------------- */
#boot-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-deep);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

#boot-screen.loaded {
  opacity: 0;
  visibility: hidden;
}

.boot-matrix {
  width: 90%;
  max-width: 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.boot-logo-container {
  margin-bottom: 30px;
  position: relative;
}

/* SVG Line Drawing Path Keyframes */
.draw-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: strokeDrawing 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes strokeDrawing {
  to {
    stroke-dashoffset: 0;
  }
}

.boot-console {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: left;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-muted);
  padding: 20px;
  width: 100%;
  height: 160px;
  overflow-y: hidden;
  border-radius: 4px;
  margin-bottom: 25px;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6);
  position: relative;
}

.console-line {
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(4px);
  animation: lineFeed 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Set dynamic lines index animations */
.console-line:nth-child(1) { animation-delay: 0.4s; }
.console-line:nth-child(2) { animation-delay: 0.8s; }
.console-line:nth-child(3) { animation-delay: 1.2s; }
.console-line:nth-child(4) { animation-delay: 1.6s; }
.console-line:nth-child(5) { animation-delay: 2.0s; }
.console-line:nth-child(6) { animation-delay: 2.4s; }

@keyframes lineFeed {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.boot-progress-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-mono);
}

.boot-progress-bar {
  flex-grow: 1;
  height: 4px;
  background-color: var(--bg-dark);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-muted);
}

.boot-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary-cyan), var(--accent-purple));
  animation: bootProgress 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes bootProgress {
  to {
    width: 100%;
  }
}

.boot-percentage {
  width: 40px;
  text-align: right;
  color: var(--primary-cyan);
}

/* -------------------------------------------------------------
 * FLOATING HUD HEADER (NAV & DIALOGS)
 * ------------------------------------------------------------- */
.hud-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(2, 2, 5, 0.9) 0%, rgba(2, 2, 5, 0.5) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-muted);
  transition: transform var(--t-normal);
}

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

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--text-light);
}

.brand-logo-svg {
  filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.5));
}

.brand-text {
  background: linear-gradient(to right, var(--text-light), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hud-nav {
  display: flex;
}

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

.nav-item {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t-fast);
  position: relative;
}

.cyber-indicator {
  width: 4px;
  height: 4px;
  background-color: var(--primary-cyan);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.nav-item:hover, .nav-item.active {
  color: var(--primary-cyan);
}

.nav-item:hover .cyber-indicator, .nav-item.active .cyber-indicator {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 6px var(--primary-cyan);
}

.btn-uplink {
  color: var(--primary-cyan);
  font-weight: 600;
  border-radius: 4px;
  overflow: hidden;
  transition: color var(--t-fast), box-shadow var(--t-fast);
}

.btn-uplink:hover {
  color: var(--text-light);
  text-shadow: 0 0 8px var(--primary-cyan);
}

/* Header Clocks HUD */
.hud-diagnostics {
  display: flex;
  gap: 20px;
}

.hud-clock {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-muted);
  padding: 4px 10px;
  border-radius: 3px;
  display: flex;
  gap: 6px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
}

.clock-label {
  color: var(--text-muted);
}

.clock-time {
  color: var(--primary-cyan);
  min-width: 58px;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.mobile-nav-toggle .bar {
  width: 25px;
  height: 2px;
  background-color: var(--primary-cyan);
  transition: transform var(--t-normal), opacity var(--t-normal);
}

/* Mobile Dropdown Inner */
.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(2, 2, 5, 0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform var(--t-normal);
}

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

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  font-family: var(--font-mono);
}

.mobile-nav-item {
  color: var(--text-muted);
  font-size: 1.3rem;
  text-decoration: none;
  letter-spacing: 2px;
  transition: color var(--t-fast);
}

.mobile-nav-item:hover, .mobile-nav-item.text-cyan:hover {
  color: var(--primary-cyan);
  text-shadow: 0 0 8px var(--primary-cyan);
}

.mobile-clocks {
  margin-top: 30px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-clocks span {
  color: var(--primary-cyan);
}

/* -------------------------------------------------------------
 * CONTENT GRID SECTIONS
 * ------------------------------------------------------------- */
.content-matrix {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.section-container {
  min-height: 100vh;
  padding: 120px 0 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
  max-width: 800px;
}

.hud-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--primary-cyan);
  margin-bottom: 12px;
  text-shadow: 0 0 5px rgba(0, 243, 255, 0.3);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--text-light), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Fine-edge Corner Decors */
.hero-corner-borders {
  position: absolute;
  top: 100px;
  bottom: 60px;
  left: 0;
  right: 0;
  border: 1px solid rgba(138, 153, 173, 0.05);
  pointer-events: none;
}

.corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--primary-cyan);
  border-style: solid;
  opacity: 0.6;
}
.corner.tl { top: -2px; left: -2px; border-width: 2px 0 0 2px; }
.corner.tr { top: -2px; right: -2px; border-width: 2px 2px 0 0; }
.corner.bl { bottom: -2px; left: -2px; border-width: 0 0 2px 2px; }
.corner.br { bottom: -2px; right: -2px; border-width: 0 2px 2px 0; }

/* -------------------------------------------------------------
 * HERO SECTION
 * ------------------------------------------------------------- */
.hero-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 650px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 45px;
}

.stat-node {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 20px;
}

/* Saturated Cyber Buttons */
.cyber-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 16px 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-light);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  transition: transform var(--t-fast);
}

.cyber-btn:active {
  transform: scale(0.97);
}

.cyber-btn.primary {
  background: linear-gradient(135deg, var(--primary-cyan), var(--accent-purple));
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.35);
}

.cyber-btn.primary::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  right: 1px;
  background: var(--bg-deep);
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%);
  transition: background var(--t-fast);
}

.cyber-btn.primary:hover::before {
  background: transparent;
}

.cyber-btn.primary:hover .btn-text {
  color: var(--bg-deep);
  font-weight: 700;
  text-shadow: none;
}

.cyber-btn.secondary {
  border: 1px solid var(--border-muted);
  background: rgba(138, 153, 173, 0.04);
}

.cyber-btn.secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--primary-cyan), var(--accent-purple));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--t-fast);
}

.cyber-btn.secondary:hover {
  border-color: transparent;
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.cyber-btn.secondary:hover::before {
  opacity: 1;
}

.cyber-btn.secondary:hover .btn-text {
  color: var(--bg-deep);
  font-weight: 700;
}

.cyber-btn.compact {
  padding: 12px 20px;
  font-size: 0.75rem;
}

.btn-text {
  position: relative;
  z-index: 1;
  transition: color var(--t-fast);
}

/* Hero Vector Beacon Styling */
.beacon-circle-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.beacon-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 243, 255, 0.15);
  pointer-events: none;
}

.beacon-ring.static-ring {
  width: 320px;
  height: 320px;
  border: 2px dashed rgba(182, 0, 255, 0.1);
  animation: rotateClockwise 25s linear infinite;
}

.beacon-ring.pulse-1 {
  width: 380px;
  height: 380px;
  animation: cyberPulse 6s ease-out infinite;
}

.beacon-ring.pulse-2 {
  width: 440px;
  height: 440px;
  animation: cyberPulse 6s ease-out infinite;
  animation-delay: 3s;
}

.beacon-logo-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(0, 243, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-beacon {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.6));
  animation: floatOrb 5s ease-in-out infinite;
}

@keyframes rotateClockwise {
  to { transform: rotate(360deg); }
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes cyberPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.1;
  }
  50% {
    opacity: 0.4;
    border-color: rgba(182, 0, 255, 0.3);
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

/* Scroller indicator */
.hud-scroller-hint {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  pointer-events: none;
}

.scroll-arrow {
  width: 12px;
  height: 12px;
  border-bottom: 2px solid var(--primary-cyan);
  border-right: 2px solid var(--primary-cyan);
  transform: rotate(45deg);
  animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: translate(0, 0) rotate(45deg); opacity: 0.3; }
  50% { transform: translate(0, 6px) rotate(45deg); opacity: 1; }
}

/* -------------------------------------------------------------
 * AUTOMATION & ESTIMATOR DECK
 * ------------------------------------------------------------- */
.assembler-deck-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Glassmorphism Panel styles */
.assembler-control-pane, .assembler-compiler-pane {
  background-color: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-muted);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.assembler-control-pane::before, .assembler-compiler-pane::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-cyan), var(--accent-purple));
}

.panel-header {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.panel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.panel-dot.cyan { background-color: var(--primary-cyan); box-shadow: 0 0 6px var(--primary-cyan); }
.panel-dot.purple { background-color: var(--accent-purple); box-shadow: 0 0 6px var(--accent-purple); }

.panel-title {
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 1px;
}

.panel-diag {
  margin-left: auto;
  color: var(--text-muted);
}

/* Selector Pad Matrix */
.services-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 20px;
}

.selector-pad {
  background-color: rgba(138, 153, 173, 0.02);
  border: 1px solid var(--border-muted);
  padding: 18px 15px;
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--t-fast), background-color var(--t-fast);
  position: relative;
  overflow: hidden;
}

.selector-pad::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: transparent;
  transition: background-color var(--t-fast);
}

.pad-status {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-indicator {
  width: 4px;
  height: 4px;
  background-color: var(--text-muted);
  border-radius: 50%;
}

.pad-details {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pad-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.pad-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.2;
}

/* Pad Active States */
.selector-pad:hover {
  border-color: rgba(0, 243, 255, 0.2);
  background-color: rgba(0, 243, 255, 0.01);
}

.selector-pad.active {
  border-color: rgba(0, 243, 255, 0.35);
  background-color: rgba(0, 243, 255, 0.03);
}

.selector-pad.active::after {
  background-color: var(--primary-cyan);
}

.selector-pad.active .pad-status {
  color: var(--primary-cyan);
}

.selector-pad.active .status-indicator {
  background-color: var(--primary-cyan);
  box-shadow: 0 0 6px var(--primary-cyan);
}

/* Prompt synthesizer console input */
.prompt-synthesizer-pod {
  padding: 0 20px 20px 20px;
  border-top: 1px solid var(--border-muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.prompt-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 15px;
}

.prompt-input-wrapper {
  display: flex;
  gap: 10px;
  border: 1px solid var(--border-muted);
  background-color: var(--bg-dark);
  border-radius: 4px;
  padding: 4px;
  overflow: hidden;
}

.prompt-input-wrapper input {
  flex-grow: 1;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 10px 12px;
  color: var(--text-light);
  outline: none;
}

.prompt-input-wrapper input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.prompt-synth-btn {
  background: linear-gradient(135deg, var(--primary-cyan), var(--accent-purple));
  color: var(--bg-deep);
  border: none;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0 15px;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity var(--t-fast);
}

.prompt-synth-btn:hover {
  opacity: 0.9;
}

.prompt-hint {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
}

/* Compiler Terminal Output */
.compiler-pane {
  flex-grow: 1;
}

.terminal-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-mono);
}

.terminal-log-flow {
  background-color: rgba(2, 2, 5, 0.75);
  border: 1px solid var(--border-muted);
  border-radius: 4px;
  padding: 15px;
  height: 250px;
  overflow-y: auto;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-muted);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.term-line {
  margin-bottom: 5px;
  word-break: break-all;
}

.text-cyan { color: var(--primary-cyan); }
.text-purple { color: var(--accent-purple); }
.text-emerald { color: var(--emerald-ok); }
.text-orange { color: var(--alert-orange); }

.compiler-metrics-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.metric-block {
  background-color: rgba(138, 153, 173, 0.02);
  border: 1px solid var(--border-muted);
  border-radius: 4px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-label {
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.compiler-actions {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

/* -------------------------------------------------------------
 * TECHNOLOGY SERVICE MATRIX
 * ------------------------------------------------------------- */
.services-grid-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background-color: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-muted);
  border-radius: 6px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-normal), border-color var(--t-normal), box-shadow var(--t-normal);
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.card-glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -20%, rgba(0, 243, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity var(--t-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-cyan);
  box-shadow: 0 10px 25px rgba(0, 243, 255, 0.15);
}

.service-card:hover .card-glow-overlay {
  background: radial-gradient(circle at 50% -20%, rgba(182, 0, 255, 0.12) 0%, transparent 70%);
  opacity: 1;
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.card-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.card-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.3;
}

.card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  min-height: 80px;
}

.card-specs {
  border-top: 1px solid var(--border-muted);
  padding-top: 15px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.card-specs li {
  display: flex;
  justify-content: space-between;
}

.card-specs span:first-child {
  color: var(--text-muted);
}

.card-specs span:last-child {
  color: var(--text-light);
}

/* -------------------------------------------------------------
 * CHRONOS SCROLL-DRIVEN TIMELINE
 * ------------------------------------------------------------- */
.timeline-nexus-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-center-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--border-muted), var(--primary-cyan) 30%, var(--accent-purple) 70%, var(--border-muted));
  transform: translateX(-50%);
  pointer-events: none;
}

.timeline-glowing-bead {
  width: 8px;
  height: 8px;
  background-color: var(--primary-cyan);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--primary-cyan);
  pointer-events: none;
  /* Animate down timeline if scroll driven is supported */
  animation: moveBeadDown auto linear forwards;
  animation-timeline: view();
  animation-range: entry cover 100%;
}

@keyframes moveBeadDown {
  to {
    top: 100%;
    background-color: var(--accent-purple);
    box-shadow: 0 0 12px var(--accent-purple);
  }
}

.timeline-scrolly-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.timeline-block {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-slow), opacity var(--t-slow);
}

.timeline-block.left {
  align-self: flex-start;
  padding-right: 45px;
  text-align: right;
}

.timeline-block.right {
  align-self: flex-end;
  padding-left: 45px;
  text-align: left;
}

.timeline-marker {
  width: 12px;
  height: 12px;
  background-color: var(--bg-deep);
  border: 2px solid var(--border-muted);
  border-radius: 50%;
  position: absolute;
  top: 30px;
  z-index: 5;
  transition: border-color var(--t-normal), transform var(--t-normal);
}

.timeline-block.left .timeline-marker {
  right: -6px;
}

.timeline-block.right .timeline-marker {
  left: -6px;
}

.timeline-box {
  background-color: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-muted);
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  position: relative;
}

.timeline-box::after {
  content: '';
  position: absolute;
  top: 28px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline-block.left .timeline-box::after {
  right: -10px;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent var(--border-muted);
}

.timeline-block.right .timeline-box::after {
  left: -10px;
  border-width: 8px 10px 8px 0;
  border-color: transparent var(--border-muted) transparent transparent;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.timeline-event {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  color: var(--text-light);
}

.timeline-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.timeline-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Hover/Intersection animation indicators */
.timeline-block.active .timeline-marker {
  border-color: var(--primary-cyan);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--primary-cyan);
}

.timeline-block.active .timeline-box {
  border-color: rgba(0, 243, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0, 243, 255, 0.08);
}

/* Native CSS Scroll-driven entry/exit timeline animations (Progressive Enhancement) */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    
    @keyframes scrollRevealLeft {
      from {
        opacity: 0;
        transform: translateX(-40px) scale(0.9);
      }
      to {
        opacity: 1;
        transform: translateX(0) scale(1);
      }
    }
    
    @keyframes scrollRevealRight {
      from {
        opacity: 0;
        transform: translateX(40px) scale(0.9);
      }
      to {
        opacity: 1;
        transform: translateX(0) scale(1);
      }
    }

    .timeline-block.left {
      animation: scrollRevealLeft auto linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 40%;
    }

    .timeline-block.right {
      animation: scrollRevealRight auto linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 40%;
    }
  }
}

/* -------------------------------------------------------------
 * GEOGRAPHIC BEACONS (BANGALORE & BHILAI)
 * ------------------------------------------------------------- */
.geo-beacons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.geo-node-card {
  background-color: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-muted);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: border-color var(--t-normal), box-shadow var(--t-normal);
}

.geo-node-card:hover {
  border-color: var(--primary-cyan);
  box-shadow: 0 10px 25px rgba(0, 243, 255, 0.15);
}

.node-map-bg {
  height: 180px;
  background-color: #030308;
  background-image: 
    radial-gradient(rgba(138, 153, 173, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(138, 153, 173, 0.02) 1px, transparent 1px);
  background-size: 15px 15px, 30px 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-muted);
}

.geo-grid-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 1px solid rgba(0, 243, 255, 0.1);
  border-radius: 50%;
}

.geo-pulse-beacon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.geo-pulse-beacon.cyan {
  background-color: var(--primary-cyan);
  box-shadow: 0 0 10px var(--primary-cyan);
}
.geo-pulse-beacon.cyan::after {
  content: '';
  position: absolute;
  top: -15px; left: -15px; right: -15px; bottom: -15px;
  border: 1px solid var(--primary-cyan);
  border-radius: 50%;
  animation: cyberPulse 2s infinite;
}

.geo-pulse-beacon.purple {
  background-color: var(--accent-purple);
  box-shadow: 0 0 10px var(--accent-purple);
}
.geo-pulse-beacon.purple::after {
  content: '';
  position: absolute;
  top: -15px; left: -15px; right: -15px; bottom: -15px;
  border: 1px solid var(--accent-purple);
  border-radius: 50%;
  animation: cyberPulse 2s infinite;
  animation-delay: 1s;
}

.node-header {
  padding: 25px 25px 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.node-status {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.node-status .status-indicator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.node-status.text-cyan .status-indicator { background-color: var(--primary-cyan); box-shadow: 0 0 6px var(--primary-cyan); }
.node-status.text-purple .status-indicator { background-color: var(--accent-purple); box-shadow: 0 0 6px var(--accent-purple); }

.node-city {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-light);
}

.node-body {
  padding: 0 25px 25px 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.coord-line {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  border-bottom: 1px dashed rgba(138, 153, 173, 0.1);
  padding-bottom: 6px;
}

.coord-label {
  color: var(--text-muted);
}

.coord-value {
  color: var(--text-light);
}

.node-address {
  margin-top: 10px;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* -------------------------------------------------------------
 * SECURE FORM UPLINK & NEWSLETTER
 * ------------------------------------------------------------- */
.section-uplink {
  min-height: auto;
  padding: 100px 0;
}

.uplink-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: stretch;
}

/* Form panel styling */
.uplink-form-panel {
  background-color: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-muted);
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.cyber-form {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Floating label input pod */
.input-container {
  position: relative;
  display: flex;
  flex-direction: column;
}

.input-container input, .input-container textarea {
  background: rgba(2, 2, 5, 0.7);
  border: 1px solid var(--border-muted);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-light);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}

.input-container textarea {
  resize: none;
}

.input-container label {
  position: absolute;
  left: 16px;
  top: 15px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: transform 0.3s ease, color 0.3s ease;
  transform-origin: left top;
}

/* Floating labels magic rules */
.input-container input:focus ~ label,
.input-container input:not(:placeholder-shown) ~ label,
.input-container textarea:focus ~ label,
.input-container textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-28px) scale(0.9);
  color: var(--primary-cyan);
}

.input-container input:focus, .input-container textarea:focus {
  border-color: var(--primary-cyan);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.15);
}

/* Error validation styling using native CSS hook */
.input-container.invalid input, .input-container.invalid textarea {
  border-color: var(--alert-orange) !important;
  box-shadow: 0 0 10px rgba(255, 85, 0, 0.15) !important;
}

.input-container.invalid label {
  color: var(--alert-orange) !important;
}

.error-msg {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--alert-orange);
  margin-top: 4px;
  display: none;
}

.input-container.invalid .error-msg {
  display: block;
}

/* Transmission Progress bar in form */
.form-transmission-hud {
  display: none;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-muted);
  border-radius: 4px;
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  flex-direction: column;
  gap: 8px;
}

.transmission-status {
  color: var(--primary-cyan);
}

.progress-bar-container {
  height: 4px;
  background-color: var(--bg-deep);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary-cyan), var(--accent-purple));
  transition: width 0.1s linear;
}

/* Right pod: Newsletter & Details */
.uplink-info-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
}

.newsletter-pod {
  background-color: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-muted);
  border-radius: 6px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.info-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.info-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.cyber-form-compact {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.cyber-form-compact .input-container {
  flex-grow: 1;
}

.news-status {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-top: 10px;
}

.contact-details-pod {
  background-color: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: 6px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-detail-line {
  display: flex;
  align-items: baseline;
  gap: 15px;
  font-size: 0.9rem;
}

.cyan-icon {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--primary-cyan);
}

.contact-link {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--t-fast);
}

.contact-link:hover {
  color: var(--primary-cyan);
}

.tech-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tech-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-muted);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 2px;
}

/* -------------------------------------------------------------
 * FOOTER & GLITCH SYSTEMS
 * ------------------------------------------------------------- */
.hud-footer {
  border-top: 1px solid var(--border-muted);
  background-color: #020205;
  padding: 30px 0;
  margin-top: 60px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.footer-left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.tech-stamp {
  color: var(--primary-cyan);
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}

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

/* Glitch animation text effect */
.glitched-text {
  position: relative;
}
.glitched-text::before, .glitched-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-deep);
  clip: rect(0, 0, 0, 0);
}

.glitched-text::before {
  left: 2px;
  text-shadow: -1px 0 var(--primary-cyan);
  animation: cyberGlitch-1 3s infinite linear alternate-reverse;
}

.glitched-text::after {
  left: -2px;
  text-shadow: -1px 0 var(--accent-purple);
  animation: cyberGlitch-2 2.5s infinite linear alternate-reverse;
}

@keyframes cyberGlitch-1 {
  0% { clip: rect(10px, 9999px, 5px, 0); }
  5% { clip: rect(40px, 9999px, 60px, 0); }
  10% { clip: rect(12px, 9999px, 3px, 0); }
  15% { clip: rect(0, 0, 0, 0); }
  100% { clip: rect(0, 0, 0, 0); }
}

@keyframes cyberGlitch-2 {
  0% { clip: rect(0, 0, 0, 0); }
  85% { clip: rect(0, 0, 0, 0); }
  90% { clip: rect(25px, 9999px, 35px, 0); }
  95% { clip: rect(60px, 9999px, 12px, 0); }
  100% { clip: rect(5px, 9999px, 45px, 0); }
}

/* WebMCP interactive dialogue toast */
.cyber-toast {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: var(--bg-dark);
  border: 1px solid var(--primary-cyan);
  border-radius: 4px;
  padding: 12px 20px;
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.25);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  z-index: 1001;
  color: var(--text-light);
  display: flex;
  margin: 0;
  outline: none;
  animation: slideToastIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-icon {
  font-size: 0.95rem;
}

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

/* -------------------------------------------------------------
 * RESPONSIVE GRID LAYOUTS (TABLETS & MOBILE)
 * ------------------------------------------------------------- */
@media (max-width: 1200px) {
  .services-grid-matrix {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  /* Navigation adjustments */
  .hud-nav {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  
  /* Section layouts */
  .hero-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 100px;
    text-align: center;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
  
  .assembler-deck-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .geo-beacons-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .uplink-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .content-matrix {
    padding: 0 15px;
  }
  
  .nav-container {
    padding: 15px;
  }
  
  .hud-diagnostics {
    display: none;
  }
  
  .hero-heading {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  
  .cyber-btn {
    width: 100%;
  }
  
  .beacon-circle-wrapper {
    width: 280px;
    height: 280px;
  }
  .beacon-ring.pulse-1, .beacon-ring.pulse-2, .beacon-ring.static-ring {
    width: 250px;
    height: 250px;
  }
  .hero-beacon {
    width: 140px;
    height: 140px;
  }
  
  .services-selector-grid {
    grid-template-columns: 1fr;
  }
  
  .compiler-metrics-panel {
    grid-template-columns: 1fr;
  }
  
  .services-grid-matrix {
    grid-template-columns: 1fr;
  }
  
  .timeline-center-line {
    left: 20px;
  }
  
  .timeline-glowing-bead {
    left: 20px;
  }
  
  .timeline-block {
    width: 100% !important;
    text-align: left !important;
    padding-left: 45px !important;
    padding-right: 0 !important;
  }
  
  .timeline-marker {
    left: 14px !important;
  }
  
  .timeline-box::after {
    left: -10px !important;
    border-width: 8px 10px 8px 0 !important;
    border-color: transparent var(--border-muted) transparent transparent !important;
  }
  
  .uplink-form-panel {
    padding: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cyber-form-compact {
    flex-direction: column;
    width: 100%;
  }
  .cyber-form-compact button {
    width: 100%;
  }
}
