/* =================================================================
   INTERSTELLAR I.S. — PRODUCTION STYLESHEET
   Design System + Aurora Animation + Responsive + A11y
   ================================================================= */

/* ============ DESIGN TOKENS ============ */
:root {
  /* Colors */
  --bg-base: #0F0A24;
  --bg-deeper: #0A0618;
  --bg-elevated: #14102C;
  --color-violet: #9D5FFF;
  --color-teal: #00F5D4;
  --color-gold: #FFD60A;
  --color-rose: #FF5599;
  --color-white: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-tertiary: rgba(255, 255, 255, 0.55);
  --text-quaternary: rgba(255, 255, 255, 0.4);
  --border-subtle: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 214, 10, 0.4);

  /* Typography */
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-xxl: 96px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 100px;

  /* Transitions */
  --t-fast: 200ms ease;
  --t-med: 350ms ease;
  --t-slow: 600ms ease;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ============ ACCESSIBILITY ============ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-gold);
  color: #1A0F2E;
  padding: 12px 20px;
  font-weight: 500;
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

*:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .aurora-line {
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    background: none !important;
  }
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 10, 36, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-text { line-height: 1.1; display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.brand-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-tertiary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--text-secondary);
}
.site-nav a:hover { color: var(--text-primary); }
.nav-cta { color: var(--color-gold) !important; font-weight: 500; }
.nav-toggle { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 720px;
  background: var(--bg-base);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 36px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 214, 10, 0.1);
  border: 0.5px solid rgba(255, 214, 10, 0.45);
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  align-self: flex-start;
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  display: inline-block;
  animation: pDot 1.6s ease-in-out infinite;
}
@keyframes pDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}

/* ============ AURORA HEADLINE ============ */
.aurora-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  position: relative;
  display: inline-block;
}
.aurora-headline::before {
  content: '';
  position: absolute;
  inset: -50px -30px;
  background: radial-gradient(ellipse 70% 55% at 30% 50%, rgba(157, 95, 255, 0.5), rgba(0, 245, 212, 0.3) 35%, rgba(255, 214, 10, 0.25) 60%, rgba(255, 85, 153, 0.15) 80%, transparent 100%);
  filter: blur(50px);
  animation: auroraGlow 7.5s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}
.aurora-line {
  background-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 14%,
    rgba(255, 255, 255, 0.15) 17%,
    rgba(255, 255, 255, 0.4) 21%,
    rgba(0, 245, 212, 0.7) 25%,
    #00F5D4 32%,
    #9D5FFF 42%,
    #FFD60A 52%,
    #FF5599 60%,
    #FFFFFF 66%,
    rgba(255, 255, 255, 0.6) 72%,
    rgba(255, 255, 255, 0.3) 78%,
    rgba(255, 255, 255, 0.15) 84%,
    transparent 92%,
    transparent 100%
  );
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 16px rgba(157, 95, 255, 0.55)) drop-shadow(0 0 28px rgba(0, 245, 212, 0.25));
}
.aurora-l1 { animation: auroraCycle1 7.5s ease-in-out infinite; }
.aurora-l2 { animation: auroraCycle2 7.5s ease-in-out infinite; }

