/* ==========================================================================
   KODE KAVE — MASTER STYLESHEET (PLAIN CSS, RESPONSIVE, DARK THEME)
   ========================================================================== */

:root {
  --bg-dark: #050508;
  --bg-card: #08080c;
  --bg-card-hover: #0c0c12;
  --bg-surface: #0a0a0f;
  --accent-cyan: #00f0ff;
  --accent-blue: #3b82f6;
  --accent-indigo: #6366f1;
  --accent-amber: #f59e0b;
  --accent-green: #10b981;
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-faint: rgba(255, 255, 255, 0.4);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.18);
  --border-active: rgba(0, 240, 255, 0.45);
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(0, 240, 255, 0.25);
  color: #00f0ff;
}

/* --------------------------------------------------------------------------
   UTILITY & STRUCTURAL CLASSES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.w-full {
  width: 100%;
}

.font-black {
  font-weight: 900;
}

.flex-center {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section-container {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.border-top {
  border-top: 1px solid var(--border-subtle);
}

.max-w-3xl {
  max-w: 768px;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #00f0ff, #3b82f6);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* Ambient Cursor Follower */
.cursor-follower {
  position: fixed;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.45);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out, border-color 0.2s;
  mix-blend-mode: screen;
}

@media (max-width: 768px) {
  .cursor-follower {
    display: none;
  }
}

/* Background Grid & Scanline Texture */
.scanline-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
.nav-logo-mark { width: 26px; height: 26px; color: var(--accent); }
.nav-logo-mark svg { width: 100%; height: 100%; }
/* Outlined Stroke Text */
.stroke-text {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85);
  color: transparent;
  transition: all 0.3s ease;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
}
.stroke-text:hover {
  -webkit-text-stroke: 1.5px var(--accent-cyan);
  text-shadow: 0 0 24px rgba(0, 240, 255, 0.35);
}

/* Badge Line */
.badge-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

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

.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulseGlow 2s infinite ease-in-out;
}

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

/* Section Header Styles */
.section-header {
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 720px;
}

.section-header-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-subtle);
}

@media (min-width: 1024px) {
  .section-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-header-aside {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.6;
}

.sub-col-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0 4px;
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  border: 1px solid transparent;
  position: relative;
}

.btn-primary {
  background: var(--accent-cyan);
  color: #050508;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
}

.btn-primary:hover {
  background: #38f4ff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  border-color: var(--border-subtle);
}

.btn-outline:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform 0.2s ease;
}

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

/* --------------------------------------------------------------------------
   SITE HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-bracket {
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-cyan);
}

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

.telemetry-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent-cyan);
  letter-spacing: 0.1em;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  background: #07070a;
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-link {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .telemetry-pill { display: none; }
}

/* --------------------------------------------------------------------------
   SECTION 1: HERO
   -------------------------------------------------------------------------- */
.hero-section {
  min-height: 94vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.glow-bg {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(140px);
}

.glow-bg.top-right {
  top: -10%;
  right: -5%;
  background: rgba(0, 240, 255, 0.07);
}

.glow-bg.bottom-left {
  bottom: -10%;
  left: -5%;
  background: rgba(59, 130, 246, 0.06);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
  }
}

.hero-heading {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.5rem;
  }
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-capabilities-strip {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.strip-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.strip-line {
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.strip-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.capabilities-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cap-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.2s ease;
}

.cap-badge:hover {
  border-color: rgba(0, 240, 255, 0.4);
  color: var(--text-white);
  transform: translateY(-1px);
}

.cap-icon {
  width: 14px;
  height: 14px;
  color: var(--accent-cyan);
}

/* 3D Visualizer Container */
.hero-visual-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.three-container-card {
  width: 100%;
  max-width: 480px;
  height: 480px;
  background: #08080d;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 240, 255, 0.04);
}

.three-mount {
  width: 100%;
  height: 100%;
}

.three-hud-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  background: rgba(7, 7, 11, 0.75);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border: 1px solid var(--border-subtle);
}

.hud-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-cyan);
}

.hud-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
}

.hud-item.secondary {
  color: var(--text-dim);
}

