/* ═══════════════════════════════════════════════════════════════
   ProspectGround — site styles
   Editorial paper aesthetic, agent color-coding, mono accents.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --paper: #F4EFE6;
  --paper-2: #EBE4D6;
  --paper-3: #E2DAC8;
  --ink: #1A1814;
  --ink-soft: #524C40;
  --ink-mute: #8A8272;
  --rule: rgba(26,24,20,0.12);
  --rule-soft: rgba(26,24,20,0.06);

  /* Agent palette — same as deck */
  --a00: #C79214;
  --a01: #6E5FB8;
  --a02: #2E8C6A;
  --a03: #3B79C2;
  --a04: #C04A1E;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  --maxw: 1320px;
  --gutter: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ─────────── Layout primitives ─────────── */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
@media (max-width: 900px) {
  :root { --gutter: 28px; }
  body { font-size: 16px; }
}

/* ─────────── Typography ─────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.eyebrow .dot { color: var(--a04); }

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7.4vw, 104px);
  line-height: 1.02;
  letter-spacing: -2px;
  margin: 0;
  color: var(--ink);
}
.display em { font-style: italic; font-weight: 400; }
.display .ink-soft { color: var(--ink-mute); }

h2.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h2.section-title em { font-style: italic; font-weight: 400; }

h3.sub-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin: 0;
  text-wrap: balance;
}
h3.sub-title em { font-style: italic; font-weight: 400; }

.lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--ink-soft);
  letter-spacing: -0.3px;
  text-wrap: pretty;
}

.body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.mono { font-family: var(--mono); }

/* ─────────── Nav ─────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,239,230,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.site-nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand-mark {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark .pgmark {
  width: 12px; height: 12px;
  background: var(--ink);
  border-radius: 50%;
  position: relative;
}
.brand-mark .pgmark::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  opacity: 0.25;
}
.brand-mark strong { font-weight: 600; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-login {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-login:hover { color: var(--ink); }
.nav-login .arr {
  font-size: 11px;
  transition: transform 0.2s ease;
}
.nav-login:hover .arr { transform: translateX(2px); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.1px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn .arr { transition: transform 0.2s; }
.btn:hover .arr { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 0;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: gap 0.2s;
}
.btn-text:hover { gap: 14px; }

/* ─────────── Sections ─────────── */
section {
  padding: 120px 0;
  position: relative;
}
section.tight { padding: 80px 0; }
section + section { border-top: 1px solid var(--rule); }
section.alt { background: var(--paper-2); }
section.dark {
  background: #0F0E0C;
  color: var(--paper);
  border-top: 1px solid rgba(255,255,255,0.08);
}
section.dark + section { border-top: none; }
section.dark .eyebrow { color: rgba(244,239,230,0.5); }
section.dark .lead { color: rgba(244,239,230,0.65); }
section.dark .body { color: rgba(244,239,230,0.7); }
section.dark .display,
section.dark h2.section-title,
section.dark h3.sub-title { color: var(--paper); }

@media (max-width: 900px) {
  section { padding: 80px 0; }
}

/* ─────────── Hero ─────────── */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  background: rgba(255,255,255,0.4);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-eyebrow .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--a02);
  position: relative;
}
.hero-eyebrow .live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--a02);
  animation: ringExpand 2s cubic-bezier(.2,.7,.2,1) infinite;
}
@keyframes ringExpand {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}

.hero h1 {
  margin: 0 0 36px 0;
}
.hero-lead {
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero side-artifact — the live "agent network" diagram */
.hero-aside {
  background: #FFFFFF;
  border: 1px solid var(--rule);
  padding: 28px;
  box-shadow: 0 40px 80px -40px rgba(26,24,20,0.18), 0 2px 0 rgba(26,24,20,0.03);
  position: relative;
  font-family: var(--sans);
}
.hero-aside-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-aside-head .live {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--a02);
}
.hero-aside-head .live::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--a02);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-aside-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.hero-aside-title em { font-style: italic; font-weight: 400; }
.hero-aside-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 22px;
}

