/* Design System & Global Styles */
:root {
  --bg-primary: #07080e;
  --bg-secondary: #0f111a;
  --bg-tertiary: #151826;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Cybernetic Accent Colors */
  --accent-cyan: #06b6d4;      /* Cybernetic Blue */
  --accent-cyan-glow: rgba(6, 182, 212, 0.3);
  --accent-green: #10b981;     /* Active Status Green */
  --accent-green-glow: rgba(16, 185, 129, 0.3);
  --accent-emerald: #059669;
  --accent-indigo: #6366f1;
  --accent-indigo-glow: rgba(99, 102, 241, 0.25);
  --accent-warning: #f59e0b;
  --accent-warning-glow: rgba(245, 158, 11, 0.25);
  
  /* Border & Glass Properties */
  --border-tactical: rgba(6, 182, 212, 0.12);
  --border-tactical-hover: rgba(6, 182, 212, 0.35);
  --glass-bg: rgba(15, 17, 26, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-glow: rgba(99, 102, 241, 0.08);
  
  /* Fonts */
  --font-sans: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border: 2px solid var(--bg-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* Typography Utility */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--text-secondary);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 2rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mr-2 { margin-right: 0.5rem; }
.flex-1 { flex: 1; }
.max-w-sm { max-width: 320px; }

/* Grid Overlay & Glow Effects */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(6, 182, 212, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

.glow-effect {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}
.glow-effect.top-left {
  top: -10%;
  left: -10%;
  background: var(--accent-indigo);
}
.glow-effect.bottom-right {
  bottom: -10%;
  right: -10%;
  background: var(--accent-cyan);
}

/* General Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.section {
  padding: 8rem 0;
  position: relative;
  z-index: 2;
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.18);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.8rem;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  border: none;
}

.btn-primary {
  background: var(--accent-indigo);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
  background: #5558e6;
  box-shadow: 0 4px 30px rgba(99, 102, 241, 0.55);
  transform: translateY(-2px);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: 0.5s;
}

.btn-primary:hover .btn-glow {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* Badge component */
.badge-container {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 0.8rem;
  margin-right: 0.5rem;
}

.badge-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

/* Header & Navigation Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  background: rgba(7, 8, 14, 0.4);
  backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--border-tactical);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(7, 8, 14, 0.85);
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  gap: 0.3rem;
}

.logo-text {
  color: var(--text-primary);
}

.logo-text-accent {
  color: var(--accent-cyan);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-left: 0.5rem;
}

.status-dot.pulsing {
  background-color: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulse-glow 2s infinite ease-in-out;
}

.inline-dot {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.35rem;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.4;
    box-shadow: 0 0 2px var(--accent-green);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 10px var(--accent-green);
  }
}

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

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: var(--transition-smooth);
}

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

.btn-nav {
  padding: 0.6rem 1.2rem;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100vh;
  background: var(--bg-primary);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
  transform: translateX(-100%);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.mobile-link {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
}

.mobile-link:hover {
  color: var(--accent-cyan);
}

/* Hero Section Styles */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 6rem;
  background: radial-gradient(circle at center, rgba(15, 17, 26, 0.4) 0%, var(--bg-primary) 70%);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  z-index: 2;
  position: relative;
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 5rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 50px rgba(6, 182, 212, 0.15);
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}

.scroll-arrow {
  color: var(--accent-cyan);
  font-size: 0.8rem;
  animation: bounce-scroll 2s infinite;
}

@keyframes bounce-scroll {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Leverage & The Formula Section */
.leverage-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-tactical);
  border-bottom: 1px solid var(--border-tactical);
}

.leverage-comparison {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}

.leverage-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 2.5rem;
  height: 100%;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.leverage-card:hover {
  border-color: var(--border-tactical-hover);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

.traditional-pod {
  border-left: 3px solid var(--accent-warning);
}

.augmented-operator {
  border-left: 3px solid var(--accent-green);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.05), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.card-header {
  margin-bottom: 2rem;
}

.card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.tag-warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-warning);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.tag-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.card-header h3 {
  font-size: 1.45rem;
  font-weight: 700;
}

/* Staff Grid inside traditional pod card */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.staff-node {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.staff-node i {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Augmented Hub layout */
.augmented-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 1rem 0;
}

.operator-node {
  background: var(--bg-tertiary);
  border: 1.5px solid var(--accent-green);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  position: relative;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.25);
}

.operator-node i {
  font-size: 1.6rem;
  color: var(--accent-green);
  margin-bottom: 0.25rem;
}

.operator-node span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--text-primary);
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-green);
  animation: pulse-ring 2.5s infinite cubic-bezier(0.215, 0.610, 0.355, 1);
  pointer-events: none;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.agent-satellites {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  width: 100%;
  margin-top: 2rem;
}

