:root {
  --font-heading: "Barlow Semi Condensed", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --primary: #2f2a6d;
  --primary-rgb: 47, 42, 109;
  --butter: #f6d36b;
  --mint: #9fe3c3;
  --rose: #f4a7b9;

  --bg: #fffbf5;
  --card: rgba(255, 255, 255, 0.82);
  --border: rgba(47, 42, 109, 0.12);
  --text: #1d1a2b;
  --muted: rgba(29, 26, 43, 0.72);
  --shadow: 0 20px 60px rgba(46, 36, 78, 0.12);
  --radius: 18px;
  --transition: 220ms ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 251, 245, 0.7);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(16px, 3vw, 32px);
  gap: 18px;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--primary);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.4px;
}

.logo-lockup {
  height: 44px;
  width: auto;
  display: block;
}

.btn {
  border: 1px solid transparent;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  font-family: var(--font-heading);
}

.btn.primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 30px rgba(47, 42, 109, 0.2);
}

.btn.primary:hover {
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(47, 42, 109, 0.3);
  color: var(--primary);
}

.btn.outline {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(47, 42, 109, 0.2);
  color: var(--primary);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  min-height: 85vh;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  position: relative;
  z-index: 2;
  width: 100%;
  pointer-events: none;
  padding-left: clamp(16px, 6vw, 72px);
}

.hero-graph {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-copy {
  max-width: 560px;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.hero-copy * {
  pointer-events: auto;
}

.network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

.demo {
  position: relative;
  overflow: hidden;
}

.demo-canvas {
  opacity: 0.3;
}

.demo .container {
  position: relative;
  z-index: 2;
}

.insight {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.insight-canvas {
  opacity: 0.25;
}

.insight .container {
  position: relative;
  z-index: 2;
}

.hero h1,
section h2 {
  font-family: var(--font-heading);
}

.hero h1 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 18px;
}

.section-head h2,
.leaders h2,
.how h2,
.shadow h2,
.pricing h2,
.faq h2,
.final-cta h2 {
  font-size: clamp(30px, 4vw, 34px);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero .subhead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 22px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(47, 42, 109, 0.7);
  font-weight: 600;
  margin-bottom: 12px;
}

.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.trust-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-chips span {
  background: rgba(47, 42, 109, 0.08);
  border: 1px solid rgba(47, 42, 109, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}


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

.graph-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
}

.graph-sub {
  font-size: 13px;
  color: var(--muted);
}

.mini-graph {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(78vw, 1200px);
  overflow: visible;
  pointer-events: auto;
}

.mini-graph.hero-graph-bridge {
  position: fixed;
  z-index: 6;
  pointer-events: none;
  transform-origin: top left;
  will-change: transform, opacity;
  right: auto;
  bottom: auto;
}

.mini-graph.hero-graph-embedded {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: auto;
  opacity: 0.9;
}

.mini-graph.hero-graph-bridge .graph-overlay,
.mini-graph.hero-graph-bridge .hero-tooltip {
  opacity: 0;
  pointer-events: none;
}

.mini-graph.hero-graph-embedded .graph-overlay,
.mini-graph.hero-graph-embedded .hero-tooltip {
  opacity: 0;
  pointer-events: none;
}

.mini-graph svg {
  width: 100%;
  height: 100%;
  display: block;
}

.graph-overlay {
  position: absolute;
  bottom: 26px;
  right: 32px;
  display: grid;
  gap: 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(47, 42, 109, 0.12);
  border-radius: 16px;
  padding: 12px 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 32px rgba(47, 42, 109, 0.12);
  pointer-events: auto;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 12px;
  color: var(--muted);
}

.legend.compact span {
  font-size: 11px;
}

.graph-actions {
  display: grid;
  gap: 6px;
}

.btn.btn-xs {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
}

.graph-note {
  font-size: 11px;
  color: var(--muted);
}

.hero-tooltip {
  position: absolute;
  min-width: 180px;
  max-width: 220px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 42, 109, 0.18);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 16px 40px rgba(47, 42, 109, 0.18);
  backdrop-filter: blur(8px);
  font-size: 12px;
  color: var(--muted);
  pointer-events: none;
  transform: translate(-50%, -120%);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 3;
}

.hero-tooltip strong {
  display: block;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 6px;
}

#hero-mini-graph .hero-node {
  transition: opacity var(--transition), r var(--transition);
}