.agent-pipeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.agent-node {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
}
.agent-node:last-child { border-bottom: none; }
.agent-node .a-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--ink-mute);
}
.agent-node .a-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.agent-node .a-name .role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-top: 2px;
  font-weight: 500;
}
.agent-node .a-stat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.agent-node .a-stat::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}
.agent-node.a00 .a-num { color: var(--a00); }
.agent-node.a00 .a-stat { color: var(--a00); }
.agent-node.a01 .a-num { color: var(--a01); }
.agent-node.a01 .a-stat { color: var(--a01); }
.agent-node.a02 .a-num { color: var(--a02); }
.agent-node.a02 .a-stat { color: var(--a02); }
.agent-node.a03 .a-num { color: var(--a03); }
.agent-node.a03 .a-stat { color: var(--a03); }
.agent-node.a04 .a-num { color: var(--a04); }
.agent-node.a04 .a-stat { color: var(--a04); }

.agent-node .pulse-bar {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  width: 0;
  background: currentColor;
  animation: pulseBar 5s cubic-bezier(.5,.1,.5,.9) infinite;
}
.agent-node.a00 .pulse-bar { color: var(--a00); animation-delay: 0s; }
.agent-node.a01 .pulse-bar { color: var(--a01); animation-delay: 1s; }
.agent-node.a02 .pulse-bar { color: var(--a02); animation-delay: 2s; }
.agent-node.a03 .pulse-bar { color: var(--a03); animation-delay: 3s; }
.agent-node.a04 .pulse-bar { color: var(--a04); animation-delay: 4s; }
@keyframes pulseBar {
  0%, 100% { width: 0; opacity: 0; }
  2% { width: 0; opacity: 1; }
  18% { width: 100%; opacity: 1; }
  20% { width: 100%; opacity: 0; }
  20.01%, 100% { width: 0; opacity: 0; }
}

/* Active-state for sequential pulses */
.agent-node {
  transition: opacity 0.45s ease, transform 0.45s ease;
  opacity: 0.5;
}
.agent-node.is-active {
  opacity: 1;
  transform: translateX(3px);
}
.agent-node.is-active .a-stat {
  font-weight: 600;
}
.agent-node.is-active .a-stat::before {
  box-shadow: 0 0 0 4px rgba(0,0,0,0.04);
}

.hero-aside-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-aside-foot strong {
  font-weight: 600;
  color: var(--ink);
}

/* ─────────── Marquee — registers ─────────── */
.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marqueeSlide 50s linear infinite;
  gap: 60px;
  padding-left: 60px;
}
@keyframes marqueeSlide {
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  flex-shrink: 0;
}
.marquee-item .reg-dot {
  width: 5px; height: 5px;
  background: var(--ink-mute);
  border-radius: 50%;
}
.marquee-item.gold { color: var(--a00); }
.marquee-item.gold .reg-dot { background: var(--a00); }

/* ─────────── Layer Stack ─────────── */
.layer-stack {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 56px;
}
.layer-row {
  background: var(--paper);
  display: grid;
  grid-template-columns: 100px 1fr 1.2fr 1fr;
  gap: 32px;
  padding: 32px 36px;
  align-items: center;
}
.layer-row .l-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.layer-row .l-cat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.layer-row .l-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.layer-row .l-name strong { font-weight: 600; }
.layer-row .l-examples {
  font-size: 14px;
  color: var(--ink-mute);
  font-style: italic;
}
.layer-row .l-q {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  letter-spacing: -0.2px;
  text-wrap: pretty;
}
.layer-row.us {
  background: rgba(192,74,30,0.05);
  position: relative;
}
.layer-row.us::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--a04);
}
.layer-row.us .l-name { color: var(--a04); }
.layer-row.us .l-q { color: var(--a04); font-weight: 500; }

@media (max-width: 900px) {
  .layer-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 22px;
  }
  .layer-row .l-num { letter-spacing: 2px; }
}

/* ─────────── Five-agent sections ─────────── */
.agent-section {
  position: relative;
  padding: 140px 0;
  border-top: 1px solid var(--rule);
}
.agent-section:nth-of-type(even) { background: var(--paper-2); }

