/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --bg-color: #000000;
  --text-primary: #ffffff;
  --text-secondary: #a1a1a1;
  --accent-orange: #ff4d00;
  --accent-orange-glow: rgba(255, 77, 0, 0.4);
  --accent-purple: #6b21a8;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-main: 'Damian Sans', 'Inter', sans-serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
  user-select: none;
}

html, body {
  width: 100%;
  min-height: 100%;
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  overflow-x: clip;
}

/* =============================================
   LOADER
   ============================================= */
.loader-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #00f2fe, #4facfe, #00ff88);
  box-shadow: 0 0 10px #00ff88;
  z-index: 9999;
  transition: width 0.15s ease-out, opacity 0.6s ease 0.4s;
  pointer-events: none;
}

.loader-line.done {
  width: 100% !important;
  opacity: 0;
}

/* =============================================
   SECTION CONTAINERS
   ============================================= */
.hero-section {
  position: relative;
  width: 100%;
  cursor: grab;
}

.hero-section:active {
  cursor: grabbing;
}

.spider-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #000000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 80px;
  z-index: 10;
  cursor: default;
}

/* Scroll track — drives the frame-scrub animation */
.scroll-track {
  width: 100%;
  height: 500vh;
  position: relative;
}

/* Canvas pinned to viewport while scrolling through track */
.canvas-container {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-color);
  z-index: 1;
}

#animation-canvas {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

#spider-canvas {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: contrast(1.1) brightness(1.05) drop-shadow(0 0 45px rgba(255, 77, 0, 0.3));
}

.spider-canvas-container {
  background: radial-gradient(circle at 50% 50%, rgba(255, 77, 0, 0.08) 0%, rgba(0, 0, 0, 1) 75%);
}

/* Plain black divider */
.plain-black-section,
.empty-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-color);
  z-index: 2;
  cursor: default;
  -webkit-user-select: auto;
  user-select: auto;
}

/* =============================================
   HERO UI LAYER — floats above the canvas
   ============================================= */
.hero-ui-layer {
  position: relative;
  z-index: 2;
  /* Pull the layer up so it overlaps the sticky canvas */
  margin-top: -100vh;
  /* Make sure pointer events work on the UI */
  pointer-events: auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* =============================================
   HEADER
   ============================================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.logo svg {
  width: 32px;
  height: 32px;
  fill: var(--accent-orange);
}

.nav-links {
  display: flex;
  gap: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 6px;
  border-radius: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.time {
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-color);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
}

/* =============================================
   HERO MAIN CONTENT
   ============================================= */
main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
}

.subtitle-top {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 480px;
  line-height: 1.5;
}

.subtitle-top svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-primary);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

h1 {
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 880px;
}

h1 .italic {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
}

/* =============================================
   CTA & SOCIAL PROOF
   ============================================= */
.cta-section {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-glow {
  background: linear-gradient(90deg, #ff4d00, #ff7b00);
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px var(--accent-orange-glow);
  transition: all 0.3s ease;
}

.btn-glow:hover {
  box-shadow: 0 15px 40px rgba(255, 77, 0, 0.6);
  transform: translateY(-2px);
}

.btn-glow .arrow-circle {
  background: rgba(255, 255, 255, 0.2);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatars {
  display: flex;
}

.clients-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.clients-text strong {
  color: var(--text-primary);
  display: block;
}

/* =============================================
   STATS CARDS
   ============================================= */
.stats-grid {
  display: flex;
  gap: 20px;
  margin-top: auto;
}

.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-width: 200px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
  opacity: 0.5;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.stat-number span {
  font-size: 1rem;
  color: var(--accent-orange);
  margin-top: 5px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
}

/* =============================================
   PREMIUM AI HERO SECTION ENHANCEMENTS
   ============================================= */

/* Live AI Status Badge */
.ai-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 77, 0, 0.08);
  border: 1px solid rgba(255, 77, 0, 0.25);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #ff7b00;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.15);
  width: fit-content;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-orange);
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-secondary-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

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

/* AI Telemetry Strip */
.ai-telemetry-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0 50px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.ai-telemetry-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 0, 0.6), rgba(107, 33, 168, 0.6), transparent);
}