#hero-mini-graph .node-removed {
  opacity: 0.08;
}

#hero-mini-graph .node-hole {
  stroke: rgba(244, 167, 185, 0.9);
  stroke-width: 2.2;
}

#hero-mini-graph .link-removed {
  opacity: 0.05;
}

.hero-tooltip .tooltip-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

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

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

.swatch-product {
  background: #2f2a6d;
}

.swatch-eng {
  background: #5b4bd2;
}

.swatch-design {
  background: #f4a7b9;
}

.swatch-sales {
  background: #f6d36b;
}

.swatch-marketing {
  background: #9fe3c3;
}

.card-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 18px;
}

.score {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.score-value {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary);
}

.score-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
}

.metrics {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.metric {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

.meter {
  height: 8px;
  background: rgba(47, 42, 109, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--butter), var(--primary));
  border-radius: inherit;
}

.alert {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

.demo {
  padding: 80px 0;
}

.section-head {
  margin-bottom: 24px;
  max-width: 720px;
}

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

.insight-card {
  border-radius: 22px;
  border: 1px solid rgba(47, 42, 109, 0.14);
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.insight-card.insight-network {
  display: grid;
  grid-template-rows: auto minmax(240px, 1fr) auto;
  gap: 12px;
}

.insight-label {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(47, 42, 109, 0.6);
  margin-bottom: 16px;
  font-weight: 600;
}

.org-tree {
  height: 100%;
}

.org-tree-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.org-line {
  stroke: rgba(47, 42, 109, 0.25);
  stroke-width: 1.2;
}

.org-node {
  fill: rgba(47, 42, 109, 0.12);
  stroke: rgba(47, 42, 109, 0.22);
  stroke-width: 1;
}

.org-node.subtle {
  fill: rgba(47, 42, 109, 0.08);
}

.org-node.faint {
  fill: rgba(47, 42, 109, 0.05);
}

.org-node.ceo {
  fill: rgba(47, 42, 109, 0.16);
}

.org-text {
  font-size: 11px;
  fill: rgba(47, 42, 109, 0.85);
  font-weight: 600;
  text-anchor: middle;
  dominant-baseline: middle;
}

.org-text.small {
  font-size: 10px;
  font-weight: 500;
}

.org-text.xsmall {
  font-size: 9px;
  font-weight: 500;
}

.insight-network {
  background: linear-gradient(160deg, rgba(255, 247, 235, 0.85), rgba(255, 255, 255, 0.9));
}

.insight-network-stage {
  position: relative;
  height: auto;
  min-height: 320px;
  border-radius: 18px;
  border: 1px solid rgba(47, 42, 109, 0.12);
  background: radial-gradient(circle at 25% 25%, rgba(246, 211, 107, 0.18), transparent 55%),
    radial-gradient(circle at 70% 20%, rgba(159, 227, 195, 0.2), transparent 50%),
    rgba(255, 255, 255, 0.65);
  overflow: hidden;
}

.insight-markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.insight-markers .silo-boundary {
  position: absolute;
  width: 180px;
  height: 120px;
  border: 1px dashed rgba(244, 167, 185, 0.6);
  border-radius: 50%;
  top: 35%;
  left: 18%;
  transform: rotate(-8deg);
}

.insight-markers .bottleneck-edge {
  position: absolute;
  width: 140px;
  height: 2px;
  background: rgba(246, 211, 107, 0.8);
  top: 55%;
  left: 48%;
  transform: rotate(-18deg);
  box-shadow: 0 0 10px rgba(246, 211, 107, 0.6);
}

.outcomes {
  padding: 80px 0;
}

.outcome {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}

.outcome:last-child {
  margin-bottom: 0;
}

.outcome.reversed {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.outcome.reversed .outcome-copy {
  order: 2;
}

.outcome-copy h3 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 600;
  margin-bottom: 12px;
}

.outcome-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.outcome-list span {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(47, 42, 109, 0.14);
  background: rgba(47, 42, 109, 0.05);
}

.outcome-card {
  border-radius: 20px;
  border: 1px solid rgba(47, 42, 109, 0.14);
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  min-height: 300px;
  position: relative;
  box-shadow: var(--shadow);
}

.outcome-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(47, 42, 109, 0.6);
  margin-bottom: 12px;
  font-weight: 600;
}

.outcome-network {
  position: relative;
  height: 240px;
  border-radius: 16px;
  border: 1px solid rgba(47, 42, 109, 0.12);
  background: radial-gradient(circle at 25% 25%, rgba(246, 211, 107, 0.12), transparent 55%),
    radial-gradient(circle at 75% 30%, rgba(159, 227, 195, 0.16), transparent 50%),
    rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.outcome-graph {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.outcome-graph svg {
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: center;
  transition: transform 400ms ease;
}

.outcome-graph .outcome-link {
  stroke: rgba(47, 42, 109, 0.25);
  stroke-width: 1.2;
  opacity: 0.55;
}

.outcome-graph .outcome-link.recommend {
  stroke: rgba(159, 227, 195, 0.9);
  stroke-dasharray: 4 6;
  opacity: 0.8;
}

.outcome-graph .outcome-link.dim {
  opacity: 0.08;
}

.outcome-graph .outcome-link.highlight {
  stroke: rgba(47, 42, 109, 0.8);
  stroke-width: 1.8;
  opacity: 1;
}

.outcome-graph .outcome-node {
  fill: rgba(47, 42, 109, 0.2);
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 1.2;
  transition: opacity var(--transition), transform var(--transition), r var(--transition);
  opacity: 0.65;
  cursor: pointer;
}

.outcome-graph .cluster-0 {
  fill: rgba(47, 42, 109, 0.6);
}

.outcome-graph .cluster-1 {
  fill: rgba(91, 75, 210, 0.7);
}

.outcome-graph .cluster-2 {
  fill: rgba(244, 167, 185, 0.75);
}

.outcome-graph .cluster-3 {
  fill: rgba(246, 211, 107, 0.8);
}

.outcome-graph .cluster-4 {
  fill: rgba(159, 227, 195, 0.9);
}

.outcome-graph .outcome-node.dim {
  opacity: 0.25;
}

.outcome-graph .outcome-node.key {
  opacity: 1;
}

.outcome-card.identify .outcome-graph .outcome-node.key {
  fill: rgba(91, 75, 210, 0.95);
  stroke: rgba(255, 255, 255, 0.95);
}

.outcome-card.onboarding .outcome-graph .outcome-node.key {
  fill: rgba(159, 227, 195, 0.95);
  stroke: rgba(255, 255, 255, 0.95);
}

.outcome-card.onboarding .outcome-graph .outcome-node.newhire {
  fill: rgba(159, 227, 195, 0.98);
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 2.2;
  filter: drop-shadow(0 10px 18px rgba(63, 171, 140, 0.35));
  transform: scale(1.08);
  transform-box: fill-box;
  transform-origin: center;
}

.outcome-card.onboarding .outcome-graph .outcome-node.hub {
  fill: rgba(91, 75, 210, 0.98);
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 2.2;
  filter: drop-shadow(0 12px 22px rgba(91, 75, 210, 0.35));
  transform: scale(1.12);
  transform-box: fill-box;
  transform-origin: center;
}

.outcome-card.retention .outcome-graph .outcome-node.risk {
  fill: rgba(244, 167, 185, 0.95);
  stroke: rgba(255, 255, 255, 0.95);
}


.outcome-card.identify .badge.bridge,
.outcome-card.identify .badge.overload {
  opacity: 0.6;
}

.outcome-graph .outcome-node.highlight {
  opacity: 1;
  stroke-width: 2.2;
  filter: drop-shadow(0 6px 12px rgba(47, 42, 109, 0.3));
}

.outcome-card:hover .outcome-graph .outcome-node {
  opacity: 0.4;
}

.outcome-card:hover .outcome-graph .outcome-node.key {
  opacity: 1;
}

.outcome-graph[data-outcome="identify"] svg {
  transform: scale(1.08) translate(-18px, -8px);
}

.outcome-graph[data-outcome="onboarding"] svg {
  transform: scale(1.12) translate(10px, -6px);
}

.outcome-graph[data-outcome="retention"] svg {
  transform: scale(1.02) translate(0, 2px);
}

.outcome-graph .cluster-boundary {
  fill: none;
  stroke: rgba(244, 167, 185, 0.45);
  stroke-width: 1.4;
  stroke-dasharray: 6 6;
}

.outcome-overlay {
  position: absolute;
  inset: 16px;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 2;
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(47, 42, 109, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
}

.badge.hub {
  border-color: rgba(246, 211, 107, 0.7);
  background: rgba(246, 211, 107, 0.2);
}

.badge.bridge {
  border-color: rgba(91, 75, 210, 0.6);
  background: rgba(91, 75, 210, 0.12);
}

.badge.overload {
  border-color: rgba(244, 167, 185, 0.7);
  background: rgba(244, 167, 185, 0.16);
}

.ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 10px solid rgba(159, 227, 195, 0.35);
  border-top-color: rgba(159, 227, 195, 0.9);
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 11px;
  color: rgba(47, 42, 109, 0.7);
  background: rgba(255, 255, 255, 0.8);
}

.ring strong {
  display: block;
  font-size: 16px;
  color: var(--primary);
  margin-top: 6px;
}

.scrubber {
  display: inline-flex;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(47, 42, 109, 0.16);
  background: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  color: rgba(47, 42, 109, 0.7);
}

.scrubber .active {
  color: var(--primary);
  font-weight: 600;
}

.risk-pill {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  border: 1px solid rgba(244, 167, 185, 0.6);
  background: rgba(244, 167, 185, 0.18);
  color: rgba(47, 42, 109, 0.8);
}

@keyframes riskPulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.18);
  }
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
}
.insight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: rgba(47, 42, 109, 0.7);
}

