/* ============================================================
   Livaramed — Site Design System v2 (2026-07)
   Used by the rebuilt marketing pages. The legacy styles.css
   remains for pages not yet migrated.
   ============================================================ */

:root {
  --bg: #060b12;
  --bg-raise: #0a1220;
  --bg-card: #0d1626;
  --bg-card-2: #101b2e;
  --line: rgba(148, 196, 220, 0.12);
  --line-strong: rgba(148, 196, 220, 0.22);
  --text: #e8f0f6;
  --text-soft: #a8bccb;
  --text-muted: #7189a0;
  --teal: #2dd4bf;
  --teal-deep: #14b8a6;
  --cyan: #38bdf8;
  --violet: #8b7cf6;
  --gold: #f0b429;
  --rose: #fb7185;
  --grad: linear-gradient(92deg, #2dd4bf 0%, #38bdf8 55%, #8b7cf6 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --nav-h: 72px;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--cyan); }

/* ---------- typography ---------- */
.h-hero {
  font-family: var(--sans);
  font-size: clamp(2.7rem, 4.6vw, 4.3rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.035em;
}
.h-1 {
  font-family: var(--sans);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.h-2 {
  font-family: var(--sans);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.serif-accent {
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-soft);
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede { font-size: 1.13rem; color: var(--text-soft); max-width: 46em; }
.small { font-size: 0.85rem; color: var(--text-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.07);
  border-radius: 999px;
  padding: 7px 15px;
  margin-bottom: 22px;
}

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; position: relative; }
section.tight { padding: 56px 0; }
.center { text-align: center; }
.section-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-head .lede { margin: 16px auto 0; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(6, 11, 18, 0.82);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
}
.nav-brand { display: flex; align-items: baseline; gap: 10px; }
.nav-name {
  font-family: var(--serif); font-size: 1.45rem; color: var(--text);
  letter-spacing: 0.01em;
}
.nav-badge {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--teal); border: 1px solid rgba(45,212,191,0.4);
  padding: 2px 8px; border-radius: 999px; text-transform: uppercase;
  white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { color: var(--text-soft); font-size: 0.92rem; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--grad); color: #04211d !important; font-weight: 700 !important;
  padding: 9px 20px; border-radius: 999px; font-size: 0.9rem !important;
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.25);
}
.nav-cta:hover { filter: brightness(1.08); }
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.mobile-toggle svg { width: 26px; height: 26px; stroke: var(--text); stroke-width: 2; fill: none; }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: rgba(6, 11, 18, 0.98); border-bottom: 1px solid var(--line);
  padding: 18px 24px 26px; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text-soft); padding: 11px 4px; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: none; }

/* ---------- hero ---------- */
.hero { padding: calc(var(--nav-h) + 72px) 0 72px; overflow: hidden; }
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(52% 42% at 78% 12%, rgba(45, 212, 191, 0.09), transparent 70%),
    radial-gradient(44% 38% at 12% 82%, rgba(139, 124, 246, 0.08), transparent 70%);
}

/* ---------- stat band ---------- */
.stat-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(13, 22, 38, 0.6); overflow: hidden;
}
.stat-cell { padding: 26px 18px; text-align: center; border-right: 1px solid var(--line); }
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-size: 2.1rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1;
}
.stat-num.teal { color: var(--teal); }
.stat-num.cyan { color: var(--cyan); }
.stat-num.violet { color: var(--violet); }
.stat-num.gold { color: var(--gold); }
.stat-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 6px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 999px; font-weight: 700;
  font-size: 0.98rem; cursor: pointer; border: none; transition: all 0.18s ease;
}
.btn-primary { background: var(--grad); color: #04211d; box-shadow: 0 0 32px rgba(45, 212, 191, 0.28); }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); color: #04211d; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* ---------- cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 0.93rem; color: var(--text-soft); }
.card .icon {
  width: 44px; height: 44px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 18px;
  background: rgba(45, 212, 191, 0.1); border: 1px solid rgba(45, 212, 191, 0.25);
  font-size: 1.2rem;
}

/* ---------- pipeline ---------- */
.pipeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.pipe-step {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 22px 18px; position: relative;
}
.pipe-step .num {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em;
  color: var(--teal); text-transform: uppercase; margin-bottom: 10px;
}
.pipe-step h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.pipe-step p { font-size: 0.8rem; color: var(--text-soft); line-height: 1.5; }
.pipe-step .model {
  margin-top: 12px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--text-muted); text-transform: uppercase;
}
.pipe-step.guard { border-color: rgba(240, 180, 41, 0.4); }
.pipe-step.guard .num { color: var(--gold); }

/* ---------- comparison table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.cmp { width: 100%; border-collapse: collapse; font-size: 0.88rem; min-width: 620px; }
table.cmp th {
  text-align: left; padding: 14px 18px; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
  border-bottom: 1px solid var(--line-strong); background: var(--bg-raise);
}
table.cmp td { padding: 14px 18px; border-bottom: 1px solid var(--line); color: var(--text-soft); }
table.cmp tr:last-child td { border-bottom: none; }
table.cmp tr.ours td { color: var(--text); font-weight: 600; background: rgba(45, 212, 191, 0.05); }
.acc-good { color: var(--teal) !important; font-weight: 700; }
.acc-mid { color: var(--gold) !important; }
.acc-low { color: var(--rose) !important; }

/* ---------- callout ---------- */
.callout {
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: var(--bg-card); padding: 30px 32px;
  display: flex; gap: 22px; align-items: flex-start;
}
.callout .badge-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(45, 212, 191, 0.1); border: 1px solid rgba(45, 212, 191, 0.3);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.callout h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.callout p { font-size: 0.92rem; color: var(--text-soft); }

