/* ==========================================================================
   AXE CLIENT REDESIGN - HIGH-END VISUAL SYSTEM STYLES
   ========================================================================== */

/* Design Tokens & Theme Setup */
:root {
  /* Colors */
  --bg-level-1: #050608;
  --bg-level-2: #080B10;
  --bg-level-3: #0B1018;
  --bg-glass: rgba(8, 11, 16, 0.55);
  
  --electric-blue: #1683FF;
  --deep-cobalt: #0044ff;
  --cyan-blue: #00C8FF;
  
  --grad-cyan-blue: linear-gradient(135deg, var(--electric-blue) 0%, var(--cyan-blue) 100%);
  --grad-accent-border: linear-gradient(135deg, rgba(22, 131, 255, 0.4) 0%, rgba(0, 200, 255, 0.1) 100%);
  
  --text-primary: #F3F4F6;
  --text-secondary: #9CA3AF;
  --text-muted: #4B5563;
  --text-dark: #1F2937;

  /* Typography */
  --font-editorial: 'Outfit', sans-serif;
  --font-technical: 'JetBrains Mono', monospace;

  /* Layout Constants */
  --container-width: 1200px;
  --container-width-sm: 800px;
  --navbar-height: 72px;

  /* Transitions */
  --transition-magnetic: 0.1s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-snap: 0.25s cubic-bezier(0.86, 0, 0.07, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navbar-height) + 40px);
  background-color: var(--bg-level-1);
  color: var(--text-primary);
  font-family: var(--font-editorial);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  overflow-x: hidden;
}

/* Customized Technical Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-level-1);
}
::-webkit-scrollbar-thumb {
  background: rgba(22, 131, 255, 0.2);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--cyan-blue);
}

/* Typography Hierarchy */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-snap);
}

/* Base Grid Layouts & Utility Wrappers */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.container-sm {
  max-width: var(--container-width-sm);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

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

/* Subtle Cursor Ambient Glow */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 131, 255, 0.025) 0%, rgba(22, 131, 255, 0.005) 50%, transparent 100%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}

.ch-coord {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-technical);
  font-size: 0.6rem;
  color: var(--cyan-blue);
  white-space: nowrap;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

/* Background Systems & Layers */
.bg-noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.015'/%3E%3C/svg%3E");
  z-index: 9;
}

.ambient-gradients {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(120px);
  opacity: 0.12;
}

.orb-violet {
  top: 15%;
  left: 10%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 80%);
  animation: floatOrbSlow 35s infinite alternate ease-in-out;
}

.orb-blue {
  bottom: 10%;
  right: -5%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, var(--deep-cobalt) 0%, transparent 80%);
  animation: floatOrbSlow 45s infinite alternate-reverse ease-in-out;
}

.orb-cyan {
  top: 50%;
  left: 45%;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, var(--cyan-blue) 0%, transparent 70%);
  animation: floatOrbSlow 25s infinite alternate ease-in-out;
}

@keyframes floatOrbSlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(6%, 10%) scale(1.08); }
}

/* Perspective Grid System */
.perspective-grid-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  perspective: 350px;
  perspective-origin: 50% 25%;
  z-index: 1;
  overflow: hidden;
}