.insight-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(47, 42, 109, 0.16);
  background: rgba(47, 42, 109, 0.06);
}

.insight-caption {
  font-size: 12px;
  color: var(--muted);
}

.insight-legend {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.demo-shell {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.75));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 28px;
}

.demo-controls {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filters,
.modes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47, 42, 109, 0.15);
  background: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.chip.active {
  background: rgba(47, 42, 109, 0.12);
  color: var(--primary);
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(47, 42, 109, 0.2);
}

.toggle input {
  display: none;
}

.toggle-track {
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: rgba(47, 42, 109, 0.2);
  position: relative;
  transition: background var(--transition);
}

.toggle-track::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  top: 2px;
  left: 2px;
  transition: transform var(--transition);
}

.toggle input:checked + .toggle-track {
  background: var(--primary);
}

.toggle input:checked + .toggle-track::after {
  transform: translateX(16px);
}

.demo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.graph-card {
  border-radius: 18px;
  border: 1px solid rgba(47, 42, 109, 0.15);
  background: radial-gradient(circle at 20% 20%, rgba(246, 211, 107, 0.2), transparent 55%),
    radial-gradient(circle at 70% 30%, rgba(159, 227, 195, 0.25), transparent 50%),
    linear-gradient(180deg, #fff7eb, #ffffff);
  position: relative;
  min-height: 520px;
  overflow: hidden;
  will-change: opacity, transform;
}

.graph-mode {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(47, 42, 109, 0.16);
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(47, 42, 109, 0.08);
}

#graph {
  width: 100%;
  height: 520px;
  position: relative;
  z-index: 1;
}