/* ---------- quote ---------- */
.pull-quote {
  font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.45; color: var(--text); font-style: italic;
  border-left: 3px solid var(--teal); padding-left: 28px; max-width: 54em;
}
.quote-attr { margin-top: 16px; font-family: var(--sans); font-style: normal; font-size: 0.9rem; color: var(--text-muted); }

/* ---------- phone mockup (pure CSS, demo data only) ---------- */
.phone {
  width: 300px; border-radius: 38px; border: 1px solid var(--line-strong);
  background: linear-gradient(165deg, #0c1524 0%, #0a111d 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(45, 212, 191, 0.08);
  padding: 14px; position: relative;
}
.phone-screen {
  border-radius: 28px; background: #080f1a; border: 1px solid var(--line);
  overflow: hidden; min-height: 520px; padding: 20px 16px;
}
.phone .notch {
  width: 90px; height: 22px; background: #060b12; border-radius: 0 0 14px 14px;
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%); z-index: 2;
}

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line); padding: 60px 0 36px;
  background: var(--bg-raise); margin-top: 40px;
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.foot-brand .nav-name { font-size: 1.3rem; }
.foot-brand p { font-size: 0.87rem; color: var(--text-muted); margin-top: 12px; max-width: 30em; }
footer h5 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 9px; }
footer ul a { color: var(--text-soft); font-size: 0.89rem; }
footer ul a:hover { color: var(--teal); }
.foot-crisis {
  font-size: 0.8rem; color: var(--text-muted); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 28px;
}
.foot-legal {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: var(--text-muted);
  border-top: 1px solid var(--line); padding-top: 24px;
}
.foot-legal .links { display: flex; gap: 18px; }

