:root {
  --bg: #0b0a13;
  --bg-elev: #0d152480;
  --bg-card: #16142299;
  --border: #2a2740;
  --border-soft: #1f1d33;
  --text: #eef4ff;
  --text-dim: #d2cce8;
  --text-muted: #9892b8;
  --brand: #1160fb;
  --brand-deep: #0b45c4;
  --brand-soft: #ede6ff;
  --accent: #47bfff;
  --green: #4ade80;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { font-size: 17px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(17,96,251,0.28), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 30%, rgba(71,191,255,0.10), transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 70%, rgba(11,69,196,0.14), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Nav ──────────────────────────────────────────────────────── */
.nav {
  padding: 24px 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(11, 10, 19, 0.7);
  z-index: 50;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  color: var(--text-dim);
  font-size: 16px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 11px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, #2e74fc 0%, #0b45c4 100%);
  color: white;
  box-shadow: 0 6px 24px rgba(17,96,251,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(17,96,251,0.45); }
.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: #3a3658; }

/* ── Beta banner ──────────────────────────────────────────────── */
.beta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 16px 7px 7px;
  border-radius: 999px;
  background: rgba(17,96,251,0.10);
  border: 1px solid rgba(17,96,251,0.30);
  font-size: 14.5px;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.beta-tag {
  background: var(--brand);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero { padding: 84px 0 64px; text-align: center; }
.hero h1 {
  font-size: clamp(44px, 6.5vw, 78px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  background: linear-gradient(180deg, #ffffff 0%, #b9c8e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .accent {
  background: linear-gradient(120deg, #6fa0fd 0%, #1160fb 50%, #47bfff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-fineprint { font-size: 14.5px; color: var(--text-muted); }

/* ── Subpage hero (smaller than home) ─────────────────────────── */
.subhero { padding: 72px 0 48px; text-align: center; }
.subhero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  background: linear-gradient(180deg, #ffffff 0%, #b9c8e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.subhero h1 .accent {
  background: linear-gradient(120deg, #6fa0fd 0%, #1160fb 50%, #47bfff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.subhero p.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}
.subhero .eyebrow { margin-bottom: 18px; }

/* ── Pillars row ──────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 72px;
}
.pillar {
  padding: 28px;
  border-radius: 16px;
  background: var(--bg-elev);
  border: 1px solid var(--border-soft);
  text-align: left;
}
.pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(17,96,251,0.12);
  border: 1px solid rgba(17,96,251,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6fa0fd;
  margin-bottom: 18px;
}
.pillar h3 { font-size: 19px; font-weight: 600; margin: 0 0 8px; color: var(--text); letter-spacing: -0.01em; }
.pillar p { font-size: 16px; color: var(--text-dim); margin: 0; line-height: 1.55; }

/* ── Section base ─────────────────────────────────────────────── */
section.block { padding: 104px 0; }
.eyebrow {
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.12;
  margin: 0 0 18px;
}
.section-sub {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 0 56px;
  line-height: 1.55;
}
.section-head { text-align: center; margin: 0 auto 64px; max-width: 820px; }
.section-head .section-sub { margin-left: auto; margin-right: auto; }

/* ── Setup flow (3 steps) ─────────────────────────────────────── */
.setup-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
.setup-step {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 28px 26px;
  position: relative;
}
.setup-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2e74fc 0%, #0b45c4 100%);
  color: white;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(17,96,251,0.4);
}
.setup-step h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.setup-step p {
  font-size: 15.5px;
  color: var(--text-dim);
  margin: 0 0 14px;
  line-height: 1.55;
}
.setup-step .timer {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand);
  background: rgba(17,96,251,0.12);
  border: 1px solid rgba(17,96,251,0.25);
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.setup-arrow {
  align-self: center;
  color: rgba(17,96,251,0.6);
  padding: 0 12px;
}
.setup-arrow svg { display: block; }

/* 4-step variant for partner flow */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* ── Risk hierarchy diagram ───────────────────────────────────── */
.hierarchy {
  background:
    radial-gradient(ellipse 60% 40% at 0% 0%, rgba(17,96,251,0.18), transparent 70%),
    linear-gradient(180deg, rgba(28,24,48,0.85) 0%, rgba(18,16,30,0.85) 100%);
  border: 1px solid rgba(17,96,251,0.30);
  border-radius: 22px;
  padding: 40px 44px;
  box-shadow: 0 0 0 1px rgba(17,96,251,0.10), 0 30px 80px -30px rgba(17,96,251,0.30);
  max-width: 1000px;
  margin: 0 auto;
}
.hierarchy-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--brand);
  font-weight: 700;
  margin: 0 0 6px;
}
.hierarchy-blurb {
  font-size: 16px;
  color: var(--text-dim);
  margin: 0 0 28px;
  line-height: 1.55;
}

.h-node {
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 8px;
  position: relative;
}
.h-node-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 4px;
}
.h-node-name {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text);
}
.h-node-meta {
  display: flex;
  gap: 14px;
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.h-node-meta span strong { color: var(--text-dim); font-weight: 600; }

.h-charter {
  background: linear-gradient(90deg, rgba(17,96,251,0.22), rgba(17,96,251,0.08));
  border: 1px solid rgba(17,96,251,0.35);
}
.h-charter .h-node-label { color: #6fa0fd; }

.h-register {
  background: rgba(71,191,255,0.10);
  border: 1px solid rgba(71,191,255,0.30);
  margin-left: 36px;
}
.h-register .h-node-label { color: var(--accent); }

.h-risk {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  margin-left: 72px;
}
.h-risk .h-node-label { color: var(--text-muted); }

.h-treatment {
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.20);
  margin-left: 108px;
  padding: 12px 16px;
}
.h-treatment .h-node-label { color: var(--green); }
.h-treatment .h-node-name { font-size: 14.5px; font-weight: 500; color: var(--text-dim); }

.h-register::before, .h-risk::before, .h-treatment::before {
  content: '';
  position: absolute;
  left: -18px;
  top: -8px;
  width: 18px;
  height: 30px;
  border-left: 2px solid rgba(17,96,251,0.30);
  border-bottom: 2px solid rgba(17,96,251,0.30);
  border-bottom-left-radius: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-soft);
  color: var(--text-dim);
}
.pill.state-mitigated { background: rgba(74,222,128,0.12); border-color: rgba(74,222,128,0.30); color: #6ee79a; }
.pill.state-active { background: rgba(255,176,71,0.12); border-color: rgba(255,176,71,0.30); color: #ffb84d; }
.pill.state-review { background: rgba(71,191,255,0.12); border-color: rgba(71,191,255,0.30); color: #6ccaff; }

/* ── ChatOps mock ─────────────────────────────────────────────── */
.chat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.chat-blurb h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.018em;
  margin: 0 0 14px;
}
.chat-blurb p {
  font-size: 17px;
  color: var(--text-dim);
  margin: 0 0 14px;
  line-height: 1.6;
}
.chat-feats { list-style: none; padding: 0; margin: 16px 0 0; }
.chat-feats li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--text-dim);
  font-size: 16px;
}
.chat-feats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

.chat-window {
  background: linear-gradient(180deg, #1d1a30 0%, #0d152499 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.chat-channel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.chat-channel .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.chat-msg { display: grid; grid-template-columns: 36px 1fr; gap: 12px; margin-bottom: 18px; }
.chat-msg:last-child { margin-bottom: 0; }
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, #1160fb, #47bfff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.chat-avatar img { width: 22px; height: 22px; }
.chat-name { font-size: 14.5px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.chat-name .ts { color: var(--text-muted); font-weight: 400; font-size: 12.5px; margin-left: 8px; }
.chat-bubble {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.55;
}
.chat-bubble strong { color: var(--text); font-weight: 600; }
.chat-actions { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.chat-action {
  display: inline-flex;
  align-items: center;
  background: rgba(17,96,251,0.12);
  border: 1px solid rgba(17,96,251,0.30);
  color: #c5a8ff;
  padding: 6px 12px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
}
.chat-action.ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--border-soft);
  color: var(--text-dim);
}

/* ── Substrate (subordinate enablement) ───────────────────────── */
.substrate-head { text-align: center; margin-bottom: 36px; }
.substrate-eyebrow {
  text-transform: uppercase;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.substrate-title { font-size: 21px; font-weight: 600; color: var(--text-dim); margin: 0; }
.substrate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.substrate-tile {
  padding: 26px;
  border-radius: 14px;
  background: rgba(13,21,36,0.5);
  border: 1px solid var(--border-soft);
}
.substrate-tile h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.substrate-tile p { font-size: 15px; color: var(--text-muted); margin: 0; line-height: 1.55; }
.substrate-tile .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── Belief / value cards (about page) ────────────────────────── */
.belief-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.belief {
  padding: 30px;
  border-radius: 16px;
  background: var(--bg-elev);
  border: 1px solid var(--border-soft);
}
.belief .marker {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 12px;
  display: block;
}
.belief h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: -0.012em;
  line-height: 1.2;
}
.belief p { font-size: 16px; color: var(--text-dim); margin: 0; line-height: 1.6; }

/* ── 12 questions grid (resources page) ───────────────────────── */
.questions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.question {
  padding: 24px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: start;
  transition: border-color 0.15s ease;
}
.question:hover { border-color: rgba(17,96,251,0.30); }
.question .num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(17,96,251,0.15);
  border: 1px solid rgba(17,96,251,0.30);
  color: #6fa0fd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13.5px;
}
.question .text { font-size: 16.5px; color: var(--text); font-weight: 600; line-height: 1.4; margin-bottom: 6px; }
.question .answer { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.question .answer strong { color: var(--text-dim); font-weight: 600; }

/* ── Persona / fit cards (partners page) ──────────────────────── */
.fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.fit-card {
  padding: 24px;
  border-radius: 14px;
  background: var(--bg-elev);
  border: 1px solid var(--border-soft);
}
.fit-card h4 { font-size: 18px; font-weight: 600; margin: 0 0 8px; }
.fit-card p { font-size: 15px; color: var(--text-dim); margin: 0; line-height: 1.55; }

/* ── Pricing (4 tiers) ────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.price-card {
  padding: 28px 22px;
  border-radius: 16px;
  background: var(--bg-elev);
  border: 1px solid var(--border-soft);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: rgba(17,96,251,0.45);
  background: linear-gradient(180deg, rgba(17,96,251,0.10) 0%, rgba(13,21,36,0.6) 100%);
  box-shadow: 0 0 0 1px rgba(17,96,251,0.2), 0 20px 50px -20px rgba(17,96,251,0.4);
  transform: translateY(-10px);
}
.price-tag {
  position: absolute;
  top: -10px;
  left: 22px;
  background: var(--brand);
  color: white;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 14px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
  min-height: 50px;
}
.price-amount .num { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; }
.price-amount .num.custom { font-size: 26px; }
.price-amount .unit { font-size: 14px; color: var(--text-muted); }
.price-blurb {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0 0 22px;
  min-height: 60px;
  line-height: 1.5;
}
.price-list { list-style: none; padding: 0; margin: 0 0 22px; font-size: 14px; flex: 1; }
.price-list li {
  padding: 7px 0 7px 24px;
  position: relative;
  color: var(--text-dim);
  line-height: 1.5;
}
.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
  opacity: 0.85;
}

/* ── Comparison ───────────────────────────────────────────────── */
.compare {
  margin-top: 64px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  background: var(--bg-elev);
}
.compare table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.compare th, .compare td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.compare thead th {
  font-weight: 700;
  color: var(--text-dim);
  background: rgba(255,255,255,0.02);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.compare thead th.us { color: var(--brand); }
.compare tbody td:first-child { color: var(--text); font-weight: 500; }
.compare tbody td { color: var(--text-dim); }
.compare tbody td.us { color: var(--text); font-weight: 600; }
.compare tbody tr:last-child td { border-bottom: 0; }

/* ── CTA strip ────────────────────────────────────────────────── */
.cta-strip {
  margin: 0 auto;
  max-width: 920px;
  padding: 64px 44px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(17,96,251,0.18) 0%, rgba(71,191,255,0.10) 100%);
  border: 1px solid rgba(17,96,251,0.30);
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.cta-strip p { color: var(--text-dim); font-size: 17px; margin: 0 0 30px; line-height: 1.55; }

/* ── Prose (resources / about long copy) ──────────────────────── */
.prose { max-width: 760px; margin: 0 auto; }
.prose p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0 0 20px;
}
.prose p strong { color: var(--text); font-weight: 600; }
.prose h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.012em;
  margin: 36px 0 12px;
  color: var(--text);
}

/* ── Footer ───────────────────────────────────────────────────── */
footer {
  padding: 56px 0 72px;
  border-top: 1px solid var(--border-soft);
  margin-top: 96px;
}
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.foot-row img { height: 32px; }
.foot-links { display: flex; gap: 28px; color: var(--text-muted); font-size: 15px; flex-wrap: wrap; }
.foot-links a:hover { color: var(--text-dim); }
.foot-copy { color: var(--text-muted); font-size: 14.5px; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .price-card.featured { transform: none; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .setup-grid { grid-template-columns: 1fr; gap: 20px; }
  .setup-arrow { display: none; }
  .chat-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-logo img { height: 34px; }
  .pillars, .substrate-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .belief-grid, .questions, .fit-grid, .partner-grid { grid-template-columns: 1fr; }
  section.block { padding: 72px 0; }
  .hero { padding: 56px 0 44px; }
  .subhero { padding: 56px 0 36px; }
  .cta-strip { padding: 48px 28px; }
  .hierarchy { padding: 28px 24px; }
  .h-register { margin-left: 22px; }
  .h-risk { margin-left: 44px; }
  .h-treatment { margin-left: 66px; }
  .compare th, .compare td { padding: 12px 14px; font-size: 14px; }
}
