/* =================================================================
   AUM Pulse — Landing Page
   Built to brand guidelines v1.0 (S60). Dark, data-native, refined.
   Bloomberg Terminal meets Apple. Depth via surface steps, not shadows.
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Foundation */
  --bg: #08090f;
  --s1: #0d1117;
  --s2: #111318;
  --s3: #161b22;
  --icon-inner: #0a0b14;

  /* Brand */
  --indigo: #6366f1;
  --indigo-light: #818cf8;
  --indigo-deep: #4f46e5;
  --cyan: #06b6d4;
  --green: #10b981;
  --amber: #f59e0b;
  --red: #ef4444;
  --gold: #fbbf24;

  /* Text */
  --text: #ddeaf6;
  --text-2: #8faec8;
  --muted: #5c7a94;
  --disabled: #364f66;

  /* Borders */
  --border: rgba(255, 255, 255, 0.05);
  --border-soft: rgba(255, 255, 255, 0.06);
  --border-input: rgba(255, 255, 255, 0.08);
  --border-active: rgba(99, 102, 241, 0.4);

  /* Gradients */
  --plasma: conic-gradient(from 0deg, #4f46e5, #818cf8, #06b6d4, #10b981, #f59e0b, #4f46e5);
  --ekg: linear-gradient(to right, #10b981, #818cf8, #06b6d4);
  --cta: linear-gradient(135deg, #6366f1, #818cf8);
  --sidebar-accent: linear-gradient(180deg, transparent, #6366f1, #818cf8, #10b981, transparent);

  /* Type */
  --sans: 'Plus Jakarta Sans', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --serif: 'Lora', serif;

  /* Layout */
  --maxw: 1200px;
  --gutter: 32px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text-2);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: rgba(129, 140, 248, 0.28); color: #fff; }

/* Subtle grain overlay for data-native depth (no blur, no shadow) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--indigo-light);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(to right, var(--indigo), transparent);
}

h1, h2, h3 { color: var(--text); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; }

.section-head { max-width: 760px; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-top: 18px;
}
.lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--text-2);
  margin-top: 16px;
  max-width: 600px;
}
.body {
  font-size: 17px;
  color: var(--text-2);
  margin-top: 22px;
  max-width: 580px;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }
section { position: relative; z-index: 2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  padding: 13px 22px;
  transition: filter 0.15s ease, border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary { background: var(--cta); color: #fff; }
.btn-primary:hover { filter: brightness(1.1); }

.btn-ghost { color: var(--text); border: 1px solid var(--border-input); background: var(--s1); }
.btn-ghost:hover { border-color: var(--border-active); color: #fff; }

.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 12px; }

.logo-icon {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-icon::before {
  content: "";
  position: absolute;
  inset: -55%;
  background: var(--plasma);
  animation: plasma-spin 4s linear infinite;
}
.logo-icon-inner {
  position: absolute;
  inset: 2px;
  border-radius: 9px;
  background: var(--icon-inner);
  z-index: 1;
  display: grid;
  place-items: center;
}
.logo-icon-inner svg { width: 78%; height: 78%; }

.logo-icon.lg { width: 56px; height: 56px; border-radius: 15px; }
.logo-icon.lg .logo-icon-inner { border-radius: 13px; }

@keyframes plasma-spin { to { transform: rotate(360deg); } }

.ekg-line { fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ekg-line.draw {
  stroke-dasharray: 64;
  stroke-dashoffset: 64;
  animation: ekg-draw 3s ease-in-out infinite;
}
@keyframes ekg-draw {
  0%   { stroke-dashoffset: 64; opacity: 0.15; }
  45%  { stroke-dashoffset: 0;  opacity: 1; }
  75%  { stroke-dashoffset: 0;  opacity: 1; }
  100% { stroke-dashoffset: -64; opacity: 0.15; }
}

.wordmark { display: flex; flex-direction: column; line-height: 1; }
.wordmark .name {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #fff;
}
.wordmark .name b { color: var(--indigo-light); font-weight: 800; }
.wordmark .sub {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 6.5px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgba(129, 140, 248, 0.45);
  margin-top: 4px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.nav.scrolled {
  background: rgba(8, 9, 15, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-soft);
}
/* Gradient glow line along the navbar's bottom edge (anchors to the sticky .nav) */
.nav-bottom-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #10b981 25%, #6366f1 50%, #10b981 75%, transparent 100%);
  opacity: 0.7;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a:hover { color: var(--indigo-light); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .text-link { font-size: 13px; font-weight: 600; color: var(--text-2); transition: color 0.15s; }
.nav-cta .text-link:hover { color: #fff; }

/* Neon green-to-indigo left border on the nav logo icon */
.nav-glow-icon {
  position: relative;
  overflow: hidden;
}

.nav-glow-icon::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #10b981 0%, #6366f1 100%);
  z-index: 2;
}

/* Trimmed nav links + CTA */
.nav-link-divider {
  width: 1px;
  height: 16px;
  background: #1e2a3a;
  flex-shrink: 0;
}

.nav-cta-btn {
  background: #6366f1;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.nav-cta-btn:hover { background: #4f46e5; }

/* ---------- Hero ---------- */
.hero { padding: 96px 0 110px; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 760px;
  background: radial-gradient(ellipse 50% 50% at 50% 40%, rgba(99, 102, 241, 0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* faint terminal grid */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 7px 13px 7px 10px;
  border: 1px solid var(--border-input);
  border-radius: 99px;
  background: var(--s1);
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(16,185,129,0.5);
  animation: pulse-dot 2.4s ease-out infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.45); }
  70% { box-shadow: 0 0 0 7px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.hero h1 {
  font-size: clamp(44px, 6vw, 66px);
  line-height: 1.04;
  margin: 24px 0 0;
}
.hero h1 .accent { color: var(--indigo-light); }
.hero .lead {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(19px, 2.3vw, 23px); /* spec floor is 18px; current is larger — kept */
  line-height: 1.65;
  color: #8faec8;
  margin-top: 22px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* ---------- Brief card (hero visual) ---------- */
/* Ambient glow behind the card — a background layer only, never a box-shadow */
.hero-visual { position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 140px);
  height: calc(100% + 140px);
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.brief-card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  position: relative;
  z-index: 1; /* sit above the ambient glow */
  overflow: hidden; /* clip the full-width brief rows + cadence bar to the rounded corners */
}
.brief-card .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}
.card-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.pill {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid var(--border-input);
  color: var(--text-2);
}
.pill.green { color: var(--green); border-color: rgba(16,185,129,0.3); background: rgba(16,185,129,0.07); }
.pill.amber { color: var(--amber); border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.07); }
.pill.indigo { color: var(--indigo-light); border-color: var(--border-active); background: rgba(99,102,241,0.08); }

.brief-identity { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.brief-name { font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.brief-aum { font-family: var(--mono); font-size: 12px; margin-top: 5px; display: flex; align-items: baseline; gap: 7px; }
.brief-aum b { color: var(--gold); font-size: 13px; font-weight: 700; letter-spacing: 0.02em; }
.brief-aum .lbl { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* Pulse score — circular gauge (reused from the ring component; color set by score in JS) */
.pulse-ring { position: relative; width: 64px; height: 64px; flex-shrink: 0; }
.pulse-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: var(--s3); stroke-width: 5; }
.ring-prog {
  fill: none;
  stroke: var(--green); /* default; JS overrides via score thresholds */
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dashoffset: 176; /* starts empty; JS sets precise arc on view */
  transition: stroke-dashoffset 0.7s ease-out;
}
.ring-center { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.ring-center .num { font-family: var(--sans); font-size: 20px; font-weight: 700; color: var(--green); letter-spacing: -0.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.ring-center .cap { font-family: var(--mono); font-size: 7px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #5c7a94; margin-top: 3px; }

.pill .pdot { width: 5px; height: 5px; border-radius: 99px; background: currentColor; display: inline-block; margin-right: 6px; vertical-align: middle; }

/* Stage bar — segmented progress (product-consistent) */
.brief-stagebar { margin-top: 18px; }
.brief-stage-top { display: flex; align-items: center; gap: 12px; margin-bottom: 11px; }
.stage-count { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.seg-bar { display: flex; gap: 6px; }
.seg { flex: 1; height: 4px; border-radius: 99px; background: var(--s3); }
.seg.done { background: var(--green); }
.seg.current { background: var(--amber); }

.brief-ekg {
  margin: 16px 0 16px;
  height: 46px;
  background: var(--s2);
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  display: grid;
  place-items: center;
  padding: 0 10px;
  overflow: hidden;
}
.brief-ekg svg { width: 100%; height: 30px; }
.ekg-breathe {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  animation: ekg-breathe 3.4s ease-in-out infinite;
}
@keyframes ekg-breathe {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 1; }
}

/* (Old hero icon-row styles removed — the hero card now uses the shared .brief-row left-border treatment.) */

/* Synthesized output rows — the prospect synthesis (signature feature) */
.synth-rows { margin-top: 16px; }
.synth-row {
  --c: var(--muted);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--border-soft);
}
.synth-row:first-child { border-top: none; padding-top: 4px; }
.synth-row.c-green  { --c: var(--green); }
.synth-row.c-amber  { --c: var(--amber); }
.synth-row.c-indigo { --c: var(--indigo-light); }
.synth-row.c-cyan   { --c: var(--cyan); }
.synth-label {
  display: flex; align-items: flex-start; gap: 7px;
  font-family: var(--mono); font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; line-height: 1.4;
  color: var(--c);
}
.synth-label .sdot { width: 6px; height: 6px; border-radius: 99px; background: var(--c); flex-shrink: 0; margin-top: 3px; }
.synth-text { font-family: var(--serif); font-style: italic; font-size: 15px; line-height: 1.5; color: var(--text); }

/* Stagger-reveal: rows write themselves in when the card enters view */
.anim-on .synth-row { opacity: 0; transform: translateY(8px); }
.synth-in .synth-row { animation: synth-up 0.5s ease-out forwards; }
.synth-in .synth-row:nth-child(1) { animation-delay: 0.12s; }
.synth-in .synth-row:nth-child(2) { animation-delay: 0.30s; }
.synth-in .synth-row:nth-child(3) { animation-delay: 0.48s; }
.synth-in .synth-row:nth-child(4) { animation-delay: 0.66s; }
@keyframes synth-up { to { opacity: 1; transform: none; } }

/* Cadence™ engine badge */
.pc-badge {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(129, 140, 248, 0.55);
}
.pc-badge .pc-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--plasma);
  animation: plasma-spin 4s linear infinite;
  flex-shrink: 0;
}
/* Variant: text left, animated green pulse dot on the right */
.pc-badge--alt { justify-content: space-between; color: rgba(129, 140, 248, 0.6); }
.pc-badge--alt .pc-pulse {
  width: 7px; height: 7px; border-radius: 99px;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease-out infinite;
}

/* ---------- Pre-call brief dossier (Feature 1 visual) ---------- */
.precall-card {
  position: relative;
  background: #0d1117;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 22px;
  overflow: hidden; /* clip the full-width bottom bars to the card's rounded corners */
}
.precall-card::before { /* subtle indigo glow behind the card */
  content: "";
  position: absolute;
  inset: -30px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.06), transparent 70%);
  pointer-events: none;
}

/* Stage strip: INTRO → STRATEGY → … with the current stage highlighted */
.stage-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--disabled);
}
.stage-strip .ss-cur { color: var(--amber); }
.stage-strip .ss-sep { color: var(--disabled); opacity: 0.6; }

/* Closing-call brief card header (Pre-call Intelligence visual) */
.card-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.pre-call-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #5c7a94;
  text-transform: uppercase;
}

.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.30);
  border-radius: 20px;
  padding: 3px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #818cf8;
  text-transform: uppercase;
}