.telemetry-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.telemetry-val {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.telemetry-val span {
  font-size: 1rem;
  color: var(--accent-orange);
  font-weight: 500;
}

.telemetry-lbl {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}

.telemetry-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
  margin-top: 4px;
}

/* AI Architecture Pillars Section */
.ai-architecture-section {
  padding: 100px 0 60px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 40px;
}

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

.section-tag-ai {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.section-header-ai h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-header-ai h2 .italic {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.section-header-ai p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

/* 3-Column Pillar Cards */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.pillar-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 77, 0, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 77, 0, 0.1);
}

.pillar-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pillar-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pillar-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: #ff7b00;
  fill: none;
}

.pillar-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 14px;
  color: #fff;
}

.pillar-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-family: 'Inter', sans-serif;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.pillar-tag {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* =============================================
   GLASSMORPHISM AI NEXUS INTERFACE
   ============================================= */
.glass-nexus-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 50px rgba(107, 33, 168, 0.12);
  margin-bottom: 70px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.glass-nexus-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 77, 0, 0.08) 0%, rgba(107, 33, 168, 0.08) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Glass Header */
.glass-nexus-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 16px;
}

.glass-nexus-tabs {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.glass-tab.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 77, 0, 0.3);
}

.glass-tab svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.glass-nexus-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
}

/* Glass Interior Body */
.glass-nexus-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 32px 28px;
  position: relative;
  z-index: 1;
}

.glass-card-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: border-color 0.3s ease;
}

.glass-card-inner:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.glass-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.glass-card-tag {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 600;
  margin-bottom: 6px;
}

.glass-card-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}

.glass-card-badge {
  font-size: 0.7rem;
  color: #00ff88;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  padding: 4px 10px;
  border-radius: 14px;
  font-weight: 500;
}

/* Neural Wave Visualizer */
.glass-waveform-wrap {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 90px;
  gap: 5px;
}

.wave-bar {
  flex: 1;
  background: linear-gradient(180deg, #ff7b00 0%, rgba(255, 77, 0, 0.2) 100%);
  border-radius: 4px;
  min-height: 10px;
  animation: wavePulse 1.8s infinite ease-in-out;
}

.wave-bar:nth-child(2n) { animation-delay: 0.2s; background: linear-gradient(180deg, #b066fe 0%, rgba(107, 33, 168, 0.2) 100%); }
.wave-bar:nth-child(3n) { animation-delay: 0.4s; }
.wave-bar:nth-child(4n) { animation-delay: 0.6s; }
.wave-bar:nth-child(5n) { animation-delay: 0.8s; }

@keyframes wavePulse {
  0%, 100% { height: 18%; opacity: 0.4; }
  50% { height: 88%; opacity: 1; }
}

/* Step Flow */
.glass-flow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.flow-step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
}

.step-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-orange);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-orange);
}

.flow-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

/* Telemetry Mini Grid */
.glass-telemetry-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.glass-stat-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-box-val {
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.stat-box-val span {
  font-size: 0.75rem;
  color: var(--accent-orange);
}

.stat-box-lbl {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Glass Footer Row */
.glass-nexus-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.glass-btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 77, 0, 0.15);
  border: 1px solid rgba(255, 77, 0, 0.4);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.glass-btn-pill:hover {
  background: rgba(255, 77, 0, 0.3);
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.3);
  transform: translateX(3px);
}