.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--mint), var(--primary));
}

.panel-name {
  font-weight: 600;
  font-size: 18px;
  font-family: var(--font-heading);
}

.panel-meta {
  font-size: 13px;
  color: var(--muted);
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
}

.stat-value {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-heading);
}

.panel-callout {
  background: rgba(47, 42, 109, 0.08);
  border-radius: 14px;
  padding: 14px;
  font-size: 14px;
  color: var(--muted);
}

.panel-actions {
  display: flex;
  gap: 10px;
}

.panel-mini {
  font-size: 13px;
  color: var(--muted);
}

.leaders,
.how,
.shadow,
.privacy,
.pricing,
.faq {
  padding: 80px 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 8px;
}

.info-card p,
.info-card li {
  font-size: 14px;
  color: var(--muted);
}

.info-card ul {
  margin-left: 16px;
  display: grid;
  gap: 8px;
}

.icon {
  font-size: 26px;
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 10px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.steps.steps-linear {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
}

.step {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
}

.step-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(47, 42, 109, 0.12);
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 12px;
}

.step.step-connect .step-icon {
  background: rgba(159, 227, 195, 0.4);
  color: #1c4d3a;
}

.step.step-map .step-icon {
  background: rgba(246, 211, 107, 0.45);
  color: #7a5a10;
}