.closing-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #818cf8;
}

.recommendation-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.30);
  border-radius: 20px;
  padding: 3px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #f59e0b;
  text-transform: uppercase;
}

.recommendation-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f59e0b;
}

/* pir2-body / prospect-label — the .pir2-card has no padding (sections self-pad);
   this padded wrapper insets the new flat content while .compliance-bar stays full-width below it */
.pir2-body { padding: 20px 22px 0; }
.prospect-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #5c7a94;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* card-meta / card-name / card-aum were not in the spec's CSS — added so the name + vital row lays out correctly */
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.card-name { font-family: var(--sans); font-size: 20px; font-weight: 700; color: #ddeaf6; letter-spacing: -0.01em; }
.card-aum { font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; color: #fbbf24; margin-top: 5px; }

.vital-wrap {
  text-align: right;
}

.vital-num {
  font-size: 26px;
  font-weight: 800;
  color: #10b981;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.vital-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: #5c7a94;
}

.vital-delta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #10b981;
  opacity: 0.7;
}

/* Vital™ circular gauge — SVG ring + centered number (restores the gauge treatment) */
.vital-gauge-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.vital-gauge-wrap svg {
  position: absolute;
  top: 0;
  left: 0;
}

.vital-gauge-inner {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vital-gauge-num {
  font-size: 15px;
  font-weight: 800;
  color: #10b981;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.vital-gauge-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  color: #5c7a94;
  text-transform: uppercase;
}

.vital-gauge-delta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  color: #10b981;
  opacity: 0.7;
}

/* Stack the gauge with the delta below it (Prospect Intelligence Record card) */
.vital-gauge-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.vital-delta-below {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #10b981;
  opacity: 0.7;
  letter-spacing: 0.06em;
}

.stage-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 8px;
}

.stage-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: #10b981;
  text-transform: uppercase;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 10px;
  padding: 2px 8px;
}

.stage-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #5c7a94;
  letter-spacing: 0.06em;
}

.stage-bars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stage-bar {
  height: 3px;
  flex: 1;
  border-radius: 2px;
}

.stage-bar.filled { background: #10b981; }
.stage-bar.empty  { background: #1e2a3a; }
.stage-bar.upcoming {
  background: #f59e0b;
  opacity: 0.7;
}

/* Signal block — indigo card treatment */
.signal-block {
  margin: 12px 20px 16px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 8px;
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
  animation: signalBlockPulse 4s ease-in-out infinite;
}

.signal-block-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(90deg, transparent, rgba(129, 140, 248, 0.08), transparent);
  animation: signalScanline 5s ease-in-out infinite;
  pointer-events: none;
}

.signal-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.signal-block-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  color: #818cf8;
  text-transform: uppercase;
}

.signal-block-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: #10b981;
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 10px;
  padding: 2px 8px;
  text-transform: uppercase;
}

.signal-block-text {
  font-size: 13px;
  color: #ddeaf6;
  line-height: 1.7;
  font-style: italic;
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 1;
}

@keyframes signalBlockPulse {
  0%, 100% {
    box-shadow: 0 0 8px rgba(129, 140, 248, 0.15);
    border-color: rgba(99, 102, 241, 0.25);
  }
  50% {
    box-shadow: 0 0 18px rgba(129, 140, 248, 0.30);
    border-color: rgba(99, 102, 241, 0.40);
  }
}

@keyframes signalScanline {
  0% { left: -10%; }
  100% { left: 110%; }
}