.perspective-grid {
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: 
    linear-gradient(to right, rgba(22, 131, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(22, 131, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: rotateX(75deg);
  transform-origin: 50% 0;
  animation: scrollGrid 40s linear infinite;
  mask-image: radial-gradient(ellipse at 50% 25%, black 20%, rgba(0,0,0,0.5) 45%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 25%, black 20%, rgba(0,0,0,0.5) 45%, transparent 70%);
}

@keyframes scrollGrid {
  from { background-position: 0 0; }
  to { background-position: 0 1000px; }
}

/* HUD Frames Cleaned */

/* Floating glass capsule Navbar */
.navbar-wrapper {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  pointer-events: none;
}

.navbar {
  pointer-events: auto;
  max-width: var(--container-width);
  margin: 0 auto;
  height: 60px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(22, 131, 255, 0.08);
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  height: 52px;
  background: rgba(5, 6, 8, 0.75);
  border-color: rgba(22, 131, 255, 0.22);
  box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.8);
}

.logo-text {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.05em;
  background: var(--grad-cyan-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-item {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--grad-cyan-blue);
  transition: width var(--transition-snap);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.discord-nav-link {
  font-family: var(--font-technical);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* Button & Command Systems */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  font-family: var(--font-editorial);
  position: relative;
}

.btn-sm {
  padding: 6px 16px;
  font-size: 0.8rem;
}

/* Primary asymmetric cut CTA button */
.btn-primary.btn-asymmetric {
  background: #0b1018;
  color: #fff;
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 4px 20px rgba(0, 200, 255, 0.05);
  clip-path: polygon(0 0, 100% 0, 100% 75%, 90% 100%, 0 100%);
  padding-right: 32px;
}

.btn-primary.btn-asymmetric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--grad-cyan-blue);
  margin: -1px;
  z-index: -1;
  clip-path: inherit;
  transition: opacity var(--transition-smooth);
  opacity: 0.8;
}

.btn-primary.btn-asymmetric::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-25deg);
  transition: none;
}

.btn-text {
  z-index: 2;
}

.btn-arrow {
  margin-left: 8px;
  z-index: 2;
  transition: transform var(--transition-smooth);
}

.btn-primary.btn-asymmetric:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 200, 255, 0.2);
}

.btn-primary.btn-asymmetric:hover::before {
  opacity: 1;
}

.btn-primary.btn-asymmetric:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(22, 131, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(22, 131, 255, 0.06);
  border-color: rgba(22, 131, 255, 0.35);
  transform: translateY(-1px);
}

/* Secondary command link [ EXPLORE SYSTEM ↗ ] */
.btn-technical-command {
  font-family: var(--font-technical);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  position: relative;
  transition: color var(--transition-snap);
}

.btn-technical-command .arrow {
  transition: transform var(--transition-smooth);
}

.btn-technical-command::before,
.btn-technical-command::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid var(--electric-blue);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.btn-technical-command::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.btn-technical-command::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.btn-technical-command:hover {
  color: var(--cyan-blue);
}

.btn-technical-command:hover::before,
.btn-technical-command:hover::after {
  opacity: 1;
  width: 100%;
  height: 100%;
}

.btn-technical-command:hover .arrow {
  transform: translate(2px, -2px);
}

/* Hero Section Visuals */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--navbar-height);
  z-index: 10;
  overflow: hidden;
}

.diagonal-beam-line {
  position: absolute;
  top: -10%;
  left: 30%;
  width: 1px;
  height: 120%;
  background: linear-gradient(to bottom, transparent, var(--electric-blue), var(--cyan-blue), transparent);
  opacity: 0.25;
  transform: rotate(35deg);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Layered Giant Typography Container */
.hero-typography-container {
  position: relative;
  width: 100%;
  height: clamp(250px, 40vw, 450px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  user-select: none;
}

.hero-letter-layer {
  position: absolute;
  font-size: clamp(8rem, 28vw, 24rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-letter-layer .letter-text {
  background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,0.08) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  z-index: 10;
  position: relative;
}

.hero-letter-layer .letter-outline {
  position: absolute;
  top: 4px;
  left: 4px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(22, 131, 255, 0.15);
  z-index: 9;
  filter: blur(2px);
}

.letter-a {
  transform: translateX(-24%);
  z-index: 8;
}

.letter-x {
  z-index: 12;
}

.letter-e {
  transform: translateX(24%);
  z-index: 8;
}

.hero-content-wrapper {
  text-align: center;
  z-index: 20;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

/* SECTION REVEAL / TRANSITIONS (AXE MOTION DIAGONALS) */
.page-reveal-cut {
  position: relative;
  z-index: 10;
  padding: 140px 0;
  overflow: hidden;
}

/* Continuous alignment divider lines */
.page-reveal-cut::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(22, 131, 255, 0.1) 40%, rgba(0, 200, 255, 0.3) 50%, rgba(22, 131, 255, 0.1) 60%, transparent 90%);
}

.section-meta-header {
  margin-bottom: 80px;
}

.editorial-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-top: 8px;
}

/* AXE System Section Diagram */
.system-diagram-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 24px;
}

