/* ════════════════════════════════════════════════════
   ORSLON — Enterprise DevOps & Security Portal
   Design: Dark enterprise theme, inspired by Cloudflare /
   CrowdStrike / Datadog. Deep space base with electric
   indigo / cyan accent palette.
   ════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #060b14;
  --bg-2:      #0b1220;
  --bg-3:      #111827;
  --border:    rgba(99,102,241,0.15);
  --border-hi: rgba(99,102,241,0.35);
  --indigo:    #6366f1;
  --indigo-lo: rgba(99,102,241,0.12);
  --cyan:      #06b6d4;
  --cyan-lo:   rgba(6,182,212,0.1);
  --green:     #22c55e;
  --yellow:    #eab308;
  --red:       #ef4444;
  --text:      #e2e8f0;
  --text-muted:#94a3b8;
  --text-dim:  #64748b;
  --white:     #ffffff;
  --radius:    12px;
  --radius-lg: 20px;
  --trans:     0.25s ease;
  --glow-ind:  0 0 40px rgba(99,102,241,0.25);
  --glow-cyan: 0 0 40px rgba(6,182,212,0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--indigo); border-radius: 3px; }

/* ─── CONTAINER ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BACKGROUND ORBS ─── */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: orbFloat 20s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
  top: -200px; left: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  top: 30%; right: -150px;
  animation-delay: -7s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #8b5cf6, transparent 70%);
  bottom: 20%; left: 20%;
  animation-delay: -14s;
}
.orb-4 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  bottom: -100px; right: 10%;
  animation-delay: -3s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 30px) scale(0.95); }
}

/* ─── PARTICLE CANVAS ─── */
#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ─── BUTTONS ─── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--trans);
  border: none;
  white-space: nowrap;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--indigo), #4f46e5);
  color: #fff;
  box-shadow: 0 0 24px rgba(99,102,241,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(99,102,241,0.5), 0 8px 30px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #7c7ff5, var(--indigo));
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.btn-outline {
  border: 1.5px solid var(--border-hi);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: var(--indigo-lo);
}

.btn-outline-hero {
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--text);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
}
.btn-outline-hero:hover {
  border-color: var(--indigo);
  color: var(--white);
  background: var(--indigo-lo);
}

.btn-ghost-nav {
  color: var(--text-muted);
  background: transparent;
  border: 1.5px solid transparent;
}
.btn-ghost-nav:hover {
  color: var(--cyan);
  border-color: var(--border);
  background: var(--cyan-lo);
}

.btn-xl { padding: 14px 28px; font-size: 1rem; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 1.05rem; }

/* ─── GRADIENT TEXT ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SECTION EYEBROW (replaces .section-label) ─── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-lo);
  border: 1px solid var(--border-hi);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-eyebrow.centered {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 20px;
}

/* ─── SECTION TITLES ─── */
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.section-title.centered { text-align: center; }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 56px;
}
.section-desc.centered { text-align: center; margin: 0 auto 56px; }

/* ─── STATUS DOT ─── */
.status-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 6px var(--green); }
  50%       { box-shadow: 0 0 18px var(--green), 0 0 32px rgba(34,197,94,0.3); }
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(6, 11, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all var(--trans);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.nav-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.nav-cta {
  font-size: 0.85rem;
  padding: 9px 18px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 140px 80px 80px;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 2;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}
.badge-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}
.badge-sep { color: rgba(34,197,94,0.4); }
.badge-stat { color: rgba(34,197,94,0.8); font-size: 0.75rem; }

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.7s 0.1s ease both;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-line-1 { color: var(--text-muted); font-weight: 600; }
.hero-line-2 { font-size: clamp(3rem, 6vw, 5rem); }
.hero-line-3 { color: var(--white); }

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-dim);
  animation: fadeInUp 0.7s 0.4s ease both;
}
.trust-label { font-weight: 600; white-space: nowrap; }
.trust-badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--trans);
}
.trust-chip:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: var(--indigo-lo);
}

/* TERMINAL */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.9s 0.3s ease both;
}