.agent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1100px) {
  .agent-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
.agent-text { display: flex; flex-direction: column; gap: 28px; }
.agent-eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
}
.agent-eyebrow .num {
  font-weight: 700;
  letter-spacing: 3px;
}
.agent-eyebrow .num.a00 { color: var(--a00); }
.agent-eyebrow .num.a01 { color: var(--a01); }
.agent-eyebrow .num.a02 { color: var(--a02); }
.agent-eyebrow .num.a03 { color: var(--a03); }
.agent-eyebrow .num.a04 { color: var(--a04); }
.agent-eyebrow .divider {
  width: 32px; height: 1px;
  background: currentColor;
  opacity: 0.3;
}
.agent-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.agent-points li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
}
.agent-points li::before {
  content: '';
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 50%;
  margin-top: 9px;
  opacity: 0.5;
}
.agent-section.a00 .agent-points li::before { background: var(--a00); opacity: 1; }
.agent-section.a01 .agent-points li::before { background: var(--a01); opacity: 1; }
.agent-section.a02 .agent-points li::before { background: var(--a02); opacity: 1; }
.agent-section.a03 .agent-points li::before { background: var(--a03); opacity: 1; }
.agent-section.a04 .agent-points li::before { background: var(--a04); opacity: 1; }

/* Artifact card (the right-hand "live work") */
.artifact-card {
  background: #FFFFFF;
  border: 1px solid var(--rule);
  box-shadow: 0 40px 80px -40px rgba(26,24,20,0.18), 0 2px 0 rgba(26,24,20,0.03);
  padding: 32px;
  font-family: var(--sans);
  position: relative;
}
.artifact-card.dark-bg {
  background: #FFFFFF;
}
.artifact-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 22px;
}
.artifact-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.artifact-title .a-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.artifact-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.artifact-status .ring-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  position: relative;
}
.artifact-status .ring-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid currentColor;
  animation: ringExpand 1.8s cubic-bezier(.2,.7,.2,1) infinite;
}
.artifact-status.a00 { color: var(--a00); }
.artifact-status.a00 .ring-dot { background: var(--a00); }
.artifact-status.a01 { color: var(--a01); }
.artifact-status.a01 .ring-dot { background: var(--a01); }
.artifact-status.a02 { color: var(--a02); }
.artifact-status.a02 .ring-dot { background: var(--a02); }
.artifact-status.a03 { color: var(--a03); }
.artifact-status.a03 .ring-dot { background: var(--a03); }
.artifact-status.a04 { color: var(--a04); }
.artifact-status.a04 .ring-dot { background: var(--a04); }

.artifact-sub {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.3px;
  margin-bottom: 22px;
}
.artifact-sub em { font-style: italic; font-weight: 400; }
.artifact-sub .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-left: 8px;
}

/* think dots + cursor */
.think { display: inline-flex; gap: 3px; margin-left: 6px; align-items: center; }
.think span {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
  animation: thinkPulse 1.4s ease-in-out infinite;
}
.think span:nth-child(2) { animation-delay: 0.18s; }
.think span:nth-child(3) { animation-delay: 0.36s; }
@keyframes thinkPulse {
  0%, 100% { opacity: 0.25; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
}
.cursor {
  display: inline-block;
  width: 2px; height: 1.05em;
  background: currentColor;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: cursorBlink 0.9s steps(2) infinite;
}
@keyframes cursorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Conversation (Agent 00) */
.conv { display: flex; flex-direction: column; gap: 12px; }
.conv-msg {
  padding: 13px 16px;
  font-size: 15px;
  line-height: 1.5;
}
.conv-msg .who {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}
.conv-msg.you { background: var(--paper); color: var(--ink); }
.conv-msg.bot {
  background: rgba(199,146,20,0.08);
  color: var(--ink);
  border-left: 3px solid var(--a00);
}
.conv-msg.bot em { font-style: italic; font-weight: 500; }
.conv-msg.sys {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--a00);
  background: rgba(199,146,20,0.06);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.conv-msg.sys::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--a00);
  animation: blink 1.8s infinite;
}