.system-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Node lines & circles */
.sys-path {
  fill: none;
  stroke: rgba(22, 131, 255, 0.15);
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
  transition: stroke var(--transition-smooth), stroke-width var(--transition-smooth);
}

.sys-path-extended {
  fill: none;
  stroke: rgba(22, 131, 255, 0.05);
  stroke-width: 1;
}

.diagram-ring {
  fill: none;
  stroke: rgba(0, 200, 255, 0.03);
  stroke-width: 1.5;
  transform-origin: 500px 300px;
  animation: rotateRing 80s linear infinite;
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.node-group {
  cursor: pointer;
}

.node-shape {
  fill: #06090e;
  stroke: rgba(22, 131, 255, 0.3);
  stroke-width: 1.5;
  transition: all var(--transition-smooth);
}

.node-inner {
  fill: none;
  stroke: rgba(0, 200, 255, 0.1);
  stroke-width: 1;
  transition: all var(--transition-smooth);
}

.node-dot {
  fill: var(--electric-blue);
  transition: all var(--transition-smooth);
}

.node-text {
  font-family: var(--font-technical);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  fill: var(--text-muted);
  text-anchor: middle;
  transition: fill var(--transition-smooth);
}

/* Interactive Node hover states */
.node-group:hover .node-shape {
  stroke: var(--cyan-blue);
  filter: drop-shadow(0 0 8px rgba(0, 200, 255, 0.3));
  fill: rgba(0, 200, 255, 0.04);
}

.node-group:hover .node-inner {
  stroke: var(--cyan-blue);
}

.node-group:hover .node-dot {
  fill: var(--cyan-blue);
  r: 6px;
}

.node-group:hover .node-text {
  fill: var(--text-primary);
}

/* Active class mapping */
.node-group.active .node-shape {
  stroke: var(--cyan-blue);
  fill: rgba(0, 200, 255, 0.05);
}

.node-group.active .node-text {
  fill: #fff;
}

.sys-path.active {
  stroke: var(--cyan-blue);
  stroke-width: 2px;
}

/* Telemetry Logs Panel */
.system-diagnostic-panel {
  border-left: 1px solid rgba(22, 131, 255, 0.15);
  padding-left: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-tag {
  font-family: var(--font-technical);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--cyan-blue);
  margin-bottom: 16px;
}

.diagnostic-logs {
  font-family: var(--font-editorial);
  min-height: 160px;
}

.diagnostic-logs h3 {
  font-family: var(--font-editorial);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.diagnostic-logs p {
  font-family: var(--font-editorial);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Features Component (Asymmetric interface) */
.feature-interface-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.feature-navigation {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feat-nav-item {
  background: transparent;
  border: none;
  display: flex;
  align-items: baseline;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  outline: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  transition: all var(--transition-smooth);
}

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

.feat-name {
  font-family: var(--font-editorial);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--text-secondary);
  transition: color var(--transition-smooth), transform var(--transition-smooth);
}

.feat-nav-item:hover .feat-name {
  color: var(--text-primary);
  transform: translateX(8px);
}

.feat-nav-item.active .feat-name {
  color: var(--cyan-blue);
  background: var(--grad-cyan-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(12px);
}

.feat-nav-item.active .feat-num {
  color: var(--cyan-blue);
}

/* Abstract Visualization Stage */
.feature-visualization-container {
  background: var(--bg-level-2);
  border: 1px solid rgba(22, 131, 255, 0.06);
  min-height: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 0 100%);
}

.viz-diagonal-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 2px;
  background: var(--grad-cyan-blue);
  transform: rotate(-45deg) translate(50px, -20px);
}

.visualization-stage {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.viz-svg {
  width: 80%;
  height: auto;
  max-height: 220px;
  display: none;
}

.viz-svg.active {
  display: block;
}

.viz-meta {
  font-family: var(--font-technical);
  font-size: 0.6rem;
  fill: var(--text-muted);
}

.visualization-info {
  margin-top: 32px;
}

.viz-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.viz-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 500px;
}

/* Vector SVG helper animations */
.animate-spin-slow {
  transform-origin: 200px 150px;
  animation: spinSvg 20s linear infinite;
}

@keyframes spinSvg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-rotate-fast {
  transform-origin: 200px 150px;
  animation: rotateSvg 4s linear infinite;
}

@keyframes rotateSvg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-pulse-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: pulsePath 3s infinite ease-in-out;
}

@keyframes pulsePath {
  0% { stroke-dashoffset: 200; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -200; }
}

/* Performance Section (Oscilloscope layout) */
.performance-scope-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
  margin-top: 32px;
}