.step.step-act .step-icon {
  background: rgba(244, 167, 185, 0.45);
  color: #7a2b43;
}

.step p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.step-arrow {
  font-size: 18px;
  color: rgba(47, 42, 109, 0.55);
  font-weight: 600;
}

.step-num {
  font-size: 12px;
  color: rgba(47, 42, 109, 0.6);
  letter-spacing: 1.4px;
}

.shadow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.shadow ul {
  margin-top: 18px;
  margin-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.mini-cluster {
  height: 220px;
  border-radius: 20px;
  border: 1px solid rgba(47, 42, 109, 0.15);
  background: radial-gradient(circle at 20% 20%, rgba(159, 227, 195, 0.4), transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(244, 167, 185, 0.5), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 251, 245, 0.9));
  position: relative;
}

.cluster-node {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(47, 42, 109, 0.2);
  box-shadow: 0 8px 20px rgba(47, 42, 109, 0.2);
}

.cluster-node:nth-child(1) {
  top: 40px;
  left: 40px;
}

.cluster-node:nth-child(2) {
  top: 90px;
  left: 90px;
}

.cluster-node:nth-child(3) {
  top: 130px;
  left: 50px;
}

.cluster-node:nth-child(4) {
  top: 60px;
  right: 60px;
}

.cluster-node:nth-child(5) {
  bottom: 50px;
  right: 90px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.coverage {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.coverage div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.pricing-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: start;
}

.pricing-copy h2 {
  margin-bottom: 16px;
}

.pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47, 42, 109, 0.25);
  color: rgba(47, 42, 109, 0.75);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.pricing-copy p {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
}

.pricing-highlights {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pricing-highlights li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(47, 42, 109, 0.85);
}

.pricing-highlights li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 42, 109, 0.35);
  color: rgba(47, 42, 109, 0.75);
  font-size: 12px;
  margin-top: 2px;
  flex: 0 0 22px;
}

.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(47, 42, 109, 0.2);
  border-radius: 22px;
  padding: 28px;
  display: grid;
  gap: 14px;
  box-shadow: 0 22px 55px rgba(47, 42, 109, 0.12);
}

.pricing-pill {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(246, 211, 107, 0.35);
  color: #7a5a10;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-amount {
  font-size: 40px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
}