/* Candidate rows (Agent 01) */
.cand-summary {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--rule-soft);
}
.cand-summary .big {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.05;
  color: var(--a01);
  letter-spacing: -1px;
  white-space: nowrap;
}
.cand-summary .big-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-top: 8px;
}
.cand-summary .small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.5;
}
.cand {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 15px;
}
.cand:last-child { border-bottom: none; }
.cand .mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}
.cand.yes .mark { background: rgba(110,95,184,0.15); color: var(--a01); }
.cand.no .mark { background: rgba(26,24,20,0.06); color: var(--ink-mute); }
.cand .name {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.1px;
}
.cand.no .name {
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: rgba(26,24,20,0.3);
}
.cand .tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 3px;
}
.cand .score {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--a01);
}
.cand.no .score { color: var(--ink-mute); }

/* Register rows (Agent 02) */
.reg-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 15px;
}
.reg-row:last-child { border-bottom: none; }
.reg-row .src {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--a02);
  font-weight: 600;
}
.reg-row .val {
  font-weight: 500;
  letter-spacing: -0.1px;
}
.reg-row .link {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--ink-mute);
}
.reg-row .link::after { content: ' ↗'; color: var(--a02); }

/* Enrichment rows (Agent 03) */
.enr-row {
  display: grid;
  grid-template-columns: 130px 1fr 100px;
  gap: 16px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 14px;
}
.enr-row:last-child { border-bottom: none; }
.enr-row .field {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.enr-row .val {
  font-weight: 500;
  letter-spacing: -0.1px;
}
.enr-row .val .note {
  color: var(--ink-mute);
  font-weight: 400;
  font-size: 12px;
  margin-left: 5px;
}
.enr-row .src {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--a03);
  text-align: right;
}
.enr-row .src::after { content: ' ↗'; }

/* Signal rows (Agent 04) */
.sig-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 15px;
}
.sig-row:last-child { border-bottom: none; }
.sig-row .kind {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--a04);
  font-weight: 600;
}
.sig-row .desc {
  font-weight: 500;
  letter-spacing: -0.1px;
  line-height: 1.4;
}
.sig-row .desc .note {
  color: var(--ink-mute);
  font-weight: 400;
  display: block;
  font-size: 12px;
  margin-top: 2px;
}
.sig-row .when {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--ink-mute);
  text-align: right;
}

/* Agent log ticker — appears at bottom of agent sections */
.agent-log {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--rule-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink-mute);
  text-transform: uppercase;
  height: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
}
.agent-log .lead-in {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.agent-log .lead-in::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}
.agent-log .track {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 18px;
}
.agent-log .track .lines {
  position: absolute;
  top: 0; left: 0;
  animation: logScroll 16s linear infinite;
}
.agent-log .track .lines span {
  display: block;
  height: 18px;
  line-height: 18px;
  white-space: nowrap;
}
@keyframes logScroll {
  0%, 15% { transform: translateY(0); }
  20%, 35% { transform: translateY(-18px); }
  40%, 55% { transform: translateY(-36px); }
  60%, 75% { transform: translateY(-54px); }
  80%, 95% { transform: translateY(-72px); }
  100% { transform: translateY(-90px); }
}
.agent-log.a00 .lead-in { color: var(--a00); }
.agent-log.a01 .lead-in { color: var(--a01); }
.agent-log.a02 .lead-in { color: var(--a02); }
.agent-log.a03 .lead-in { color: var(--a03); }
.agent-log.a04 .lead-in { color: var(--a04); }