/* Crosshairs */
.crosshair {
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.crosshair.top-left { top: 8px; left: 8px; border-top: 1px solid; border-left: 1px solid; }
.crosshair.top-right { top: 8px; right: 8px; border-top: 1px solid; border-right: 1px solid; }
.crosshair.bottom-left { bottom: 8px; left: 8px; border-bottom: 1px solid; border-left: 1px solid; }
.crosshair.bottom-right { bottom: 8px; right: 8px; border-bottom: 1px solid; border-right: 1px solid; }

/* --------------------------------------------------------------------------
   SECTION 2: PHILOSOPHY
   -------------------------------------------------------------------------- */
.grid-3-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

@media (min-width: 900px) {
  .grid-3-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  padding: 32px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pillar-card:hover {
  background: #0c0c12;
  border-color: var(--border-hover);
}

.pillar-card.active {
  background: #0a0a0f;
  border-color: var(--border-active);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.08);
}

.pillar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.pillar-num-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  padding: 2px 8px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 2px;
}

.pillar-tagline {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

.pillar-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.pillar-card.active .pillar-icon-box {
  background: rgba(0, 240, 255, 0.15);
  border-color: rgba(0, 240, 255, 0.4);
  color: var(--accent-cyan);
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pillar-checklist {
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-title {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.check-row svg {
  width: 14px;
  height: 14px;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.transition-banner {
  padding: 36px 40px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .transition-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 2px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.banner-heading {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 4px;
}

.banner-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   SECTION 3: SERVICES
   -------------------------------------------------------------------------- */
.services-editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .services-editorial-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
  }
}

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

.service-selector-card {
  padding: 24px;
  background: #060609;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.service-selector-card:hover {
  background: #0a0a0f;
  border-color: var(--border-hover);
}

.service-selector-card.active {
  background: #0a0a0f;
  border-color: var(--border-active);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.08);
}

.accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-cyan);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-selector-card.active .accent-bar {
  opacity: 1;
}

.card-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.s-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  padding-top: 2px;
}

.service-selector-card.active .s-num {
  color: var(--accent-cyan);
}

.s-text {
  flex: 1;
}

.s-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.s-summary {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.s-icon {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  flex-shrink: 0;
}

.service-selector-card.active .s-icon {
  background: rgba(0, 240, 255, 0.12);
  border-color: rgba(0, 240, 255, 0.4);
  color: var(--accent-cyan);
}

/* Inspector Card */
.services-inspector-col {
  position: sticky;
  top: 100px;
}

.inspector-card {
  background: #07070a;
  border: 1px solid var(--border-hover);
  border-radius: 2px;
  padding: 32px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

.inspector-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
}

.spec-label {
  color: var(--accent-cyan);
  font-weight: 700;
}

.status-badge {
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.inspector-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0 16px;
}

.inspector-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.inspector-tagline {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 2px;
}

.inspector-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.inspector-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.inspector-deliverables {
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.deliv-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.deliv-icon {
  width: 14px;
  height: 14px;
  color: var(--accent-cyan);
}

.deliv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 600px) {
  .deliv-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.deliv-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.deliv-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.inspector-metric-box {
  padding: 14px;
  background: rgba(0, 240, 255, 0.04);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.metric-val {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.inspector-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.time-note {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   SECTION 4: CAPABILITIES & TOPOLOGY
   -------------------------------------------------------------------------- */
.topology-container-card {
  padding: 36px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 56px;
}

@media (min-width: 1024px) {
  .topology-container-card {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }
}

.topology-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 440px;
  margin: 0 auto;
}

.topology-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.central-core-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  background: #0a0a0f;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
  z-index: 10;
}

.core-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  margin-bottom: 4px;
}

.core-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-white);
}

.core-sub {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
}

.topo-node {
  position: absolute;
  transform: translate(-50%, -50%);
  background: #08080c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  outline: none;
  transition: all 0.25s ease;
  z-index: 20;
}

.topo-node svg {
  width: 18px;
  height: 18px;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

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

.topo-node:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.topo-node.active {
  background: #0d0d14;
  border-color: var(--accent-cyan);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.25);
}

.topo-node.active svg {
  color: var(--accent-cyan);
}

.topo-node.active span {
  color: var(--text-white);
}

/* Detail Box */
.topology-info-col {
  padding: 28px;
  background: #050508;
  border: 1px solid var(--border-hover);
  border-radius: 2px;
}

.topo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
}