.terminal-shell {
  background: rgba(11,18,32,0.9);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(99,102,241,0.15), 0 30px 60px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.terminal-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.tc-dots { display: flex; gap: 7px; align-items: center; }
.tc-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.tc-dot.red    { background: #ff5f57; }
.tc-dot.yellow { background: #febc2e; }
.tc-dot.green  { background: #28c840; }
.tc-title {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-left: 6px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  flex: 1;
  text-align: center;
}
.tc-actions {
  font-size: 0.8rem;
  color: var(--text-dim);
  cursor: pointer;
}

.terminal-body {
  padding: 18px 22px;
  font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.t-line {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: termLine 0.3s ease forwards;
}
.t-line:nth-child(1) { animation-delay: 0.5s; }
.t-line:nth-child(2) { animation-delay: 0.9s; }
.t-line:nth-child(3) { animation-delay: 1.3s; }
.t-line:nth-child(4) { animation-delay: 1.7s; }
.t-line:nth-child(5) { animation-delay: 2.1s; }
.t-line:nth-child(6) { animation-delay: 2.5s; }
.t-line:nth-child(7) { animation-delay: 2.9s; }
.t-line:nth-child(8) { animation-delay: 3.3s; }
@keyframes termLine {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

.t-prompt { color: var(--cyan); font-weight: 700; }
.t-cmd { color: var(--text); }
.t-prompt-line { margin-top: 4px; }

.t-status {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}
.t-status.ok {
  background: rgba(34,197,94,0.12);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.25);
}
.t-status.warn {
  background: rgba(234,179,8,0.1);
  color: var(--yellow);
  border: 1px solid rgba(234,179,8,0.25);
}

.hl-green  { color: var(--green); }
.hl-yellow { color: var(--yellow); }

.t-cursor {
  color: var(--indigo);
  animation: blink 1.2s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* HERO METRICS ROW */
.hero-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hm-card {
  background: rgba(11,18,32,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hm-card:hover {
  border-color: var(--indigo);
  box-shadow: var(--glow-ind);
  transform: translateY(-2px);
}
.hm-ring {
  width: 56px; height: 56px;
  flex-shrink: 0;
}
.hm-svg { width: 100%; height: 100%; }
.hm-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hm-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-align: center;
}

/* SCROLL CUE */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  z-index: 2;
  animation: fadeIn 1s 2s ease both;
}
.scroll-bar {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--indigo), transparent);
  border-radius: 2px;
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ─── TICKER ─── */
.ticker-wrap {
  background: rgba(99,102,241,0.06);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 1;
  pointer-events: none;
}
.ticker-wrap::before { left: 0;  background: linear-gradient(90deg,  var(--bg), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.ticker-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.ticker-sep { color: var(--indigo) !important; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
#services {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
#services::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--indigo), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--indigo), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-6px);
  box-shadow: var(--glow-ind), 0 20px 60px rgba(0,0,0,0.4);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: rgba(99,102,241,0.3);
  background: linear-gradient(135deg, rgba(99,102,241,0.05), var(--bg-2));
}

.sc-glow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.08) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover .sc-glow { opacity: 1; }

.sc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.service-icon-wrap {
  width: 56px; height: 56px;
  background: var(--indigo-lo);
  border: 1px solid var(--border-hi);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  transition: all var(--trans);
}
.service-card:hover .service-icon-wrap {
  background: var(--indigo);
  color: white;
  box-shadow: 0 0 24px rgba(99,102,241,0.4);
}

.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-lo);
  border: 1px solid rgba(6,182,212,0.2);
  padding: 3px 10px;
  border-radius: 100px;
}
.service-tag.critical {
  color: #f87171;
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.2);
}
.service-tag.always-on {
  color: var(--green);
  background: rgba(34,197,94,0.08);
  border-color: rgba(34,197,94,0.2);
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--indigo);
  font-size: 0.8rem;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--trans), color var(--trans);
}
.service-link:hover { gap: 12px; color: var(--cyan); }

/* ═══════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════ */
#process {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-card {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(24px);
  text-align: center;
}
.process-card.visible { opacity: 1; transform: translateY(0); }
.process-card:hover {
  border-color: var(--border-hi);
  box-shadow: var(--glow-ind);
  transform: translateY(-6px);
}

.process-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  margin-bottom: 16px;
}
.process-card:hover .process-num { opacity: 1; }

.process-icon {
  width: 56px; height: 56px;
  background: var(--indigo-lo);
  border: 1px solid var(--border-hi);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  margin: 0 auto 20px;
  transition: all var(--trans);
}
.process-card:hover .process-icon {
  background: var(--indigo);
  color: white;
  box-shadow: 0 0 20px rgba(99,102,241,0.4);
}

.process-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.process-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.process-duration {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-lo);
  border: 1px solid rgba(6,182,212,0.2);
  padding: 4px 12px;
  border-radius: 100px;
}

.process-connector {
  width: 40px;
  flex-shrink: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--cyan));
  align-self: center;
  margin-top: -40px;
  opacity: 0.4;
  position: relative;
}
.process-connector::after {
  content: '›';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cyan);
  font-size: 1rem;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   WHY US
   ═══════════════════════════════════════════ */
#why-us {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-desc { margin-bottom: 36px; }