@keyframes auroraCycle1 {
  0%   { background-position: 240% 0; color: transparent; -webkit-text-fill-color: transparent; }
  65%  { background-position: -120% 0; color: transparent; -webkit-text-fill-color: transparent; }
  72%  { background-position: -120% 0; color: #FFFFFF; -webkit-text-fill-color: #FFFFFF; }
  92%  { background-position: -120% 0; color: #FFFFFF; -webkit-text-fill-color: #FFFFFF; }
  100% { background-position: 240% 0; color: transparent; -webkit-text-fill-color: transparent; }
}
@keyframes auroraCycle2 {
  0%   { background-position: 240% 0; color: transparent; -webkit-text-fill-color: transparent; }
  18%  { background-position: 240% 0; color: transparent; -webkit-text-fill-color: transparent; }
  78%  { background-position: -120% 0; color: transparent; -webkit-text-fill-color: transparent; }
  85%  { background-position: -120% 0; color: #FFFFFF; -webkit-text-fill-color: #FFFFFF; }
  98%  { background-position: -120% 0; color: #FFFFFF; -webkit-text-fill-color: #FFFFFF; }
  100% { background-position: 240% 0; color: transparent; -webkit-text-fill-color: transparent; }
}
@keyframes auroraGlow {
  0%   { transform: translateX(-30%) scale(0.9); opacity: 0.4; }
  35%  { transform: translateX(0%) scale(1.1); opacity: 1; }
  65%  { transform: translateX(40%) scale(1.05); opacity: 0.85; }
  80%  { transform: translateX(50%) scale(1); opacity: 0.4; }
  100% { transform: translateX(-30%) scale(0.9); opacity: 0.4; }
}

.hero-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 32px;
  max-width: 540px;
}
.hero-lede strong { color: var(--color-gold); font-weight: 500; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-microcopy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 214, 10, 0.7);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 0.5px solid var(--border-subtle);
  margin-top: 36px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.stat-plus, .stat-pct { font-size: 16px; }
.stat-teal { color: var(--color-teal); }
.stat-gold { color: var(--color-gold); }
.stat-plus { color: var(--color-gold); }

/* ============ HERO BG ANIMATIONS ============ */
.nebula-1 { animation: neb1 9s ease-in-out infinite; transform-origin: center; }
.nebula-2 { animation: neb2 11s ease-in-out infinite; transform-origin: center; }
.nebula-3 { animation: neb3 8s ease-in-out infinite; transform-origin: center; }
.nebula-4 { animation: neb4 10s ease-in-out infinite; transform-origin: center; }
@keyframes neb1 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-22px,14px) scale(1.06); } }
@keyframes neb2 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(18px,-16px) scale(1.07); } }
@keyframes neb3 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-14px,-12px) scale(1.08); } }
@keyframes neb4 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(10px,12px) scale(1.05); } }
.star-1 { animation: starTwinkle 3s ease-in-out infinite; }
.star-2 { animation: starTwinkle 4s ease-in-out infinite; }
.star-3 { animation: starTwinkle 4.5s ease-in-out infinite; }
.star-4 { animation: starTwinkle 6s ease-in-out infinite; }
@keyframes starTwinkle { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
.signal-arc { animation: arcSweep 10s linear infinite; }
@keyframes arcSweep {
  0% { opacity: 0; transform: translateX(-40px); }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { opacity: 0; transform: translateX(40px); }
}
.orbit-1 { animation: orbit1 28s linear infinite; transform-origin: 540px 200px; }
.orbit-2 { animation: orbit2 36s linear infinite; transform-origin: 540px 200px; }
@keyframes orbit1 { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbit2 { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
.pulse-ring { animation: pRing 2.5s ease-out infinite; }
@keyframes pRing { 0% { r: 14; opacity: 0.6; } 100% { r: 38; opacity: 0; } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  min-height: 44px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--color-gold);
  color: #1A0F2E;
  box-shadow: 0 0 32px rgba(255, 214, 10, 0.3);
}
.btn-primary:hover { box-shadow: 0 0 40px rgba(255, 214, 10, 0.5); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.12); }
.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  border: 0.5px solid var(--color-gold);
  padding: 14px 26px;
}
.btn-outline-gold:hover { background: rgba(255, 214, 10, 0.1); }
.btn-large { padding: 18px 36px; font-size: 15px; }