.topo-code {
  color: var(--accent-cyan);
  font-weight: 700;
}

.topo-type {
  color: var(--text-dim);
}

.topo-body {
  padding: 20px 0;
}

.topo-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.color-swatch {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.topo-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-white);
}

.topo-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.topo-switches {
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.switch-heading {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.switch-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sw-btn {
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}

.sw-btn:hover {
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.25);
}

.sw-btn.active {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

/* 4 Capability Layers Grid */
.capability-layers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .capability-layers-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cap-layer-card {
  padding: 28px;
  background: #060609;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.cap-layer-card:hover {
  background: #09090e;
  border-color: var(--border-hover);
}

.layer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.layer-num {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: var(--accent-cyan);
  display: block;
  margin-bottom: 4px;
}

.layer-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-white);
}

.layer-sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.layer-tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  color: var(--text-muted);
}

.layer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.layer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s ease;
}

.layer-list li:hover {
  color: var(--text-white);
}

.bullet {
  width: 4px;
  height: 4px;
  background: var(--accent-cyan);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   SECTION 5: WHY KODE KAVE
   -------------------------------------------------------------------------- */
.why-editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .why-editorial-grid {
    grid-template-columns: 0.95fr 1.35fr;
    gap: 48px;
  }
}

.stance-card {
  padding: 36px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  position: sticky;
  top: 100px;
}

.stance-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.stance-quote {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 20px;
}

.stance-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.stance-guarantees {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.guarantee-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.why-right-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.diff-card {
  padding: 28px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  transition: all 0.25s ease;
}

.diff-card:hover {
  background: #0a0a0f;
  border-color: var(--border-hover);
}

.diff-card.active {
  background: #09090e;
  border-color: var(--border-active);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.08);
}

.diff-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-cyan);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.diff-card.active .diff-accent {
  opacity: 1;
}

.diff-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.diff-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.diff-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
}

.diff-icon {
  width: 32px;
  height: 32px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
}

.diff-card.active .diff-icon {
  color: var(--accent-cyan);
  border-color: rgba(0, 240, 255, 0.3);
}

.diff-headline {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.diff-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.diff-footer {
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.diff-exec {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.exec-label {
  color: var(--accent-cyan);
  font-weight: 700;
}

.exec-val {
  color: rgba(255, 255, 255, 0.7);
}

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

.tag-pill {
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   SECTION 6: PRODUCTS (BOARDPREP AI FLAGSHIP)
   -------------------------------------------------------------------------- */
.flagship-card {
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 48px;
}

.flagship-topbar {
  padding: 14px 28px;
  background: #09090e;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-cyan);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
}

.flagship-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 36px;
}

@media (min-width: 1024px) {
  .flagship-grid {
    grid-template-columns: 1fr 1.25fr;
    align-items: center;
  }
}

.pill-category {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent-cyan);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.flagship-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.flagship-tagline {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.flagship-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.flagship-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
}

.feat-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent-cyan);
}

.flagship-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Mockup Styles */
.mockup-window {
  background: #08080c;
  border: 1px solid var(--border-hover);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.8);
}

.mockup-header {
  padding: 12px 18px;
  background: #0b0b10;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
}

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

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-white);
  font-weight: 700;
}

.version-tag {
  color: var(--text-dim);
  font-size: 0.625rem;
}

.mockup-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-cyan);
}

.mockup-subnav {
  padding: 12px 18px;
  background: #09090d;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 640px) {
  .mockup-subnav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.subject-select-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-dim);
}

.mockup-select {
  background: #050508;
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  border-radius: 2px;
  outline: none;
}

.mockup-tabs {
  display: flex;
  gap: 6px;
}