/* ─────────── Verticals coverage ─────────── */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 1100px) {
  .verticals-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .verticals-grid { grid-template-columns: 1fr; }
}
.vertical-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  min-height: 280px;
}
.vertical-card.beachhead {
  background: rgba(192,74,30,0.04);
  border-color: rgba(192,74,30,0.25);
}
.vertical-card .v-status {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  padding: 5px 9px;
  border: 1px solid var(--rule);
  background: rgba(255,255,255,0.4);
  color: var(--ink-mute);
}
.vertical-card.beachhead .v-status {
  color: var(--a04);
  border-color: rgba(192,74,30,0.3);
  background: rgba(192,74,30,0.06);
}
.vertical-card .v-status .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.vertical-card .v-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 1.15;
}
.vertical-card .v-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  flex: 1;
}
.vertical-card .v-registers {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 14px;
  border-top: 1px solid var(--rule-soft);
  line-height: 1.6;
}
.vertical-card .v-registers strong {
  font-weight: 600;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 4px;
  font-size: 9px;
  letter-spacing: 2px;
}

/* ─────────── Platform mock ─────────── */
.platform-mock {
  background: #FFFFFF;
  border: 1px solid var(--rule);
  box-shadow: 0 50px 100px -50px rgba(26,24,20,0.25), 0 2px 0 rgba(26,24,20,0.04);
  margin-top: 56px;
  overflow: hidden;
}
.pm-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
}
.pm-chrome .pm-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
}
.pm-chrome .pm-url {
  margin-left: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 1px;
}
.pm-tabs {
  display: flex;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.pm-tab {
  padding: 16px 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-mute);
  cursor: pointer;
  border-right: 1px solid var(--rule);
  background: transparent;
  border-top: none;
  border-bottom: 2px solid transparent;
  font-weight: 500;
  transition: all 0.2s;
}
.pm-tab:hover { color: var(--ink-soft); }
.pm-tab.active {
  color: var(--ink);
  border-bottom: 2px solid var(--a04);
  background: #FFFFFF;
}
.pm-body {
  padding: 36px;
  min-height: 460px;
  background: #FFFFFF;
}
.pm-panel { display: none; }
.pm-panel.active { display: grid; }

/* Workbench panel */
.pm-workbench {
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: stretch;
}
.pm-icp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pm-icp-list .pm-list-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.pm-icp-card {
  padding: 14px;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-size: 13px;
  line-height: 1.5;
}
.pm-icp-card .seg-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
  margin-bottom: 5px;
}
.pm-icp-card .seg-rule {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.2px;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.pm-icp-card.bl { border-left: 3px solid var(--a03); }
.pm-icp-card.bl .seg-name { color: var(--a03); }
.pm-icp-card.gn { border-left: 3px solid var(--a02); }
.pm-icp-card.gn .seg-name { color: var(--a02); }
.pm-icp-card.am { border-left: 3px solid var(--a00); }
.pm-icp-card.am .seg-name { color: var(--a00); }
.pm-icp-card .seg-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  background: var(--paper-3);
  padding: 1px 5px;
  margin-left: 4px;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.pm-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--paper);
  padding: 18px;
  border: 1px solid var(--rule);
  height: 420px;
  overflow: hidden;
}
.pm-bub {
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 88%;
}
.pm-bub .pm-bl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 3px;
}
.pm-bub.you { background: #FFFFFF; align-self: flex-end; border: 1px solid var(--rule); }
.pm-bub.pg { background: rgba(199,146,20,0.08); border-left: 3px solid var(--a00); }
.pm-bub.pg em { font-style: italic; font-weight: 500; }

/* Prospects table */
.pm-prospects-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.pm-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.pm-pill .pm-pill-count {
  background: var(--a04);
  color: white;
  padding: 1px 5px;
  font-weight: 600;
  border-radius: 1px;
}
.pm-pill.green .pm-pill-count { background: var(--a02); }
.pm-pill.amber .pm-pill-count { background: var(--a00); }
.pm-pill.muted .pm-pill-count { background: var(--ink-mute); }
.pm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.pm-table th {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  background: var(--paper-2);
}
.pm-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--rule-soft);
  vertical-align: middle;
}
.pm-table .pm-tier {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  font-weight: 600;
  padding: 2px 7px;
  background: var(--paper-3);
  color: var(--ink);
}
.pm-table .pm-tier.t1 { background: rgba(192,74,30,0.15); color: var(--a04); }
.pm-table .pm-tier.t2 { background: rgba(199,146,20,0.15); color: var(--a00); }
.pm-table .pm-fit {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--a01);
}
.pm-table .pm-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.pm-table .pm-status::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--a02);
}
.pm-table .pm-status.review::before { background: var(--a00); }