/* AI Manifesto Quote Block */
.ai-manifesto-block {
  padding: 60px 40px;
  background: radial-gradient(circle at center, rgba(107, 33, 168, 0.12) 0%, rgba(255, 255, 255, 0.01) 80%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin-bottom: 40px;
}

.ai-manifesto-block blockquote {
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
  max-width: 900px;
  margin: 0 auto 20px;
  letter-spacing: -0.01em;
}

.ai-manifesto-block blockquote span {
  font-style: italic;
  color: var(--accent-orange);
}

.ai-manifesto-author {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =============================================
   FOOTER / PARTNERS
   ============================================= */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 60px;
}

.partners {
  display: flex;
  align-items: center;
  gap: 40px;
}

.partners-title {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partner-logos {
  display: flex;
  gap: 30px;
  align-items: center;
  opacity: 0.7;
}

.partner-logos span {
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.scroll-down {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.scroll-down:hover {
  color: var(--text-primary);
}

.scroll-down svg {
  width: 24px;
  height: 24px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  padding: 4px;
}

/* =============================================
   PRICING SECTION (SECOND SECTION)
   ============================================= */
.plain-black-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-color);
  z-index: 2;
  cursor: default;
  -webkit-user-select: auto;
  user-select: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
}

.pricing-container {
  max-width: 1300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Pricing Header --- */
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
}

.pricing-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.pricing-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

/* --- Pricing Toggle Switch --- */
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px;
  border-radius: 40px;
  margin-bottom: 60px;
}

.pricing-toggle button {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-toggle button.active {
  background: var(--text-primary);
  color: var(--bg-color);
  font-weight: 600;
}

.save-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, rgba(255, 77, 0, 0.1), rgba(255, 123, 0, 0.1));
  border: 1px solid rgba(255, 77, 0, 0.3);
  color: var(--accent-orange);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* --- Pricing Cards Grid --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
}

.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Highlighted Pro Plan */
.pricing-card.popular {
  background: linear-gradient(180deg, rgba(30, 30, 40, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card.popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
  opacity: 0.8;
  z-index: 2;
}

/* --- AI Images at Top of Cards --- */
.card-image {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Abstract AI Visual 1: Neural Network Nodes */
.card-image.starter {
  background: radial-gradient(circle at 50% 50%, rgba(107, 33, 168, 0.3) 0%, transparent 70%);
}
.card-image.starter::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
}

/* Abstract AI Visual 2: Data Flow Wave */
.card-image.pro {
  background: radial-gradient(circle at 50% 50%, rgba(255, 77, 0, 0.2) 0%, transparent 70%);
}
.card-image.pro::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255, 77, 0, 0.1) 20%, transparent 40%);
  animation: rotateVisual 10s linear infinite;
}

/* Abstract AI Visual 3: Grid Matrix */
.card-image.business {
  background: radial-gradient(circle at 50% 50%, rgba(0, 198, 255, 0.15) 0%, transparent 70%);
}
.card-image.business::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: perspective(500px) rotateX(45deg);
  transform-origin: bottom;
}

.card-image svg {
  width: 80px;
  height: 80px;
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 1.5;
  fill: none;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

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

/* --- Card Content --- */
.card-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.plan-name {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popular-badge {
  background: linear-gradient(90deg, #ff4d00, #ff7b00);
  color: #fff;
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.price {
  font-size: 4rem;
  font-weight: 300;
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 15px;
}

.price span {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.plan-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
  min-height: 50px;
}

.card-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  font-family: var(--font-main);
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-solid {
  background: var(--text-primary);
  color: var(--bg-color);
  border: none;
}

.btn-solid:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: auto;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
}

.features-list li svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-orange);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* =============================================
   SECTION 03: CINEMATIC COMBAT SHOWCASE
   ============================================= */
.spider-ui-layer {
  position: relative;
  z-index: 10;
  width: 100%;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 80px 20px;
  cursor: default;
  -webkit-user-select: auto;
  user-select: auto;
}

.showcase-container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Header Section --- */
.header-section {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
}

.header-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.header-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  max-width: 500px;
  margin: 0 auto 40px auto;
}

.btn-generate {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--text-primary);
  color: var(--bg-color);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-generate:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-generate svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.3s ease;
}

.btn-generate:hover svg {
  transform: translateX(4px);
}