.m-tab {
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.m-tab.active {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.mockup-body {
  padding: 18px;
}

.mockup-tab-content {
  display: none;
}

.mockup-tab-content.active {
  display: block;
}

.checker-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .checker-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.exam-question-box, .student-answer-box {
  padding: 14px;
  background: #060609;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  margin-bottom: 12px;
}

.box-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.question-text {
  font-size: 0.8125rem;
  color: var(--text-white);
  line-height: 1.5;
  font-style: italic;
}

.answer-content {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 10px;
}

.answer-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.btn-text-reval {
  background: none;
  border: none;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  cursor: pointer;
}

.checker-analysis-col {
  padding: 14px;
  background: #060609;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.analysis-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  margin-bottom: 12px;
}

.model-tag {
  color: var(--text-dim);
}

.rubric-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.r-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  margin-bottom: 4px;
}

.r-status.green { color: var(--accent-green); display: flex; align-items: center; gap: 4px; }
.r-status.amber { color: var(--accent-amber); display: flex; align-items: center; gap: 4px; }

.meter-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: var(--accent-cyan);
}

.meter-fill.amber {
  background: var(--accent-amber);
}

.improvement-note {
  padding: 10px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 2px;
  display: flex;
  gap: 10px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.improvement-note svg {
  color: var(--accent-amber);
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 2px;
}

/* Topics Tab Mockup */
.topics-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  margin-bottom: 12px;
}

.topics-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 640px) {
  .topics-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.topic-item {
  padding: 12px;
  background: #060609;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
}

.topic-item.active {
  border-color: var(--accent-cyan);
}

.t-name {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.t-desc {
  font-size: 0.6875rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.t-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  padding: 2px 6px;
  border-radius: 2px;
}

.t-badge.green { background: rgba(16, 185, 129, 0.1); color: var(--accent-green); }
.t-badge.amber { background: rgba(245, 158, 11, 0.1); color: var(--accent-amber); }

/* Resources Mockup */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.resource-card {
  padding: 14px;
  background: #060609;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  display: flex;
  gap: 12px;
}

.res-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.res-title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}

.res-desc {
  font-size: 0.6875rem;
  color: var(--text-dim);
}

.mockup-footer {
  padding: 10px 18px;
  background: #0b0b10;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--text-dim);
}

/* Feature Strip */
.product-feature-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .product-feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-feature-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-strip-card {
  padding: 24px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
}

.feat-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.feat-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.feat-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   SECTION 7: CASE STUDY
   -------------------------------------------------------------------------- */
.case-narrative-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 900px) {
  .case-narrative-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.narrative-box {
  padding: 32px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
}

.narrative-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.icon-bubble {
  width: 42px;
  height: 42px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-bubble.amber { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.3); color: var(--accent-amber); }
.icon-bubble.cyan { background: rgba(0, 240, 255, 0.1); border: 1px solid rgba(0, 240, 255, 0.3); color: var(--accent-cyan); }

.tag-mini {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 2px;
}

.tag-mini.amber { color: var(--accent-amber); }
.tag-mini.cyan { color: var(--accent-cyan); }

.narrative-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.narrative-body {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 12px;
}

.narrative-body.muted {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.friction-box {
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
}

.box-heading {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.friction-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.friction-box li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.dot-amber { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-amber); }
.dot-cyan { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-cyan); }

/* Workflow Matrix */
.workflow-matrix-wrapper {
  margin-bottom: 48px;
  padding: 32px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
}

.matrix-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.matrix-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.matrix-meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-dim);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  padding: 20px;
  background: #060609;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.step-card:hover, .step-card.active {
  background: #0a0a0f;
  border-color: var(--accent-cyan);
}

.s-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  margin-bottom: 10px;
}

.s-tag { color: var(--accent-cyan); font-weight: 700; }
.s-phase { color: var(--text-dim); }

.s-head {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.s-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.s-hood {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-dim);
}

/* Flow Diagram */
.flow-diagram-card {
  margin-bottom: 48px;
  padding: 32px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
}

.flow-stages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .flow-stages-grid {
    grid-template-columns: repeat(5, 1fr);
    align-items: stretch;
  }
}

.flow-node {
  padding: 16px;
  background: #060609;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.f-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.f-icon svg {
  width: 14px;
  height: 14px;
  color: var(--accent-cyan);
}