.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}
.why-point.visible { opacity: 1; transform: translateX(0); }
.why-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--indigo), #4f46e5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 2px;
  box-shadow: 0 0 16px rgba(99,102,241,0.3);
}
.why-point strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 6px; }
.why-point p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* COMPARISON TABLE */
.comparison-table {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.comp-header {
  display: grid;
  grid-template-columns: 1fr 90px 110px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.comp-col-feat,
.comp-col-oth,
.comp-col-us {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
}
.comp-col-feat { text-align: left; color: var(--text-muted); }
.comp-col-us   { color: var(--indigo); }

.comp-row {
  display: grid;
  grid-template-columns: 1fr 90px 110px;
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
  transition: background var(--trans);
}
.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: rgba(255,255,255,0.02); }

.comp-feat { font-size: 0.87rem; color: var(--text-muted); }
.comp-val  { display: flex; align-items: center; justify-content: center; }

.cv-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--green);
  font-weight: 700;
}
.cv-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--red);
  font-weight: 700;
}
.cv-partial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: rgba(234,179,8,0.08);
  border: 1px solid rgba(234,179,8,0.2);
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--yellow);
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════ */
#stats {
  padding: 120px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
}
.stat-card.visible { opacity: 1; transform: translateY(0); }
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--cyan));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.stat-card:hover {
  border-color: var(--border-hi);
  box-shadow: var(--glow-ind);
  transform: translateY(-6px);
}
.stat-card:hover::after { transform: scaleX(1); }

.stat-icon {
  width: 44px; height: 44px;
  background: var(--indigo-lo);
  border: 1px solid var(--border-hi);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  margin: 0 auto 16px;
  transition: all var(--trans);
}
.stat-card:hover .stat-icon {
  background: var(--indigo);
  color: white;
  box-shadow: 0 0 20px rgba(99,102,241,0.4);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--white) 50%, var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.stat-sub { font-size: 0.8rem; color: var(--text-dim); }

/* ═══════════════════════════════════════════
   SOLUTIONS / STACK
   ═══════════════════════════════════════════ */
#solutions {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stack-category {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--trans);
}
.stack-category:hover { border-color: var(--border-hi); box-shadow: var(--glow-ind); }

.stack-cat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 16px;
}
.stack-items { display: flex; flex-wrap: wrap; gap: 8px; }

.stack-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all var(--trans);
  cursor: default;
}
.stack-pill:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-lo); }

/* ═══════════════════════════════════════════
   FOUNDERS
   ═══════════════════════════════════════════ */
#founders {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.founder-card {
  display: flex;
  gap: 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.founder-card.visible { opacity: 1; transform: translateY(0); }
.founder-card:hover {
  border-color: var(--border-hi);
  box-shadow: var(--glow-ind);
  transform: translateY(-4px);
}

.founder-avatar-wrap {
  flex-shrink: 0;
  position: relative;
}
.founder-avatar-wrap::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  z-index: 0;
  opacity: 0.3;
  animation: ringPulse 3s ease infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50%       { transform: scale(1.1); opacity: 0.6; }
}
.founder-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}
.founder-avatar::before {
  content: attr(data-letter);
}

.founder-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.founder-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--indigo);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.founder-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.founder-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.founder-chips span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cyan);
  background: var(--cyan-lo);
  border: 1px solid rgba(6,182,212,0.2);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
#testimonials {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tcard {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--trans);
  opacity: 0;
  transform: translateY(20px);
}
.tcard.visible { opacity: 1; transform: translateY(0); }
.tcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--indigo), transparent);
  opacity: 0;
  transition: opacity var(--trans);
}
.tcard:hover { border-color: var(--border-hi); }
.tcard:hover::before { opacity: 1; }

.tcard-highlight {
  border-color: rgba(99,102,241,0.35);
  background: linear-gradient(135deg, rgba(99,102,241,0.06), var(--bg-3));
}
.tcard-highlight::before { opacity: 1; }

.tcard-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.tcard-quote {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 28px;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tcard-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif;
}
.tcard-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  font-style: normal;
  margin-bottom: 2px;
}
.tcard-org {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════ */
#cta-band {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.cta-inner {
  text-align: center;
  position: relative;
  padding: 80px 60px;
  background: var(--bg-2);
  border: 1px solid var(--border-hi);
  border-radius: 28px;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
}
.cta-orb-l {
  background: radial-gradient(circle, var(--indigo), transparent 70%);
  top: -150px; left: -100px;
}
.cta-orb-r {
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  bottom: -150px; right: -100px;
}

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
#contact {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc { margin-bottom: 40px; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-icon {
  width: 40px; height: 40px;
  background: var(--indigo-lo);
  border: 1px solid var(--border-hi);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  flex-shrink: 0;
  transition: all var(--trans);
}
.contact-item:hover .ci-icon {
  background: var(--indigo);
  color: white;
  box-shadow: 0 0 16px rgba(99,102,241,0.3);
}
.contact-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
}
.contact-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-social {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--trans);
}
.social-btn:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: var(--indigo-lo);
  box-shadow: 0 0 16px rgba(99,102,241,0.2);
}