/* --- Carousel Section --- */
.carousel-wrapper {
  width: 100%;
  overflow: visible;
  padding: 40px 0;
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.carousel-track {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.carousel-panel {
  width: 140px;
  height: 220px;
  border-radius: 16px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.carousel-panel:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.08) !important;
  z-index: 10;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
}

/* Actual AI Images */
.carousel-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.carousel-panel:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* Left Side Transforms */
.panel-1 { transform: rotateY(25deg) translateZ(-50px) translateX(30px); }
.panel-2 { transform: rotateY(15deg) translateZ(-20px) translateX(15px); }
.panel-3 { transform: rotateY(5deg) translateZ(0px) translateX(5px); }

/* Center Panel is highlighted */
.panel-center {
  width: 180px;
  height: 280px;
  z-index: 5;
  transform: translateZ(40px);
  border-color: rgba(255, 77, 0, 0.5);
  box-shadow: 0 0 40px rgba(255, 77, 0, 0.25);
}

.panel-center:hover {
  border-color: rgba(255, 77, 0, 0.8);
  box-shadow: 0 0 50px rgba(255, 77, 0, 0.4);
}

/* Right Side Transforms */
.panel-5 { transform: rotateY(-5deg) translateZ(0px) translateX(-5px); }
.panel-6 { transform: rotateY(-15deg) translateZ(-20px) translateX(-15px); }
.panel-7 { transform: rotateY(-25deg) translateZ(-50px) translateX(-30px); }

/* --- Features Section --- */
.features-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  width: 100%;
  max-width: 1100px;
  text-align: center;
}

.feature-item h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  max-width: 280px;
  margin: 0 auto;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .stats-grid { flex-direction: column; }
  .stat-card { width: 100%; }
  .ai-telemetry-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 24px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 24px; }
  .glass-nexus-body { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; gap: 30px; }
  .pricing-header { margin-bottom: 50px; }
  .pricing-toggle { margin-bottom: 50px; }
  footer { flex-direction: column; gap: 20px; align-items: flex-start; }
  .partners { flex-direction: column; align-items: flex-start; gap: 15px; }
  .partner-logos { flex-wrap: wrap; gap: 15px; }
  .carousel-panel {
    width: 100px;
    height: 160px;
  }
  .panel-center {
    width: 140px;
    height: 220px;
  }
  .features-section {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .carousel-track {
    gap: 10px;
  }
  .carousel-panel {
    width: 80px;
    height: 130px;
  }
  .panel-center {
    width: 110px;
    height: 180px;
  }
  /* Hide outer panels on very small screens */
  .panel-1, .panel-7 {
    display: none;
  }
  .features-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .ai-telemetry-strip { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-glow, .btn-secondary-glow { justify-content: center; width: 100%; }
  .glass-nexus-tabs { flex-wrap: wrap; }
  .glass-flow-steps { flex-direction: column; align-items: stretch; }
  .flow-arrow { display: none; }
  .glass-telemetry-mini-grid { grid-template-columns: 1fr; }
  .glass-nexus-footer { flex-direction: column; gap: 14px; text-align: center; }
  .ai-manifesto-block { padding: 40px 20px; }
  .pricing-card { max-width: 100%; }
  .card-content { padding: 30px 20px; }
  .price { font-size: 3rem; }
}

/* =============================================
   SECTION 03: VIDEO BACKGROUND & CINEMATIC HUD
   ============================================= */

.cyber-agent-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #000000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  z-index: 10;
}

/* Video Background Layer */
.cyber-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

#cyber-bg-video,
#operator-bg-video,
.cyber-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.68) contrast(1.15) saturate(1.1);
  opacity: 0.85;
  transition: opacity 0.8s ease, filter 0.5s ease;
}

/* Seamless Overlays for Natural Edge Blending */
.cyber-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: 
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 65%, #000000 100%),
    linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0.85) 8%, rgba(0, 0, 0, 0.25) 30%, rgba(0, 0, 0, 0.25) 70%, rgba(0, 0, 0, 0.85) 92%, #000000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.8) 100%);
}

.cyber-scanlines {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.25) 1px,
    transparent 1px,
    transparent 2px
  );
  opacity: 0.35;
}

.cyber-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: 
    linear-gradient(rgba(255, 77, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 242, 254, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

/* UI Layer */
.cyber-ui-layer {
  position: relative;
  z-index: 10;
  width: 100%;
}

.cyber-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Top HUD Bar */
.cyber-hud-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cyber-hud-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 242, 254, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #00f2fe;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

.cyber-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00f2fe;
  box-shadow: 0 0 10px #00f2fe;
  animation: cyberPulse 1.8s infinite;
}

@keyframes cyberPulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 16px #00f2fe; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.hud-mono {
  font-family: 'Damian Sans', 'Inter', monospace;
}