.satellite-node {
  background: rgba(6, 182, 212, 0.03);
  border: 1px solid rgba(6, 182, 212, 0.15);
  padding: 0.75rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-primary);
  cursor: help;
  position: relative;
  transition: var(--transition-smooth);
}

.satellite-node:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
}

.satellite-node i {
  color: var(--accent-cyan);
  font-size: 0.85rem;
}

/* Custom Tooltip styling */
.satellite-node::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  width: 180px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-tactical);
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-smooth);
  text-align: center;
  line-height: 1.3;
  z-index: 10;
}

.satellite-node:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Metric panel in leverage cards */
.metric-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.metric-container:last-child {
  border-bottom: none;
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.metric-val {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Leverage Mid Section */
.leverage-multiplier {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.multiplier-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-indigo) 0%, rgba(99, 102, 241, 0.1) 100%);
  border: 2px solid var(--accent-indigo);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px var(--accent-indigo-glow);
  z-index: 3;
}

.multiplier-num {
  font-size: 2.25rem;
  font-weight: 850;
  color: var(--text-primary);
  line-height: 1;
}

.multiplier-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.2rem;
}

.multiplier-arrow {
  width: 100%;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Console Simulation Station */
.console-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2rem;
  background: rgba(10, 11, 20, 0.65);
  border: 1px solid var(--border-tactical);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.console-panel {
  display: flex;
  flex-direction: column;
  height: 520px;
}

.control-panel {
  border-right: 1px solid var(--border-tactical);
  background: rgba(15, 17, 26, 0.4);
}

.panel-header {
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--border-tactical);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.panel-header i {
  color: var(--accent-cyan);
}

.panel-body {
  padding: 1.8rem;
  flex: 1;
  overflow-y: auto;
}

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

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.console-select {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: var(--text-primary);
  padding: 0.8rem 1rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.console-select:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-labels span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.console-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--bg-tertiary);
  border-radius: 2px;
  outline: none;
  margin-top: 0.5rem;
}

.console-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  cursor: pointer;
  transition: transform 0.1s ease;
}

.console-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Radios and Checkboxes Custom */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.radio-label, .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  user-select: none;
}

.radio-label input, .checkbox-label input {
  display: none;
}

.radio-custom, .checkbox-custom {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-block;
  position: relative;
  transition: var(--transition-fast);
}

.radio-custom { border-radius: 50%; }
.checkbox-custom { border-radius: 3px; }

.radio-label input:checked + .radio-custom {
  border-color: var(--accent-cyan);
}

.radio-label input:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-cyan);
}

.checkbox-label input:checked + .checkbox-custom {
  border-color: var(--accent-cyan);
  background-color: rgba(6, 182, 212, 0.1);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent-cyan);
  font-size: 0.6rem;
}

/* Terminal Screen Styles */
.terminal-panel {
  background: #020306;
}

.terminal-dots {
  display: flex;
  gap: 0.4rem;
}

.terminal-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.terminal-dots .dot.red { background: #ef4444; }
.terminal-dots .dot.yellow { background: #f59e0b; }
.terminal-dots .dot.green { background: #10b981; }

.terminal-title {
  margin-left: 1rem;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.terminal-status-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

.status-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-indicator-dot.offline { background: var(--text-muted); }
.status-indicator-dot.online {
  background: var(--accent-green);
  box-shadow: 0 0 5px var(--accent-green);
  animation: pulse-glow 1.5s infinite;
}
.status-indicator-dot.busy {
  background: var(--accent-cyan);
  box-shadow: 0 0 5px var(--accent-cyan);
  animation: pulse-glow-cyan 1s infinite;
}

@keyframes pulse-glow-cyan {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.terminal-body {
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-secondary);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.terminal-line {
  word-break: break-all;
}

.terminal-line.cmd {
  color: var(--text-primary);
  font-weight: 700;
}

.terminal-line.cmd::before {
  content: 'operator@agentic:~$ ';
  color: var(--accent-indigo);
}

.terminal-line.system {
  color: var(--text-muted);
}

.terminal-line.success {
  color: var(--accent-green);
}

.terminal-line.info {
  color: var(--accent-cyan);
}

.terminal-line.warning {
  color: var(--accent-warning);
}

.terminal-footer {
  padding: 0.85rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: rgba(0, 0, 0, 0.3);
}

.stat-item {
  display: flex;
  gap: 0.5rem;
}

.stat-lbl {
  color: var(--text-muted);
}

.stat-val {
  font-weight: 700;
  color: var(--text-secondary);
}

/* Architecture Flow Diagram */
.architecture-section {
  border-bottom: 1px solid var(--border-tactical);
}

.architecture-diagram {
  margin-top: 3rem;
  background: rgba(10, 11, 20, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 3rem 1.5rem;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.01);
}

.flow-svg {
  width: 100%;
  height: auto;
  display: block;
}

.flowing-path {
  stroke-dasharray: 10, 15;
  animation: stroke-flow 4s linear infinite;
}

.flowing-path.path-1 { animation-duration: 3s; }
.flowing-path.path-2 { animation-duration: 4s; }
.flowing-path.path-3 { animation-duration: 3.5s; }
.flowing-path.path-4 { animation-duration: 2.8s; }

@keyframes stroke-flow {
  to {
    stroke-dashoffset: -100;
  }
}

.svg-node {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.svg-node:hover {
  transform: translate(0px, -6px) scale(1.02);
}

.svg-node hover rect {
  stroke-width: 2.5;
}

/* Pillars Section Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.pillar-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  padding: 3rem 2.2rem;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  background: var(--bg-tertiary);
  border-color: rgba(6, 182, 212, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-6px);
}

.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.15);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.8rem;
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
  transform: rotate(5deg) scale(1.05);
}

.pillar-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pillar-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Security and Sandboxing Card */
.security-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-tactical);
  border-bottom: 1px solid var(--border-tactical);
}

.security-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--bg-primary);
  border: 1px solid var(--border-tactical);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.security-left {
  padding: 4.5rem;
  border-right: 1px solid var(--border-tactical);
}

.security-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.security-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--text-secondary);
}

.security-list li i {
  color: var(--accent-green);
  margin-top: 0.25rem;
}

.security-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: radial-gradient(circle at center, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
  position: relative;
}

.security-graphic {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cyber-shield {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-shield {
  font-size: 3.5rem;
  color: var(--accent-cyan);
  z-index: 3;
  filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.4));
}

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(6, 182, 212, 0.2);
}