.scope-stats-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.large-metric {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.05em;
  background: var(--grad-cyan-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.metric-label {
  font-family: var(--font-technical);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-top: 16px;
}

.small-telemetry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(22, 131, 255, 0.1);
  padding-top: 24px;
}

.telemetry-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.t-label {
  font-family: var(--font-technical);
  font-size: 0.6rem;
  color: var(--text-muted);
}

.t-value {
  font-family: var(--font-technical);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Oscilloscope stage styling */
.oscilloscope-wrapper {
  background: #040609;
  border: 1px solid rgba(22, 131, 255, 0.1);
  border-radius: 4px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.oscilloscope-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-technical);
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding-bottom: 8px;
}

.oscilloscope-viewport {
  background: #020305;
  border: 1px solid rgba(255,255,255,0.02);
  height: 200px;
  position: relative;
  overflow: hidden;
}

/* FAQ Minimal Accordions */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  border: 1px solid rgba(22, 131, 255, 0.08);
  background: transparent;
  transition: all var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(22, 131, 255, 0.22);
}

.faq-trigger {
  width: 100%;
  padding: 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  outline: none;
  font-family: var(--font-editorial);
}

.faq-toggle-bar {
  position: relative;
  width: 12px;
  height: 2px;
  background-color: var(--text-secondary);
  transition: transform var(--transition-smooth);
}

.faq-toggle-bar::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 12px;
  background-color: var(--text-secondary);
  top: -5px;
  left: 5px;
  transition: transform var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--electric-blue);
  background: rgba(22, 131, 255, 0.02);
}

.faq-item.active .faq-toggle-bar::before {
  transform: rotate(90deg) scale(0);
}

.faq-item.active .faq-toggle-bar {
  background-color: var(--cyan-blue);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}

.faq-panel p {
  padding: 0 24px 24px 24px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 160px 0;
  position: relative;
}

.cta-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 20px;
}

.cta-subtitle {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  margin-bottom: 48px;
}

.cta-buttons-container {
  display: flex;
  justify-content: center;
}

/* Technical Minimalist System Footer */
.footer-wrapper {
  border-top: 1px solid rgba(22, 131, 255, 0.08);
  padding: 80px 0 40px 0;
  background: #020305;
  position: relative;
  z-index: 10;
}

.footer-top-line {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 60px;
}

.footer-brand-sliced {
  position: relative;
}

.footer-logo {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

.footer-meta-info {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col-tag {
  font-family: var(--font-technical);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.col-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.col-link:hover {
  color: var(--cyan-blue);
}

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

/* AXE Cut Reveal Animation */
.page-reveal-cut {
  opacity: 0.01;
  clip-path: polygon(0 0, 5% 0, 0 100%, 0 100%);
  transition: opacity 0.6s var(--transition-smooth), clip-path 1.4s var(--transition-smooth);
}

.page-reveal-cut.revealed {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* RESPONSIVE LAYOUT RULES */
@media (max-width: 1024px) {
  .system-diagram-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .system-diagnostic-panel {
    border-left: none;
    border-top: 1px solid rgba(22, 131, 255, 0.1);
    padding-left: 0;
    padding-top: 32px;
  }
  
  .feature-interface-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .feature-navigation {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .performance-scope-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .navbar-wrapper {
    padding: 0 16px;
  }
  
  .navbar {
    padding: 0 20px;
  }
  
  .nav-links {
    display: none; /* Mobile layout hides navbar links */
  }
  
  .footer-top-line {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-meta-info {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
  
  .footer-bottom-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Reduced Motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
  .perspective-grid {
    animation: none !important;
  }
}
