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

:root {
  --navy: #0D1B2A;
  --navy-deep: #071019;
  --navy-soft: #1A2E40;
  --teal: #0F766E;
  --teal-bright: #14B8A6;
  --teal-hover: #0D6460;
  --teal-tint: #F0FDFA;
  --blue: #1D4ED8;
  --blue-light: #EFF6FF;
  --bg: #FFFFFF;
  --bg-soft: #F7F9FB;
  --bg-muted: #F1F5F9;
  --card: #FFFFFF;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --text: #0F172A;
  --text-soft: #334155;
  --muted: #64748B;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
  --shadow: 0 4px 6px -1px rgba(15,23,42,.06), 0 2px 4px -2px rgba(15,23,42,.05);
  --shadow-lg: 0 12px 24px -8px rgba(15,23,42,.12), 0 4px 8px -2px rgba(15,23,42,.06);
  --shadow-xl: 0 25px 50px -12px rgba(15,23,42,.18);
  --content-w: 1200px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--content-w); margin: 0 auto; padding: 0 24px; }

/* ── NAV ───────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--content-w); margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand .logo {
  width: 34px; height: 34px;
  object-fit: contain;
  display: block;
}
.nav-brand .brand-text { font-size: 18px; font-weight: 800; letter-spacing: -0.3px; color: var(--navy); }
.nav-brand .brand-text span { color: var(--teal); }

.nav-links { display: flex; gap: 6px; margin-left: 24px; }
.nav-links a {
  padding: 8px 12px; font-size: 14px; font-weight: 500;
  color: var(--text-soft); border-radius: 6px;
  transition: all .15s;
}
.nav-links a:hover { background: var(--bg-soft); color: var(--navy); }

.nav-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; border: 1px solid transparent;
  transition: all .15s; font-family: inherit; white-space: nowrap;
}
.btn-ghost { color: var(--text-soft); background: transparent; }
.btn-ghost:hover { color: var(--navy); background: var(--bg-soft); }
.btn-outline { color: var(--navy); background: transparent; border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn-primary {
  color: #fff; background: var(--teal); border-color: var(--teal);
  box-shadow: 0 1px 2px rgba(15,118,110,0.2);
}
.btn-primary:hover {
  background: var(--teal-hover); border-color: var(--teal-hover);
  transform: translateY(-1px); box-shadow: 0 4px 12px rgba(15,118,110,0.3);
}
.btn-lg { padding: 14px 24px; font-size: 15px; }
.btn svg { width: 16px; height: 16px; }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0D1B2A 0%, #0F766E 100%);
  color: #fff;
  padding: 96px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -30%; right: -15%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(20,184,166,0.28) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -40%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(20,184,166,0.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(20,184,166,0.15);
  border: 1px solid rgba(20,184,166,0.35);
  color: var(--teal-bright);
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-bright);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.85)} }

.hero-title {
  font-size: 54px; font-weight: 900;
  line-height: 1.05; letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-title em { color: var(--teal-bright); font-style: normal; }
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.78);
  line-height: 1.6; max-width: 560px; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-ctas .btn-primary { background: #fff; color: var(--navy); border-color: #fff; }
.hero-ctas .btn-primary:hover { background: var(--teal-tint); color: var(--teal-hover); }
.hero-ctas .btn-outline { color: #fff; border-color: rgba(255,255,255,0.3); }
.hero-ctas .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

.hero-trust {
  margin-top: 56px;
  display: flex; gap: 28px; flex-wrap: wrap;
  color: rgba(255,255,255,0.6);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust svg { width: 14px; height: 14px; color: var(--teal-bright); }

/* hero mockup — perspective device */
.hero-visual { position: relative; perspective: 1600px; }
.mockup {
  background: #0B1420;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.04);
  transform: rotateY(-7deg) rotateX(4deg);
  color: var(--text);
}
.mockup-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  background: #0B1420;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-bar i {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.mockup-bar i:nth-child(1) { background: #EF4444; }
.mockup-bar i:nth-child(2) { background: #F59E0B; }
.mockup-bar i:nth-child(3) { background: #10B981; }
.mockup-bar .url {
  margin-left: 14px; padding: 3px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2px;
  font-family: 'JetBrains Mono', monospace;
}
.mockup-screen {
  display: grid; grid-template-columns: 56px 1fr;
  background: var(--bg-soft);
}
.app-side {
  background: var(--navy);
  padding: 12px 0 14px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.app-side .brand-icon {
  width: 28px; height: 28px;
  object-fit: contain;
  display: block;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 8px rgba(20,184,166,0.4));
}
.app-side .ico {
  width: 34px; height: 34px; border-radius: 8px;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.5); position: relative;
}
.app-side .ico svg { width: 15px; height: 15px; }
.app-side .ico.active {
  background: rgba(20,184,166,0.16); color: #5EEAD4;
}
.app-side .ico.active::before {
  content: ''; position: absolute; left: -11px; top: 7px; bottom: 7px;
  width: 2px; background: var(--teal-bright); border-radius: 2px;
}
.app-side .ico .ping {
  position: absolute; top: 5px; right: 5px;
  width: 6px; height: 6px; border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 0 2px var(--navy);
}
.app-side .spacer { flex: 1; }
.app-side .me {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 10.5px;
  border: 2px solid rgba(20,184,166,0.4);
}

.app-main { display: flex; flex-direction: column; min-width: 0; }
.app-top {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: #fff; border-bottom: 1px solid var(--border);
}
.app-top .crumb { font-size: 10px; color: var(--muted); font-weight: 600; white-space: nowrap; }
.app-top .crumb b { color: var(--text); font-weight: 700; }
.app-top .live-pill {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px;
  background: var(--teal-tint); color: var(--teal);
  border-radius: 10px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.3px;
}
.app-top .live-pill::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal-bright);
  animation: pulse 2s ease-in-out infinite;
}
.app-top .ask {
  display: flex; align-items: center; gap: 5px;
  padding: 5px 9px;
  background: var(--navy); color: #fff;
  border-radius: 6px;
  font-size: 10px; font-weight: 700; white-space: nowrap;
}