/* ============ SECTION COMMON ============ */
section { position: relative; }
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 36px;
}
.section-header { margin-bottom: 48px; max-width: 580px; }
.section-header-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow-gold { color: var(--color-gold); }
.eyebrow-teal { color: var(--color-teal); }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--text-primary);
}
.section-heading-center { text-align: center; }
.section-lede {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.text-gold { color: var(--color-gold); }
.text-teal { color: var(--color-teal); }
.text-violet { color: var(--color-violet); }
.text-rose { color: var(--color-rose); }
.text-gradient-gold-rose {
  background: linear-gradient(90deg, var(--color-gold), var(--color-rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ============ SEGMENTS ============ */
.segments {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-elevated) 100%);
}
.segments .section-inner { padding-top: 80px; padding-bottom: 80px; }
.segment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.segment-card {
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 0.5px solid;
  transition: transform var(--t-med), border-color var(--t-med);
}
.segment-card:hover { transform: translateY(-4px); }
.seg-violet { background: rgba(157, 95, 255, 0.08); border-color: rgba(157, 95, 255, 0.3); }
.seg-violet:hover { border-color: rgba(157, 95, 255, 0.6); }
.seg-teal { background: rgba(0, 245, 212, 0.08); border-color: rgba(0, 245, 212, 0.3); }
.seg-teal:hover { border-color: rgba(0, 245, 212, 0.6); }
.seg-gold { background: rgba(255, 214, 10, 0.08); border-color: rgba(255, 214, 10, 0.3); }
.seg-gold:hover { border-color: rgba(255, 214, 10, 0.6); }
.seg-rose { background: rgba(255, 85, 153, 0.08); border-color: rgba(255, 85, 153, 0.3); }
.seg-rose:hover { border-color: rgba(255, 85, 153, 0.6); }
.segment-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.seg-violet .segment-icon { background: rgba(157, 95, 255, 0.2); }
.seg-teal .segment-icon { background: rgba(0, 245, 212, 0.2); }
.seg-gold .segment-icon { background: rgba(255, 214, 10, 0.2); }
.seg-rose .segment-icon { background: rgba(255, 85, 153, 0.2); }
.seg-shape-square { width: 14px; height: 14px; border-radius: 3px; }
.seg-violet .seg-shape-square { background: var(--color-violet); }
.seg-shape-bars { display: flex; gap: 2px; }
.seg-shape-bars span { width: 5px; height: 14px; border-radius: 1px; }
.seg-teal .seg-shape-bars span { background: var(--color-teal); }
.seg-gold .seg-shape-bars span { width: 4px; background: var(--color-gold); }
.seg-shape-circle { width: 14px; height: 14px; border-radius: 50%; background: var(--color-rose); }
.segment-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--text-primary);
}
.segment-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ============ SOLUTIONS ============ */
.solutions { background: var(--bg-elevated); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.solution-card {
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: block;
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
}
.solution-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}
.sol-violet { border-color: rgba(157, 95, 255, 0.3); }
.sol-violet:hover { border-color: rgba(157, 95, 255, 0.7); }
.sol-teal { border-color: rgba(0, 245, 212, 0.3); }
.sol-teal:hover { border-color: rgba(0, 245, 212, 0.7); }
.sol-gold { border-color: rgba(255, 214, 10, 0.3); }
.sol-gold:hover { border-color: rgba(255, 214, 10, 0.7); }
.sol-rose { border-color: rgba(255, 85, 153, 0.3); }
.sol-rose:hover { border-color: rgba(255, 85, 153, 0.7); }
.sol-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 214, 10, 0.12), rgba(255, 85, 153, 0.08));
  border-color: rgba(255, 214, 10, 0.5);
}
.solution-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  margin: 14px 0 10px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}
.solution-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 14px;
}
.solution-count {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sol-violet .solution-count { color: var(--color-violet); }
.sol-teal .solution-count { color: var(--color-teal); }
.sol-gold .solution-count { color: var(--color-gold); }
.sol-rose .solution-count { color: var(--color-rose); }
.sol-featured .solution-count { color: var(--color-gold); }
.featured-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.featured-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.featured-icon-row h3 { margin: 0; }
.badge-new {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--color-gold);
  letter-spacing: 0.16em;
  padding: 2px 8px;
  border: 0.5px solid rgba(255, 214, 10, 0.5);
  border-radius: var(--radius-pill);
}

/* ============ CONSTELLATION ============ */
.constellation { background: var(--bg-elevated); }
.constellation-canvas {
  background: var(--bg-deeper);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
}
.cluster-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}
.cluster-label-mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  fill: rgba(255, 255, 255, 0.5);
}
.cluster { animation: clusterPulse 4s ease-in-out infinite; }
.cluster-ccaas { animation-duration: 5s; }
.cluster-network { animation-duration: 4.5s; }
.cluster-security { animation-duration: 3.8s; }
@keyframes clusterPulse { 0%, 100% { opacity: 0.85; } 50% { opacity: 1; } }
.constellation-caption {
  margin-top: 24px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.2em;
}

/* ============ PROCESS ============ */
.process { background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-base) 100%); }
.process-track { position: relative; }
.process-line {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 14px;
}
.process-flow { animation: pFlow 3s linear infinite; }
@keyframes pFlow { 0% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -24; } }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
  z-index: 1;
}
.process-step { text-align: center; }
.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-gold);
}
.step-num-teal { border: 2px solid var(--color-teal); color: var(--color-teal); }
.process-step h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--text-primary);
}
.process-step p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ============ ABOUT TEASER ============ */
.about-teaser { background: var(--bg-base); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-copy p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 16px;
}
.about-copy .btn { margin-top: 8px; }
.founder-card {
  background: linear-gradient(135deg, rgba(157, 95, 255, 0.12), rgba(0, 245, 212, 0.08));
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.founder-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.founder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-violet), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
}
.founder-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}
.founder-role { font-size: 12px; color: var(--text-tertiary); }
.founder-meta { margin: 0; }
.founder-meta > div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: var(--text-secondary);
}
.founder-meta > div:last-child { border-bottom: none; }
.founder-meta dt { margin: 0; }
.founder-meta dd { margin: 0; color: var(--text-primary); }

