/* ─────────────────────────────────────────────────────────────
   AInovation PH — Cinematic Enterprise Design System
   Palette: Onyx Black, Obsidian Surface, Warm Royal Gold, Electric Cyan
   Typography: Cormorant Garamond, Outfit, DM Sans, DM Mono
────────────────────────────────────────────────────────────── */

:root {
  /* Core Backgrounds */
  --bg-black: #08090c;
  --bg-deep: #0e1117;
  --bg-surface: #141822;
  --bg-card: rgba(20, 24, 34, 0.75);
  --bg-glass: rgba(255, 255, 255, 0.035);

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(201, 168, 76, 0.35);
  --border-cyan: rgba(0, 212, 255, 0.35);

  /* Brand Accents */
  --gold-primary: #d4af37;
  --gold-vibrant: #f3cf65;
  --gold-dim: rgba(212, 175, 55, 0.15);
  --gold-glow: rgba(212, 175, 55, 0.25);
  --cyan-accent: #00d4ff;
  --cyan-glow: rgba(0, 212, 255, 0.2);

  /* Typography Colors */
  --text-white: #f8fafc;
  --text-chrome: #cbd5e1;
  --text-muted: #8492a6;
  --text-dim: #556275;

  /* Typography Families */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'DM Mono', monospace;

  /* Elevation & Shadows */
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.12);
  --shadow-cyan: 0 10px 40px rgba(0, 212, 255, 0.12);

  /* Animation */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-black);
  color: var(--text-white);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-black);
  color: var(--text-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img, svg {
  display: block;
  max-width: 100%;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

/* ── Ambient Background Canvas ── */
#ambient-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

/* ── Navigation Header ── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition-smooth);
}

#site-header.scrolled {
  background: rgba(8, 9, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

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

.brand-monogram {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-vibrant));
  color: var(--bg-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  box-shadow: 0 0 15px var(--gold-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  line-height: 1.1;
}

.brand-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-chrome);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold-vibrant);
}

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

.btn-nav {
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-primary);
  border: 1px solid var(--border-hover);
  background: var(--gold-dim);
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.btn-nav:hover {
  background: var(--gold-primary);
  color: var(--bg-black);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition-smooth);
}

/* ── Typography & Components ── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.75;
}

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

.text-center .section-subtitle {
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-vibrant) 0%, var(--gold-primary) 50%, var(--cyan-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 2.2rem;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold-vibrant), var(--gold-primary));
  color: var(--bg-black);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--gold-glow);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2.2rem;
  border-radius: 6px;
  background: var(--bg-glass);
  color: var(--text-chrome);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--cyan-accent);
  color: var(--cyan-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--cyan-glow);
}

.btn-large {
  padding: 1.25rem 2.8rem;
  font-size: 0.95rem;
}

/* ── Section Structure ── */
.section {
  position: relative;
  z-index: 1;
  padding: 7.5rem 0;
}

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

/* ── Hero Section ── */
.hero-section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 0 5rem;
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(0, 212, 255, 0.05) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-hover);
  margin-bottom: 2rem;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-accent);
  box-shadow: 0 0 10px var(--cyan-accent);
  animation: pulse-ring 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

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

.badge-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-vibrant);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  max-width: 950px;
}

.hero-subhead {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--text-chrome);
  max-width: 720px;
  line-height: 1.7;
  margin-bottom: 2.75rem;
}

.hero-cta-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
}

.hero-metrics-strip {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
}

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

.metric-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
}

.metric-caption {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.metric-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* ── Architecture Cards ── */
.architecture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.arch-card {
  padding: 3rem 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.arch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.arch-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.arch-card:hover::before {
  opacity: 1;
}

.arch-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.arch-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.arch-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.arch-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-vibrant);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  background: var(--gold-dim);
  display: inline-block;
}

/* ── Distributed Cloud & Homelab Mesh Section ── */
.mesh-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-deep) 100%);
  padding: 8rem 0;
}

.mesh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.mesh-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 2.5rem;
  position: relative;
  backdrop-filter: blur(14px);
  transition: var(--transition-smooth);
}

.mesh-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 12px 35px rgba(0, 212, 255, 0.08);
}

.mesh-card.featured {
  border-color: var(--border-hover);
  background: linear-gradient(135deg, rgba(20, 24, 34, 0.95), rgba(28, 23, 14, 0.95));
}

.mesh-card.featured:hover {
  border-color: var(--gold-vibrant);
  box-shadow: var(--shadow-gold);
}

.mesh-node-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.node-flag {
  font-size: 2rem;
  line-height: 1;
}