/* TAL panel */
.pm-tal {
  grid-template-columns: 1fr 320px;
  gap: 32px;
}
.pm-tier-block {
  padding: 18px 20px;
  border: 1px solid var(--rule);
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.pm-tier-block.t1 { border-left: 3px solid var(--a04); background: rgba(192,74,30,0.04); }
.pm-tier-block.t2 { border-left: 3px solid var(--a00); background: rgba(199,146,20,0.04); }
.pm-tier-block.t3 { border-left: 3px solid var(--ink-mute); }
.pm-tier-block .tier-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 5px;
}
.pm-tier-block .tier-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.2px;
}
.pm-tier-block .tier-count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 600;
  padding: 6px 12px;
  background: #FFFFFF;
  border: 1px solid var(--rule);
}
.pm-tier-block.t1 .tier-count { color: var(--a04); }
.pm-tier-block.t2 .tier-count { color: var(--a00); }

.pm-tal-side {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 22px;
}
.pm-tal-side h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 14px 0;
  font-weight: 500;
}
.pm-tal-side .stat-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 13px;
}
.pm-tal-side .stat-line:last-child { border-bottom: none; }
.pm-tal-side .stat-line .v {
  font-family: var(--mono);
  font-weight: 600;
}

/* Detail panel */
.pm-detail {
  grid-template-columns: 1fr;
  gap: 24px;
}
.pm-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.pm-detail-head .pd-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin: 0 0 6px 0;
}
.pm-detail-head .pd-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink-mute);
}
.pm-detail-head .pd-tier {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  padding: 5px 11px;
  background: rgba(192,74,30,0.15);
  color: var(--a04);
}
.pm-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) {
  .pm-detail-grid { grid-template-columns: 1fr; }
}
.pm-detail-block {
  padding: 18px;
  border: 1px solid var(--rule);
}
.pm-detail-block h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 14px 0;
  font-weight: 500;
}

/* ─────────── Trust strip ─────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 56px;
}
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr; }
}
.trust-cell {
  padding: 36px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust-cell:last-child { border-right: none; }
@media (max-width: 900px) {
  .trust-cell { border-right: none; }
}
.trust-cell .t-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.trust-cell .t-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.trust-cell .t-title em { font-style: italic; font-weight: 500; }
.trust-cell .t-body {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ─────────── Stats / metric strip ─────────── */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: #0F0E0C;
}
@media (max-width: 900px) {
  .metric-grid { grid-template-columns: 1fr 1fr; }
}
.metric {
  padding: 44px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: var(--paper);
}
.metric:last-child { border-right: none; }
@media (max-width: 900px) {
  .metric:nth-child(2) { border-right: none; }
}
.metric .m-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.metric .m-num em { font-style: italic; font-weight: 400; }
.metric .m-num.small { font-size: 32px; letter-spacing: -0.8px; }
.metric .m-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244,239,230,0.5);
  margin-bottom: 6px;
}
.metric .m-sub {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(244,239,230,0.7);
}

/* ─────────── CTA ─────────── */
.cta-section {
  padding: 140px 0;
  background: #0F0E0C;
  color: var(--paper);
  text-align: center;
}
.cta-section h2 {
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.05;
  letter-spacing: -1.6px;
  margin: 0 auto 36px;
  max-width: 900px;
  text-wrap: balance;
}
.cta-section h2 em { font-style: italic; font-weight: 400; }
.cta-section p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  color: rgba(244,239,230,0.7);
  max-width: 700px;
  margin: 0 auto 44px;
  line-height: 1.4;
  text-wrap: pretty;
}
.cta-section .btn {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
  padding: 18px 32px;
  font-size: 16px;
}
.cta-section .btn:hover {
  background: transparent;
  color: var(--paper);
}
.cta-section .btn-ghost {
  border-color: rgba(244,239,230,0.3);
  color: var(--paper);
  padding: 18px 32px;
  font-size: 16px;
}
.cta-section .btn-ghost:hover { border-color: var(--paper); }
.cta-actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ─────────── Footer ─────────── */
footer {
  background: #0A0908;
  color: rgba(244,239,230,0.5);
  padding: 48px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-grid .fbrand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.3px;
  text-transform: none;
  color: var(--paper);
}
.footer-grid .fbrand strong { font-weight: 600; }
.footer-grid .flinks {
  display: flex;
  gap: 24px;
}
.footer-grid .flinks a:hover { color: var(--paper); }