/* Four intelligence rows */
.intel-rows { margin-top: 16px; }
.intel-row { padding: 13px 0; border-top: 1px solid rgba(255, 255, 255, 0.04); }
.intel-row:first-child { border-top: none; padding-top: 4px; }
.intel-head { display: flex; align-items: center; gap: 7px; }
.intel-dot { width: 6px; height: 6px; border-radius: 99px; flex-shrink: 0; }
.intel-label { font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #5c7a94; }
.intel-value { font-family: var(--sans); font-size: 13px; color: #ddeaf6; line-height: 1.5; margin-top: 6px; }

/* Brief content rows — left-border accent treatment (shared by the hero + pre-call brief cards) */
.brief-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 20px 20px;
  margin: 0 -22px; /* full-bleed past the card's 22px padding so the 20px inset reads correctly */
}
.brief-row {
  display: block; /* override the hero brief card's flex .brief-row — this card stacks label over content */
  padding-left: 14px;
}
.brief-row--green { border-left: 2px solid #10b981; }
.brief-row--amber { border-left: 2px solid #f59e0b; }
.brief-row--red   { border-left: 2px solid #ef4444; }
.brief-row--indigo { border-left: 2px solid #818cf8; }

.brief-row-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.brief-row--green  .brief-row-label { color: #10b981; }
.brief-row--amber  .brief-row-label { color: #f59e0b; }
.brief-row--red    .brief-row-label { color: #ef4444; }
.brief-row--indigo .brief-row-label { color: #818cf8; }

.brief-row-content {
  font-size: 13px;
  color: #8faec8;
  line-height: 1.9;
  font-family: 'Inter', sans-serif;
}

.brief-highlight {
  color: #ddeaf6;
}

/* Hero EKG — animated canvas (replaces the static SVG strip) */
.hero-ekg-wrap {
  height: 40px;
  margin: 0 0 16px;
  position: relative;
  overflow: hidden;
}

.hero-ekg-wrap canvas {
  display: block;
  width: 100%;
  height: 40px;
}

/* Cadence bar sits flush in the hero brief card (which uses 22px padding) */
.brief-card .cadence-bar { margin: 14px -22px -22px; }

/* Self-improving intelligence callout — full-bleed band before the badge */
.smart-callout {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px -22px 0; /* extend to the card's inner edges (card padding is 22px) */
  padding: 10px 16px;
  background: rgba(129, 140, 248, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.smart-callout .sc-ic { color: #818cf8; flex-shrink: 0; margin-top: 2px; display: inline-flex; }
.smart-callout .sc-ic svg { width: 12px; height: 12px; }
.sc-label { font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #818cf8; }
.sc-desc { font-family: var(--sans); font-size: 12px; color: #5c7a94; line-height: 1.5; margin-top: 4px; }

/* Gold "gets smarter" bars — full-bleed to the pre-call card edges (card padding is 22px) */
.precall-card .gets-smarter-bar { margin: 16px -22px 0; }
.precall-card .cadence-updates-bar { margin: 0 -22px -22px; } /* immediately below + flush to the card's bottom */

.gets-smarter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(251, 191, 36, 0.04);
  border-top: 1px solid rgba(251, 191, 36, 0.18);
  animation: goldBarBreathe 3s ease-in-out infinite;
}

.gets-smarter-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  flex-shrink: 0;
  animation: goldDotPulse 3s ease-in-out infinite;
}

.gets-smarter-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #fbbf24;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
}

.cadence-updates-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 20px;
  background: rgba(251, 191, 36, 0.02);
  border-top: 1px solid rgba(251, 191, 36, 0.08);
  animation: goldBarBreathe 3s ease-in-out 0.4s infinite;
}

.cadence-updates-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fbbf24;
  flex-shrink: 0;
  opacity: 0.6;
}

.cadence-updates-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #fbbf24;
  opacity: 0.55;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(251, 191, 36, 0.3);
}

@keyframes goldBarBreathe {
  0%, 100% {
    box-shadow: 0 -6px 28px rgba(251, 191, 36, 0.12), inset 0 1px 0 rgba(251, 191, 36, 0.10);
    opacity: 0.85;
  }
  50% {
    box-shadow: 0 -6px 40px rgba(251, 191, 36, 0.22), inset 0 1px 0 rgba(251, 191, 36, 0.18);
    opacity: 1;
  }
}

@keyframes goldDotPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 6px #fbbf24, 0 0 12px rgba(251, 191, 36, 0.5);
  }
  50% {
    transform: scale(1.6);
    box-shadow: 0 0 10px #fbbf24, 0 0 20px rgba(251, 191, 36, 0.7);
  }
}

/* Note beneath a visual panel (e.g. compliance line under synthesis) */
.card-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #10b981;
  text-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
  line-height: 1.5;
}
.card-note svg { width: 12px; height: 12px; color: #10b981; flex-shrink: 0; }

/* ---------- Cadence™ live intelligence card (Post-Call Synthesis, left) ---------- */
.cadence-card {
  position: relative;
  overflow: hidden;
  background: #0d1117;
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.cadence-wave { /* decorative full-width heartbeat behind the content */
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 70%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}
.cadence-wave path {
  fill: none;
  stroke: rgba(99, 102, 241, 0.10);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cadence-content { position: relative; z-index: 1; }

.cadence-top {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 8px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: #6366f1;
}
.cadence-top .cadence-dot {
  width: 6px; height: 6px; border-radius: 99px; background: #6366f1; flex-shrink: 0;
  animation: cadence-pulse 1.8s ease-in-out infinite;
}
@keyframes cadence-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
}

.cadence-rows { margin-top: 16px; display: flex; flex-direction: column; gap: 4px; }
/* Rows are always visible; a scanning highlight (toggled in JS) moves down them */
.cadence-row {
  padding: 10px 12px;
  border-radius: 6px;
  border-left: 2px solid transparent;
  background: transparent;
  transition: background 400ms ease, border-left-color 400ms ease;
}
.cadence-row.r1.active { background: rgba(16, 185, 129, 0.06); border-left-color: #10b981; }
.cadence-row.r2.active { background: rgba(245, 158, 11, 0.06); border-left-color: #f59e0b; }
.cadence-row.r3.active { background: rgba(129, 140, 248, 0.06); border-left-color: #818cf8; }
.cadence-rl {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 8px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.cadence-rl .crd { width: 6px; height: 6px; border-radius: 99px; background: currentColor; flex-shrink: 0; }
.cadence-rl.green { color: #10b981; }
.cadence-rl.amber { color: #f59e0b; }
.cadence-rl.indigo { color: #818cf8; }
.cadence-rv { font-family: 'Lora', serif; font-style: italic; font-size: 13px; line-height: 1.5; color: #5c7a94; margin-top: 5px; transition: color 400ms ease; }
.cadence-row.active .cadence-rv { color: #ddeaf6; }

.cadence-divider { height: 1px; background: rgba(255, 255, 255, 0.05); margin: 16px 0; }
.cadence-foot {
  text-align: center;
  font-family: var(--mono); font-size: 8px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(129, 140, 248, 0.4);
}

/* Pull-quote moment between the Cadence™ card and the synthesis card */
.synth-quote { padding: 20px 0; }
.synth-quote-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: #8faec8;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.synth-quote-attr {
  text-align: center;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(129, 140, 248, 0.45);
}

/* ---------- Connector between the two synthesis cards ---------- */
.pir-connector { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 16px 0; }
.pir-conn-arrow { color: #10b981; display: inline-flex; animation: conn-flow 2s ease-in-out infinite; }
.pir-conn-arrow svg { width: 18px; height: 18px; }
.pir-conn-label { text-align: center; font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #10b981; }
@keyframes conn-flow { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

/* ---------- Prospect Intelligence Record card (clean prospect drawer) ---------- */
.pir2-card { background: #0d1117; border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 14px; overflow: hidden; }
.pir-live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #10b981; white-space: nowrap; }
.pir-live .dot { width: 6px; height: 6px; border-radius: 99px; background: #10b981; flex-shrink: 0; animation: pulse-dot 2.4s ease-out infinite; }

/* header */
.pir2-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; }

/* identity */
.pir2-identity { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 20px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.pir2-name { font-family: var(--sans); font-size: 20px; font-weight: 700; color: #ddeaf6; letter-spacing: -0.01em; }
.pir2-substage { font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #5c7a94; margin-top: 6px; }
.pir2-assets { display: flex; align-items: baseline; gap: 7px; margin-top: 9px; }
.pir2-assets b { font-family: var(--sans); font-size: 22px; font-weight: 700; color: #fbbf24; letter-spacing: -0.02em; }
.pir2-assets span { font-family: var(--mono); font-size: 7px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #5c7a94; }
.pulse-ring.pir2-ring { width: 52px; height: 52px; }
.pulse-ring.pir2-ring .ring-track,
.pulse-ring.pir2-ring .ring-prog { stroke-width: 7; }
.pulse-ring.pir2-ring .ring-center .num { font-size: 18px; }
.pulse-ring.pir2-ring .ring-center .cap { font-size: 6px; letter-spacing: 0.12em; margin-top: 1px; }

/* stage */
.pir2-stage { padding: 12px 20px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.pir2-stage-top { display: flex; align-items: center; gap: 12px; margin-bottom: 9px; }
.pir2-stage-name { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #f59e0b; }
.pir2-stage-name .d { width: 6px; height: 6px; border-radius: 99px; background: #f59e0b; flex-shrink: 0; }
.pir2-stage-count { font-family: var(--sans); font-size: 12px; color: #5c7a94; }
.pir2-segbar { display: flex; gap: 4px; }
.seg2 { flex: 1; height: 3px; border-radius: 99px; background: rgba(255, 255, 255, 0.08); }
.seg2.green { background: #10b981; }
.seg2.amber { background: #f59e0b; }

/* signal */
.pir2-signal-sec { padding: 14px 20px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.pir2-signal-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 9px; }
.pir2-signal-label { font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #5c7a94; }
.pir2-signal-badge { font-family: var(--mono); font-size: 7px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #10b981; border: 1px solid rgba(16, 185, 129, 0.3); border-radius: 4px; padding: 2px 6px; }
.pir2-signal-text { font-family: 'Lora', serif; font-style: italic; font-size: 13px; line-height: 1.65; color: #ddeaf6; }

/* intelligence summary rows */
.pir2-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.pir2-rows .pir2-row:first-child { border-top: 1px solid rgba(255, 255, 255, 0.05); }
.pir2-row-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #5c7a94; }
.pir2-row-label .d { width: 6px; height: 6px; border-radius: 99px; flex-shrink: 0; }
.pir2-row-label.green .d { background: #10b981; }
.pir2-row-label.amber .d { background: #f59e0b; }
.pir2-row-label.cyan .d { background: #06b6d4; }
.pir2-row-right { display: inline-flex; align-items: center; gap: 8px; }
.pir2-pill { font-family: var(--mono); font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 99px; border: 1px solid transparent; }
.pir2-pill.green { color: #10b981; background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.2); }
.pir2-pill.amber { color: #f59e0b; background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.2); }
.pir2-pill.cyan { color: #06b6d4; background: rgba(6, 182, 212, 0.1); border-color: rgba(6, 182, 212, 0.2); }
.pir2-row .ch { color: #5c7a94; display: inline-flex; }
.pir2-row .ch svg { width: 14px; height: 14px; }

/* gets smarter strip */
.pir2-smarter { display: flex; align-items: flex-start; gap: 12px; padding: 14px 20px; border-top: 1px solid rgba(255, 255, 255, 0.08); background: rgba(129, 140, 248, 0.04); margin-top: 4px; }
.pir2-smarter-ic { color: #818cf8; flex-shrink: 0; margin-top: 2px; display: inline-flex; }
.pir2-smarter-ic svg { width: 12px; height: 12px; }
.pir2-smarter-label { font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #818cf8; }
.pir2-smarter-desc { font-family: var(--sans); font-size: 11px; color: #5c7a94; line-height: 1.5; margin-top: 3px; }

/* ---------- Section scaffolding ---------- */
.section { padding: 110px 0; }
.section.tight { padding: 88px 0; }
.divider { height: 1px; background: var(--border-soft); }

/* Full-width gradient divider between the Demo CTA and the footer */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1e2a3a 20%, #818cf8 50%, #1e2a3a 80%, transparent);
  opacity: 0.6;
}

/* ---------- Problem ---------- */
.problem { text-align: center; }
.problem .section-head { margin: 0 auto; }
.problem .body {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: #8faec8;
  text-align: center;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.leak-vis {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 48px;
}
.leak-vis .node {
  width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: var(--s1);
  display: grid; place-items: center;
  color: var(--muted);
  position: relative;
}
.leak-vis .node svg { width: 18px; height: 18px; }
.leak-vis .node.cold { opacity: 0.32; }
.leak-vis .node.cold::after {
  content: ""; position: absolute; inset: -1px; border-radius: 12px;
  border: 1px dashed rgba(239,68,68,0.4);
}
.leak-vis .node.alive { color: var(--green); border-color: rgba(16,185,129,0.3); background: rgba(16,185,129,0.05); }
.leak-vis .arr { align-self: center; color: var(--disabled); }

/* ---------- Problem: three-moment prospect-card story ---------- */
.leak-story { margin-top: 48px; }
.story-row { display: flex; align-items: stretch; gap: 16px; }

.pcard {
  flex: 1;
  background: var(--s1);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 18px;
}
.pcard--healthy {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 0 26px rgba(16, 185, 129, 0.15);
}
.pcard--warning {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 26px rgba(245, 158, 11, 0.15);
}
.pcard--critical {
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 0 26px rgba(239, 68, 68, 0.15);
  opacity: 0.7; /* the loss — faded, nearly greyed out */
}

.pcard-badge {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid transparent;
}
.badge-amber { color: #f59e0b; border-color: rgba(245, 158, 11, 0.35); background: rgba(245, 158, 11, 0.08); }
.badge-mutedamber { color: rgba(245, 158, 11, 0.72); border-color: rgba(245, 158, 11, 0.2); background: rgba(245, 158, 11, 0.05); }
.badge-red { color: #ef4444; border-color: rgba(239, 68, 68, 0.35); background: rgba(239, 68, 68, 0.08); }

.pcard-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
}
.pcard-name { font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.pcard-status { font-family: var(--mono); font-size: 11px; letter-spacing: 0.02em; margin-top: 7px; line-height: 1.4; }
.pcard-status.green { color: #10b981; }
.pcard-status.amber { color: #f59e0b; }
.pcard-status.red { color: #ef4444; }

.story-arrow { align-self: center; color: #364f66; flex-shrink: 0; }
.story-arrow svg { width: 22px; height: 22px; }

.story-caption {
  text-align: center;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5c7a94;
}

@media (max-width: 760px) {
  .story-row { flex-direction: column; }
  .story-arrow { transform: rotate(90deg); }
}

/* ---------- Feature sections ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feature.reverse .feature-copy { order: 2; }
.feature.reverse .feature-visual { order: 1; }
/* Pipeline section: app card gets +40px of width; left copy column stays the same */
@media (min-width: 961px) {
  .feature.feature-wide { grid-template-columns: 0.93fr 1fr; gap: 32px; }
}

.feature-pairs {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
}
.fpair .fp-ic {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--s2);
  border: 1px solid var(--border-soft);
  display: grid; place-items: center;
  color: var(--indigo-light);
  margin-bottom: 12px;
}
.fpair .fp-ic svg { width: 17px; height: 17px; }
.fpair h4 { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; line-height: 1.3; }
.fpair p { font-size: 13.5px; color: var(--text-2); margin-top: 5px; line-height: 1.5; }

/* ---------- Post-Call Draft section ---------- */
/* Wrapper + copy classes mirror the existing section structure (.wrap / .feature /
   .eyebrow / .section-head / .lead / .body / .fpair) so spacing matches the rest of the page */
.section-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }
.section-inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.section-label-row { display: flex; align-items: center; gap: 9px; }
.section-label-line { width: 18px; height: 1px; background: linear-gradient(to right, var(--indigo), transparent); }
.section-label-text {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--indigo-light);
}
.section-headline {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.headline-indigo { color: var(--indigo-light); }
.section-subheadline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--text-2);
  margin-top: 16px;
  max-width: 600px;
}
/* Firm Intelligence subheadline — unique "pain" treatment (gold). Replaces the earlier
   .section--intelligence .section-subheadline indigo rule, which (specificity 0,2,0) would
   otherwise override this modifier and keep the text indigo. */
.section-subheadline--pain {
  color: #fbbf24;
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.3);
}

/* Demo CTA subheadline — gold treatment */
.section-subheadline--gold {
  color: #fbbf24;
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.25);
}
/* Indigo subheadline — for white-H1 sections (true #818cf8 vs base muted #8faec8) */
.section-subheadline--indigo {
  color: #818cf8;
}
.section-body { font-size: 17px; color: var(--text-2); margin-top: 22px; max-width: 580px; }
/* .feature-pairs is the existing shared grid; .feature-pair items mirror .fpair h4/p */
.feature-pair-title { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; line-height: 1.3; }
.feature-pair-body { font-size: 13.5px; color: var(--text-2); margin-top: 5px; line-height: 1.5; }

/* Draft email card visual */
.draft-card {
  background: #0d1117;
  border: 1px solid #1e2a3a;
  border-radius: 14px;
  overflow: hidden;
  animation: cardGlow 4s ease-in-out infinite;
}

@keyframes cardGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(99,102,241,0.08); }
  50% { box-shadow: 0 0 60px rgba(99,102,241,0.16); }
}

.draft-email-chrome {
  background: #111827;
  border-bottom: 1px solid #1e2a3a;
  padding: 12px 16px;
}

.draft-email-field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid #1a2535;
}

.draft-email-field:last-child { border-bottom: none; }

.draft-email-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #5c7a94;
  text-transform: uppercase;
  width: 48px;
  flex-shrink: 0;
}

.draft-email-value {
  font-size: 12px;
  color: #8faec8;
  font-family: 'Inter', sans-serif;
}

.draft-email-subject {
  color: #ddeaf6;
  font-weight: 500;
}

.draft-cadence-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.06);
  border-bottom: 1px solid rgba(99, 102, 241, 0.15);
}

.draft-cadence-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #818cf8;
  box-shadow: 0 0 6px #818cf8;
  flex-shrink: 0;
  animation: cadenceDotPulse 3s ease-in-out infinite;
}

.draft-cadence-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #818cf8;
  text-transform: uppercase;
  flex: 1;
}

.draft-editable-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  color: #5c7a94;
  text-transform: uppercase;
  border: 1px solid #1e2a3a;
  border-radius: 10px;
  padding: 2px 8px;
}

.draft-body {
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.draft-scan {
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(90deg, transparent, rgba(129, 140, 248, 0.04), transparent);
  animation: signalScanline 6s ease-in-out infinite;
  pointer-events: none;
}

.draft-para {
  font-size: 13px;
  color: #8faec8;
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  margin-bottom: 10px;
}

.draft-para:last-child { margin-bottom: 0; }

.draft-highlight { color: #ddeaf6; }

.draft-sig {
  color: #ddeaf6;
  display: block;
  font-weight: 600;
}

.draft-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 20px;
  border-top: 1px solid #111827;
}

.draft-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 3px 8px;
}

.draft-chip--green {
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.draft-chip--amber {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.draft-chip--indigo {
  color: #818cf8;
  background: rgba(129, 140, 248, 0.08);
  border: 1px solid rgba(129, 140, 248, 0.2);
}

.draft-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid #1e2a3a;
}

.draft-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #6366f1;
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.draft-regenerate {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #5c7a94;
  text-transform: uppercase;
}

/* The cadence bar's default margin assumes a 20px-padded card; .draft-card has none
   (sub-sections self-pad) + overflow:hidden, so neutralize it to sit flush at the bottom */
.draft-card .cadence-bar { margin: 0; }

/* ---------- Firm Intelligence section ---------- */
/* Wrapper + copy classes are shared with the Post-Call Draft section above;
   only .headline-red and the intelligence-card visual are new here. */
.headline-red {
  color: #ef4444;
}

.intelligence-card {
  background: #0d1117;
  border: 1px solid #1e2a3a;
  border-radius: 14px;
  overflow: hidden;
}

.intel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #1e2a3a;
}

.intel-title {
  font-size: 16px;
  font-weight: 700;
  color: #ddeaf6;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.intel-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  flex-shrink: 0;
}

.intel-metric {
  background: #111827;
  border-radius: 8px;
  padding: 10px 12px;
}

.intel-metric-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: #5c7a94;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.intel-metric-value {
  font-size: 18px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}

.intel-metric-value--green { color: #10b981; }
.intel-metric-value--gold  { color: #fbbf24; }
.intel-metric-value--indigo { color: #818cf8; }
.intel-metric-value--white { color: #ddeaf6; }

.intel-metric-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: #5c7a94;
  margin-top: 2px;
}

/* ---------- Firm Vitals™ card ---------- */
.card-meta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #5c7a94;
  text-transform: uppercase;
}

.vitals-top-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid #1e2a3a;
}

.vitals-gauge-block {
  padding: 18px 16px;
  border-right: 1px solid #1e2a3a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.vitals-gauge-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  animation: vitalsGaugePulse 3s ease-in-out infinite;
}

.vitals-gauge-wrap svg {
  position: absolute;
  top: 0; left: 0;
}

.vitals-gauge-inner {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vitals-gauge-num {
  font-size: 28px;
  font-weight: 800;
  color: #10b981;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.vitals-gauge-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: #5c7a94;
  text-transform: uppercase;
  margin-top: 2px;
}

.vitals-gauge-read {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 11px;
  color: #8faec8;
  text-align: center;
  line-height: 1.4;
}

@keyframes vitalsGaugePulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(16,185,129,0.4)); }
  50% { filter: drop-shadow(0 0 14px rgba(16,185,129,0.7)); }
}

.vitals-stats-col {
  display: flex;
  flex-direction: column;
}

.vitals-stats-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1e2a3a;
  border-bottom: 1px solid #1e2a3a;
}

.vitals-velocity-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.vitals-vel-item {
  padding: 10px 14px;
  border-right: 1px solid #1e2a3a;
}

.vitals-vel-item:last-child { border-right: none; }

.vitals-vel-track {
  height: 4px;
  background: #1a2535;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4px;
}

.vitals-vel-fill {
  height: 100%;
  border-radius: 2px;
}

.vitals-vel-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.vitals-ekg-section {
  padding: 14px 18px 10px;
  border-top: 1px solid #1e2a3a;
  border-bottom: 1px solid #111827;
}

.vitals-block-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #5c7a94;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.vitals-ekg-wrap {
  position: relative;
  height: 56px;
}

.vitals-stage-section {
  padding: 12px 18px 14px;
}

.vitals-stage-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-top: 10px;
}

.vitals-stage-card {
  background: #111827;
  border-radius: 7px;
  padding: 9px 6px;
  text-align: center;
}

.vitals-stage-card--alert {
  border: 1px solid rgba(239,68,68,0.35);
  background: rgba(239,68,68,0.07);
}

.vitals-stage-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.06em;
  color: #5c7a94;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.vitals-stage-pct {
  font-size: 16px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}

.vitals-stage-bar {
  height: 2px;
  border-radius: 2px;
  margin: 0 auto 5px;
  opacity: 0.5;
}

.vitals-stage-days {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  color: #5c7a94;
  margin-bottom: 1px;
}

.vitals-stage-drop {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  font-weight: 700;
}

/* The cadence bar's default margin assumes a 20px-padded card; .intelligence-card has none
   (sub-sections self-pad) + overflow:hidden, so neutralize it to sit flush at the bottom */
.intelligence-card .cadence-bar { margin: 0; }

/* Visual panels share a frame */
.panel {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}
.panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}

/* Personality quadrant */
.quad { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quad-cell {
  background: var(--s2);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 16px;
  min-height: 104px;
  transition: border-color 0.15s ease;
}
.quad-cell .qh { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.quad-cell .qh svg { width: 16px; height: 16px; }
.quad-cell .qt { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.quad-cell .qd { font-size: 12.5px; color: var(--text-2); margin-top: 10px; line-height: 1.45; opacity: 0; transition: opacity 0.2s; }
.quad-cell.active {
  border-color: var(--border-active);
  background: rgba(99,102,241,0.08);
}
.quad-cell.active .qh, .quad-cell.active .qt { color: var(--indigo-light); }
.quad-cell.active .qd { opacity: 1; color: var(--text); }

.coach {
  margin-top: 14px;
  display: flex; gap: 11px; align-items: flex-start;
  background: var(--s2);
  border: 1px solid var(--border-soft);
  border-left: 2px solid var(--indigo);
  border-radius: 10px;
  padding: 13px 15px;
}
.coach svg { width: 16px; height: 16px; color: var(--indigo-light); flex-shrink: 0; margin-top: 2px; }
.coach p { font-size: 13px; color: var(--text); line-height: 1.5; }
.coach b { color: var(--indigo-light); font-weight: 700; }

/* Pipeline visual */
.pipe-stages { display: flex; flex-direction: column; gap: 12px; }
.pipe-row { display: grid; grid-template-columns: 96px 1fr 44px; align-items: center; gap: 14px; }
.pipe-name { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); }
.pipe-track { height: 8px; border-radius: 99px; background: var(--s2); overflow: hidden; }
.pipe-fill { height: 100%; border-radius: 99px; background: var(--cta); width: 0; transition: width 1s ease-out; }
.pipe-fill.green { background: linear-gradient(90deg, var(--green), #34d399); }
.pipe-fill.amber { background: linear-gradient(90deg, var(--amber), #fbbf24); }
.pipe-count { font-family: var(--mono); font-size: 12px; color: var(--muted); text-align: right; }
.pipe-row.flag .pipe-name { color: var(--amber); }

.move-queue { margin-top: 18px; border-top: 1px solid var(--border-soft); padding-top: 16px; }
.move-item { display: flex; align-items: center; gap: 11px; padding: 9px 0; }
.move-item:not(:last-child) { border-bottom: 1px solid var(--border); }
.move-item .mi { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
.move-item .mi.amber { background: rgba(245,158,11,0.1); color: var(--amber); }
.move-item .mi.indigo { background: rgba(99,102,241,0.1); color: var(--indigo-light); }
.move-item .mi.green { background: rgba(16,185,129,0.1); color: var(--green); }
.move-item .mi svg { width: 15px; height: 15px; }
.move-item .mtxt { font-size: 13px; color: var(--text); }
.move-item .mtxt span { color: var(--muted); }
.move-item .mtime { margin-left: auto; font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.05em; }
.move-item .mtime.red { color: var(--red); }
.move-item .mtime.green { color: var(--green); }

/* ---------- Pipeline Health card (Pipeline feature visual) ---------- */
.pipeline-card {
  position: relative;
  background: #0d1117;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 20px;
}
.pipeline-card::before { /* subtle indigo glow behind the card */
  content: "";
  position: absolute;
  inset: -30px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.06), transparent 70%);
  pointer-events: none;
}

/* Section 1 — header strip (Pipeline Vital™ + full-width EKG) */
.ph-strip { padding-bottom: 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.ph-vital-label { font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #5c7a94; }
.ph-vital-row { display: flex; align-items: center; gap: 16px; margin-top: 4px; }
.ph-vital-score { font-family: var(--sans); font-size: 30px; font-weight: 700; color: #10b981; letter-spacing: -0.03em; line-height: 1; flex-shrink: 0; font-variant-numeric: tabular-nums; }
.ph-ekg { flex: 1; min-width: 0; height: 30px; display: block; }
.ph-ekg path { fill: none; stroke: rgba(16, 185, 129, 0.45); stroke-width: 1.5; vector-effect: non-scaling-stroke; stroke-linecap: round; stroke-linejoin: round; }

/* Stage circles row */
.stage-circles { display: flex; align-items: flex-start; margin-top: 16px; }
.sc-item { display: flex; flex-direction: column; align-items: center; gap: 7px; flex-shrink: 0; width: 48px; }
.sc-ring { width: 42px; height: 42px; border-radius: 99px; border: 2px solid; display: grid; place-items: center; font-family: var(--sans); font-size: 15px; font-weight: 700; color: #ddeaf6; }
.sc-ring.green { border-color: #10b981; }
.sc-ring.indigo { border-color: #818cf8; }
.sc-ring.amber { border-color: #f59e0b; }
.sc-ring.grey { border-color: #364f66; color: #5c7a94; }
.sc-name { font-family: var(--mono); font-size: 7px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #5c7a94; white-space: nowrap; }
.sc-conn { flex: 1; height: 2px; border-radius: 99px; margin-top: 20px; }

/* Section 2 — 2×2 stat grid */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.stat-card { border-radius: 10px; padding: 14px; }
.stat-card.s-indigo { background: rgba(99, 102, 241, 0.08); border: 1px solid rgba(99, 102, 241, 0.2); }
.stat-card.s-red { background: rgba(239, 68, 68, 0.06); border: 1px solid rgba(239, 68, 68, 0.15); }
.stat-card.s-amber { background: rgba(245, 158, 11, 0.06); border: 1px solid rgba(245, 158, 11, 0.15); }
.stat-card.s-green { background: rgba(16, 185, 129, 0.06); border: 1px solid rgba(16, 185, 129, 0.15); }
.stat-label { display: flex; align-items: center; font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #5c7a94; }
.stat-card.s-red .stat-label { color: #ef4444; }
.stat-card.s-amber .stat-label { color: #f59e0b; }
.stat-num { font-family: var(--sans); font-size: 28px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-top: 6px; font-variant-numeric: tabular-nums; }
.stat-card.s-indigo .stat-num { color: #ddeaf6; }
.stat-card.s-red .stat-num { color: #ef4444; }
.stat-card.s-amber .stat-num { color: #f59e0b; }
.stat-card.s-green .stat-num { color: #10b981; }
.stat-sub { font-family: var(--mono); font-size: 7px; letter-spacing: 0.04em; text-transform: uppercase; color: #364f66; margin-top: 4px; }
.stat-dot { width: 5px; height: 5px; border-radius: 99px; background: #f59e0b; margin-right: 5px; flex-shrink: 0; animation: cadence-pulse 1.8s ease-in-out infinite; }

/* Section 3 — prospect cards */
.pipe-prospects { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.pipe-prospect {
  position: relative;
  display: flex; gap: 14px;
  background: #111318;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 16px;
  overflow: hidden;
}
.pipe-prospect.healthy { border-color: rgba(16, 185, 129, 0.18); }
.pipe-prospect.risk { border-color: rgba(239, 68, 68, 0.18); }
.pipe-prospect::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; }
.pipe-prospect.healthy::before { background: #10b981; }
.pipe-prospect.risk::before { background: #ef4444; }

/* left sidebar column */
.pp-side { width: 160px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 9px; }
.pp-side .stage-marker { margin: 0; }
.pp-side .motion-badge { margin-top: 0; }
.pp-side .booking-status { margin-top: 0; }

/* main content column */
.pp-main { flex: 1; min-width: 0; }
.pp-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.pp-name { font-family: var(--sans); font-size: 16px; font-weight: 700; color: #ddeaf6; letter-spacing: -0.01em; }
.pp-id .pp-badge { margin-top: 7px; }
.pp-badge { display: inline-flex; font-family: var(--mono); font-size: 7px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: 99px; border: 1px solid transparent; white-space: nowrap; }
.pp-badge.amber { color: #f59e0b; border-color: rgba(245, 158, 11, 0.3); background: rgba(245, 158, 11, 0.08); }
.pp-badge.red { color: #ef4444; border-color: rgba(239, 68, 68, 0.3); background: rgba(239, 68, 68, 0.08); }
.pp-badge.indigo { color: #818cf8; border-color: rgba(99, 102, 241, 0.35); background: rgba(99, 102, 241, 0.1); }
.pp-assets { text-align: right; flex-shrink: 0; }
.pp-assets b { display: block; font-family: var(--sans); font-size: 16px; font-weight: 700; color: var(--gold); letter-spacing: -0.01em; }
.pp-assets span { font-family: var(--mono); font-size: 7px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #5c7a94; }
.pp-signal {
  font-family: 'Lora', serif; font-style: italic; font-size: 12px; line-height: 1.5; color: #8faec8;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid #6366f1;
  border-radius: 0 8px 8px 0;
  padding: 10px 12px;
  margin-top: 12px;
}
.pp-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.ptag { font-family: var(--mono); font-size: 7px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 7px; border-radius: 99px; border: 1px solid var(--border-input); color: #8faec8; }
.ptag.green { color: #10b981; border-color: rgba(16, 185, 129, 0.3); background: rgba(16, 185, 129, 0.07); }
.ptag.red { color: #ef4444; border-color: rgba(239, 68, 68, 0.3); background: rgba(239, 68, 68, 0.07); }

/* Small Vital circle reused inside the prospect cards */
.pulse-ring.sm { width: 46px; height: 46px; flex-shrink: 0; }
.pulse-ring.sm .ring-center .num { font-size: 15px; }
.pulse-ring.sm .ring-center .cap { font-size: 6px; letter-spacing: 0.12em; margin-top: 1px; }

/* Stage marker strip + status lines (prospect cards) */
.stage-marker { margin: 9px 0; }
.sm-track { position: relative; display: flex; align-items: center; justify-content: space-between; max-width: 120px; }
.sm-track::before {
  content: ""; position: absolute; left: 3.5px; right: 3.5px; top: 50%;
  height: 1px; background: rgba(255, 255, 255, 0.1); transform: translateY(-50%); z-index: 0;
}
.sm-dot { position: relative; z-index: 1; width: 7px; height: 7px; border-radius: 99px; background: #364f66; opacity: 0.4; }
.pipe-prospect.healthy .sm-dot.on { background: #10b981; opacity: 1; }
.pipe-prospect.risk .sm-dot.on { background: #ef4444; opacity: 1; }
.sm-label { font-family: var(--mono); font-size: 7px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #5c7a94; margin-top: 7px; }

.motion-badge {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 8px;
  font-family: var(--mono); font-size: 7px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.motion-badge .mb-dot { width: 5px; height: 5px; border-radius: 99px; background: currentColor; flex-shrink: 0; animation: cadence-pulse 1.8s ease-in-out infinite; }
.pipe-prospect.healthy .motion-badge { color: #10b981; }
.pipe-prospect.risk .motion-badge { color: #ef4444; }
.pipe-prospect.risk .motion-badge .mb-dot { animation: cadence-pulse 1s ease-in-out infinite; }

.booking-status { font-family: var(--mono); font-size: 7px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 6px; white-space: nowrap; }
.pipe-prospect.healthy .booking-status { color: #10b981; }
.pipe-prospect.risk .booking-status { color: #ef4444; }

/* ---------- In-Call Calendar card (In-Call Calendar feature visual) ---------- */
.ic-card { background: #0d1117; border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 14px; overflow: hidden; }

/* live call header */
.ic-callbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #08090f; padding: 13px 16px; }
.ic-call-name { font-family: var(--sans); font-size: 14px; font-weight: 700; color: #ddeaf6; }
.ic-call-type { font-family: var(--mono); font-size: 7px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #818cf8; margin-top: 3px; }
.ic-live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #10b981; }
.ic-live .dot { width: 6px; height: 6px; border-radius: 99px; background: #10b981; flex-shrink: 0; animation: pulse-dot 2.4s ease-out infinite; }
.ic-ekg { display: block; width: 100%; height: 20px; background: #08090f; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.ic-ekg path { fill: none; stroke: rgba(16, 185, 129, 0.3); stroke-width: 1.5; vector-effect: non-scaling-stroke; stroke-linecap: round; stroke-linejoin: round; }

.ic-content { padding: 18px; }

/* calendar header */
.ic-cal-head { text-align: center; }
.ic-book-title { font-family: var(--sans); font-size: 18px; font-weight: 700; color: #ddeaf6; letter-spacing: -0.01em; }
.ic-book-sub { font-family: 'Lora', serif; font-style: italic; font-size: 12px; color: #8faec8; margin-top: 6px; line-height: 1.45; }
.ic-book-sub a { font-style: normal; font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #818cf8; white-space: nowrap; }

/* stage pills */
.ic-stages { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 5px; margin: 14px 0 18px; }
.ic-stage { font-family: var(--mono); font-size: 7px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 8px; border-radius: 99px; border: 1px solid transparent; white-space: nowrap; }
.ic-stage.done { color: #10b981; border-color: rgba(16, 185, 129, 0.25); background: rgba(16, 185, 129, 0.06); opacity: 0.6; }
.ic-stage.current { color: #fff; background: #6366f1; }
.ic-stage.future { color: #5c7a94; border-color: var(--border-input); }
.ic-arrow { color: #364f66; font-size: 9px; }

/* body two columns */
.ic-body { display: flex; gap: 16px; align-items: flex-start; }
.ic-cal { flex: 1.45; min-width: 0; }
.ic-panel { flex: 1; min-width: 0; }

/* month nav */
.ic-month { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 10px; }
.ic-month span { font-family: var(--sans); font-size: 14px; font-weight: 600; color: #ddeaf6; }
.ic-nav { font-family: var(--sans); font-size: 15px; color: #5c7a94; width: 18px; height: 18px; line-height: 1; transition: color 0.15s ease; }
.ic-nav:hover { color: #818cf8; }

/* day grid */
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { text-align: center; font-family: var(--mono); font-size: 8px; font-weight: 700; color: #5c7a94; padding-bottom: 2px; }
.cal-day { aspect-ratio: 1; border-radius: 7px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border: 1px solid transparent; }
.cal-day.empty { background: transparent; border: none; }
.cal-day .cd-num { font-family: var(--sans); font-size: 12px; font-weight: 600; line-height: 1; }
.cal-day .cd-dots { display: flex; gap: 2px; }
.cal-day .cd-dots i { width: 3px; height: 3px; border-radius: 99px; display: block; }
.cal-day.ideal { background: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.3); }
.cal-day.ideal .cd-num { color: #10b981; }
.cal-day.ideal .cd-dots i { background: #10b981; }
.cal-day.good { background: rgba(245, 158, 11, 0.1); }
.cal-day.good .cd-num { color: #f59e0b; }
.cal-day.good .cd-dots i { background: #f59e0b; }
.cal-day.risky { background: rgba(239, 68, 68, 0.08); }
.cal-day.risky .cd-num { color: #ef4444; }
.cal-day.risky .cd-dots i { background: #ef4444; }
.cal-day.weekend { opacity: 0.3; }
.cal-day.selected { background: #6366f1; border-color: transparent; box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25); }
.cal-day.selected .cd-num { color: #fff; }
.cal-day.selected .cd-dots i { background: #fff; }

/* legend */
.ic-legend { display: flex; justify-content: center; gap: 14px; margin-top: 12px; }
.ic-legend .lg { display: inline-flex; align-items: center; gap: 5px; font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.ic-legend .lg::before { content: ""; width: 5px; height: 5px; border-radius: 99px; background: currentColor; }
.ic-legend .green { color: #10b981; }
.ic-legend .amber { color: #f59e0b; }
.ic-legend .red { color: #ef4444; }

/* right panel */
.ic-sr-label { font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #5c7a94; }
.ic-sr-date { font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #ddeaf6; margin-top: 5px; }
.ic-sr-pct { font-family: var(--sans); font-size: 36px; font-weight: 700; color: #10b981; letter-spacing: -0.03em; line-height: 1; margin-top: 6px; }
.ic-sr-note { font-family: 'Lora', serif; font-style: italic; font-size: 11px; color: rgba(16, 185, 129, 0.6); margin-top: 6px; }
.ic-divider { height: 1px; background: var(--border-soft); margin: 14px 0; }
.ic-times-label { font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #5c7a94; margin-bottom: 8px; }
.ic-times { display: flex; flex-direction: column; gap: 5px; }
.ic-slot { font-family: var(--sans); font-size: 13px; color: #ddeaf6; padding: 7px 11px; border-radius: 8px; border: 1px solid var(--border-soft); }
.ic-slot.selected { background: rgba(99, 102, 241, 0.15); border-color: var(--border-active); color: #fff; }

/* book CTA */
.ic-book-cta { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 18px; background: linear-gradient(135deg, #6366f1, #818cf8); color: #fff; font-family: var(--sans); font-size: 14px; font-weight: 700; padding: 13px; border-radius: 12px; transition: filter 0.15s ease; }
.ic-book-cta:hover { filter: brightness(1.1); }

/* sync line below the card */
.ic-sync { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #10b981; text-shadow: 0 0 12px rgba(16, 185, 129, 0.4); }
.ic-sync .dot { width: 6px; height: 6px; border-radius: 99px; background: #10b981; flex-shrink: 0; animation: pulse-dot 2.4s ease-out infinite; }

/* Two stacked footer bars inside the calendar card (clip to its rounded corners) */
.sync-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 20px;
  background: rgba(16, 185, 129, 0.04);
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  animation: complianceBarBreathe 3.5s ease-in-out infinite;
}

.sync-strip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  animation: complianceDotPulse 3.5s ease-in-out infinite;
}

.sync-strip-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #10b981;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

/* The cadence bar's default margin assumes a 20px-padded card; .ic-card has none
   (padding lives in .ic-content), so neutralize it to sit flush below the sync strip */
.ic-card .cadence-bar { margin: 0; }

@media (max-width: 560px) {
  .ic-body { flex-direction: column; }
}

/* Powered-by line below the card */
.pipe-powered {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px;
  font-family: var(--mono); font-size: 8px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(129, 140, 248, 0.35);
}
.pipe-powered .pp-dot {
  width: 7px; height: 7px; border-radius: 99px; background: var(--green); flex-shrink: 0;
  animation: pulse-dot 2.4s ease-out infinite;
}

/* Full-width "POWERED BY CADENCE™" bar flush at the bottom of the Pipeline card */
.cadence-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  margin: 14px -20px -20px; /* full-bleed to the card's edges + flush to its bottom (card padding is 20px) */
  border-radius: 0 0 13px 13px; /* clip to the card's rounded bottom (14px outer radius minus the 1px border) */
  background: rgba(99, 102, 241, 0.06);
  border-top: 1px solid rgba(99, 102, 241, 0.20);
  animation: cadenceBarBreathe 3s ease-in-out infinite;
}

.cadence-bar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #818cf8;
  flex-shrink: 0;
  animation: cadenceDotPulse 3s ease-in-out infinite;
}

.cadence-bar-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #818cf8;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(129, 140, 248, 0.7);
}

@keyframes cadenceBarBreathe {
  0%, 100% {
    box-shadow: 0 -6px 28px rgba(99, 102, 241, 0.15), inset 0 1px 0 rgba(129, 140, 248, 0.12);
    opacity: 0.85;
  }
  50% {
    box-shadow: 0 -6px 40px rgba(99, 102, 241, 0.28), inset 0 1px 0 rgba(129, 140, 248, 0.22);
    opacity: 1;
  }
}

@keyframes cadenceDotPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 6px #818cf8, 0 0 12px rgba(129, 140, 248, 0.5);
  }
  50% {
    transform: scale(1.6);
    box-shadow: 0 0 10px #818cf8, 0 0 20px rgba(129, 140, 248, 0.7);
  }
}

/* Cadence™ bar sits flush in the listening card (which uses 20px 24px padding, not 20px) */
.cadence-card .cadence-bar { margin: 14px -24px -20px; }

/* ---------- Compliance data-retention card ---------- */
.compliance-card {
  background: #0d1117;
  border: 1px solid #1e2a3a;
  border-radius: 14px;
  overflow: hidden;
}

.compliance-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #1e2a3a;
}

.compliance-header-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #5c7a94;
  text-transform: uppercase;
}

.compliance-after-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  padding: 3px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #10b981;
  text-transform: uppercase;
}

.compliance-after-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 5px #10b981;
}

.compliance-rows {
  display: flex;
  flex-direction: column;
}

@keyframes complianceRowScan {
  0%, 100% { background: transparent; }
  50% { background: rgba(16, 185, 129, 0.04); }
}

.compliance-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #111827;
}

.compliance-row:last-child { border-bottom: none; }
.compliance-row--scan1 { animation: complianceRowScan 3s ease-in-out 0s infinite; }
.compliance-row--scan2 { animation: complianceRowScan 3s ease-in-out 1s infinite; }
.compliance-row--scan3 { animation: complianceRowScan 3s ease-in-out 2s infinite; }

.compliance-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compliance-icon-wrap--red {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.compliance-icon-wrap--amber {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.compliance-icon-wrap--green {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.compliance-row-info { flex: 1; }

.compliance-row-title {
  font-size: 14px;
  font-weight: 700;
  color: #ddeaf6;
  font-family: 'Inter', sans-serif;
  margin-bottom: 3px;
}

.compliance-row-body {
  font-size: 12px;
  color: #8faec8;
  line-height: 1.5;
}

.compliance-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 10px;
  flex-shrink: 0;
}

.compliance-status--never {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.compliance-status--deleted {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.compliance-status--kept {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.compliance-cert-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px 20px;
  border-top: 1px solid #111827;
}

.compliance-cert-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #111827;
  border: 1px solid #1e2a3a;
  border-radius: 8px;
  padding: 8px 6px;
}

.compliance-cert-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  color: #10b981;
  text-transform: uppercase;
}

/* Full-width compliance bar flush at the bottom of the Prospect Intelligence Record card */
.compliance-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(16, 185, 129, 0.05);
  border-top: 1px solid rgba(16, 185, 129, 0.20);
  animation: complianceBarBreathe 3.5s ease-in-out infinite;
}

.compliance-bar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  animation: complianceDotPulse 3.5s ease-in-out infinite;
}

.compliance-bar-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #10b981;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

/* Gold compliance bar — scoped to the Compliance card only, so the shared (green)
   .compliance-bar on the Prospect Intelligence Record card stays unchanged. */
.compliance-card .compliance-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(251, 191, 36, 0.04);
  border-top: 1px solid rgba(251, 191, 36, 0.18);
  animation: goldBarBreathe 3s ease-in-out infinite;
}

.compliance-card .compliance-bar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  flex-shrink: 0;
  animation: goldDotPulse 3s ease-in-out infinite;
}

.compliance-card .compliance-bar-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #fbbf24;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
}

@keyframes complianceBarBreathe {
  0%, 100% {
    box-shadow: 0 -6px 28px rgba(16, 185, 129, 0.15), inset 0 1px 0 rgba(16, 185, 129, 0.10);
    opacity: 0.85;
  }
  50% {
    box-shadow: 0 -6px 40px rgba(16, 185, 129, 0.25), inset 0 1px 0 rgba(16, 185, 129, 0.20);
    opacity: 1;
  }
}

@keyframes complianceDotPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 6px #10b981, 0 0 12px rgba(16, 185, 129, 0.5);
  }
  50% {
    transform: scale(1.6);
    box-shadow: 0 0 10px #10b981, 0 0 20px rgba(16, 185, 129, 0.7);
  }
}

/* Automation flow */
.flow { display: flex; flex-direction: column; gap: 0; }
.flow-node {
  display: flex; align-items: center; gap: 14px;
  background: var(--s2);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 14px 16px;
}
.flow-node .fn-ic { width: 36px; height: 36px; border-radius: 9px; background: var(--s3); display: grid; place-items: center; color: var(--indigo-light); flex-shrink: 0; }
.flow-node .fn-ic svg { width: 18px; height: 18px; }
.flow-node .fn-t { font-size: 14px; color: var(--text); font-weight: 600; }
.flow-node .fn-s { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.04em; margin-top: 2px; }
.flow-node .fn-status { margin-left: auto; font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
.flow-connector { width: 1px; height: 18px; margin-left: 33px; background: linear-gradient(var(--indigo), transparent); }

/* Compliance visual */
.comp-rows { display: flex; flex-direction: column; gap: 12px; }
.comp-row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--s2); border: 1px solid var(--border-soft); border-radius: 12px; }
.comp-row .cr-ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; }
.comp-row .cr-ic svg { width: 17px; height: 17px; }
.comp-row.deny .cr-ic { background: rgba(239,68,68,0.1); color: var(--red); }
.comp-row.temp .cr-ic { background: rgba(245,158,11,0.1); color: var(--amber); }
.comp-row.keep .cr-ic { background: rgba(16,185,129,0.1); color: var(--green); }
.comp-row .cr-t { font-size: 14px; color: var(--text); font-weight: 600; }
.comp-row .cr-s { font-size: 12.5px; color: var(--text-2); margin-top: 2px; }
.comp-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.badge {
  font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-2);
  border: 1px solid var(--border-input); border-radius: 99px;
  padding: 6px 12px;
  display: inline-flex; align-items: center; gap: 6px;
}
.badge svg { width: 12px; height: 12px; color: var(--green); }

/* ---------- How it works ---------- */
/* Centered-section modifiers (extend the shared section copy classes) */
.section-inner--centered {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.section-label-row--centered {
  justify-content: center;
}

.section-headline--centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-subheadline--centered {
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hiw-header {
  margin-bottom: 56px;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}

.hiw-step {
  background: #0d1117;
  border: 1px solid #1e2a3a;
  border-radius: 14px;
  padding: 28px 24px;
}

.hiw-step:nth-child(2) { animation-delay: 1.3s; }
.hiw-step:nth-child(3) { animation-delay: 2.6s; }

.hiw-step-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hiw-step--indigo {
  animation: stepGlowIndigo 4s ease-in-out infinite;
}

.hiw-step--gold {
  animation: stepGlowGold 4s ease-in-out infinite;
}

@keyframes stepGlowIndigo {
  0%, 100% { border-color: #1e2a3a; }
  50% { border-color: rgba(99, 102, 241, 0.3); }
}

@keyframes stepGlowGold {
  0%, 100% { border-color: #1e2a3a; }
  50% { border-color: rgba(251, 191, 36, 0.3); }
}

.hiw-step-number--indigo {
  font-size: 56px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.3;
  color: #818cf8;
}

.hiw-step-number--gold {
  font-size: 56px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.35;
  color: #fbbf24;
}

.hiw-step-icon--indigo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hiw-step-icon--gold {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hiw-step-label--indigo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #818cf8;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hiw-step-label--gold {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #fbbf24;
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hiw-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #ddeaf6;
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hiw-step-body {
  font-size: 13px;
  color: #8faec8;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}

.hiw-highlight {
  color: #ddeaf6;
}

.hiw-founding {
  padding-top: 32px;
  border-top: 1px solid #1e2a3a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hiw-founding-text {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 16px;
  color: #fbbf24;
  opacity: 0.8;
}

.hiw-founding-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  padding: 5px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #818cf8;
  text-transform: uppercase;
}

.hiw-founding-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #818cf8;
  box-shadow: 0 0 5px #818cf8;
  flex-shrink: 0;
}

.hiw-founding-badge--gold {
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.18);
  color: #fbbf24;
}

.hiw-founding-dot--gold {
  background: #fbbf24;
  box-shadow: 0 0 5px #fbbf24;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.step {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px;
  position: relative;
  transition: border-color 0.15s ease;
}
.step:hover { border-color: var(--border-active); }
.step-num { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--indigo-light); }
.step-ic { width: 44px; height: 44px; border-radius: 13px; background: var(--s2); border: 1px solid var(--border-soft); display: grid; place-items: center; color: var(--indigo-light); margin: 18px 0 18px; }
.step-ic svg { width: 22px; height: 22px; }
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-2); line-height: 1.55; }

/* ---------- Testimonials / video proof ---------- */
.tp-header {
  margin-bottom: 52px;
}

.tp-videos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tp-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #1e2a3a;
}

.tp-featured-video {
  position: relative;
  background: #111827;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tp-featured-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, #fbbf24 0px, #fbbf24 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(90deg, #fbbf24 0px, #fbbf24 1px, transparent 1px, transparent 24px);
}

.tp-thumb-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, #818cf8 0px, #818cf8 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(90deg, #818cf8 0px, #818cf8 1px, transparent 1px, transparent 20px);
}

.tp-featured-badge {
  position: absolute;
  top: 12px; left: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(251,191,36,0.15);
  border: 1px solid rgba(251,191,36,0.3);
  border-radius: 20px;
  padding: 3px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: #fbbf24;
  text-transform: uppercase;
  z-index: 1;
}

.tp-featured-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fbbf24;
}

.tp-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
}

.tp-play-btn--gold { background: rgba(251,191,36,0.9); width: 64px; height: 64px; }
.tp-play-btn--indigo { background: rgba(99,102,241,0.9); }

.tp-play-arrow {
  width: 0; height: 0;
  border-style: solid;
  border-width: 9px 0 9px 18px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 4px;
}

.tp-play-arrow--dark {
  border-color: transparent transparent transparent #08090f;
  border-width: 11px 0 11px 22px;
  margin-left: 5px;
}

.tp-duration {
  position: absolute;
  bottom: 8px; right: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.5);
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 1;
}

.tp-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
}

.tp-bar--gold { height: 3px; background: linear-gradient(90deg, #fbbf24, #f59e0b); }
.tp-bar--indigo { height: 2px; background: linear-gradient(90deg, #6366f1, #818cf8); }

.tp-featured-content {
  background: #0d1117;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tp-featured-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #fbbf24;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 16px;
}

.tp-featured-quote {
  font-size: 16px;
  color: #8faec8;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 24px;
  font-family: 'Georgia', serif;
}

.tp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tp-card {
  background: #0d1117;
  border: 1px solid #1e2a3a;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}

.tp-card:hover { border-color: rgba(99,102,241,0.4); }

.tp-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #111827;
  overflow: hidden;
}

.tp-thumb-bg {
  width: 100%; height: 100%;
  background: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tp-card-body {
  padding: 16px 18px 20px;
}

.tp-quote {
  font-size: 13px;
  color: #8faec8;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 14px;
  font-family: 'Georgia', serif;
}

.tp-highlight { color: #ddeaf6; font-style: normal; }

.tp-person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.tp-avatar--indigo { background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.25); color: #818cf8; }
.tp-avatar--green { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.25); color: #10b981; }
.tp-avatar--gold { background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.25); color: #fbbf24; }

.tp-featured .tp-avatar {
  width: 44px;
  height: 44px;
  font-size: 13px;
}

.tp-name {
  font-size: 13px;
  font-weight: 700;
  color: #ddeaf6;
  margin-bottom: 2px;
}

.tp-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #5c7a94;
  text-transform: uppercase;
}

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.testi {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex; flex-direction: column;
}
.testi .mark { font-family: var(--serif); font-style: italic; font-size: 40px; color: var(--indigo); line-height: 0.5; height: 22px; }
.testi blockquote { font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.55; color: var(--text); margin: 8px 0 22px; }
.testi .who { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border-soft); }
.testi .av { width: 38px; height: 38px; border-radius: 99px; background: var(--s3); border: 1px solid var(--border-soft); display: grid; place-items: center; color: var(--muted); font-family: var(--mono); font-size: 12px; font-weight: 700; }
.testi .nm { font-size: 13.5px; color: var(--text); font-weight: 600; }
.testi .rl { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.05em; margin-top: 2px; }

/* ---------- Pricing (founding-member layout) ---------- */
.headline-gold { color: #fbbf24; }

.pricing-header { margin-bottom: 40px; }

.pricing-value-confirm {
  background: #0d1117;
  border: 1px solid #1e2a3a;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
}

.pricing-value-confirm-header {
  padding: 16px 24px;
  border-bottom: 1px solid #1e2a3a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-value-confirm-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #5c7a94;
  text-transform: uppercase;
}

.pricing-value-confirm-tagline {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 13px;
  color: #8faec8;
}

.pricing-value-confirm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #1e2a3a;
}

.pricing-value-confirm-stat {
  background: #0d1117;
  padding: 16px 20px;
  text-align: center;
}

.pricing-value-confirm-num {
  font-size: 22px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-value-confirm-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: #5c7a94;
  text-transform: uppercase;
  line-height: 1.5;
}

.pricing-value-confirm-replaces {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1e2a3a;
  border-top: 1px solid #1e2a3a;
}

.pricing-value-confirm-replace {
  background: #0d1117;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-value-confirm-old {
  font-size: 11px;
  color: #ef4444;
  text-decoration: line-through;
  opacity: 0.6;
}

.pricing-value-confirm-new {
  font-size: 12px;
  font-weight: 600;
  color: #ddeaf6;
}

.pricing-value-confirm-check {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #10b981;
  letter-spacing: 0.06em;
}

.pricing-value-confirm-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  background: rgba(16, 185, 129, 0.04);
  border-top: 1px solid rgba(16, 185, 129, 0.15);
}

.pricing-value-confirm-footer-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  flex-shrink: 0;
}

.pricing-value-confirm-footer-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #10b981;
  text-transform: uppercase;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-tier {
  background: #0d1117;
  border: 1px solid #1e2a3a;
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-tier--popular {
  border-color: rgba(99, 102, 241, 0.5);
  background: #0f1220;
}

.pricing-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #6366f1;
  border-radius: 20px;
  padding: 4px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pricing-popular-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
}

.pricing-tier-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #5c7a94;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pricing-tier-price {
  font-size: 36px;
  font-weight: 800;
  color: #fbbf24;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  margin-bottom: 2px;
}

.pricing-tier-per {
  font-size: 14px;
  font-weight: 400;
  color: #5c7a94;
}

.pricing-tier-custom {
  font-size: 30px;
  font-weight: 800;
  color: #ddeaf6;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  margin-bottom: 2px;
}

.pricing-tier-annual {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #5c7a94;
  margin-bottom: 8px;
}

.pricing-tier-savings {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  padding: 2px 8px;
  margin-bottom: 16px;
}

.pricing-tier-divider {
  height: 1px;
  background: #1e2a3a;
  margin-bottom: 16px;
}

.pricing-tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  flex: 1;
  text-align: left;
}

.pricing-tier-feature {
  font-size: 12px;
  color: #8faec8;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
  text-align: left;
}

.pricing-tier-feature strong { color: #ddeaf6; font-weight: 600; }

.pricing-check {
  color: #818cf8;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-tier-cta {
  display: block;
  width: 100%;
  padding: 11px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: 1px solid #1e2a3a;
  color: #ddeaf6;
  background: transparent;
}

.pricing-tier-cta--popular {
  background: #6366f1;
  border-color: #6366f1;
  color: #fff;
}

.pricing-footnotes {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-footnote-main {
  font-size: 13px;
  color: #8faec8;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-footnote-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #5c7a94;
  text-transform: uppercase;
}

/* ---------- Pricing (legacy tier cards) ---------- */
.pricing-head { text-align: center; }
.pricing-head .section-head { margin: 0 auto; }
.pricing-head .lead { margin: 16px auto 0; }
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; align-items: stretch; }
.tier {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.15s ease;
}
.tier:hover { border-color: var(--border-input); }
.tier.featured { border-color: var(--border-active); background: linear-gradient(180deg, rgba(99,102,241,0.08), var(--s1) 55%); }
.tier-badge {
  position: absolute; top: -10px; left: 22px;
  font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--cta);
  padding: 4px 11px; border-radius: 99px;
}
.tier .t-name { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-2); }
.tier .t-price { margin-top: 16px; display: flex; align-items: baseline; gap: 4px; }
.tier .t-price .amt { font-size: 36px; font-weight: 800; color: var(--gold); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.tier .t-price .per { font-size: 13px; color: var(--muted); font-weight: 500; }
.tier .t-price.custom .amt { font-size: 26px; color: var(--text); }
.tier .t-billed { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.04em; margin-top: 6px; min-height: 14px; }
.tier .t-feats { list-style: none; margin: 22px 0 24px; display: flex; flex-direction: column; gap: 11px; }
.tier .t-feats li { font-size: 13.5px; color: var(--text-2); display: flex; align-items: flex-start; gap: 10px; }
.tier .t-feats li::before { content: ""; width: 5px; height: 5px; border-radius: 2px; background: var(--indigo); margin-top: 8px; flex-shrink: 0; }
.tier .t-feats li.lead-feat { color: var(--text); font-weight: 600; }
.tier .btn { width: 100%; margin-top: auto; }

.founding-note {
  margin-top: 34px;
  text-align: center;
  max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.founding-note p { font-size: 14px; color: var(--text-2); }
.founding-note .trial { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted); margin-top: 10px; }

/* ---------- Demo CTA ---------- */
.demo { padding: 120px 0; text-align: center; overflow: hidden; }
.demo::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 46% 70% at 50% 50%, rgba(99,102,241,0.12), transparent 70%);
}
.demo .inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.demo h2 { font-size: clamp(34px, 5vw, 52px); }
.demo .lead { margin: 18px auto 0; }
.demo .body { margin: 22px auto 0; text-align: center; }
.demo .btn { margin-top: 36px; }

.demo-header {
  margin-bottom: 32px;
}

.demo-body-wrap {
  max-width: 580px;
  margin: 0 auto 36px;
  text-align: center;
}

.demo-body-text {
  font-size: 15px;
  color: #8faec8;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
}

.demo-cta-wrap {
  margin-bottom: 28px;
}

.demo-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #6366f1;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s;
}

.demo-cta-btn:hover {
  background: #4f46e5;
}

.demo-trust-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.demo-trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #5c7a94;
  text-transform: uppercase;
}

.demo-trust-check {
  color: #10b981;
  font-size: 11px;
}

/* ---------- Today (daily command center) ---------- */
.today-app {
  background: #0a0b12;
  border: 1px solid #1e2a3a;
  border-radius: 14px;
  overflow: hidden;
}

.today-topbar {
  background: #08090f;
  border-bottom: 1px solid #1e2a3a;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.today-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #5c7a94;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.today-greeting {
  font-size: 17px;
  font-weight: 800;
  color: #ddeaf6;
  letter-spacing: -0.02em;
}

.today-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 800;
  color: #ddeaf6;
}

.today-time span {
  font-size: 11px;
  color: #5c7a94;
}

.today-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1e2a3a;
  border-bottom: 1px solid #1e2a3a;
}

.today-stat {
  background: #0d1117;
  padding: 12px 16px;
}

.today-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: #5c7a94;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.today-stat-value {
  font-size: 17px;
  font-weight: 800;
  color: #ddeaf6;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.today-stat-sub {
  font-size: 10px;
  color: #5c7a94;
  margin-top: 3px;
}

.today-body {
  display: grid;
  grid-template-columns: 1fr 180px;
}

.today-main {
  border-right: 1px solid #1e2a3a;
}

.today-next {
  padding: 14px 16px;
  border-bottom: 1px solid #111827;
}

.today-next-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.today-next-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  color: #818cf8;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}

.today-next-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #818cf8;
}

.today-next-countdown {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #fbbf24;
}

.today-meeting-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.today-vital-wrap {
  position: relative;
  flex-shrink: 0;
}

.today-vital-wrap svg { display: block; }

.today-vital-inner {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.today-vital-num {
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.today-vital-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 6px;
  letter-spacing: 0.08em;
  color: #5c7a94;
  text-transform: uppercase;
}

.today-meeting-info { flex: 1; }

.today-meeting-name {
  font-size: 15px;
  font-weight: 800;
  color: #ddeaf6;
  margin-bottom: 4px;
}

.today-meeting-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.today-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 10px;
  text-transform: uppercase;
}

.today-badge--green {
  color: #10b981;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
}

.today-badge--indigo {
  color: #818cf8;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
}

.today-aum {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #fbbf24;
}

.today-signal {
  background: rgba(99,102,241,0.06);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 11px;
  color: #8faec8;
  font-style: italic;
  font-family: 'Georgia', serif;
  line-height: 1.5;
}

.today-cta {
  background: #6366f1;
  border-radius: 7px;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.today-move {
  padding: 12px 16px;
}

.today-move-header {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: #5c7a94;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.today-move-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f59e0b;
}

.today-move-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #111827;
  gap: 8px;
}

.today-move-row:last-child { border-bottom: none; }

.today-move-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.today-move-name {
  font-size: 12px;
  font-weight: 600;
  color: #ddeaf6;
}

.today-move-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: #5c7a94;
  margin-top: 1px;
}

.today-move-actions {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.today-move-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border-radius: 5px;
  text-transform: uppercase;
}

.today-move-btn--green {
  color: #10b981;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
}

.today-move-btn--red {
  color: #ef4444;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
}

.today-sidebar {
  padding: 12px 14px;
}

.today-sidebar-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: #5c7a94;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.today-sidebar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid #111827;
}

.today-sidebar-row:last-child { border-bottom: none; }

.today-sidebar-info { flex: 1; }

.today-sidebar-name {
  font-size: 11px;
  font-weight: 600;
  color: #ddeaf6;
  margin-bottom: 1px;
}

.today-sidebar-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: #5c7a94;
}

.today-sidebar-aum {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #fbbf24;
  flex-shrink: 0;
}

.today-sidebar-tomorrow {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #111827;
}

.today-footer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(251, 191, 36, 0.04);
  border-top: 1px solid rgba(251, 191, 36, 0.18);
  animation: goldBarBreathe 3s ease-in-out infinite;
}

.today-footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  flex-shrink: 0;
  animation: goldDotPulse 3s ease-in-out infinite;
}

.today-footer-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #fbbf24;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
}

/* ---------- FAQ accordion ---------- */
.faq-header {
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #1e2a3a;
  border-radius: 14px;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #1e2a3a;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: #0d1117;
  transition: background 0.15s;
  gap: 16px;
}

.faq-question:hover { background: #111827; }
.faq-question.open { background: rgba(99, 102, 241, 0.06); }

.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: #ddeaf6;
  line-height: 1.4;
  flex: 1;
  font-family: 'Inter', sans-serif;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}

.faq-icon svg {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
}

.faq-question.open .faq-icon { background: rgba(99, 102, 241, 0.2); }
.faq-question.open .faq-icon svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(99, 102, 241, 0.03);
}

.faq-answer.open {
  max-height: 500px;
  border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.faq-answer p {
  font-size: 14px;
  color: #8faec8;
  line-height: 1.8;
  padding: 16px 24px 0;
  font-family: 'Inter', sans-serif;
}

.faq-answer p:last-child { padding-bottom: 20px; }
.faq-answer strong { color: #ddeaf6; font-weight: 600; }

/* ---------- Final CTA ---------- */
.section--final-cta {
  position: relative;
  overflow: hidden;
}

.section--final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-wrap {
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-cta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #5c7a94;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.final-cta-label-line {
  width: 20px;
  height: 1px;
  background: #1e2a3a;
}

.final-cta-headline {
  font-size: 42px;
  font-weight: 800;
  color: #ddeaf6;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-family: 'Inter', sans-serif;
}

.final-cta-sub {
  font-size: 16px;
  color: #8faec8;
  font-family: 'Georgia', serif;
  font-style: italic;
  max-width: 480px;
  line-height: 1.6;
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #6366f1;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.final-cta-btn:hover { background: #4f46e5; }

.final-cta-btn::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: finalCtaShimmer 3s ease-in-out infinite;
}

@keyframes finalCtaShimmer {
  0% { transform: translateX(-100px); }
  100% { transform: translateX(400px); }
}

.final-cta-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.final-cta-trust-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #5c7a94;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}

.final-cta-check { color: #10b981; }

/* ---------- Footer (combined CTA + nav + EKG) ---------- */
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 48px;
  border-top: 1px solid #1e2a3a;
  border-bottom: 1px solid #1e2a3a;
  background: rgba(99, 102, 241, 0.04);
}

.footer-cta-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #818cf8;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-cta-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #818cf8;
  box-shadow: 0 0 5px #818cf8;
  flex-shrink: 0;
  animation: cadenceDotPulse 2.5s ease-in-out infinite;
}

.footer-cta-headline {
  font-size: 24px;
  font-weight: 800;
  color: #ddeaf6;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
  font-family: 'Inter', sans-serif;
}

.footer-cta-sub {
  font-size: 14px;
  color: #8faec8;
  font-family: 'Georgia', serif;
  font-style: italic;
}

.footer-cta-btn {
  background: #6366f1;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
}

.footer-cta-btn:hover { background: #4f46e5; }

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 48px 32px;
}

.footer-wordmark {
  font-size: 18px;
  font-weight: 800;
  color: #ddeaf6;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.footer-wordmark span { color: #818cf8; }

.footer-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #5c7a94;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 13px;
  color: #8faec8;
  max-width: 260px;
  line-height: 1.6;
  font-family: 'Georgia', serif;
  font-style: italic;
}

.footer-nav {
  display: flex;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  color: #5c7a94;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: #8faec8;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col a:hover { color: #ddeaf6; }

.footer-ekg {
  height: 52px;
  overflow: hidden;
  border-top: 1px solid #1e2a3a;
  background: #08090f;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 48px;
  border-top: 1px solid #111827;
}

.footer-bottom-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #5c7a94;
  text-transform: uppercase;
}

.footer-bottom-tm {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #5c7a94;
  text-transform: uppercase;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.55s ease-out, transform 0.55s ease-out; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.06s; }
.reveal.d2 { transition-delay: 0.12s; }
.reveal.d3 { transition-delay: 0.18s; }
.reveal.d4 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 460px; }
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature.reverse .feature-copy { order: 1; }
  .feature.reverse .feature-visual { order: 2; }
  .section-inner--split { grid-template-columns: 1fr; gap: 40px; }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .section { padding: 72px 0; }
  .hero { padding: 64px 0 80px; }
  .feature-pairs { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .nav-cta .text-link { display: none; }
  .quad { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