.node-meta {
  flex-grow: 1;
}

.node-region {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.node-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-white);
}

.node-badge {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

.node-badge.cf {
  background: rgba(246, 130, 31, 0.15);
  color: #f6821f;
  border: 1px solid rgba(246, 130, 31, 0.35);
}

.node-badge.edge {
  background: rgba(0, 212, 255, 0.12);
  color: var(--cyan-accent);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.node-badge.cloud {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.node-badge.gpu {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-vibrant);
  border: 1px solid var(--border-hover);
}

.node-desc {
  font-size: 0.88rem;
  color: var(--text-chrome);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.node-specs {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

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

.spec-val {
  color: var(--text-white);
  font-weight: 500;
}

.mesh-interconnect-banner {
  background: rgba(14, 17, 23, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  backdrop-filter: blur(10px);
}

.interconnect-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.interconnect-text {
  font-size: 0.85rem;
  color: var(--text-chrome);
  line-height: 1.6;
}

.interconnect-text strong {
  color: var(--gold-primary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 0.35rem;
}

/* ── AI Fleet Section ── */
.fleet-section {
  background: var(--bg-deep);
  position: relative;
}

.fleet-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.75rem;
}

.agent-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2.25rem;
  transition: var(--transition-smooth);
}

.agent-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.agent-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.agent-avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.avatar-lexie { background: linear-gradient(135deg, #ec4899, #8b5cf6); }
.avatar-dev { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.avatar-res { background: linear-gradient(135deg, #10b981, #059669); }
.avatar-ops { background: linear-gradient(135deg, #f59e0b, #d97706); }
.avatar-sec { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.avatar-media { background: linear-gradient(135deg, #a855f7, #6366f1); }

.agent-meta {
  flex-grow: 1;
}

.agent-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text-white);
}

.agent-role {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.agent-status {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

.agent-status.live {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.agent-desc {
  font-size: 0.88rem;
  color: var(--text-chrome);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.agent-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.agent-skills span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

/* ── Capabilities Matrix ── */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.cap-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.cap-item:hover {
  border-color: var(--border-cyan);
  box-shadow: var(--shadow-cyan);
}

.cap-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.cap-item h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: var(--text-white);
}

.cap-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cap-pills {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cap-pills li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-chrome);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cap-pills li::before {
  content: '▹';
  color: var(--cyan-accent);
}

/* ── The Founder & Architect (Simple, NDA-Safe) ── */
.founder-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  background: linear-gradient(135deg, rgba(20, 24, 34, 0.9), rgba(14, 17, 23, 0.95));
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 4.5rem;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

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

.founder-name {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.founder-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-vibrant);
  margin-bottom: 2rem;
}

.founder-statement {
  border-left: 2px solid var(--gold-primary);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.founder-statement p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-chrome);
  line-height: 1.6;
}

.founder-prose p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.founder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.badge-item {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  background: var(--gold-dim);
  border: 1px solid var(--border-hover);
  color: var(--gold-primary);
}

.founder-stats-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.stat-box {
  background: var(--bg-black);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1.75rem 2rem;
  transition: var(--transition-smooth);
}

.stat-box:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-vibrant);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Live Telemetry Terminal ── */
.terminal-section {
  background: var(--bg-deep);
}

.terminal-window {
  max-width: 900px;
  margin: 0 auto;
  background: #060709;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: #0f1219;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

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

.terminal-status {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--cyan-accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terminal-body {
  padding: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.9;
  max-height: 320px;
  overflow-y: auto;
}

.terminal-line {
  color: var(--text-chrome);
  margin-bottom: 0.5rem;
}

.term-time {
  color: var(--text-dim);
}

.term-node {
  color: var(--gold-primary);
  font-weight: 500;
}

/* ── Contact Section ── */
.contact-section {
  padding: 9rem 0 6rem;
  position: relative;
}

.contact-lead {
  margin: 0 auto 3rem;
  font-size: 1.15rem;
}

.contact-cta-wrapper {
  margin-bottom: 3.5rem;
}

.social-channels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.social-link {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-chrome);
  padding: 0.3rem 0;
  transition: var(--transition-smooth);
}

.social-link:hover {
  color: var(--gold-primary);
}

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

/* ── Footer ── */
#site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0;
  background: var(--bg-black);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-tagline, .footer-privacy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-chrome);
  margin-bottom: 0.25rem;
}

/* ── Responsive Adaptations ── */
@media (max-width: 992px) {
  .founder-card {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem;
  }

  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-actions {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 5rem 0;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .founder-card {
    padding: 2rem;
  }
}