.pricing-amount span {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.pricing-constraints {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-constraints span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(47, 42, 109, 0.2);
  font-size: 12px;
  color: rgba(47, 42, 109, 0.7);
}

.pricing-rows {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.pricing-row span:last-child {
  color: rgba(47, 42, 109, 0.8);
  font-weight: 600;
  text-align: right;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-microcopy,
.pricing-footnote {
  font-size: 12px;
  color: var(--muted);
}

.pricing-footnote {
  border-top: 1px solid rgba(47, 42, 109, 0.12);
  padding-top: 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.price-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  gap: 14px;
  position: relative;
}

.price-card.featured {
  border-color: rgba(47, 42, 109, 0.45);
  box-shadow: 0 30px 70px rgba(47, 42, 109, 0.2);
}

.price {
  font-size: 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
}

.price-card ul {
  margin-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.pill {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(47, 42, 109, 0.12);
  color: var(--primary);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.accordion {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.accordion details {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 18px;
}

.accordion summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
}

.final-cta {
  padding: 70px 0;
  background: linear-gradient(120deg, rgba(47, 42, 109, 0.18), rgba(159, 227, 195, 0.3), rgba(244, 167, 185, 0.2));
}

.footer {
  padding: 40px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 26px;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.blob-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  filter: blur(40px);
  opacity: 0.16;
  border-radius: 50%;
}

.reveal {
  animation: rise 800ms ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tooltip {
  position: absolute;
  background: rgba(29, 26, 43, 0.85);
  color: white;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  pointer-events: none;
  transform: translate(-50%, -110%);
  white-space: nowrap;
}

.links .link {
  stroke: rgba(47, 42, 109, 0.4);
  stroke-width: 1.2;
  transition: opacity var(--transition);
}

.links .link.highlight {
  stroke: rgba(47, 42, 109, 0.65);
  stroke-width: 1.6;
}

.links .link.dim {
  opacity: 0.08;
}

.nodes .node {
  stroke: white;
  stroke-width: 1.2;
  transition: opacity var(--transition), r var(--transition);
}

.nodes .node.highlight {
  stroke-width: 2.3;
  filter: url(#glow);
}

.nodes .node.dim {
  opacity: 0.12;
}

.nodes .node.selected {
  stroke: white;
  stroke-width: 2.5;
  filter: url(#glow);
}

.nodes .node.hole {
  stroke: rgba(244, 167, 185, 0.95);
  stroke-width: 2.4;
}

.nodes .node.pulse {
  animation: pulse 1.8s ease-in-out infinite;
}

.node-label {
  font-size: 11px;
  fill: rgba(29, 26, 43, 0.7);
  pointer-events: none;
}

.dimmed {
  opacity: 0.12;
}

.links .link.severed {
  stroke: rgba(244, 167, 185, 0.9);
  stroke-dasharray: 6 4;
  opacity: 0.8;
}

.hull {
  stroke-width: 1.2;
  opacity: 0.7;
}

.hull.silo-risk {
  stroke: rgba(244, 167, 185, 0.9);
  fill: rgba(244, 167, 185, 0.2);
}

.hull-label {
  font-size: 11px;
  fill: rgba(47, 42, 109, 0.8);
  text-anchor: middle;
  pointer-events: none;
}

.links .link.cross-dim {
  opacity: 0.08;
}

@keyframes pulse {
  0% {
    r: 8px;
    opacity: 0.7;
  }
  50% {
    r: 12px;
    opacity: 1;
  }
  100% {
    r: 8px;
    opacity: 0.7;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 75vh;
  }

  .mini-graph {
    width: 100%;
    right: 0;
    top: 0;
    height: 100%;
  }

  .graph-overlay {
    right: 20px;
    bottom: 20px;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .demo-grid {
    grid-template-columns: 1fr;
  }

  .insight-shell {
    grid-template-columns: 1fr;
  }

  .outcome,
  .outcome.reversed {
    grid-template-columns: 1fr;
  }

  .outcome.reversed .outcome-copy {
    order: 0;
  }

  .panel {
    order: 2;
  }

  .card-grid,
  .steps,
  .pricing-grid,
  .pricing-offer,
  .privacy-grid,
  .footer-grid,
  .shadow-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 24px;
  }

  .pricing-pill {
    position: static;
    justify-self: start;
    margin-bottom: 8px;
  }

  .steps.steps-linear {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 70px;
    min-height: 65vh;
  }

  .hero h1 {
    font-size: 40px;
  }

  .graph-card,
  #graph {
    min-height: 420px;
    height: 420px;
  }

  .insight-card {
    min-height: 360px;
    padding: 18px;
  }

  .insight-network-stage {
    min-height: 260px;
  }

  .outcome-card {
    min-height: 260px;
  }

  .outcome-network {
    height: 200px;
  }

  .mini-graph {
    width: 100%;
    right: 0;
    top: 0;
    height: 100%;
  }

  .graph-overlay {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nodes .node.pulse {
    animation: none;
  }
}