/* ---------- misc ---------- */
.divider { height: 1px; background: var(--line); border: none; }
.tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600; color: var(--text-soft);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 5px 13px; margin: 3px 4px 3px 0;
}
.disclaimer {
  font-size: 0.78rem; color: var(--text-muted); border-top: 1px solid var(--line);
  padding-top: 18px; margin-top: 34px;
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pipeline { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
}
@media (min-width: 881px) and (max-width: 1160px) {
  .nav-links { gap: 13px; }
  .nav-links a { font-size: 0.85rem; }
  .nav-cta { padding: 8px 14px; }
  .nav-name { font-size: 1.3rem; }
}
@media (max-width: 1060px) {
  .nav-badge { display: none; }
}
@media (max-width: 720px) {
  section { padding: 60px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .pipeline { grid-template-columns: 1fr; }
  .hero { padding-top: calc(var(--nav-h) + 44px); }
  .callout { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============ v2.1 additions — rich hero graphics ============ */
.nav-logo { width: 30px; height: 30px; flex-shrink: 0; align-self: center; }
.nav-brand { align-items: center; }

/* Dashboard mockup (browser-frame product visual) */
.dash {
  background: linear-gradient(168deg, #0d1626 0%, #0a111d 100%);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 80px rgba(45,212,191,0.07);
  overflow: hidden;
  width: 100%;
  max-width: 640px;
}
.dash-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-bottom: 1px solid var(--line);
  background: rgba(6,11,18,0.6);
}
.dash-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #223448; }
.dash-bar .dot:nth-child(1){ background:#fb7185aa; } .dash-bar .dot:nth-child(2){ background:#f0b429aa; } .dash-bar .dot:nth-child(3){ background:#2dd4bfaa; }
.dash-bar .url {
  flex: 1; font-size: 0.72rem; color: var(--text-muted);
  background: rgba(13,22,38,0.8); border: 1px solid var(--line);
  border-radius: 8px; padding: 5px 12px;
}
.dash-body { padding: 18px 20px 20px; }
.dash-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.dash-title { font-size: 0.82rem; font-weight: 700; }
.dash-badge {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em;
  color: #05221d; background: var(--teal); border-radius: 999px; padding: 3px 10px;
}
.hyp-row { margin-bottom: 10px; }
.hyp-row .hyp-name { display: flex; justify-content: space-between; font-size: 0.76rem; margin-bottom: 4px; }
.hyp-row .hyp-name b { color: var(--text); font-weight: 600; }
.hyp-row .hyp-name span { color: var(--text-muted); font-variant-numeric: tabular-nums; }
.hyp-bar { height: 7px; border-radius: 999px; background: rgba(148,196,220,0.09); overflow: hidden; }
.hyp-bar i { display: block; height: 100%; border-radius: 999px; background: var(--grad); }
.hyp-bar.dim i { background: rgba(113,137,160,0.55); }
.dash-cols { display: grid; grid-template-columns: 1.2fr 1fr; gap: 14px; margin-top: 6px; }
.dash-panel {
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px;
  background: rgba(6,11,18,0.45);
}
.dash-panel .pt {
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.dash-panel .ok { font-size: 0.72rem; color: var(--text-soft); margin-top: 5px; }
.dash-panel .ok b { color: var(--teal); font-weight: 700; }
.dash-log {
  margin-top: 14px; border-left: 2px solid var(--violet);
  background: rgba(139,124,246,0.06); border-radius: 0 10px 10px 0;
  padding: 9px 13px; font-size: 0.7rem; color: var(--text-soft); line-height: 1.55;
}
.dash-log b { color: var(--violet); font-weight: 700; }

/* Floating stat chips */
.hero-visual { position: relative; display: flex; justify-content: center; }
.chip {
  position: absolute; z-index: 3;
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(10,18,32,0.92); border: 1px solid var(--line-strong);
  border-radius: 13px; padding: 11px 16px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.5);
}
.chip .cv { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; }
.chip .cl { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; color: var(--text-muted); }
.chip.teal  { border-color: rgba(45,212,191,0.5);  box-shadow: 0 16px 44px rgba(0,0,0,0.5), 0 0 30px rgba(45,212,191,0.15); }
.chip.teal .cv { color: var(--teal); }
.chip.gold  { border-color: rgba(240,180,41,0.5);  box-shadow: 0 16px 44px rgba(0,0,0,0.5), 0 0 30px rgba(240,180,41,0.13); }
.chip.gold .cv { color: var(--gold); }
.chip.violet{ border-color: rgba(139,124,246,0.5); box-shadow: 0 16px 44px rgba(0,0,0,0.5), 0 0 30px rgba(139,124,246,0.15); }
.chip.violet .cv { color: var(--violet); }

/* SVG stroke icons */
.sicon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(45,212,191,0.09); border: 1px solid rgba(45,212,191,0.25);
}
.sicon svg { width: 22px; height: 22px; stroke: var(--teal); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.sicon.cyan   { background: rgba(56,189,248,0.09); border-color: rgba(56,189,248,0.25); } .sicon.cyan svg { stroke: var(--cyan); }
.sicon.violet { background: rgba(139,124,246,0.09); border-color: rgba(139,124,246,0.25); } .sicon.violet svg { stroke: var(--violet); }
.sicon.gold   { background: rgba(240,180,41,0.09); border-color: rgba(240,180,41,0.25); } .sicon.gold svg { stroke: var(--gold); }
.sicon.rose   { background: rgba(251,113,133,0.09); border-color: rgba(251,113,133,0.25); } .sicon.rose svg { stroke: var(--rose); }

/* Pipeline upgrade: numbered circles + connectors */
.pipe-step { padding-top: 26px; }
.pipe-num {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 800; color: #04211d;
  background: var(--grad); margin-bottom: 14px;
  box-shadow: 0 0 18px rgba(45,212,191,0.35);
}
.pipe-step.guard .pipe-num { background: linear-gradient(92deg,#f0b429,#fb923c); box-shadow: 0 0 18px rgba(240,180,41,0.4); color: #241503; }
@media (min-width: 1001px) {
  .pipeline { position: relative; }
  .pipe-step:not(:last-child)::after {
    content: "→"; position: absolute; top: 44px; right: -14px;
    color: var(--text-muted); font-size: 1rem; z-index: 2;
  }
  .pipe-step { position: relative; }
}

/* Score distribution chart */
.chart-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 26px 18px; }
.chart-card .ct { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }

@media (max-width: 900px) {
  .chip { display: none; }
  .dash { max-width: 100%; }
  .dash-cols { grid-template-columns: 1fr; }
}


/* ============ v2.2 — stacked cinematic hero (Linear-pattern) ============ */
.hero-stack {
  max-width: 880px; margin: 0 auto; text-align: center;
  padding-top: clamp(28px, 5vh, 64px);
}
.hero-stack .lede { margin-left: auto; margin-right: auto; }
.hero-stage {
  position: relative;
  max-width: 1060px;
  margin: clamp(36px, 6vh, 64px) auto 0;
  padding: 0 24px;
}
.hero-stage .dash { max-width: 100%; }
.hero-stage .dash-body { padding: 20px 26px 24px; }
.dash-cols-3 { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 14px; margin-top: 8px; }
.hero-proof {
  display: flex; justify-content: center; gap: clamp(22px, 4vw, 48px);
  flex-wrap: wrap; margin-top: 30px;
}
.hero-proof .hp { text-align: center; }
.hero-proof .hp b { display: block; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
.hero-proof .hp span {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--text-muted);
}
@media (max-width: 1140px) {
  .hero-stage .chip.teal { right: 8px; }
  .hero-stage .chip.gold { left: 8px; }
  .hero-stage .chip.violet { right: 16px; }
}
@media (max-width: 900px) {
  .dash-cols-3 { grid-template-columns: 1fr; }
  .hero-stage { padding: 0 16px; }
}


/* ============ v2.3 — CallRadius-DNA hero: split layout, toggle, motion ============ */
.hero-split {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 44px; align-items: center;
}
.hero-split .hero-visual { margin-top: 0; }
.hero-split .dash { max-width: 560px; }
.hero-split .dash-body { padding: 16px 18px 18px; }

/* audience toggle (CallRadius pattern) */
.aud-toggle {
  display: inline-flex; border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 4px; gap: 4px;
  background: rgba(13,22,38,0.7); margin-bottom: 20px;
}
.aud-toggle button {
  border: none; cursor: pointer; border-radius: 999px;
  padding: 8px 18px; font-family: var(--sans); font-size: 0.84rem; font-weight: 700;
  background: transparent; color: var(--text-muted); transition: all 0.18s ease;
}
.aud-toggle button.on { background: var(--grad); color: #04211d; box-shadow: 0 0 18px rgba(45,212,191,0.3); }
.aud-hint { font-size: 0.74rem; color: var(--text-muted); margin-top: 8px; }

/* entrance motion */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes fillbar { from { width: 0; } }
.rise   { animation: rise 0.7s cubic-bezier(0.2,0.7,0.3,1) both; }
.rise-2 { animation: rise 0.7s 0.12s cubic-bezier(0.2,0.7,0.3,1) both; }
.rise-3 { animation: rise 0.7s 0.24s cubic-bezier(0.2,0.7,0.3,1) both; }
.rise-4 { animation: rise 0.8s 0.36s cubic-bezier(0.2,0.7,0.3,1) both; }
.hero-visual .chip { animation: rise 0.7s 0.5s cubic-bezier(0.2,0.7,0.3,1) both, floaty 5s 1.4s ease-in-out infinite; }
.hyp-bar i { animation: fillbar 1.1s 0.5s cubic-bezier(0.2,0.7,0.3,1) both; }

/* brighter CTA pop */
.btn-primary { box-shadow: 0 4px 34px rgba(45, 212, 191, 0.45); }

@media (max-width: 1080px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split > div:first-child { text-align: center; }
  .hero-split .aud-toggle { margin-left: auto; margin-right: auto; }
  .hero-split .hero-visual { justify-content: center; margin-top: 12px; }
  .hero-split .hero-cta-row { justify-content: center; }
  .hero-split .hero-proof-left { justify-content: center; }
}


/* ============ v2.4 — perfected hero dashboard + dark showcase ============ */
.dash-xl { max-width: 640px; }
.dash-xl .dash-body { padding: 0 22px 20px; }
.patient-strip { display: flex; align-items: center; gap: 12px; padding: 14px 22px; border-bottom: 1px solid var(--line); }
.pt-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem; color: #04211d; flex-shrink: 0; }
.pt-name { font-size: 0.85rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.pt-meta { font-size: 0.68rem; color: var(--text-muted); }
.pt-right { margin-left: auto; text-align: right; font-size: 0.66rem; color: var(--text-muted); line-height: 1.5; }
.pt-right b { color: var(--teal); font-weight: 700; }
.dash-tabs { display: flex; gap: 2px; padding: 0 22px; border-bottom: 1px solid var(--line); }
.dash-tabs span { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); padding: 10px 13px 9px; border-bottom: 2px solid transparent; }
.dash-tabs span.on { color: var(--teal); border-bottom-color: var(--teal); font-weight: 700; }
.hyp-pct { font-variant-numeric: tabular-nums; font-weight: 800; font-size: 0.78rem; color: var(--teal); min-width: 40px; text-align: right; }
.hyp-line { display: grid; grid-template-columns: 1fr 44px; gap: 12px; align-items: center; margin-bottom: 11px; }
.hyp-cit { font-size: 0.64rem; color: var(--text-muted); font-weight: 500; }
.status-bar { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px; background: rgba(6,11,18,0.5); font-size: 0.66rem; color: var(--text-muted); }
.status-bar .sdot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px rgba(45,212,191,0.8); flex-shrink: 0; }
.status-bar b { color: var(--text-soft); font-weight: 700; }
.dash-glow { position: absolute; inset: -40px -60px; z-index: -1; pointer-events: none;
  background: radial-gradient(55% 55% at 55% 45%, rgba(45,212,191,0.14), transparent 70%); }

/* dark showcase rows */
.show-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 96px; }
.show-row:last-child { margin-bottom: 0; }
.show-row.flip .show-visual { order: 2; }
.show-visual { position: relative; }
.show-frame { background: var(--bg-card); border: 1px solid var(--line-strong); border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,0.45); overflow: hidden; }
.show-tag { position: absolute; top: -14px; left: 22px; z-index: 3; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #04211d; background: var(--grad); border-radius: 999px; padding: 5px 14px; box-shadow: 0 8px 22px rgba(45,212,191,0.35); }
.show-head { display: flex; justify-content: space-between; align-items: center; padding: 13px 20px; border-bottom: 1px solid var(--line); background: rgba(6,11,18,0.55); }
.show-title { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-soft); }
.show-meta { font-size: 0.58rem; color: var(--text-muted); font-weight: 700; letter-spacing: 0.06em; }
.show-body { padding: 20px 22px 22px; }
.show-copy .eyebrow { margin-bottom: 12px; }
.show-copy h3 { font-weight: 800; font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: -0.02em; line-height: 1.16; margin-bottom: 14px; }
.show-copy > p { color: var(--text-soft); font-size: 1rem; }
.show-copy ul { list-style: none; margin-top: 16px; }
.show-copy li { font-size: 0.93rem; color: var(--text-soft); padding: 5px 0 5px 26px; position: relative; }
.show-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 800; }
.chat-msg { border-radius: 12px; padding: 11px 14px; font-size: 0.82rem; line-height: 1.55; margin-bottom: 10px; }
.chat-user { background: rgba(148,196,220,0.07); color: var(--text); border: 1px solid var(--line); }
.chat-ai { background: rgba(45,212,191,0.07); border: 1px solid rgba(45,212,191,0.28); color: var(--text-soft); }
.chat-ai b { color: var(--teal); }
.mem-chip { display: inline-block; font-size: 0.58rem; font-weight: 800; letter-spacing: 0.05em; color: var(--cyan); background: rgba(56,189,248,0.08); border: 1px solid rgba(56,189,248,0.25); border-radius: 999px; padding: 2px 9px; margin: 2px 3px 0 0; }
.lab-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--text-soft); }
.lab-row:last-child { border-bottom: none; }
.lab-row b { color: var(--text); }
.flag-ok { color: var(--teal); font-weight: 800; font-size: 0.66rem; letter-spacing: 0.04em; }
.flag-hi { color: var(--gold); font-weight: 800; font-size: 0.66rem; letter-spacing: 0.04em; }

@media (min-width: 1500px) { .hero-split .dash-xl { margin-right: -48px; } }
@media (min-width: 1081px) and (max-width: 1499px) { .dash-xl { max-width: 560px; } }
@media (max-width: 1080px) {
  .show-row { grid-template-columns: 1fr; gap: 30px; margin-bottom: 72px; }
  .show-row.flip .show-visual { order: 0; }
}

.hyp-line .hyp-name { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.78rem; margin-bottom: 4px; gap: 12px; }
.hyp-line .hyp-name b { color: var(--text); font-weight: 600; white-space: nowrap; }

.h-hero.pat { font-size: clamp(2.35rem, 3.9vw, 3.65rem); }

/* ============================================================
   v2.5 — CINEMATIC HERO ELEVATION (craft pass, same design)
   Turns the flat-black hero into a lit, premium environment.
   ============================================================ */
.hero { position: relative; z-index: 0;
  background:
    radial-gradient(130% 90% at 50% -20%, rgba(18,30,50,0.7), transparent 58%),
    linear-gradient(180deg, #060c15 0%, var(--bg) 62%); }
/* faded tech grid — masked so it dissolves at the edges */
.hero::before { content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(148,196,220,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,196,220,0.055) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(78% 68% at 56% 34%, #000 18%, transparent 82%);
          mask-image: radial-gradient(78% 68% at 56% 34%, #000 18%, transparent 82%); }
/* colored light — stronger, layered */
.hero-glow { z-index:0;
  background:
    radial-gradient(44% 42% at 84% 4%, rgba(45,212,191,0.22), transparent 64%),
    radial-gradient(42% 40% at 6% 98%, rgba(139,124,246,0.17), transparent 64%),
    radial-gradient(34% 34% at 62% 46%, rgba(56,189,248,0.11), transparent 70%); }
.hero .wrap { position: relative; z-index: 2; }
/* the product visual emits light — a soft pedestal bloom behind it */
.hero-visual { isolation: isolate; }
.hero-visual::before { content:""; position:absolute; z-index:-1; inset:-10% -14%;
  background: radial-gradient(54% 54% at 52% 46%,
    rgba(45,212,191,0.26), rgba(56,189,248,0.12) 42%, transparent 72%);
  filter: blur(10px); pointer-events:none; }
/* premium device frame */
.dash-xl {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 1px 0 rgba(148,196,220,0.12),
    0 34px 80px rgba(0,0,0,0.62),
    0 0 0 1px rgba(148,196,220,0.10),
    0 0 70px rgba(45,212,191,0.12); }
/* glass-morphic floating chips */
.chip {
  background: rgba(9,16,28,0.72);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(148,196,220,0.14); }

/* ---- credibility strip ---- */
.cred { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(6,11,18,0.5); padding: 24px 0; }
.cred-inner { display:flex; align-items:center; justify-content:center; gap:34px; flex-wrap:wrap; }
.cred-label { font-size:0.7rem; font-weight:800; letter-spacing:0.14em; text-transform:uppercase;
  color: var(--text-muted); margin-right:8px; }
.cred-item { display:flex; flex-direction:column; align-items:center; gap:2px; }
.cred-item b { font-size:0.98rem; font-weight:800; color: var(--text-soft); letter-spacing:-0.01em; }
.cred-item span { font-size:0.62rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--text-muted); }
.cred-item.us b { color: var(--teal); }
@media (max-width: 720px){ .cred-inner{ gap:20px 26px; } .cred-label{ width:100%; text-align:center; margin:0 0 4px; } }

/* ============================================================
   v2.6 — rotating hero stage (patient page) + physician link
   ============================================================ */
.scene-wrap { position: relative; min-height: 366px; }
.scene { position: absolute; inset: 0; opacity: 0; transform: translateY(6px);
  transition: opacity .7s ease, transform .7s ease; pointer-events: none; }
.scene.on { opacity: 1; transform: none; }
.scene-dots { display: flex; justify-content: center; gap: 7px; margin-top: 14px; }
.scene-dot { width: 7px; height: 7px; border-radius: 999px; background: rgba(148,196,220,0.22);
  border: none; padding: 0; cursor: pointer; transition: all .3s ease; }
.scene-dot.on { width: 20px; background: var(--teal); box-shadow: 0 0 10px rgba(45,212,191,0.6); }
.dash-tabs span { cursor: default; transition: color .3s ease, border-color .3s ease; }
/* audience pill: active state + physician link */
.aud-toggle a { text-decoration: none; }
.aud-toggle .seg { border: none; cursor: pointer; border-radius: 999px; padding: 8px 16px;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 700; background: transparent;
  color: var(--text-muted); transition: all 0.18s ease; display: inline-block; }
.aud-toggle .seg.on { background: var(--grad); color: #04211d; }
.aud-toggle a.seg:hover { color: var(--text); }
@media (prefers-reduced-motion: reduce){ .scene{ transition: none; } }


/* ============================================================
   v2.7 — REAL-APP PHONE SHOWCASE (device frames + rotation)
   Premium hardware-style frame housing actual app screenshots.
   ============================================================ */
.pf{
  position:relative; width:306px; max-width:80vw; flex-shrink:0;
  border-radius:48px; padding:11px;
  background:linear-gradient(158deg,#39485d 0%,#1a2433 30%,#0d1521 62%,#0a111c 100%);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.16),
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 2px 4px rgba(0,0,0,0.55),
    0 44px 96px rgba(0,0,0,0.6),
    0 0 96px rgba(45,212,191,0.10);
}
.pf::before{ /* subtle rim light */
  content:""; position:absolute; inset:0; border-radius:48px; pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(148,196,220,0.10);
}
.pf-screen{
  position:relative; border-radius:38px; overflow:hidden;
  background:#05060f; aspect-ratio:306/632;
  box-shadow: inset 0 0 0 1.5px rgba(0,0,0,0.85), inset 0 0 34px rgba(0,0,0,0.55);
}
.pf-screen img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:top center; opacity:0;
  transition:opacity 0.95s ease; will-change:opacity;
}
.pf-screen img.on{ opacity:1; }
.pf-island{
  position:absolute; z-index:5; top:13px; left:50%; transform:translateX(-50%);
  width:86px; height:25px; background:#04060b; border-radius:14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
.pf-island::after{ content:""; position:absolute; right:15px; top:50%; transform:translateY(-50%);
  width:7px; height:7px; border-radius:50%;
  background:radial-gradient(circle at 35% 35%, #1c3a4a, #05161c); box-shadow:0 0 0 1px rgba(45,212,191,0.15); }
.pf-glow{ position:absolute; z-index:-1; inset:-9% -14%; pointer-events:none;
  background:radial-gradient(54% 52% at 52% 46%, rgba(45,212,191,0.24), rgba(56,189,248,0.11) 44%, transparent 72%);
  filter:blur(9px); }

/* rotation controls under the hero phone */
.pf-dots{ display:flex; justify-content:center; gap:8px; margin-top:20px; }
.pf-cap{ text-align:center; margin-top:11px; font-size:0.82rem; font-weight:600;
  color:var(--text-soft); min-height:20px; transition:opacity .4s ease; letter-spacing:0.01em; }
.pf-cap b{ color:var(--text); font-weight:700; }

/* hero: house the phone in the lit visual pedestal */
.hero-visual.phone-mode{ align-items:flex-start; flex-direction:column; align-items:center; }

/* ---- "in your hands" gallery ---- */
.appgrid{ display:grid; grid-template-columns:repeat(3,1fr); gap:34px; align-items:start; justify-items:center; }
.appcol{ display:flex; flex-direction:column; align-items:center; }
.appgrid .pf{ width:clamp(228px,24vw,278px); }
.appgrid .appcol:nth-child(2){ transform:translateY(-30px); }
.app-cap{ text-align:center; margin-top:26px; max-width:290px; }
.app-cap h4{ font-size:1.04rem; font-weight:800; letter-spacing:-0.015em; color:var(--text); }
.app-cap p{ font-size:0.87rem; color:var(--text-soft); margin-top:7px; line-height:1.55; }
.app-badge{ display:inline-block; font-size:0.58rem; font-weight:800; letter-spacing:0.12em;
  text-transform:uppercase; color:var(--teal); border:1px solid rgba(45,212,191,0.35);
  background:rgba(45,212,191,0.07); border-radius:999px; padding:3px 11px; margin-bottom:13px; }

@media (max-width:1080px){
  .appgrid .appcol:nth-child(2){ transform:none; }
}
@media (max-width:900px){
  .appgrid{ grid-template-columns:1fr; gap:56px; }
}
@media (prefers-reduced-motion: reduce){ .pf-screen img{ transition:none; } }
.pf-wrap{ position:relative; width:max-content; margin:0 auto; }


/* ============================================================
   v2.8 — REAL-APP SCREEN ART (live CSS/SVG product mockups)
   Fixed 306x632 design canvas; JS scales .scr to any phone width.
   ============================================================ */
.scr{position:absolute;top:0;left:0;width:306px;height:632px;transform-origin:top left;transform:scale(.928);
  font-family:var(--sans);color:#e9f1f7;overflow:hidden;display:flex;flex-direction:column;background:#070b14;}
.scr *{box-sizing:border-box;}
.scr-top{display:flex;align-items:center;justify-content:space-between;padding:52px 20px 12px;flex-shrink:0;}
.scr-brand{display:flex;align-items:center;gap:8px;font-weight:800;font-size:.92rem;letter-spacing:-.01em;}
.scr-brand .dot{width:22px;height:22px;border-radius:7px;background:linear-gradient(150deg,#2dd4bf,#38bdf8);display:flex;align-items:center;justify-content:center;}
.scr-brand .dot svg{width:13px;height:13px;stroke:#04211d;stroke-width:2.4;fill:none;}
.scr-time{font-size:.72rem;color:#8298ad;font-weight:600;font-variant-numeric:tabular-nums;}
.scr-body{flex:1;overflow:hidden;padding:0 20px 18px;position:relative;}
/* HOME */
.home{background:radial-gradient(120% 80% at 50% -10%, rgba(45,212,191,.18), transparent 46%),radial-gradient(120% 90% at 50% 118%, rgba(139,124,246,.30), rgba(56,189,248,.10) 40%, transparent 72%),linear-gradient(180deg,#0a1120 0%,#0c1424 52%,#0a1220 100%);}
.home .scr-body{display:flex;flex-direction:column;align-items:center;text-align:center;}
.home .greet{font-size:.82rem;color:#a7bccb;font-weight:500;margin-top:4px;}
.home .name{font-size:1.9rem;font-weight:800;letter-spacing:-.03em;line-height:1.02;margin-top:3px;background:linear-gradient(180deg,#fff,#cfe6ef);-webkit-background-clip:text;background-clip:text;color:transparent;}
.orb{margin:16px 0 14px;width:82px;height:82px;border-radius:50%;position:relative;display:flex;align-items:center;justify-content:center;background:radial-gradient(circle at 40% 34%, rgba(120,235,255,.85), rgba(56,189,248,.5) 42%, rgba(45,212,191,.24) 66%, rgba(139,124,246,.12) 100%);box-shadow:0 0 0 1px rgba(148,196,220,.16),0 0 40px rgba(45,212,191,.42),0 0 18px rgba(56,189,248,.5),inset 0 -6px 16px rgba(4,20,30,.5),inset 0 6px 16px rgba(255,255,255,.22);}
.orb::before{content:"";position:absolute;inset:-11px;border-radius:50%;border:1px solid rgba(45,212,191,.22);animation:orbpulse 3.6s ease-in-out infinite;}
.orb::after{content:"";position:absolute;inset:-22px;border-radius:50%;border:1px solid rgba(45,212,191,.10);animation:orbpulse 3.6s .5s ease-in-out infinite;}
@keyframes orbpulse{0%,100%{transform:scale(1);opacity:.85}50%{transform:scale(1.06);opacity:.4}}
.orb svg{width:34px;height:34px;stroke:#f2feff;stroke-width:1.8;fill:none;filter:drop-shadow(0 2px 7px rgba(0,20,30,.55));}
.home .hm-tag{font-size:.74rem;line-height:1.5;color:#b7ccd9;max-width:16.5em;}
.encourage{margin-top:14px;width:100%;border:1px solid rgba(148,196,220,.14);border-radius:14px;padding:12px 15px;background:linear-gradient(180deg,rgba(20,32,52,.6),rgba(12,20,34,.5));}
.encourage .q{font-family:var(--serif);font-style:italic;font-size:.8rem;line-height:1.4;color:#dfeaf1;}
.encourage .a{font-size:.58rem;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:#7c93a6;margin-top:7px;}
.tiles{margin-top:auto;padding-top:16px;display:flex;gap:8px;width:100%;}
.tile{flex:1;border:1px solid rgba(148,196,220,.12);border-radius:13px;padding:11px 5px 9px;text-align:center;display:flex;flex-direction:column;align-items:center;background:linear-gradient(165deg,rgba(17,28,46,.72),rgba(11,18,30,.72));}
.tile .ti{width:30px;height:30px;border-radius:9px;display:flex;align-items:center;justify-content:center;margin-bottom:8px;}
.tile .ti svg{width:16px;height:16px;stroke-width:1.9;fill:none;stroke-linecap:round;stroke-linejoin:round;}
.tile b{display:block;font-size:.63rem;font-weight:700;letter-spacing:-.01em;white-space:nowrap;}
.ti.teal{background:rgba(45,212,191,.12);border:1px solid rgba(45,212,191,.22);} .ti.teal svg{stroke:#2dd4bf;}
.ti.cyan{background:rgba(56,189,248,.12);border:1px solid rgba(56,189,248,.22);} .ti.cyan svg{stroke:#38bdf8;}
.ti.violet{background:rgba(139,124,246,.12);border:1px solid rgba(139,124,246,.22);} .ti.violet svg{stroke:#8b7cf6;}
.ti.gold{background:rgba(240,180,41,.12);border:1px solid rgba(240,180,41,.22);} .ti.gold svg{stroke:#f0b429;}
/* shared */
.qpills{display:flex;gap:8px;padding:2px 0 14px;flex-shrink:0;}
.qpill{flex:1;border-radius:11px;padding:9px 6px;text-align:center;font-size:.64rem;font-weight:700;white-space:nowrap;display:flex;align-items:center;justify-content:center;gap:5px;}
.qpill svg{width:13px;height:13px;fill:none;stroke-width:2;}
.qpill.a{color:#2dd4bf;background:rgba(45,212,191,.09);border:1px solid rgba(45,212,191,.3);} .qpill.a svg{stroke:#2dd4bf;}
.qpill.b{color:#4ade80;background:rgba(74,222,128,.08);border:1px solid rgba(74,222,128,.28);} .qpill.b svg{stroke:#4ade80;}
.scr-h2{font-size:1.15rem;font-weight:800;letter-spacing:-.02em;}
/* CHAT */
.chat .scr-body{display:flex;flex-direction:column;}
.chat-scroll{flex:1;overflow:hidden;display:flex;flex-direction:column;justify-content:flex-end;gap:9px;padding-top:2px;}
.bub{border-radius:14px;padding:10px 13px;font-size:.75rem;line-height:1.5;max-width:88%;}
.bub.u{align-self:flex-end;background:linear-gradient(160deg,#1b3a5c,#16324e);border:1px solid rgba(56,189,248,.22);border-bottom-right-radius:5px;color:#eaf3fa;}
.bub.ai{align-self:flex-start;background:linear-gradient(165deg,rgba(45,212,191,.10),rgba(45,212,191,.045));border:1px solid rgba(45,212,191,.24);border-bottom-left-radius:5px;color:#cfe0ea;}
.bub.ai .hl{color:#38e5cf;font-weight:700;}
.bub.safe{align-self:flex-start;background:rgba(148,196,220,.05);border:1px solid rgba(148,196,220,.14);font-size:.7rem;color:#a9c0d0;}
.bub.safe b{color:#4ade80;}
.memrow{display:flex;flex-wrap:wrap;gap:5px;align-self:flex-start;margin-top:1px;}
.mchip{font-size:.56rem;font-weight:700;letter-spacing:.02em;color:#8ad9ff;background:rgba(56,189,248,.08);border:1px solid rgba(56,189,248,.24);border-radius:999px;padding:3px 9px;}
.chatbar{margin-top:11px;display:flex;align-items:center;gap:9px;border:1px solid rgba(148,196,220,.16);border-radius:14px;padding:9px 10px 9px 14px;background:rgba(10,17,29,.8);flex-shrink:0;}
.chatbar .ph{flex:1;font-size:.72rem;color:#6b8296;}
.chatbar .snd{width:30px;height:30px;border-radius:9px;background:linear-gradient(150deg,#2dd4bf,#38bdf8);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.chatbar .snd svg{width:15px;height:15px;stroke:#04211d;stroke-width:2.4;fill:none;}
/* ANALYSIS */
.ana .scr-body{display:flex;flex-direction:column;gap:11px;overflow:hidden;}
.ana-head{display:flex;align-items:center;justify-content:space-between;}
.badge-pass{font-size:.56rem;font-weight:800;letter-spacing:.06em;white-space:nowrap;color:#04211d;background:linear-gradient(92deg,#2dd4bf,#38bdf8);border-radius:999px;padding:5px 11px;display:flex;align-items:center;gap:5px;flex-shrink:0;}
.badge-pass svg{width:11px;height:11px;stroke:#04211d;stroke-width:2.6;fill:none;}
.hyp{margin-bottom:2px;}
.hyp .r{display:flex;justify-content:space-between;align-items:baseline;gap:8px;margin-bottom:5px;}
.hyp .nm{font-size:.78rem;font-weight:700;}
.hyp .nm.dim{color:#8ba0b2;font-weight:600;}
.hyp .cit{font-size:.58rem;color:#7189a0;font-weight:500;}
.hyp .pc{font-size:.78rem;font-weight:800;font-variant-numeric:tabular-nums;color:#2dd4bf;}
.hyp .pc.dim{color:#7189a0;}
.track{height:7px;border-radius:999px;background:rgba(148,196,220,.10);overflow:hidden;}
.track i{display:block;height:100%;border-radius:999px;background:linear-gradient(92deg,#2dd4bf,#38bdf8);}
.track i.dim{background:rgba(113,137,160,.5);}
.log{border-left:2px solid #8b7cf6;background:rgba(139,124,246,.07);border-radius:0 10px 10px 0;padding:9px 12px;font-size:.66rem;line-height:1.5;color:#c3d3df;}
.log b{color:#a99bff;font-weight:700;}
.log.gold{border-left-color:#f0b429;background:rgba(240,180,41,.06);} .log.gold b{color:#f0b429;}
.pipe-status{margin-top:auto;display:flex;align-items:center;gap:9px;border:1px solid rgba(148,196,220,.12);border-radius:11px;padding:10px 13px;background:rgba(6,11,18,.5);font-size:.64rem;color:#8ba0b2;}
.pipe-status b{color:#cfe0ea;font-weight:700;}
.pdot{width:8px;height:8px;border-radius:50%;background:#2dd4bf;box-shadow:0 0 9px rgba(45,212,191,.9);flex-shrink:0;}
/* TRACKER */
.trk .scr-body{display:flex;flex-direction:column;gap:12px;}
.trk-date{display:flex;justify-content:space-between;align-items:center;border:1px solid rgba(148,196,220,.1);border-radius:11px;padding:10px 13px;font-size:.72rem;color:#b7ccd9;}
.trk-date span{color:#7189a0;font-size:.66rem;}
.trk-stats{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid rgba(148,196,220,.1);border-radius:13px;overflow:hidden;}
.trk-stat{padding:13px 6px;text-align:center;border-right:1px solid rgba(148,196,220,.08);}
.trk-stat:last-child{border-right:none;}
.trk-stat b{display:block;font-size:1.15rem;font-weight:800;letter-spacing:-.02em;}
.trk-stat span{font-size:.5rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:#7189a0;white-space:nowrap;}
.gaugewrap{display:flex;align-items:center;gap:14px;border:1px solid rgba(148,196,220,.1);border-radius:14px;padding:14px 16px;background:linear-gradient(165deg,rgba(17,28,46,.55),rgba(11,18,30,.55));}
.gaugewrap .lg{flex:1;}
.gaugewrap .lg .t{font-size:.6rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:#7189a0;}
.gaugewrap .lg .d{font-size:.72rem;color:#b7ccd9;margin-top:4px;line-height:1.4;}
.gaugewrap .lg .d b{color:#f59e6b;}
.sys{display:flex;flex-wrap:wrap;gap:6px;}
.syschip{font-size:.62rem;font-weight:600;color:#b7ccd9;border:1px solid rgba(148,196,220,.14);border-radius:999px;padding:5px 11px;display:flex;align-items:center;gap:6px;}
.syschip i{width:6px;height:6px;border-radius:50%;display:block;}
.trk-h{font-size:.62rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:#7189a0;}
/* hero cross-fade rotation */
.pf-screen.rotator .scr{opacity:0;transition:opacity .85s ease;}
.pf-screen.rotator .scr.on{opacity:1;}
@media (prefers-reduced-motion: reduce){ .pf-screen.rotator .scr{transition:none;} .orb::before,.orb::after{animation:none;} }