.cyber-controls-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cyber-hud-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(18, 18, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.cyber-hud-btn:hover {
  border-color: var(--accent-orange);
  background: rgba(255, 77, 0, 0.12);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(255, 77, 0, 0.25);
  transform: translateY(-1px);
}

.cyber-audio-waves {
  display: flex;
  align-items: center;
  gap: 2.5px;
  height: 12px;
}

.wave-bar-mini {
  width: 2.5px;
  height: 4px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.cyber-audio-waves.active .wave-bar-mini {
  background: #00ff88;
  box-shadow: 0 0 6px #00ff88;
  animation: miniWave 0.8s ease-in-out infinite alternate;
}

.cyber-audio-waves.active .wave-bar-mini:nth-child(1) { animation-delay: 0.0s; height: 12px; }
.cyber-audio-waves.active .wave-bar-mini:nth-child(2) { animation-delay: 0.2s; height: 8px; }
.cyber-audio-waves.active .wave-bar-mini:nth-child(3) { animation-delay: 0.4s; height: 14px; }
.cyber-audio-waves.active .wave-bar-mini:nth-child(4) { animation-delay: 0.1s; height: 10px; }

@keyframes miniWave {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1.3); }
}

/* Header & Typography */
.cyber-header-block {
  max-width: 820px;
}

.cyber-tagline {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-accent {
  color: var(--accent-orange);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 77, 0, 0.4);
}

.tag-status {
  color: var(--text-secondary);
  position: relative;
  padding-left: 12px;
}

.tag-status::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  background: #00ff88;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 6px #00ff88;
}

.cyber-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #ffffff;
}

.cyber-gradient-text {
  background: linear-gradient(90deg, #ff4d00, #ff8c00, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-style: italic;
}

.cyber-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-bottom: 34px;
  font-family: 'Inter', sans-serif;
  max-width: 720px;
}

/* Action Buttons */
.cyber-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-cyber-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #ff4d00, #ff7300);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(255, 77, 0, 0.45);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cyber-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 35px rgba(255, 77, 0, 0.65);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-cyber-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.btn-cyber-primary:hover .btn-cyber-icon {
  transform: translateX(3px);
}

.btn-cyber-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 40px;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.btn-cyber-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 242, 254, 0.5);
  color: #00f2fe;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.25);
  transform: translateY(-2px);
}

/* 3-Column Glass Matrix */
.cyber-telemetry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cyber-card {
  position: relative;
  background: rgba(14, 14, 18, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cyber-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 242, 254, 0.15);
}

.cyber-card-featured {
  border-color: rgba(255, 77, 0, 0.35);
  background: linear-gradient(180deg, rgba(255, 77, 0, 0.08) 0%, rgba(14, 14, 18, 0.75) 100%);
}

.cyber-card-featured:hover {
  border-color: rgba(255, 77, 0, 0.7);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 77, 0, 0.25);
}

.cyber-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.cyber-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.card-num-tag {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 600;
}

.card-badge-neon {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.1);
  color: #00f2fe;
  border: 1px solid rgba(0, 242, 254, 0.3);
  letter-spacing: 0.04em;
}

.badge-orange {
  background: rgba(255, 77, 0, 0.12);
  color: var(--accent-orange);
  border-color: rgba(255, 77, 0, 0.35);
}

.cyber-card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #00f2fe;
}

.cyber-card-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.icon-orange {
  background: rgba(255, 77, 0, 0.1);
  border-color: rgba(255, 77, 0, 0.3);
  color: var(--accent-orange);
}

.cyber-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.cyber-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  flex-grow: 1;
}