/* ============ OUTCOMES ============ */
.outcomes { background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-elevated) 100%); }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.outcome-card {
  border: 0.5px solid;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
}
.outcome-gold { background: rgba(255, 214, 10, 0.06); border-color: rgba(255, 214, 10, 0.3); }
.outcome-teal { background: rgba(0, 245, 212, 0.06); border-color: rgba(0, 245, 212, 0.3); }
.outcome-violet { background: rgba(157, 95, 255, 0.06); border-color: rgba(157, 95, 255, 0.3); }
.outcome-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.outcome-gold .outcome-value { color: var(--color-gold); }
.outcome-teal .outcome-value { color: var(--color-teal); }
.outcome-violet .outcome-value { color: var(--color-violet); }
.outcome-unit { font-size: 28px; }
.outcome-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.outcome-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.outcomes-disclosure {
  text-align: center;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-quaternary);
  letter-spacing: 0.16em;
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 214, 10, 0.15), transparent 70%);
  z-index: 0;
}
.final-cta .section-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 100px 36px;
}
.final-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 20px;
}
.final-cta-lede {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 32px;
}
.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.final-cta-microcopy {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 214, 10, 0.7);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-deeper);
  border-top: 0.5px solid rgba(255, 214, 10, 0.2);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 36px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.65;
  max-width: 280px;
  margin: 0;
}
.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 500;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
}
.footer-col a:hover { color: var(--color-gold); }
.footer-address { color: var(--text-tertiary); }
.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-quaternary);
  letter-spacing: 0.14em;
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a:hover { color: var(--color-gold); }
.footer-disclosure {
  padding-top: 18px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.55;
}

/* ============ ATLAS CHATBOT ============ */
.atlas-launcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  background: linear-gradient(135deg, var(--color-violet), var(--color-teal));
  border-radius: var(--radius-pill);
  padding: 12px 18px 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(157, 95, 255, 0.4);
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  user-select: none;
}
.atlas-launcher:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 40px rgba(157, 95, 255, 0.55);
}
.atlas-launcher.atlas-hidden { display: none; }
.atlas-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.atlas-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
}
.atlas-status {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.atlas-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 70;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 560px;
  max-height: calc(100vh - 48px);
  background: var(--bg-elevated);
  border: 0.5px solid rgba(157, 95, 255, 0.5);
  border-radius: var(--radius-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}
.atlas-panel.atlas-open { display: flex; }
.atlas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(157, 95, 255, 0.2), rgba(0, 245, 212, 0.1));
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}
.atlas-header-left { display: flex; align-items: center; gap: 12px; }
.atlas-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-violet), var(--color-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.atlas-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}
.atlas-subtitle {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--color-teal);
  letter-spacing: 0.16em;
  margin-top: 2px;
}
.atlas-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}
.atlas-close:hover { background: rgba(255, 255, 255, 0.1); }

.atlas-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.atlas-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}
.atlas-msg-bot {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  align-self: flex-start;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
}
.atlas-msg-user {
  background: linear-gradient(135deg, var(--color-violet), var(--color-teal));
  color: var(--text-primary);
  align-self: flex-end;
}
.atlas-typing {
  display: flex;
  gap: 4px;
  align-self: flex-start;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
}
.atlas-typing span {
  width: 6px;
  height: 6px;
  background: var(--text-tertiary);
  border-radius: 50%;
  animation: atlasTyping 1.2s infinite;
}
.atlas-typing span:nth-child(2) { animation-delay: 0.2s; }
.atlas-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes atlasTyping {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

.atlas-input-area {
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  padding: 12px 16px 16px;
  background: rgba(0, 0, 0, 0.2);
}
.atlas-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.atlas-options:empty { margin-bottom: 0; }
.atlas-option {
  background: rgba(255, 214, 10, 0.1);
  color: var(--color-gold);
  border: 0.5px solid rgba(255, 214, 10, 0.4);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--t-fast);
}
.atlas-option:hover { background: rgba(255, 214, 10, 0.2); }
.atlas-input-row { display: flex; gap: 8px; }
.atlas-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color var(--t-fast);
}
.atlas-input:focus { border-color: var(--color-gold); }
.atlas-send {
  background: var(--color-gold);
  color: #1A0F2E;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-fast);
}
.atlas-send:hover { transform: scale(1.08); }
.atlas-footer {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-quaternary);
  letter-spacing: 0.1em;
  text-align: center;
}
.atlas-footer a { color: var(--color-teal); }
.atlas-footer a:hover { text-decoration: underline; }