.shield-ring.outer {
  width: 180px;
  height: 180px;
  animation: spin-clockwise 25s linear infinite;
  border-color: rgba(6, 182, 212, 0.15);
}

.shield-ring.inner {
  width: 140px;
  height: 140px;
  animation: spin-counter-clockwise 15s linear infinite;
  border-color: rgba(16, 185, 129, 0.2);
}

@keyframes spin-clockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-counter-clockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.security-data-node {
  position: absolute;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-tactical);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 4;
}

.security-data-node.n1 { top: 15%; left: 0%; border-color: rgba(16, 185, 129, 0.3); }
.security-data-node.n2 { bottom: 15%; left: 10%; border-color: rgba(99, 102, 241, 0.3); }
.security-data-node.n3 { top: 45%; right: -5%; border-color: rgba(6, 182, 212, 0.3); }

/* Contact Form & Call to Action */
.contact-section {
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.05) 0%, var(--bg-primary) 80%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-detail-item h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.contact-detail-item p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 0.15rem;
}

.contact-form-container {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  padding: 3rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  gap: 1.25rem;
}

.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: var(--text-primary);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
}

.contact-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Success Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-tactical);
  border-radius: 8px;
  width: 90%;
  max-width: 480px;
  padding: 3rem;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(6, 182, 212, 0.15);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.modal-icon {
  font-size: 3rem;
}

.modal-status-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.status-box-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.status-box-row span:first-child {
  color: var(--text-muted);
}

/* Footer Section */
.footer {
  background-color: #030407;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 6rem 0 3rem 0;
  position: relative;
  z-index: 2;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 6rem;
}

.link-column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.link-column h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.link-column a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.link-column a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.system-metrics {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.system-metrics .divider {
  color: rgba(255, 255, 255, 0.06);
}

.text-success { color: var(--accent-green) !important; }
.text-cyan { color: var(--accent-cyan) !important; }
.text-warning { color: var(--accent-warning) !important; }
.text-white { color: var(--text-primary) !important; }

/* Scroll Reveal Base Class */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .leverage-comparison {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .leverage-multiplier {
    order: 2;
  }
  .traditional-pod {
    order: 1;
  }
  .augmented-operator {
    order: 3;
  }
  
  .multiplier-arrow {
    transform: rotate(90deg);
    height: 60px;
  }
  
  .console-wrapper {
    grid-template-columns: 1fr;
  }
  
  .console-panel {
    height: auto;
  }
  
  .control-panel {
    border-right: none;
    border-bottom: 1px solid var(--border-tactical);
  }
  
  .terminal-panel {
    height: 450px;
  }
  
  .security-card {
    grid-template-columns: 1fr;
  }
  
  .security-left {
    border-right: none;
    border-bottom: 1px solid var(--border-tactical);
    padding: 3rem;
  }
  
  .security-right {
    padding: 4rem 2rem;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .nav {
    display: none;
  }
  
  .btn-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .system-metrics {
    justify-content: center;
  }
}