/* ─────────── Reveal-on-scroll (subtle) ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-inner, .agent-log .track .lines, .pulse-bar, .ring-dot::after, .think span, .live-dot::after, .cursor {
    animation: none !important;
  }
}

/* ─────────── FAQ ─────────── */
.faq-list {
  margin-top: 64px;
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  gap: 24px;
  align-items: baseline;
  transition: opacity 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { opacity: 0.7; }
.faq-item .q-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.8px;
  font-weight: 600;
  color: var(--a04);
}
.faq-item .q-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: var(--ink);
}
.faq-item .q-toggle {
  position: relative;
  width: 18px; height: 18px;
  justify-self: end;
  align-self: center;
}
.faq-item .q-toggle::before,
.faq-item .q-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink-soft);
  transition: transform 0.3s ease;
}
.faq-item .q-toggle::before {
  top: 8px; left: 0;
  width: 18px; height: 1.5px;
}
.faq-item .q-toggle::after {
  top: 0; left: 8px;
  width: 1.5px; height: 18px;
}
.faq-item[open] .q-toggle::after {
  transform: rotate(90deg);
}
.faq-item .faq-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  padding: 0 32px 32px 84px;
  max-width: 800px;
  letter-spacing: -0.1px;
}
.faq-item .faq-body em {
  font-style: italic;
  color: var(--ink);
}
@media (max-width: 700px) {
  .faq-item summary { grid-template-columns: 40px 1fr 24px; gap: 14px; }
  .faq-item .q-text { font-size: 20px; }
  .faq-item .faq-body { padding-left: 54px; padding-right: 0; font-size: 15px; }
}

/* ─────────── Platform mock — interactivity ─────────── */
.pm-table tbody tr {
  cursor: pointer;
  transition: background 0.18s ease;
}
.pm-table tbody tr:hover {
  background: var(--paper-2);
}
.pm-table tbody tr:hover .pm-fit {
  color: var(--a04);
  font-weight: 600;
}

/* Source URL tooltip — works on .reg-row .link and .enr-row .src */
.reg-row .link,
.enr-row .src {
  position: relative;
  cursor: help;
  transition: color 0.18s ease;
}
.reg-row .link:hover,
.enr-row .src:hover {
  color: var(--a02);
}
.reg-row .link[data-url]::before,
.enr-row .src[data-url]::before {
  content: attr(data-url);
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--paper);
  background: var(--ink);
  padding: 7px 10px;
  white-space: nowrap;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(4px);
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.reg-row .link[data-url]::after,
.enr-row .src[data-url]::after {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  right: 8px;
  border: 5px solid transparent;
  border-top-color: var(--ink);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 20;
}
.reg-row .link[data-url]:hover::before,
.enr-row .src[data-url]:hover::before,
.reg-row .link[data-url]:hover::after,
.enr-row .src[data-url]:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Tier blocks (Analyze TAL) — clickable */
.pm-tier-block {
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.pm-tier-block:hover {
  transform: translateX(4px);
}

/* Workbench bubbles — subtle hover */
.pm-bub {
  transition: background 0.18s ease;
}
.pm-bub:hover {
  background: var(--paper-2);
}

/* Detail block hover */
.pm-detail-block {
  transition: border-color 0.2s ease;
}
.pm-detail-block:hover {
  border-color: var(--a02);
}
}