.app-body { padding: 13px 14px 16px; display: flex; flex-direction: column; gap: 11px; }
.app-greet .h { font-size: 14.5px; font-weight: 800; color: var(--text); letter-spacing: -0.2px; }
.app-greet .s { font-size: 10.5px; color: var(--muted); margin-top: 2px; }

/* triage priority strip */
.app-prio {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.prio {
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 10px;
  position: relative; overflow: hidden;
}
.prio::before {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
}
.prio.urgent::before { background: #B91C1C; }
.prio.routine::before { background: #F59E0B; }
.prio.elective::before { background: var(--teal); }
.prio .lbl {
  font-size: 8.5px; font-weight: 800;
  letter-spacing: 0.4px; text-transform: uppercase;
  margin-bottom: 3px;
}
.prio.urgent .lbl { color: #B91C1C; }
.prio.routine .lbl { color: #B45309; }
.prio.elective .lbl { color: var(--teal); }
.prio .num {
  font-size: 17px; font-weight: 900;
  color: var(--text); letter-spacing: -0.4px; line-height: 1;
}
.prio .delta {
  font-size: 9px; color: var(--muted); margin-top: 3px; font-weight: 600;
}

/* referral row */
.app-alert {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px;
  background: #FEF2F2; border: 1px solid #FECACA;
  border-left: 3px solid #B91C1C;
  border-radius: 8px;
}
.app-alert .warn {
  width: 26px; height: 26px; border-radius: 50%;
  background: #B91C1C; color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.app-alert .warn svg { width: 13px; height: 13px; }
.app-alert .txt { min-width: 0; flex: 1; }
.app-alert .t1 {
  font-size: 9.5px; font-weight: 800; color: #7F1D1D;
  letter-spacing: 0.4px; text-transform: uppercase;
}
.app-alert .t2 {
  font-size: 11px; color: var(--text); font-weight: 600; margin-top: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.app-alert .t2 b { color: #B91C1C; font-weight: 700; }
.app-alert .act {
  padding: 5px 10px; background: #B91C1C; color: #fff;
  border-radius: 5px;
  font-size: 10px; font-weight: 700; white-space: nowrap;
}

/* routing panel */
.app-plan {
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 11px 12px 10px;
}
.app-plan .ph {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.app-plan .ph .ic {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--teal-tint); color: var(--teal);
  display: grid; place-items: center;
}
.app-plan .ph .ic svg { width: 12px; height: 12px; }
.app-plan .ph .t { font-size: 11.5px; font-weight: 800; color: var(--text); line-height: 1.2; }
.app-plan .ph .s { font-size: 9.5px; color: var(--muted); margin-top: 1px; }
.app-plan .ph .live-pill {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 7px;
  background: var(--teal-tint); color: var(--teal);
  border-radius: 10px;
  font-size: 9px; font-weight: 700;
}
.app-plan .ph .live-pill::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal-bright);
  animation: pulse 2s ease-in-out infinite;
}
.app-plan .route svg { width: 100%; height: 95px; }

/* feed rows */
.feed-row {
  display: grid; grid-template-columns: 28px 1fr auto;
  gap: 10px; align-items: center;
  padding: 7px 0; border-top: 1px solid #F1F5F9;
}
.feed-row:first-of-type { border-top: 0; padding-top: 3px; }
.feed-row:last-of-type { padding-bottom: 2px; }
.feed-row .mic {
  width: 28px; height: 28px; border-radius: 7px;
  display: grid; place-items: center;
}
.feed-row .mic svg { width: 13px; height: 13px; }
.feed-row .mic.icra { background: #FEF3C7; color: #92400E; }
.feed-row .mic.notify { background: var(--teal-tint); color: var(--teal); }
.feed-row .mic.audit { background: #DCFCE7; color: #15803D; }
.feed-row .info { min-width: 0; }
.feed-row .info .nm {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.feed-row .info .nm .mtag {
  font-size: 8.5px; font-weight: 800; padding: 1.5px 5px;
  border-radius: 3px; letter-spacing: 0.3px; flex-shrink: 0;
}
.feed-row .info .nm .mtag.icra   { background: #FEF3C7; color: #92400E; }
.feed-row .info .nm .mtag.notify { background: var(--teal-tint); color: var(--teal); }
.feed-row .info .nm .mtag.audit  { background: #DCFCE7; color: #15803D; }
.feed-row .info .vs {
  font-size: 10px; color: #475569; margin-top: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.feed-row .info .vs b { color: var(--text); font-weight: 700; }
.feed-row .time { font-size: 9.5px; color: var(--muted); font-weight: 600; white-space: nowrap; }

/* floating cards */
.mockup-float {
  position: absolute;
  padding: 10px 13px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; z-index: 3;
}
.mockup-float .icn {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--teal-tint); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mockup-float .lbl { font-weight: 700; color: var(--navy); font-size: 12px; }
.mockup-float .sub { color: var(--muted); font-size: 10px; }
.float-1 { top: 28px; left: -28px; animation: floatA 4s ease-in-out infinite; }
.float-2 { bottom: 56px; right: -22px; animation: floatB 4.5s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ── TRUST BAR ─────────────────────────────────────── */
.trustbar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.trust-inner {
  display: flex; align-items: center; gap: 48px;
  flex-wrap: wrap; justify-content: space-between;
}
.trust-label {
  font-size: 12px; font-weight: 700;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
}
.trust-items { display: flex; gap: 48px; flex-wrap: wrap; }
.trust-item .val {
  font-size: 28px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.5px;
}
.trust-item .lbl { font-size: 12px; color: var(--muted); font-weight: 500; }

/* ── SECTION BASE ──────────────────────────────────── */
section.band { padding: 96px 0; }
.band-muted { background: var(--bg-soft); }
.section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  color: var(--teal);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px;
}
.section-title {
  font-size: 40px; font-weight: 800;
  line-height: 1.15; letter-spacing: -0.8px;
  color: var(--navy);
  max-width: 760px; margin-bottom: 16px;
}
.section-title em { color: var(--teal); font-style: normal; }
.section-sub {
  font-size: 17px; color: var(--text-soft);
  line-height: 1.6; max-width: 680px;
  margin-bottom: 48px;
}

/* ── PROMISES (tri-cards) ──────────────────────────── */
.tri-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tri-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: all .2s;
  position: relative; overflow: hidden;
}
.tri-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px; background: var(--teal);
}
.tri-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.tri-card .icn {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--teal-tint); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.tri-card .icn svg { width: 22px; height: 22px; }
.tri-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.2px; }
.tri-card p { font-size: 14px; color: var(--text-soft); line-height: 1.6; }

/* ── JOURNEY / How it works ────────────────────────── */
.journey-wrap {
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.journey-steps {
  display: flex; gap: 0; position: relative;
}
.journey-steps::before {
  content: ''; position: absolute;
  top: 28px; left: 28px; right: 28px;
  height: 2px; background: var(--border);
  z-index: 0;
}
.j-step {
  flex: 1; position: relative; z-index: 1;
  padding: 0 14px; text-align: left;
}
.j-step .circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 2px solid var(--teal);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 0 0 4px #fff;
}
.j-step .mod {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--teal); margin-bottom: 4px;
}
.j-step h5 {
  font-size: 15px; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.j-step p { font-size: 12.5px; color: var(--text-soft); line-height: 1.55; }

/* ── ROI / Outcomes ───────────────────────────────── */
.roi-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.roi-card {
  padding: 28px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .2s;
  display: flex; flex-direction: column;
}
.roi-card:hover {
  border-color: var(--teal);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.roi-card .big {
  font-size: 38px; font-weight: 900;
  color: var(--teal);
  letter-spacing: -1px; line-height: 1;
  margin-bottom: 6px;
}
.roi-card .sub {
  font-size: 10.5px; font-weight: 700;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.roi-card h5 {
  font-size: 15px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.roi-card p { font-size: 12.5px; color: var(--text-soft); line-height: 1.55; }

/* ── PRICING / PLANS ──────────────────────────────── */
.plans {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin-top: 16px;
}
.plan {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px 28px;
  display: flex; flex-direction: column;
  transition: all .2s;
  position: relative;
}
.plan:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.plan.featured {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 24px 48px -16px rgba(15,118,110,0.4);
}
.plan.featured::before {
  content: ''; position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-bright), var(--teal));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.plan .ribbon {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--teal-bright); color: var(--navy);
  font-size: 10px; font-weight: 800;
  padding: 4px 12px; border-radius: 12px;
  text-transform: uppercase; letter-spacing: 0.6px;
  box-shadow: 0 4px 8px rgba(20,184,166,0.4);
}
.plan .tier-label {
  font-size: 11px; font-weight: 800;
  color: var(--teal);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 8px;
}
.plan.featured .tier-label { color: var(--teal-bright); }
.plan .name {
  font-size: 22px; font-weight: 800;
  color: var(--navy); letter-spacing: -0.4px;
  margin-bottom: 6px;
}
.plan.featured .name { color: #fff; }
.plan .blurb {
  font-size: 13px; color: var(--text-soft);
  line-height: 1.5; margin-bottom: 22px;
  min-height: 38px;
}
.plan.featured .blurb { color: rgba(255,255,255,0.7); }
.plan .price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 4px;
}
.plan .price .amt {
  font-size: 30px; font-weight: 900;
  color: var(--navy); letter-spacing: -0.8px; line-height: 1;
}
.plan.featured .price .amt { color: #fff; }
.plan .price .per {
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.plan.featured .price .per { color: rgba(255,255,255,0.6); }
.plan .price-note {
  font-size: 11.5px; color: var(--muted);
  margin-bottom: 22px;
}
.plan.featured .price-note { color: rgba(255,255,255,0.5); }
.plan .plan-cta {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 16px; border-radius: 8px;
  font-size: 13.5px; font-weight: 700;
  border: 1px solid var(--border-strong);
  color: var(--navy); background: #fff;
  transition: all .15s;
  margin-bottom: 22px;
}
.plan .plan-cta:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.plan.featured .plan-cta {
  background: var(--teal-bright); color: var(--navy);
  border-color: var(--teal-bright);
}
.plan.featured .plan-cta:hover {
  background: #fff; color: var(--navy); border-color: #fff;
}
.plan .features-label {
  font-size: 10.5px; font-weight: 800;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.6px;
  margin-bottom: 12px;
}
.plan.featured .features-label { color: rgba(255,255,255,0.6); }
.plan ul.features {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.plan ul.features li {
  font-size: 13px; color: var(--text-soft);
  line-height: 1.5;
  padding-left: 22px; position: relative;
}
.plan.featured ul.features li { color: rgba(255,255,255,0.85); }
.plan ul.features li::before {
  content: ''; position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--teal-tint);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F766E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 9px 9px; background-position: center; background-repeat: no-repeat;
}
.plan.featured ul.features li::before {
  background-color: rgba(20,184,166,0.2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314B8A6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

.plan-note {
  margin-top: 24px;
  text-align: center;
  font-size: 13px; color: var(--text-soft);
}
.plan-note a { color: var(--teal); font-weight: 700; }
.plan-note a:hover { text-decoration: underline; }

/* ── ANATOMY DIAGRAM ─────────────────────────────── */
.anatomy-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.anatomy-intro .section-title { margin-left: auto; margin-right: auto; }
.anatomy-intro .section-sub { margin-left: auto; margin-right: auto; margin-bottom: 0; }
.anatomy-intro .section-eyebrow { display: block; }

.anatomy-wrap {
  position: relative;
  width: 100%;
  max-width: 1140px;
  height: 620px;
  margin: 0 auto;
}

/* SVG dashed leader lines */
.anno-lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
}
.anno-lines path {
  stroke-width: 1.3;
  stroke-dasharray: 4 4;
  stroke-linecap: round;
  fill: none;
  opacity: 0.55;
}
.anno-lines circle.tip {
  stroke: #fff;
  stroke-width: 1.5;
}

/* central referral card */
.ana-card {
  position: absolute;
  left: 50%; top: 30px;
  transform: translateX(-50%);
  width: 380px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow:
    0 28px 56px -16px rgba(15,23,42,0.18),
    0 0 0 8px rgba(15,118,110,0.05);
  z-index: 2;
  overflow: visible;
}
.ana-card-inner {
  border-radius: 14px;
  overflow: hidden;
}
.ana-card-head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  padding: 14px 20px 16px;
  position: relative;
  overflow: hidden;
}
.ana-card-head::before {
  content: ''; position: absolute;
  top: -60%; right: -20%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(20,184,166,0.30), transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.ana-card-head .top-row {
  display: flex; align-items: center; gap: 10px;
  position: relative;
}
.ana-card-head .meta {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.6px;
  opacity: 0.75; text-transform: uppercase;
}
.ana-card-head .live-dot {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 9.5px; font-weight: 800;
  color: var(--teal-bright);
  letter-spacing: 0.5px;
}
.ana-card-head .live-dot::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-bright);
  animation: pulse 2s ease-in-out infinite;
}
.ana-card-head .id-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: 6px;
  position: relative;
}
.ana-card-head .id {
  font-size: 17px; font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -0.4px;
}
.ana-card-head .pri-pill {
  padding: 3px 10px; background: #DC2626; color: #fff;
  border-radius: 5px; font-size: 9.5px; font-weight: 800; letter-spacing: 0.5px;
}

.ana-card-body { padding: 12px 18px 16px; display: flex; flex-direction: column; gap: 8px; }
.ana-row {
  position: relative;
  padding: 8px 14px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: 7px;
  line-height: 1.35;
  min-height: 42px;
}
.ana-row .label {
  font-size: 8.5px; font-weight: 800; letter-spacing: 0.6px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 2px;
}
.ana-row .val { color: var(--text); font-weight: 600; font-size: 12.5px; }
.ana-row .val b, .ana-row .val strong { color: var(--navy); font-weight: 700; }
.ana-row .mono { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.3px; }
.ana-row.crit {
  background: var(--teal-tint);
  border-color: rgba(15,118,110,0.18);
}
.ana-row.crit .label { color: var(--teal); }
.ana-row.crit .val b { color: var(--teal-hover); }

/* pins straddling the card edges */
.ana-pin {
  position: absolute;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 10.5px; font-weight: 800;
  color: #fff;
  border: 2.5px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.22);
  z-index: 4;
  transform: translate(-50%, -50%);
}
.ana-pin.right { left: 100%; }
.ana-pin.left { left: 0; }
.ana-pin.p-orange  { background: #EA580C; }
.ana-pin.p-cyan    { background: #0EA5E9; }
.ana-pin.p-blue    { background: #2563EB; }
.ana-pin.p-green   { background: #10B981; }
.ana-pin.p-pink    { background: #EC4899; }
.ana-pin.p-emerald { background: #0D9488; }
.ana-pin.p-purple  { background: #7C3AED; }
.ana-pin.p-amber   { background: #F59E0B; }
.ana-pin.p-rose    { background: #E11D48; }

/* pin top positions inside card */
.ap-1 { top: 113px; } .ap-2 { top: 163px; } .ap-5 { top: 213px; }
.ap-3 { top: 263px; } .ap-4 { top: 313px; } .ap-6 { top: 363px; }
.ap-7 { top: 413px; } .ap-8 { top: 463px; } .ap-9 { top: 513px; }

/* annotations */
.ana-anno {
  position: absolute;
  width: 280px;
  z-index: 3;
}
.ana-anno.left { left: 30px; text-align: right; }
.ana-anno.right { right: 30px; text-align: left; }
.ana-anno .head {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 800;
  color: var(--navy); letter-spacing: -0.2px;
  margin-bottom: 5px;
}
.ana-anno.left .head { justify-content: flex-end; }
.ana-anno.left .head .num { order: 2; }
.ana-anno .head .num {
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-grid; place-items: center;
  font-size: 11px; font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.16);
}
.ana-anno .desc {
  font-size: 12.5px; color: var(--text-soft);
  line-height: 1.55;
}
.ana-anno .desc b { color: var(--navy); font-weight: 700; }

.ana-anno .num.n-orange  { background: #EA580C; }
.ana-anno .num.n-cyan    { background: #0EA5E9; }
.ana-anno .num.n-blue    { background: #2563EB; }
.ana-anno .num.n-green   { background: #10B981; }
.ana-anno .num.n-pink    { background: #EC4899; }
.ana-anno .num.n-emerald { background: #0D9488; }
.ana-anno .num.n-purple  { background: #7C3AED; }
.ana-anno .num.n-amber   { background: #F59E0B; }
.ana-anno .num.n-rose    { background: #E11D48; }

/* annotation top positions (tuned to align connector lines with each pin) */
.anno-1 { top: 85px; }
.anno-2 { top: 185px; }
.anno-5 { top: 210px; }
.anno-3 { top: 275px; }
.anno-4 { top: 310px; }
.anno-6 { top: 375px; }
.anno-7 { top: 410px; }
.anno-8 { top: 475px; }
.anno-9 { top: 510px; }

/* ── FAQ ──────────────────────────────────────────── */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 8px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .15s, box-shadow .15s;
}
.faq-item[open] {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.1px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .q-tag {
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 700;
  color: var(--teal);
  background: var(--teal-tint);
  padding: 4px 8px; border-radius: 5px;
  letter-spacing: 0.3px;
}
.faq-item .q-text { flex: 1; line-height: 1.4; }
.faq-item .q-icon {
  flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg-soft); color: var(--text-soft);
  display: grid; place-items: center;
  transition: transform .2s, background .15s, color .15s;
}
.faq-item .q-icon svg { width: 12px; height: 12px; }
.faq-item[open] .q-icon {
  background: var(--teal); color: #fff;
  transform: rotate(45deg);
}
.faq-item .q-body {
  padding: 0 22px 22px 64px;
  font-size: 14px; color: var(--text-soft);
  line-height: 1.65;
}
.faq-item .q-body p + p { margin-top: 10px; }
.faq-item .q-body strong { color: var(--navy); font-weight: 700; }
.faq-item .q-body code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  background: var(--teal-tint); color: var(--teal);
  padding: 1px 6px; border-radius: 4px;
}
.faq-note {
  margin-top: 28px;
  text-align: center;
  font-size: 14px; color: var(--text-soft);
}
.faq-note a { color: var(--teal); font-weight: 700; }
.faq-note a:hover { text-decoration: underline; }

/* ── FINAL CTA ────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, #0D1B2A 0%, #0F766E 100%);
  color: #fff;
  padding: 96px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse, rgba(20,184,166,0.25) 0%, transparent 60%);
}
.final-cta .inner { position: relative; z-index: 2; }
.final-cta h2 {
  font-size: 44px; font-weight: 800;
  letter-spacing: -1px; line-height: 1.15;
  margin-bottom: 14px;
}
.final-cta h2 em { color: var(--teal-bright); font-style: normal; }
.final-cta p {
  font-size: 18px; color: rgba(255,255,255,0.8);
  max-width: 620px; margin: 0 auto 32px;
}
.final-cta .hero-ctas { justify-content: center; }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 28px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px; margin-bottom: 40px;
}
.foot-brand { display: flex; flex-direction: column; gap: 12px; max-width: 320px; }
.foot-brand .name {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 800; font-size: 18px;
}
.foot-brand .name .logo {
  width: 32px; height: 32px;
  object-fit: contain;
  display: block;
}
.foot-brand .name span { color: var(--teal-bright); }
.foot-brand p { font-size: 13px; line-height: 1.6; }
.foot-col h6 {
  font-size: 12px; font-weight: 800;
  color: #fff;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px;
}
.foot-col a {
  display: block; font-size: 13px; padding: 4px 0;
  color: rgba(255,255,255,0.65);
}
.foot-col a:hover { color: var(--teal-bright); }
.foot-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 20px; font-size: 12px;
}
.foot-bottom .chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 4px 10px;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
}
.chip svg { width: 11px; height: 11px; color: var(--teal-bright); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-title { font-size: 44px; }
  .nav-links { display: none; }
  .mockup-float { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .roi-grid { grid-template-columns: repeat(2, 1fr); }
  .tri-grid { grid-template-columns: 1fr; }
  .journey-steps { flex-direction: column; gap: 20px; }
  .journey-steps::before { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }

  /* anatomy collapses to: card on top, then annotations stacked */
  .anatomy-wrap {
    height: auto;
    display: flex; flex-direction: column; align-items: center;
    gap: 24px;
  }
  .anno-lines { display: none; }
  .ana-card {
    position: static; transform: none;
    width: 100%; max-width: 380px;
  }
  .ana-anno {
    position: static !important;
    width: 100%; max-width: 480px;
    text-align: left !important;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
  }
  .ana-anno.left .head { justify-content: flex-start; }
  .ana-anno.left .head .num { order: 0; }
  .ana-annos {
    width: 100%;
    max-width: 480px;
    display: flex; flex-direction: column; gap: 10px;
  }
}
@media (max-width: 640px) {
  .hero { padding: 64px 0 80px; }
  .hero-title { font-size: 34px; letter-spacing: -1px; }
  .hero-sub { font-size: 16px; }
  section.band { padding: 64px 0; }
  .section-title { font-size: 30px; }
  .section-sub { font-size: 15px; }
  .roi-grid, .foot-grid { grid-template-columns: 1fr; }
  .faq-item .q-body { padding-left: 22px; }
  .final-cta h2 { font-size: 30px; }
  .nav-cta .btn-ghost, .nav-cta .btn-outline { display: none; }
  .journey-wrap { padding: 28px 22px; }
}

/* CxTriage_Landing extras */
.icn-warn { background: #FEF3C7; color: #92400E; }
.ref-code { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--teal); background: var(--teal-tint); padding: 2px 6px; border-radius: 4px; }
.foot-brand .name .brand-teal { color: var(--teal-bright); }