/* ============ RESPONSIVE BREAKPOINTS ============ */

/* Tablet & small laptop (769–1024) */
@media (max-width: 1024px) {
  .header-inner, .section-inner, .hero-content, .footer-inner { padding-left: 24px; padding-right: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand-col { grid-column: span 3; margin-bottom: 16px; }
}

/* Tablet portrait (481–768) */
@media (max-width: 768px) {
  body { font-size: 17px; }
  .site-nav { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
  }
  .nav-toggle span {
    width: 20px;
    height: 1.5px;
    background: var(--text-primary);
    transition: transform var(--t-fast);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
  .site-nav.nav-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-elevated);
    padding: 24px;
    gap: 16px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.1);
    align-items: flex-start;
  }
  .hero-content { padding: 56px 24px 40px; min-height: 640px; }
  .hero { min-height: 640px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .segment-grid { grid-template-columns: 1fr 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .sol-featured { grid-column: span 1; }
  .featured-row { flex-direction: column; gap: 12px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-line { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: span 2; }
  .footer-meta { flex-direction: column; align-items: flex-start; }
  .atlas-panel { width: calc(100vw - 24px); right: 12px; bottom: 12px; height: calc(100vh - 24px); max-height: 600px; }
  .atlas-launcher { right: 12px; bottom: 12px; }
}

/* Mobile (320–480) */
@media (max-width: 480px) {
  body { font-size: 16px; }
  .header-inner { padding: 14px 20px; }
  .brand-tag { display: none; }
  .section-inner { padding: 60px 20px; }
  .hero-content { padding: 48px 20px 32px; }
  .hero-badge { font-size: 10px; padding: 5px 12px; }
  .aurora-headline { font-size: clamp(34px, 12vw, 56px) !important; }
  .hero-lede { font-size: 16px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .segment-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: span 1; }
  .final-cta-buttons { flex-direction: column; }
  .final-cta-buttons .btn { width: 100%; }
}

/* Print */
@media print {
  body { background: white; color: black; }
  .site-header, .atlas-launcher, .atlas-panel, .hero-bg, .nebula, .stars, .signal-arc, .orbit, .pulse-ring { display: none; }
  .aurora-line { color: black !important; -webkit-text-fill-color: black !important; background: none !important; }
  section { page-break-inside: avoid; }
  a { color: black; text-decoration: underline; }
}

/* =================================================================
   SUB-PAGE STYLES — static gradient header, content blocks
   ================================================================= */

/* ============ SUB-PAGE HERO (static, no aurora animation) ============ */
.subpage-hero {
  position: relative;
  background: var(--bg-base);
  overflow: hidden;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}
.subpage-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.subpage-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 36px 60px;
}
.subpage-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--color-gold);
}
.subpage-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  max-width: 820px;
}
.subpage-title .accent {
  background: linear-gradient(90deg, var(--color-gold), var(--color-rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.subpage-title .accent-teal { color: var(--color-teal); }
.subpage-title .accent-violet { color: var(--color-violet); }
.subpage-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
  max-width: 680px;
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb .sep { color: var(--text-quaternary); margin: 0 8px; }

/* ============ CONTENT BLOCKS ============ */
.content-block { padding: 60px 36px; }
.content-block .inner { max-width: 1280px; margin: 0 auto; }
.content-block.alt { background: var(--bg-elevated); }
.content-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--text-primary);
}
.content-prose {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 720px;
}
.content-prose p { margin: 0 0 16px; }
.content-prose strong { color: var(--text-primary); font-weight: 500; }
.content-prose a { color: var(--color-gold); border-bottom: 0.5px solid rgba(255, 214, 10, 0.4); }
.content-prose a:hover { border-bottom-color: var(--color-gold); }
.content-prose ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.content-prose ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.content-prose ul li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

/* Two-column content blocks */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.two-col-grid.weighted {
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 768px) {
  .two-col-grid, .two-col-grid.weighted { grid-template-columns: 1fr; gap: 32px; }
}

/* Feature cards inside content blocks */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
@media (max-width: 1024px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: border-color var(--t-fast);
}
.feature-card:hover { border-color: rgba(255, 214, 10, 0.4); }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.feature-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.feature-card .feature-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 3px 8px;
  background: rgba(255, 214, 10, 0.08);
  border: 0.5px solid rgba(255, 214, 10, 0.3);
  border-radius: var(--radius-pill);
}