.cyber-card-footer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tech-chip {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.chip-orange {
  border-color: rgba(255, 77, 0, 0.25);
  color: #ff9d66;
}

/* Diagnostic Terminal Panel */
.cyber-terminal-panel {
  background: rgba(8, 8, 12, 0.85);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.terminal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: rgba(20, 20, 26, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.terminal-dots span:nth-child(1) { background: #ff5f56; }
.terminal-dots span:nth-child(2) { background: #ffbd2e; }
.terminal-dots span:nth-child(3) { background: #27c93f; }

.terminal-title {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  font-family: monospace;
}

.terminal-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #00ff88;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.ping-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 8px #00ff88;
  animation: cyberPulse 1.5s infinite;
}

.terminal-output {
  padding: 16px 20px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.term-line {
  word-break: break-word;
}

.term-time {
  color: #64748b;
  margin-right: 6px;
}

.term-info {
  color: #00f2fe;
  font-weight: bold;
}

.term-success {
  color: #00ff88;
  font-weight: bold;
}

.term-accent {
  color: var(--accent-orange);
  font-weight: bold;
}

.term-mono {
  color: #e2e8f0;
}

.term-cursor {
  color: #00f2fe;
  font-weight: bold;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Bottom Strip */
.cyber-footer-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 16px;
}

.cyber-stats-inline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.cyber-stats-inline strong {
  color: #ffffff;
}

.stat-divider {
  color: rgba(255, 255, 255, 0.2);
}

.cyber-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}

.cyber-back-to-top:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Section 4 Responsive Media Queries */
@media (max-width: 1024px) {
  .cyber-telemetry-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cyber-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .cyber-agent-section {
    padding: 80px 0 60px;
  }
  .cyber-hud-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .cyber-controls-group {
    width: 100%;
    justify-content: flex-start;
  }
  .cyber-title {
    font-size: 2.2rem;
  }
  .cyber-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-cyber-primary, .btn-cyber-secondary {
    justify-content: center;
    width: 100%;
  }
  .cyber-stats-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .stat-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .cyber-container {
    padding: 0 16px;
    gap: 36px;
  }
  .cyber-card {
    padding: 24px 20px;
  }
  .cyber-title {
    font-size: 1.85rem;
  }
  .terminal-title {
    font-size: 0.65rem;
  }
  .terminal-output {
    padding: 12px 14px;
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   PREMIUM AAA ANIMATIONS & INTERACTIVITY SYSTEM
   ========================================================================== */

/* Subtle Ambient Gradient Text Shimmer */
@keyframes textShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.italic,
.cyber-gradient-text,
.highlight-orange {
  background-size: 200% auto;
  animation: textShimmer 8s ease infinite;
}

/* Gentle Glowing Pulse for Key Badges & CTAs */
@keyframes ambientButtonGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 77, 0, 0.25), 0 0 40px rgba(255, 77, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 35px rgba(255, 77, 0, 0.45), 0 0 60px rgba(255, 77, 0, 0.2);
  }
}

@keyframes badgePulseGlow {
  0%, 100% {
    border-color: rgba(255, 77, 0, 0.35);
    box-shadow: 0 0 15px rgba(255, 77, 0, 0.15);
  }
  50% {
    border-color: rgba(255, 77, 0, 0.7);
    box-shadow: 0 0 25px rgba(255, 77, 0, 0.3);
  }
}

.btn-glow,
.btn-cyber-primary {
  animation: ambientButtonGlow 4s ease-in-out infinite;
}

.ai-badge-pill,
.pricing-badge,
.tag-accent {
  animation: badgePulseGlow 3.5s ease-in-out infinite;
}

/* Silk Hover Transitions for All Interactive Elements */
.btn-glow,
.btn-primary,
.btn-secondary-glow,
.btn-cyber-primary,
.btn-cyber-secondary,
.btn-generate,
.btn-pricing {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.btn-glow:active,
.btn-primary:active,
.btn-cyber-primary:active,
.btn-generate:active {
  transform: scale(0.97) !important;
}

/* Smooth Scroll Reveal Classes */
.reveal-init {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* Stagger Delays for Grids & Feature Lists */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Enhanced Card Micro-Interactions */
.stat-card,
.pillar-card,
.pricing-card,
.cyber-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  will-change: transform, box-shadow;
}