/* FORM */
.contact-form, .form-success {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 60px 40px;
}
.form-success h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
}
.form-success p { color: var(--text-muted); }
.success-icon {
  width: 72px; height: 72px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: all var(--trans);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
  background: var(--indigo-lo);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.form-group select option { background: var(--bg-3); color: var(--text); }
.form-privacy {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
#footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin: 16px 0 20px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-logo {
  margin-bottom: 4px;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--green);
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 5px 12px;
  border-radius: 100px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 12px;
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--indigo); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-dim); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.82rem; color: var(--text-dim); transition: color var(--trans); }
.footer-legal a:hover { color: var(--indigo); }

/* ─── KEYFRAME ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  #hero {
    grid-template-columns: 1fr;
    padding: 140px 32px 80px;
    gap: 48px;
    max-width: 700px;
  }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .founders-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid {
    flex-direction: column;
    gap: 16px;
  }
  .process-connector {
    width: 2px;
    height: 32px;
    align-self: center;
    margin-top: 0;
    background: linear-gradient(to bottom, var(--indigo), var(--cyan));
  }
  .process-connector::after {
    content: '›';
    right: auto;
    bottom: -12px;
    top: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(6,11,20,0.97);
    border-bottom: 1px solid var(--border);
    padding: 24px 32px;
    gap: 4px;
    backdrop-filter: blur(20px);
    z-index: 999;
  }
  .nav-links.open + .nav-actions {
    display: flex;
    position: fixed;
    top: calc(72px + 320px);
    left: 0; right: 0;
    padding: 16px 32px;
    background: rgba(6,11,20,0.97);
    gap: 12px;
    flex-direction: column;
    z-index: 999;
  }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr; }
  .stack-grid    { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-links  { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-inner { padding: 48px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .founder-card { flex-direction: column; align-items: flex-start; }
  .hero-metrics-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  #hero { padding: 120px 20px 60px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .footer-links  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-metrics-row { grid-template-columns: 1fr; }
  .process-card { padding: 24px 20px; }
  .cta-inner { padding: 40px 20px; }
}

/* ═══════════════════════════════════════════
   SERVICE MODALS
   ═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-panel {
  background: var(--bg-2);
  border: 1px solid var(--border-hi);
  border-radius: 24px;
  width: 100%;
  max-width: 760px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(99,102,241,0.12);
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  scrollbar-width: thin;
  scrollbar-color: var(--indigo) transparent;
}
.modal-overlay.open .modal-panel {
  transform: translateY(0);
}
.modal-panel::-webkit-scrollbar { width: 4px; }
.modal-panel::-webkit-scrollbar-thumb { background: var(--indigo); border-radius: 2px; }

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
  line-height: 1;
}
.modal-close:hover {
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.3);
  color: #f87171;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  padding-right: 40px;
}
.modal-icon {
  width: 60px; height: 60px;
  background: var(--indigo-lo);
  border: 1px solid var(--border-hi);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  flex-shrink: 0;
}
.modal-icon--red   { background: rgba(239,68,68,0.08); border-color: rgba(239,68,68,0.25); color: #f87171; }
.modal-icon--green { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.25); color: var(--green); }
.modal-icon--cyan  { background: var(--cyan-lo); border-color: rgba(6,182,212,0.25); color: var(--cyan); }

.modal-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 6px;
}
.modal-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.modal-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.modal-body { display: flex; flex-direction: column; gap: 28px; }

.modal-section h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-section h3::before {
  content: '';
  display: inline-block;
  width: 3px; height: 16px;
  background: linear-gradient(to bottom, var(--indigo), var(--cyan));
  border-radius: 2px;
  flex-shrink: 0;
}
.modal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.modal-section ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
}
.modal-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--indigo);
  font-size: 0.8rem;
  top: 2px;
}

.modal-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
  padding: 24px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.outcome-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.outcome-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white) 40%, var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.outcome-card span:last-child {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
}

.modal-cta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
}
.modal-close-link { text-decoration: none; }

@media (max-width: 600px) {
  .modal-panel { padding: 32px 24px; }
  .modal-outcomes { grid-template-columns: 1fr; }
  .modal-header { flex-direction: column; gap: 14px; }
}