.f-content h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.f-content p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.flow-arrow {
  display: none;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 1rem;
  z-index: 10;
}

@media (min-width: 768px) {
  .flow-node:not(:last-child) .flow-arrow {
    display: block;
  }
}

/* Tech Stack */
.tech-stack-wrapper {
  margin-bottom: 48px;
  padding: 32px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tech-card {
  padding: 18px;
  background: #060609;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
}

.t-layer {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--accent-cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.t-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.t-role {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.t-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Lab Statement Card */
.lab-statement-card {
  padding: 48px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  text-align: center;
}

.statement-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent-cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lab-quote {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.25;
  max-width: 800px;
  margin: 0 auto 16px;
}

.lab-meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   SECTION 8: ABOUT KODE KAVE
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.focus-card {
  padding: 36px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  height: 100%;
}

.focus-heading {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 16px;
}

.focus-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.focus-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.bullet-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
}

.bullet-row svg {
  width: 16px;
  height: 16px;
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Schematic Visual Card */
.schematic-card {
  padding: 28px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.schematic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
}

.schematic-title {
  color: var(--accent-cyan);
  font-weight: 700;
}

.spec-id {
  color: var(--text-dim);
}

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

.schematic-layer {
  padding: 14px;
  background: #050508;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.schematic-layer:hover, .schematic-layer.active {
  background: #09090f;
  border-color: var(--accent-cyan);
}

.layer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.layer-icon {
  width: 28px;
  height: 28px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.layer-icon svg { width: 14px; height: 14px; }

.layer-name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}

.layer-detail {
  font-size: 0.6875rem;
  color: var(--text-dim);
}

.status-chip {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  padding: 3px 8px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 2px;
  color: var(--accent-cyan);
}

.schematic-footer {
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--text-dim);
}

/* Story Card */
.story-container-card {
  padding: 36px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
}

.story-top {
  max-width: 820px;
  margin-bottom: 32px;
}

.story-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.story-tag svg { width: 14px; height: 14px; }

.story-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
}

.story-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  font-style: italic;
}

.story-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.story-pipeline {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.pipe-heading {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .pipeline-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.pipe-node {
  padding: 14px;
  background: #050508;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
}

.pipe-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent-cyan);
  display: block;
  margin-bottom: 2px;
}

.pipe-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-white);
  display: block;
  margin-bottom: 2px;
}

.pipe-sub {
  font-size: 0.6875rem;
  color: var(--text-dim);
  line-height: 1.4;
  display: block;
}

/* --------------------------------------------------------------------------
   SECTION 9: FOUNDER
   -------------------------------------------------------------------------- */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 1024px) {
  .founder-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
  }
}

.founder-portrait-card {
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.portrait-body {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.monogram-box {
  width: 110px;
  height: 110px;
  background: #09090f;
  border: 2px solid rgba(0, 240, 255, 0.4);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.15);
}

.monogram-text {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--accent-cyan);
  letter-spacing: -0.05em;
}

.monogram-badge {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  background: var(--accent-cyan);
  color: #050508;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.monogram-badge svg { width: 14px; height: 14px; }

.p-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 2px;
}

.p-title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
}

.portrait-archive-tag {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--text-dim);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 2px;
}

.portrait-footer {
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--text-dim);
}

.founder-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founder-credentials {
  display: flex;
  gap: 8px;
}

.badge-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  padding: 3px 8px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 2px;
  color: var(--accent-cyan);
}

.badge-tag-secondary {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  color: var(--text-muted);
}

.founder-name {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
}