/* CTA inline block */
.cta-block {
  background: linear-gradient(135deg, rgba(157, 95, 255, 0.1), rgba(0, 245, 212, 0.06));
  border: 0.5px solid rgba(255, 214, 10, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  margin-top: 40px;
}
.cta-block h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.cta-block p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0 0 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Legal pages — denser typography */
.legal-content {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 40px 0 12px;
}
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 28px 0 10px;
}
.legal-content p { margin: 0 0 14px; }
.legal-content ul { margin: 12px 0; }
.legal-content strong { color: var(--text-primary); }
.legal-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 0;
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 32px;
}
.legal-counsel-banner {
  background: rgba(255, 214, 10, 0.08);
  border: 0.5px solid rgba(255, 214, 10, 0.4);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--text-secondary);
}
.legal-counsel-banner strong { color: var(--color-gold); }

/* MS Bookings embed wrapper */
.bookings-embed {
  background: var(--bg-deeper);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
}
.bookings-embed iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
  display: block;
}

/* Contact info grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}
.contact-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-card-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.contact-card-value a { color: var(--text-primary); }
.contact-card-value a:hover { color: var(--color-gold); }
.contact-card-meta {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* About page — extended founder section */
.about-extended {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .about-extended { grid-template-columns: 1fr; } }
.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
@media (max-width: 600px) { .values-list { grid-template-columns: 1fr; } }
.value-item {
  border-left: 2px solid var(--color-gold);
  padding: 8px 0 8px 16px;
}
.value-item h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--text-primary);
}
.value-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Process page — extended timeline */
.timeline-extended {
  margin-top: 32px;
}
.timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
}
.timeline-step:last-child { border-bottom: none; }
.timeline-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: -0.04em;
  line-height: 1;
}
.timeline-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--text-primary);
}
.timeline-step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 12px;
}
.timeline-step .timeline-meta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-teal);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 8px;
}
@media (max-width: 600px) {
  .timeline-step { grid-template-columns: 1fr; gap: 12px; }
  .timeline-num { font-size: 28px; }
}

/* =================================================================
   3CX LIVE CHAT MODAL — in-page popup (replaces new-tab handoff)
   ================================================================= */
.livechat-modal {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  width: 380px;
  height: 600px;
  max-height: calc(100vh - 48px);
  max-width: calc(100vw - 32px);
  background: var(--bg-elevated);
  border: 0.5px solid rgba(157, 95, 255, 0.5);
  border-radius: var(--radius-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 280ms ease, transform 280ms ease;
}
.livechat-modal.livechat-open {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.livechat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(157, 95, 255, 0.25), rgba(0, 245, 212, 0.12));
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}
.livechat-back {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 200ms ease;
  white-space: nowrap;
}
.livechat-back:hover { background: rgba(255, 255, 255, 0.16); }
.livechat-title {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-teal);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  flex: 1;
  text-align: center;
}
.livechat-close {
  background: transparent;
  color: var(--text-secondary);
  border: none;
  font-size: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
  line-height: 1;
}
.livechat-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}
.livechat-loading {
  position: absolute;
  inset: 49px 0 0;
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 2;
}
.livechat-loading-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}
.livechat-spinner {
  display: flex;
  gap: 6px;
}
.livechat-spinner span {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: livechatSpin 1.2s infinite;
}
.livechat-spinner span:nth-child(2) { animation-delay: 0.2s; }
.livechat-spinner span:nth-child(3) { animation-delay: 0.4s; }
@keyframes livechatSpin {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-6px); }
}
.livechat-iframe {
  flex: 1;
  width: 100%;
  border: 0;
  background: #FFFFFF;
  transition: opacity 350ms ease;
}

/* Mobile responsive — fill most of viewport */
@media (max-width: 600px) {
  .livechat-modal {
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    bottom: 8px;
    right: 8px;
    max-width: none;
    max-height: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .livechat-modal {
    transition: opacity 0.01ms;
    transform: none;
  }
  .livechat-spinner span { animation: none; opacity: 0.7; }
}