.founder-role {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.founder-bio {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.founder-message-box {
  padding: 24px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  margin: 10px 0 16px;
}

.msg-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.msg-icon { width: 14px; height: 14px; }

.msg-quote {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.msg-body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.msg-bullets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.msg-bullets-grid div {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --------------------------------------------------------------------------
   SECTION 10: PRINCIPLES
   -------------------------------------------------------------------------- */
.principles-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 1024px) {
  .principles-layout-grid {
    grid-template-columns: 0.9fr 1.3fr;
    gap: 48px;
  }
}

.axiom-card {
  padding: 36px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  position: sticky;
  top: 100px;
}

.axiom-quote {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-white);
  margin-bottom: 20px;
}

.axiom-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.axiom-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  color: var(--text-dim);
}

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

.principle-accordion-card {
  padding: 22px 26px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.principle-accordion-card:hover {
  background: #0a0a0f;
  border-color: var(--border-hover);
}

.principle-accordion-card.active {
  background: #0a0a0f;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.06);
}

.p-acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.p-acc-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-acc-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.p-acc-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
}

.p-acc-tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  color: var(--text-dim);
}

.p-acc-statement {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.p-acc-elaboration {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.principle-accordion-card.active .p-acc-elaboration {
  display: block;
}

/* --------------------------------------------------------------------------
   SECTION 11: PROCESS
   -------------------------------------------------------------------------- */
.lifecycle-wrapper {
  padding: 36px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  margin-bottom: 40px;
}

.lifecycle-nodes-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .lifecycle-nodes-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .lifecycle-nodes-row {
    grid-template-columns: repeat(6, 1fr);
  }
}

.process-node {
  padding: 16px;
  background: #050508;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-node:hover {
  background: #09090f;
  border-color: var(--border-hover);
}

.process-node.active {
  background: #0a0a12;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.p-node-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

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

.p-icon svg {
  width: 16px;
  height: 16px;
  color: var(--text-dim);
}

.process-node.active .p-icon svg {
  color: var(--accent-cyan);
}

.p-node-body h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.p-node-body p {
  font-size: 0.6875rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* Active Stage Inspector */
.active-stage-inspector {
  padding: 24px;
  background: #050508;
  border: 1px solid var(--border-hover);
  border-radius: 2px;
}

.stage-insp-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 18px;
}

@media (min-width: 640px) {
  .stage-insp-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.stage-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent-cyan);
  font-weight: 700;
}

.stage-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-left: 10px;
}

.stage-deliv {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.stage-deliv span {
  color: var(--accent-cyan);
}

.stage-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 640px) {
  .stage-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stage-items-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stage-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.stage-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.discovery-callout-card {
  padding: 32px;
  background: #07070a;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
}

.callout-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent-cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.callout-tag svg { width: 14px; height: 14px; }

.callout-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.callout-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 860px;
}

/* --------------------------------------------------------------------------
   SECTION 12: ABOUT CTA
   -------------------------------------------------------------------------- */
.cta-commencement-card {
  background: #07070a;
  border: 1px solid var(--border-hover);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 240, 255, 0.05);
}

.comm-header {
  padding: 14px 28px;
  background: #09090e;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-dim);
}

.comm-content {
  padding: 56px 36px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.comm-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.comm-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

.comm-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
  background: #040407;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand .brand-logo {
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (min-width: 768px) {
  .footer-meta {
    text-align: right;
  }
}

/* --------------------------------------------------------------------------
   MODALS
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-card {
  width: 100%;
  max-width: 580px;
  background: #08080d;
  border: 1px solid var(--border-active);
  border-radius: 2px;
  padding: 36px;
  position: relative;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 240, 255, 0.15);
}

.modal-card.wide {
  max-width: 760px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 4px;
  transition: color 0.15s ease;
}

.modal-close:hover {
  color: var(--accent-cyan);
}

.eyebrow-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent-cyan);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.scope-btn {
  padding: 10px;
  background: #050508;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scope-btn.active {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  background: #050508;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-white);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--accent-cyan);
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.success-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* Work Preview Modal Tabs */
.work-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.work-tab {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.work-tab.active {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.work-tab-content {
  display: none;
}

.work-tab-content.active {
  display: block;
}

.preview-terminal {
  background: #040406;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
}

.terminal-bar-top {
  padding: 8px 14px;
  background: #08080c;
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-dim);
}

.terminal-code {
  padding: 18px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.token-keyword { color: #f43f5e; }
.token-string { color: #10b981; }
.token-comment { color: #64748b; font-style: italic; }
.token-func { color: #00f0ff; }
.token-bool { color: #f59e0b; }
