﻿/* ============================================================
   Tier1/AI  -  home-v2.css   (CLEAN ROOM - zero Codex)
   Static seamless backdrop. Sections scroll over it.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Keep section titles below the sticky nav on #hash jumps */
  scroll-padding-top: calc(var(--nav-h) + 18px);
}
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #33415c;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
[hidden] { display: none !important; }

:root {
  --navy: #12294a;
  --ink: #24324c;
  --muted: #64748b;
  --blue: #3FA9F5;          /* logo accent */
  --blue-deep: #2B8FD9;     /* hover / pressed */
  --blue-rgb: 63, 169, 245;
  --green: #16a34a;
  --line: #e7edf6;
  --tint: #eaf6fd;
  --card: #ffffff;
  --radius: 18px;
  --gold: #f5b547;
  --shadow-sm: 0 10px 26px -14px rgba(20, 45, 90, 0.18);
  --shadow: 0 22px 48px -22px rgba(20, 45, 90, 0.28);
  /* solid card lift + soft yellow backlight so layers read */
  --card-glow:
    0 14px 32px -16px rgba(20, 45, 90, 0.22),
    0 0 40px -10px rgba(245, 181, 71, 0.42),
    0 0 0 1px rgba(245, 181, 71, 0.14);
  --card-glow-hover:
    0 20px 40px -16px rgba(20, 45, 90, 0.28),
    0 0 52px -8px rgba(245, 181, 71, 0.55),
    0 0 0 1px rgba(245, 181, 71, 0.22);
  --maxw: 1280px;
  --content: 1080px;       /* shared band width for main cards */
  --nav-h: 66px;
  --slash: #3FA9F5;
  /* One vertical rhythm: section ↔ section gap is always 2 × --section-y */
  --section-y: clamp(18px, 2.2vw, 28px);
  --section-head-gap: clamp(12px, 1.5vw, 18px);
}
.slash { color: var(--slash); font-weight: 800; }

/* ---------- STATIC seamless background (no scroll seam) ---------- */
.bg {
  position: fixed; inset: 0; z-index: -2;
  pointer-events: none; overflow: hidden;
}
.bg-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 40% at 78% 8%, rgba(245, 200, 120, 0.24) 0%, rgba(245, 200, 120, 0) 60%),
    radial-gradient(55% 36% at 18% 72%, rgba(63, 169, 245, 0.13) 0%, rgba(63, 169, 245, 0) 62%),
    linear-gradient(180deg, #ffffff 0%, #e6f5fc 42%, #d8eef9 100%);
}
/* Soft cloud/shape art: fixed, faded ? never a hard edge */
.bg-art {
  position: absolute; left: -8%; right: -8%;
  top: 18%;
  height: 72%;
  background: url("/assets/img/homepage/hero-art.png") no-repeat center 70%;
  background-size: cover;
  opacity: 0.64;
  -webkit-mask-image: radial-gradient(
    70% 55% at 55% 58%,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.55) 42%,
    rgba(0,0,0,0.18) 68%,
    transparent 100%
  );
  mask-image: radial-gradient(
    70% 55% at 55% 58%,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.55) 42%,
    rgba(0,0,0,0.18) 68%,
    transparent 100%
  );
}
/* Watermark gears */
.bg-gears {
  position: absolute; inset: 0;
  background-image:
    url("/assets/img/homepage/gear-white.svg"),
    url("/assets/img/homepage/gear-white.svg"),
    url("/assets/img/homepage/gear-white.svg");
  background-repeat: no-repeat;
  background-position: 4% 42%, 96% 62%, 70% 90%;
  background-size: 140px, 190px, 120px;
  opacity: 0.09;
  filter: blur(0.4px);
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { position: relative; padding: var(--section-y) 0; }
.section[id],
[id="intro"],
[id="why"],
[id="loop"],
[id="command"],
[id="tryit"],
[id="proof"],
[id="versus"],
[id="next"] {
  scroll-margin-top: calc(var(--nav-h) + 18px);
}
.section-head { text-align: center; margin-bottom: var(--section-head-gap); }
.section-head--tight { margin-bottom: var(--section-head-gap); }
.band { width: 100%; max-width: var(--content); margin-left: auto; margin-right: auto; }

/* Soft enter for cards ? keeps scroll feeling alive without puff */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .45s cubic-bezier(.22, .8, .28, 1);
}
.reveal.is-shown {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 11px 18px; border-radius: 11px;
  font-weight: 700; font-size: 14.5px; line-height: 1; text-decoration: none;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn-lg { padding: 14px 22px; font-size: 15.5px; border-radius: 12px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 14px 30px -12px rgba(63,169,245,.55); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--blue); border-color: #b7dff8; }
.btn-outline:hover { border-color: var(--blue); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
/* White Gunner CTA — matches the floating gear */
.btn-gunner {
  background: #FFFFFF;
  color: var(--navy);
  border: 1px solid rgba(18, 41, 74, 0.12);
  box-shadow:
    0 10px 24px -14px rgba(20, 45, 90, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.8);
}
.btn-gunner:hover {
  background: #fff;
  border-color: rgba(43, 143, 217, 0.35);
  color: var(--blue-deep);
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px -14px rgba(43, 143, 217, 0.35),
    0 0 0 1px rgba(63, 169, 245, 0.2);
}
.btn-arrow {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  line-height: 0;
  flex: none;
}
.btn-outline .btn-arrow { background: var(--tint); }
.btn-gunner .btn-arrow {
  background: var(--tint);
  color: var(--blue);
}
.btn-arrow svg {
  width: 14px;
  height: 14px;
  display: block;
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 20px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 18px; color: var(--navy); text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 4px; margin: 0 auto; }
.nav-links a {
  color: #46536b; text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 8px 12px; border-radius: 8px; position: relative;
}
.nav-links a:hover { color: var(--navy); background: var(--tint); }
.nav-links a.is-active { color: var(--blue); }
.nav-links a.is-active::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px; background: var(--blue); border-radius: 2px; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ---------- shared type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  color: var(--blue); font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(12px, 1.2vw, 15px); font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  margin: 0 0 8px;
}
.eyebrow::before, .eyebrow::after { content: ""; width: clamp(28px, 4vw, 48px); height: 2px; background: currentColor; opacity: .45; }
.eyebrow--left { justify-content: flex-start; }
.eyebrow--left::before { display: none; }
.eyebrow--left::after { width: 28px; }
.h2 { color: var(--navy); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; font-size: clamp(22px, 2.7vw, 34px); margin: 0 0 6px; text-align: center; }
.h2--left { text-align: left; }
.lead { color: var(--muted); font-size: clamp(14.5px, 1.15vw, 16.5px); line-height: 1.45; max-width: 640px; margin: 0 auto; text-align: center; }
.lead--left { text-align: left; margin-left: 0; margin-right: 0; }
.why-open { margin: 0 auto clamp(10px, 1.4vw, 16px); max-width: 720px; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--card-glow);
  color: var(--blue); font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12.5px; font-weight: 600; letter-spacing: .02em;
}
.pill svg { width: 15px; height: 15px; }

/* ---------- REVIEW QUEUE (temp) ---------- */
.review-banner {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 14px; padding: 14px 16px;
  background: #fff8e8; border: 1px solid rgba(245,181,71,.45); border-radius: 14px;
}
.review-tag {
  flex: none; display: inline-block; padding: 4px 8px; border-radius: 6px;
  background: var(--gold); color: #3a2a0a; font-size: 11px; font-weight: 800; letter-spacing: .06em;
}
.review-stack { display: grid; gap: 12px; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--card-glow); padding: 16px 18px;
}
.review-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.review-card-head h3 { margin: 0; color: var(--navy); font-size: 18px; font-weight: 800; }
.review-sub { margin: 0 0 12px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.review-sub a { color: var(--blue); font-weight: 600; }
.review-loop, .review-onboard {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 8px;
}
.review-loop li, .review-onboard li {
  display: grid; gap: 2px; padding: 10px 12px; border-radius: 10px; background: #fafcff; border: 1px solid var(--line);
}
.review-loop strong, .review-onboard strong { color: var(--navy); font-size: 14px; }
.review-loop span, .review-onboard span { color: var(--muted); font-size: 13px; line-height: 1.4; }
.review-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.review-tiles--2 { grid-template-columns: repeat(2, 1fr); }
.review-tiles--addons {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 12px;
}
.review-tiles--addons .review-tile--wide { grid-column: 1 / -1; }
.review-tiles > div {
  padding: 12px; border-radius: 12px; background: #fafcff; border: 1px solid var(--line);
}
.review-tiles em {
  display: block; font-style: normal; color: var(--blue);
  font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 4px;
}
.review-tiles--addons em {
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--blue);
}
.review-tiles b { display: block; color: var(--navy); font-size: 15px; margin-bottom: 4px; }
.review-tiles--addons b {
  color: #9aa3b2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.review-tiles p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.4; }
.review-tiles a { color: var(--blue); font-weight: 600; }
.review-check {
  margin: 0; padding: 0 0 0 18px; color: var(--ink); font-size: 14px; line-height: 1.55;
  columns: 2; column-gap: 24px;
}
.review-check li { margin-bottom: 4px; break-inside: avoid; }
.review-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--line); }
.review-table {
  width: 100%; border-collapse: collapse; font-size: 13px; background: #fff;
}
.review-table th, .review-table td {
  padding: 8px 10px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top;
}
.review-table th { background: #eef7fd; color: var(--navy); font-weight: 700; }
.review-table th span { display: block; font-weight: 500; color: var(--muted); font-size: 11px; }
.review-table td:first-child { color: var(--ink); font-weight: 600; }
.review-table--market td:nth-child(2) { white-space: nowrap; color: var(--navy); font-weight: 700; }

/* Review: site nav destinations */
.rsite { margin-top: 4px; }
.rsite-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.rsite-tab {
  appearance: none; border: 1px solid var(--line); background: #fff; color: var(--navy);
  border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 700; cursor: pointer;
}
.rsite-tab:hover { border-color: var(--blue); color: var(--blue); }
.rsite-tab.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.rsite-panel { display: none; }
.rsite-panel.is-active { display: block; }
.rsite-kicker {
  margin: 0 0 8px; color: var(--muted); font-size: 12.5px; font-weight: 600;
}
.rsite-kicker code {
  font-family: "IBM Plex Mono", monospace; font-size: 11.5px;
  background: #eef7fd; padding: 1px 5px; border-radius: 4px;
}
.rsite-kicker a, .rsite-foot a { color: var(--blue); font-weight: 600; }
.rsite-title { margin: 0 0 8px; color: var(--navy); font-size: 22px; font-weight: 800; }
.rsite-lead { margin: 0 0 8px; color: var(--ink); font-size: 15px; line-height: 1.5; }
.rsite-note { margin: 10px 0; color: var(--muted); font-size: 14px; }
.rsite-note span { font-style: normal; font-size: 12.5px; }
.rsite-foot { margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.rsite-bullets { margin: 0; padding: 0 0 0 18px; color: var(--ink); font-size: 14px; line-height: 1.5; }
.rsite-bullets code { font-family: "IBM Plex Mono", monospace; font-size: 12px; }
.rsite-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0; }
.rsite-chip {
  border: 1px solid var(--line); background: #fff; color: var(--navy);
  border-radius: 999px; padding: 5px 10px; font-size: 12px; font-weight: 700; cursor: pointer;
}
.rsite-chip.is-active { background: var(--blue); color: #fff; border-color: var(--blue); }
.rsite-agent-list {
  list-style: none; margin: 0; padding: 0; max-height: 320px; overflow: auto;
  border: 1px solid var(--line); border-radius: 12px; background: #fafcff;
}
.rsite-agent-list li {
  padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: 13.5px; color: var(--ink);
}
.rsite-agent-list li:last-child { border-bottom: 0; }
.rsite-agent-list strong { color: var(--navy); }
.rsite-agent-list em {
  font-style: normal; display: inline-block; margin-left: 6px;
  font-size: 11px; font-weight: 700; color: var(--blue);
  font-family: "IBM Plex Mono", monospace; letter-spacing: .04em;
}
.rsite-muted { color: var(--muted) !important; }
.rsite-blog-list { display: grid; gap: 8px; }
.rsite-blog-list a {
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
  padding: 10px 12px; border-radius: 10px; border: 1px solid var(--line);
  background: #fafcff; text-decoration: none; color: inherit;
}
.rsite-blog-list a:hover { border-color: var(--blue); }
.rsite-blog-list strong { color: var(--navy); font-size: 14px; }
.rsite-blog-list span { flex: none; color: var(--muted); font-size: 12px; font-weight: 600; }
.rsite-more-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.rsite-more-card {
  display: grid; gap: 4px; padding: 12px; border-radius: 12px;
  border: 1px solid var(--line); background: #fafcff; text-decoration: none; color: inherit;
}
.rsite-more-card:hover { border-color: var(--blue); }
.rsite-more-card strong { color: var(--navy); font-size: 15px; }
.rsite-more-card span { color: var(--muted); font-size: 12.5px; line-height: 1.4; }
@media (max-width: 960px) {
  .rsite-more-grid { grid-template-columns: 1fr; }
  .rsite-blog-list a { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* Review: tier page tabs + meter */
.rtier { margin-top: 4px; }
.rtier-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px;
}
.rtier-tab {
  appearance: none; border: 1px solid var(--line); background: #fff; color: var(--navy);
  border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 700; cursor: pointer;
  text-decoration: none;
}
.rtier-tab:hover { border-color: var(--blue); color: var(--blue); }
.rtier-tab.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.rtier-tab--link { display: inline-flex; align-items: center; }
.rtier-panel { display: none; }
.rtier-panel.is-active { display: block; }
.rtier-hero {
  padding: 14px 16px; border-radius: 14px; background: #fafcff; border: 1px solid var(--line); margin-bottom: 12px;
}
.rtier-hero-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.rtier-icon {
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--blue); background: #fff;
}
.rtier-icon svg { width: 28px; height: 28px; }
.rtier-name { margin: 0; color: var(--navy); font-size: 22px; font-weight: 800; }
.rtier-audience { margin: 2px 0 0; color: var(--muted); font-size: 13.5px; }
.rtier-price-row { display: flex; align-items: baseline; gap: 8px; }
.rtier-price { font-size: 40px; font-weight: 900; color: var(--navy); line-height: 1; }
.rtier-period { color: var(--muted); font-weight: 600; font-size: 15px; }
.rtier-meta { margin: 6px 0 0; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.rtier-meta strong { color: var(--navy); }
.rtier-blurb { margin: 10px 0 0; color: var(--ink); font-size: 14px; line-height: 1.5; }
.rtier-cols {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 12px;
}
.rtier-meter, .rtier-incl {
  padding: 14px; border-radius: 14px; border: 1px solid var(--line); background: #fff;
}
.rtier-meter h5, .rtier-incl h5 {
  margin: 0 0 8px; color: var(--navy); font-size: 15px; font-weight: 800;
}
.rtier-monthly { font-size: 36px; font-weight: 900; color: var(--navy); line-height: 1; }
.rtier-monthly-label { margin: 4px 0 8px; color: var(--muted); font-size: 12.5px; }
.rtier-onboard { margin: 0 0 8px; color: var(--blue); font-size: 13px; font-weight: 600; }
.rtier-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px;
}
.rtier-stats > div {
  padding: 10px; border-radius: 10px; background: #eef7fd; border: 1px solid var(--line);
}
.rtier-stats b { display: block; font-size: 20px; color: var(--navy); font-weight: 800; }
.rtier-stats span { display: block; margin-top: 2px; color: var(--muted); font-size: 11.5px; line-height: 1.3; }
.rtier-breakdown { margin: 0 0 10px; color: var(--ink); font-size: 12.5px; line-height: 1.4; }
.rtier-slider-lab {
  display: flex; justify-content: space-between; color: var(--muted); font-size: 11px; font-weight: 600; margin-bottom: 4px;
}
.rtier-slider input[type="range"] { width: 100%; accent-color: var(--blue); }
.rtier-boost {
  display: flex; gap: 8px; align-items: flex-start; margin-top: 10px;
  color: var(--ink); font-size: 12.5px; line-height: 1.4; cursor: pointer;
}
.rtier-boost input { margin-top: 2px; }
.rtier-incl ul {
  margin: 0; padding: 0 0 0 18px; color: var(--ink); font-size: 13.5px; line-height: 1.5;
}
.rtier-incl li { margin-bottom: 4px; }
@media (max-width: 960px) {
  .rtier-cols { grid-template-columns: 1fr; }
}

/* ---------- HERO (floating ? no card wrapper) ---------- */
.hero {
  /* Same bottom as every section; only top adds a little air under the sticky nav */
  padding-top: calc(var(--section-y) + 10px);
  padding-bottom: var(--section-y);
}
.hero-wrap { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-title {
  color: var(--navy); font-weight: 900; letter-spacing: -0.03em;
  font-size: clamp(32px, 4.6vw, 56px); line-height: 1.05;
  margin: 14px auto 0; max-width: 16ch;
}
.hero-sub {
  color: var(--ink);
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 500;
  line-height: 1.4;
  margin: 14px auto 0;
  max-width: 38rem;
}
.hero-product {
  margin: 12px auto 0;
  max-width: 40rem;
  color: var(--navy);
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.015em;
}
.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 22px auto 0;
}
.hero-cta .btn {
  flex: 0 1 220px;
  min-width: 220px;
  justify-content: center;
  box-sizing: border-box;
}
.hero-audience {
  margin: 14px auto 0 !important;
  text-align: center;
  max-width: 46rem;
}
.hero-tagline {
  margin: 8px auto 0 !important;
  text-align: center;
  max-width: 40ch;
}

/* Audience strip — honest who-it's-for, not fake customer logos */
.audience-strip {
  padding-top: 0;
}
.audience-built-for {
  text-align: center;
  margin: 0 auto 14px !important;
}
.audience-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--content);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
}
.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(18, 41, 74, 0.1);
}
.audience-mark {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--tint);
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.audience-list strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 4px;
}
.audience-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.4;
}
.tryit-idle {
  padding: 36px 20px;
  text-align: center;
  border: 1px dashed rgba(18, 41, 74, 0.16);
  border-radius: calc(var(--radius) - 4px);
  background: #fafcff;
}
.tryit-idle-title {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 800;
}
.tryit-idle-sub {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.trust {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 18px;
  margin: clamp(16px, 2vw, 22px) auto 0; padding: 8px 14px; max-width: 720px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--card-glow); color: var(--navy); font-size: 13.5px; font-weight: 600;
}
.trust--bare {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  gap: 10px 22px;
}
.trust-item { display: inline-flex; align-items: center; gap: 8px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); padding-left: 20px; }
.trust--bare .trust-item + .trust-item { border-left-color: rgba(18, 41, 74, 0.12); }
.trust-item svg { width: 18px; height: 18px; color: var(--blue); }
.trust-item b { color: var(--blue); font-weight: 700; }

/* ---------- THE WHY / PHILOSOPHY ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--content);
  margin: 0 auto;
  border-top: 1px solid rgba(18, 41, 74, 0.1);
  border-bottom: 1px solid rgba(18, 41, 74, 0.1);
}
.qcard {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 22px 20px;
  text-align: left;
}
.qcard + .qcard { border-left: 1px solid rgba(18, 41, 74, 0.1); }
.why-hinge {
  max-width: 36rem;
  margin: 18px auto 0 !important;
  text-align: center;
}
.qcard .qnum {
  display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 9px;
  background: var(--tint); color: var(--blue); font-family: "IBM Plex Mono", monospace;
  font-weight: 600; font-size: 12px; margin-bottom: 10px;
}
.qcard p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.why-trust {
  max-width: var(--content);
  margin: 0 auto clamp(14px, 2vw, 20px);
  justify-content: center;
}
.why-solution {
  max-width: 46rem;
  margin: 22px auto 0;
  text-align: center;
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.5;
  font-weight: 500;
}
.why-solution-kicker {
  display: block;
  margin-bottom: 8px;
}
.why-solution b { color: var(--navy); }
.thesis-block {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
  text-align: center;
}
.thesis-block .tx--title,
.thesis-block .tx--body {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 42rem;
  text-align: center !important;
}
.thesis-block .tx--title {
  font-size: clamp(22px, 2.6vw, 30px) !important;
}
.thesis-block .tx--body {
  font-size: clamp(16px, 1.45vw, 18.5px) !important;
  line-height: 1.55 !important;
  color: var(--ink) !important;
}
.proof-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  text-align: center;
}
.proof-split-gear {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--tint);
  color: var(--blue);
  flex: none;
}
.proof-split-gear svg { width: 15px; height: 15px; }
.solution-card {
  display: flex; align-items: center; gap: 12px;
  margin: 10px auto 0; max-width: var(--content); padding: 12px 16px;
  background: #fff;
  border: 1px solid #d5ebf9; border-radius: 16px; box-shadow: var(--card-glow);
}
.solution-icon { flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--blue); color: #fff; }
.solution-icon svg { width: 24px; height: 24px; }
.solution-kicker { margin: 0 0 2px; color: var(--blue); font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 600; letter-spacing: .14em; }
.solution-body { margin: 0; color: var(--ink); font-size: 14.5px; line-height: 1.4; }
.solution-body b { color: var(--navy); }

/* ---------- CENTRAL COMMAND: step card + white cycle gear ---------- */
.cycle {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(260px, 360px);
  gap: 16px 24px;
  align-items: stretch;
  max-width: var(--content);
  margin: 0 auto;
}
.cycle-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--card-glow); padding: 16px 18px;
  display: flex; flex-direction: column;
  min-height: 0;
  transition: box-shadow .25s ease;
}
.cycle-card.is-pulse { box-shadow: var(--card-glow-hover); }
.cycle-fade {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 168px;
  opacity: 1;
  transition: opacity .35s ease;
}
.cycle-fade.is-out { opacity: 0; }
.cycle-eyebrow {
  margin: 0; color: var(--blue);
  font-family: "IBM Plex Mono", monospace; font-size: 11.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
}
/* Keep step copy roughly one size so fades don't reflow the card */
.cycle-headline {
  margin: 0; color: var(--navy);
  font-size: 15.5px; font-weight: 700; line-height: 1.45; letter-spacing: -0.01em;
}
.cycle-body {
  margin: 0; color: var(--ink);
  font-size: 15.5px; font-weight: 400; line-height: 1.5;
  flex: 1 1 auto;
}
.cycle-stat {
  margin: 0; padding: 10px 12px; border-radius: 10px;
  background: #eef7fd; color: var(--blue);
  font-size: 15px; font-weight: 600; line-height: 1.4;
}
.cycle-links {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid #eef2f7;
}
.cycle-links a {
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; font-size: 12.5px; font-weight: 700; color: var(--navy);
  padding: 7px 11px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
}
.cycle-links a svg { width: 15px; height: 15px; color: var(--blue); flex: none; }
.cycle-links a:hover { border-color: var(--blue); color: var(--blue); }

.cycle-wheel {
  --dial-size: min(260px, 64vw);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 8px 0;
}
/* Round dial — matches left card material, no gear / no square */
.cycle-dial {
  --gear-cx: 50%;
  --gear-cy: 50%;
  --step: 0;
  position: relative;
  width: var(--dial-size);
  aspect-ratio: 1;
  border-radius: 50%;
}
.cycle-dial-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(245, 181, 71, 0.16) 0%, transparent 42%),
    radial-gradient(circle at 50% 55%, #eaf6fd 0%, #f7fbff 55%, #ffffff 100%);
  border: 1px solid rgba(63, 169, 245, 0.22);
  box-shadow:
    0 14px 28px -18px rgba(20, 45, 90, 0.28),
    0 0 0 6px rgba(63, 169, 245, 0.04);
}
.cycle-dial-ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1.5px dashed rgba(63, 169, 245, 0.32);
  pointer-events: none;
}
.cycle-dial-arc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  --cycle-step-deg: calc(360deg / var(--step-count, 7));
  background: conic-gradient(
    from calc(var(--step) * var(--cycle-step-deg) - 115.714deg),
    rgba(63, 169, 245, 0.28) 0deg,
    rgba(63, 169, 245, 0.28) var(--cycle-step-deg),
    transparent var(--cycle-step-deg) 360deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 14px), #000 calc(100% - 13px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 14px), #000 calc(100% - 13px));
  pointer-events: none;
  transition: background .6s ease;
}
.cycle-badges {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.cycle-badge {
  --orbit: calc(var(--dial-size) * 0.38);
  position: absolute;
  left: var(--gear-cx);
  top: var(--gear-cy);
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #12294a;
  color: #fff;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(18, 41, 74, 0.2);
  transform: rotate(var(--a, 0deg)) translateY(calc(-1 * var(--orbit))) rotate(calc(-1 * var(--a, 0deg)));
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.cycle-badge.is-active {
  background: var(--blue);
  transform: rotate(var(--a, 0deg)) translateY(calc(-1 * var(--orbit))) rotate(calc(-1 * var(--a, 0deg))) scale(1.08);
  box-shadow:
    0 0 0 4px rgba(63, 169, 245, 0.2),
    0 8px 16px rgba(43, 143, 217, 0.35);
}
.cycle-badge.is-gold:not(.is-active) {
  background: #8a5a12;
}
.cycle-badge.is-gold.is-active {
  background: #E8A040;
  box-shadow:
    0 0 0 4px rgba(232, 160, 64, 0.22),
    0 8px 16px rgba(232, 160, 64, 0.35);
}
.cycle-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(160deg, #163a6e 0%, #0d2a62 100%);
  color: #fff;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  box-shadow:
    0 0 0 4px rgba(245, 181, 71, 0.72),
    0 0 26px 2px rgba(245, 181, 71, 0.25),
    0 12px 22px -10px rgba(13, 42, 98, 0.4);
  pointer-events: none;
}
.cycle-hub strong {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cycle-hub em {
  margin-top: 3px;
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #9fd0f5;
}
.cycle-ticks {
  grid-column: 1 / -1;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 4px 0 0;
}
.cycle-tick {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}
.cycle-tick:hover {
  border-color: rgba(63, 169, 245, 0.45);
  color: var(--blue);
}
.cycle-tick.is-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-1px);
}
@media (prefers-reduced-motion: reduce) {
  .cycle-dial-arc,
  .cycle-badge { transition: none !important; }
  .cycle-fade { transition: none !important; }
}

/* ---------- INVESTOR JOURNEY: motion path + equal step cards ---------- */
.loop-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  max-width: var(--content);
  margin: 0 auto;
}
.journey {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 20px 22px 22px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 8% 18%, rgba(245, 181, 71, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 65% 50% at 96% 88%, rgba(63, 169, 245, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 58%) !important;
  border: 1px solid rgba(63, 169, 245, 0.18) !important;
  border-radius: var(--radius);
  box-shadow:
    var(--card-glow),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}
.journey::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue) 48%, var(--gold) 52%, var(--gold) 100%);
  pointer-events: none;
}
.journey-svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 240px;
}
.journey-path {
  stroke-dasharray: 0.28 0.72;
  animation: journey-draw 8s linear infinite;
}
@keyframes journey-draw {
  to { stroke-dashoffset: -1; }
}
.journey-lanes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: -4px 0 2px;
}
.journey-lane {
  margin: 0;
  text-align: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
}
.journey-lane--investor {
  color: var(--blue);
  background: rgba(63, 169, 245, 0.12);
  border: 1px solid rgba(63, 169, 245, 0.28);
}
.journey-lane--company {
  color: #8a5a12;
  background: rgba(245, 181, 71, 0.18);
  border: 1px solid rgba(232, 160, 64, 0.4);
}
.journey-nodes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  position: relative;
}
.journey-nodes::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: calc(50% - 1px);
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(63, 169, 245, 0.35), rgba(245, 181, 71, 0.55));
  pointer-events: none;
  opacity: 0.85;
}
.journey-nodes li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 12px 8px 11px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 41, 74, 0.08);
  box-shadow: 0 6px 16px -14px rgba(20, 45, 90, 0.35);
  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease;
  position: relative;
  z-index: 1;
}
.journey-nodes li.is-investor {
  border-color: rgba(63, 169, 245, 0.2);
  background: rgba(247, 251, 255, 0.95);
}
.journey-nodes li.is-company {
  border-color: rgba(245, 181, 71, 0.35);
  background: rgba(255, 250, 240, 0.95);
}
.journey-nodes li:hover {
  transform: translateY(-2px);
}
.journey-nodes li.is-investor:hover {
  border-color: rgba(63, 169, 245, 0.45);
}
.journey-nodes li.is-company:hover {
  border-color: rgba(232, 160, 64, 0.65);
}
.journey-nodes li.is-live {
  background: #fff;
  transform: translateY(-3px);
}
.journey-nodes li.is-investor.is-live {
  border-color: rgba(63, 169, 245, 0.5);
  box-shadow:
    0 12px 24px -14px rgba(43, 143, 217, 0.45),
    0 0 0 3px rgba(63, 169, 245, 0.1);
}
.journey-nodes li.is-company.is-live {
  border-color: rgba(232, 160, 64, 0.7);
  box-shadow:
    0 12px 24px -14px rgba(245, 181, 71, 0.55),
    0 0 0 3px rgba(245, 181, 71, 0.14);
}
.journey-nodes span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.journey-nodes li.is-investor span {
  background: linear-gradient(145deg, #3FA9F5, #2B8FD9);
  box-shadow: 0 8px 16px -10px rgba(43, 143, 217, 0.85);
}
.journey-nodes li.is-company span {
  background: linear-gradient(145deg, #f7c76a, #e8a040);
  color: #3a2a0a;
  box-shadow: 0 8px 16px -10px rgba(245, 181, 71, 0.9);
}
.journey-nodes li.is-live span {
  transform: scale(1.06);
}
.journey-nodes em {
  font-style: normal;
  color: var(--navy);
  font-size: clamp(14px, 1.25vw, 16.5px);
  font-weight: 800;
  letter-spacing: -0.015em;
}
.journey-nodes small {
  color: var(--muted);
  font-size: clamp(11.5px, 1.05vw, 13px);
  line-height: 1.3;
  font-weight: 500;
}
.loop-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-content: stretch;
}
.loop-step {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  padding: 14px 14px 13px;
  background: #fff !important;
  border: 1px solid var(--line) !important;
  border-radius: 14px;
  box-shadow: 0 8px 20px -16px rgba(20, 45, 90, 0.35);
  backdrop-filter: none !important;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.loop-step:hover {
  transform: translateY(-2px);
  border-color: #c5e4f8 !important;
  box-shadow: 0 14px 28px -16px rgba(43, 143, 217, 0.35);
}
.loop-num {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(145deg, #3FA9F5, #2B8FD9);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  box-shadow: 0 8px 18px -10px rgba(63, 169, 245, 0.8);
}
.loop-title {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.loop-body {
  margin: 0;
  color: var(--ink);
  font-size: clamp(14px, 1.2vw, 15.5px);
  line-height: 1.45;
  flex: 1 1 auto;
}
@media (max-width: 720px) {
  .journey-nodes { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 10px; }
  .journey-nodes::before { display: none; }
  .journey-caption { font-size: 12px; }
}
@media (max-width: 560px) {
  .loop-steps { grid-template-columns: 1fr; }
  .journey-nodes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-lanes { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .journey-path { animation: none; stroke-dasharray: none; }
  .journey-pulse { display: none; }
}

/* ---------- TRY IT ---------- */
.tryit-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--card-glow); overflow: hidden; max-width: var(--content); margin: 0 auto;
}
.tryit-bar {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 16px 18px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(245, 181, 71, 0.45);
  background:
    radial-gradient(ellipse at 18% 50%, rgba(245, 181, 71, 0.5) 0%, transparent 50%),
    linear-gradient(180deg, #fff8e8 0%, #fff3d6 100%);
  box-shadow: inset 0 -1px 0 rgba(245, 181, 71, 0.2);
}
.tryit-field { display: flex; flex-direction: column; gap: 4px; flex: 0 1 220px; max-width: 260px; }
.tryit-field-label {
  font-family: "IBM Plex Mono", monospace; font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--navy);
}
.tryit-input {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1.5px solid rgba(245, 181, 71, 0.9); background: #fff; color: var(--navy);
  font-size: 16px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  outline: none;
  box-shadow:
    0 0 0 3px rgba(245, 181, 71, 0.2),
    0 8px 18px -12px rgba(20, 45, 90, 0.2);
}
.tryit-input:focus {
  border-color: var(--gold);
  box-shadow:
    0 0 0 4px rgba(245, 181, 71, 0.32),
    0 0 22px -4px rgba(245, 181, 71, 0.5);
}
.tryit-input::placeholder { color: #9aa3b2; font-weight: 600; }
.tryit-bar .btn { flex: none; white-space: nowrap; }
.tryit-inline-label {
  flex: none;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin: 0;
  padding: 0 4px;
  color: var(--blue);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}
.tryit-view { padding: 12px 14px 14px; }
.tryit-quote { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.tq-name { font-weight: 800; color: var(--navy); font-size: 18px; }
.tq-price { font-weight: 800; color: var(--navy); font-size: 22px; }
.tq-change { font-size: 14px; font-weight: 700; margin-left: 8px; }
.tq-change.up, .snap-ch.up, .ms-num .up { color: var(--green); }
.tq-change.down { color: #dc2626; }
.tryit-mentions { margin-top: 14px; display: grid; gap: 8px; }
.tryit-mention {
  display: flex; gap: 10px; align-items: flex-start; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: 12px; background: #fafcff;
  font-size: 13.5px; color: var(--ink); line-height: 1.4;
}
.tryit-mention b { color: var(--blue); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: 2px; }
.tryit-loading { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 120px; color: var(--muted); font-weight: 600; }
.spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid #c5e8fb; border-top-color: var(--blue);
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.tryit-error { color: #b91c1c; text-align: center; padding: 24px; font-weight: 600; }

/* ---- Sample RESULT dashboard ---- */
.snap-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 10px; }
.snap-id { display: flex; align-items: center; gap: 12px; }
.snap-logo {
  width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(145deg, #3FA9F5, #2B8FD9);
  color: #fff; font-weight: 800; display: grid; place-items: center; box-shadow: var(--card-glow);
}
.snap-name { font-weight: 800; color: var(--navy); font-size: 17px; }
.snap-ticker { color: var(--muted); font-weight: 600; font-size: 13px; }
.snap-asof { color: var(--muted); font-size: 12px; margin-top: 2px; }
.snap-price { text-align: right; }
.snap-px { display: block; font-size: 28px; font-weight: 900; color: var(--navy); line-height: 1; }
.snap-ch { font-size: 14px; font-weight: 700; }
.snap-grid { display: grid; grid-template-columns: 1.55fr .95fr; gap: 10px; }
.snap-main {
  background: #fafcff; border: 1px solid var(--line); border-radius: 14px; padding: 10px;
  box-shadow: inset 0 0 0 1px rgba(245,181,71,.08);
}
.snap-ranges { display: flex; gap: 6px; margin-bottom: 8px; }
.snap-ranges span {
  font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 600;
  color: var(--muted); padding: 4px 8px; border-radius: 999px; border: 1px solid transparent;
}
.snap-ranges .is-on { color: var(--blue); background: #fff; border-color: #b7dff8; }
.chart--snap { min-height: 0; }
.chart--snap svg { max-height: 160px; }
.chart--snap .vol rect {
  fill: #b7cffc; opacity: 0; transform-origin: bottom;
  animation: volIn .7s ease forwards;
}
.chart--snap .vol rect:nth-child(odd) { animation-delay: .05s; }
.chart--snap .vol rect:nth-child(3n) { animation-delay: .12s; fill: #8fb0f5; }
.chart--snap .vol rect:nth-child(4n) { animation-delay: .18s; }
@keyframes volIn { from { opacity: 0; transform: scaleY(.2); } to { opacity: .85; transform: scaleY(1); } }
.chart--snap .marks { font-family: "IBM Plex Mono", monospace; font-size: 9px; font-weight: 700; }
.chart--snap .mark circle { fill: #fff; stroke-width: 2; }
.chart--snap .mark--pr circle { stroke: var(--gold); }
.chart--snap .mark--pr text { fill: var(--gold); }
.chart--snap .mark--social circle { stroke: var(--blue); }
.chart--snap .mark--social text { fill: var(--blue); }
.chart--snap .mark--cat circle { stroke: var(--green); }
.chart--snap .mark--cat text { fill: var(--green); }
.chart--snap .mark {
  opacity: 0; animation: markPop .45s ease forwards;
}
.chart--snap .mark--pr { animation-delay: 1s; }
.chart--snap .mark--social { animation-delay: 1.2s; }
.chart--snap .mark--cat { animation-delay: 1.4s; }
@keyframes markPop { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.snap-52 {
  display: flex; justify-content: space-between; gap: 10px; margin-top: 8px;
  font-size: 12px; color: var(--ink);
}
.snap-52 b { display: block; color: var(--muted); font-size: 10px; letter-spacing: .1em; }
.snap-side { display: flex; flex-direction: column; gap: 10px; }
.score-card {
  display: flex; gap: 12px; align-items: center; padding: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--card-glow);
}
.score-card--compact { align-items: flex-start; }
.score-ring {
  --p: 80;
  flex: none; width: 72px; height: 72px; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 56%, transparent 57%),
    conic-gradient(var(--green) calc(var(--p) * 1%), #e7edf6 0);
  display: grid; place-items: center; align-content: center; text-align: center;
  animation: ringSpinIn 1.1s ease both;
}
@keyframes ringSpinIn { from { filter: saturate(.4); transform: scale(.85); } to { filter: none; transform: scale(1); } }
.score-num { font-size: 22px; font-weight: 900; color: var(--navy); line-height: 1; }
.score-lab { font-size: 10px; font-weight: 800; letter-spacing: .08em; color: var(--green); }
.score-title { font-weight: 800; color: var(--navy); font-size: 13.5px; margin-bottom: 6px; }
.score-bar { height: 6px; border-radius: 999px; background: #e7edf6; overflow: hidden; margin-bottom: 6px; }
.score-bar i { display: block; height: 100%; background: linear-gradient(90deg, #3FA9F5, #16a34a); border-radius: inherit; animation: barGrow 1.1s ease both; }
@keyframes barGrow { from { width: 0 !important; } }
.score-meta p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.4; }
.mention-stat {
  padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--card-glow);
}
.ms-lab { display: block; font-family: "IBM Plex Mono", monospace; font-size: 10.5px; letter-spacing: .12em; color: var(--muted); }
.ms-num { font-size: 26px; font-weight: 900; color: var(--navy); }
.ms-num i { font-style: normal; font-size: 13px; font-weight: 800; margin-left: 6px; }
.signal-list { list-style: none; margin: 0; padding: 10px 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--card-glow); }
.signal-list li {
  display: flex; align-items: center; gap: 8px; padding: 7px 0;
  font-size: 13px; color: var(--ink); font-weight: 600;
  border-bottom: 1px solid #f0f4fa;
}
.signal-list li:last-child { border-bottom: 0; }
.dot { width: 8px; height: 8px; border-radius: 50%; flex: none; display: inline-block; }
.dot.green { background: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.15); }
.dot.gold, .dot.yellow { background: var(--gold); box-shadow: 0 0 0 3px rgba(245,181,71,.18); }
.dot.red { background: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,.15); }
.dot.blue { background: var(--blue); box-shadow: 0 0 0 3px rgba(63,169,245,.15); }
.snap-prs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 10px; }
.pr-row {
  display: grid; grid-template-columns: 1fr; gap: 4px; align-items: start;
  padding: 8px 10px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
  font-size: 12.5px; color: var(--ink); box-shadow: var(--shadow-sm);
  animation: rowIn .5s ease both;
}
.pr-row:nth-child(2) { animation-delay: .12s; }
.pr-row:nth-child(3) { animation-delay: .24s; }
@keyframes rowIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.pr-row b { color: var(--blue); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }

/* ---- Constellation / Central Command view ---- */
.constellation { display: grid; grid-template-columns: 1.35fr .95fr; gap: 14px; align-items: stretch; }
.const-stage {
  position: relative; min-height: 300px; border-radius: 16px; overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(245,181,71,.18) 0%, transparent 42%),
    radial-gradient(circle at 50% 50%, #eaf6fd 0%, #f7faff 55%, #fff 100%);
  border: 1px solid var(--line); box-shadow: inset 0 0 0 1px rgba(245,181,71,.1);
}
.const-orbit {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  border: 1.5px dashed #c9d8fb; border-radius: 50%; opacity: .7;
  animation: orbitPulse 4.5s ease-in-out infinite;
}
.const-orbit--1 { width: 78%; aspect-ratio: 1; animation-delay: 0s; }
.const-orbit--2 { width: 56%; aspect-ratio: 1; animation-delay: .4s; }
.const-orbit--3 { width: 34%; aspect-ratio: 1; animation-delay: .8s; }
@keyframes orbitPulse { 0%,100% { opacity: .45; } 50% { opacity: .85; } }
.const-core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 96px; height: 96px; border-radius: 50%; z-index: 3;
  background: linear-gradient(160deg, #3b78f5, #2B8FD9);
  color: #fff; display: grid; place-items: center; align-content: center; text-align: center;
  box-shadow: 0 0 0 10px rgba(255,255,255,.55), 0 0 36px 4px rgba(245,181,71,.45), 0 18px 36px -16px rgba(30,79,208,.55);
  animation: coreGlow 2.8s ease-in-out infinite;
}
.const-core strong { font-size: 12px; line-height: 1.15; }
.const-core span {
  margin-top: 4px; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  opacity: .85;
}
@keyframes coreGlow {
  0%,100% { box-shadow: 0 0 0 10px rgba(255,255,255,.55), 0 0 28px 2px rgba(245,181,71,.35), 0 18px 36px -16px rgba(30,79,208,.5); }
  50% { box-shadow: 0 0 0 12px rgba(255,255,255,.65), 0 0 48px 6px rgba(245,181,71,.55), 0 18px 36px -16px rgba(30,79,208,.6); }
}
.const-links {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}
.const-links line {
  stroke: #9db8f0; stroke-width: 1.4; stroke-dasharray: 4 4;
  animation: dashMove 2.4s linear infinite;
}
@keyframes dashMove { to { stroke-dashoffset: -24; } }
.orb {
  position: absolute; width: 54px; height: 54px; transform: translate(-50%, -50%);
  display: grid; place-items: center; text-align: center;
  animation: orbFloat 3.6s ease-in-out infinite;
}
.orb i {
  width: 16px; height: 16px; border-radius: 50%; display: block; margin: 0 auto 3px;
  box-shadow: 0 0 0 4px rgba(255,255,255,.7);
}
.orb em { font-style: normal; font-size: 10px; font-weight: 700; color: var(--navy); }
.orb--g i { background: var(--green); }
.orb--b i { background: var(--blue); }
.orb--y i { background: var(--gold); }
.orb--r i { background: #dc2626; }
.orb-1 { left: 18%; top: 24%; animation-delay: 0s; }
.orb-2 { left: 80%; top: 18%; animation-delay: .2s; }
.orb-3 { left: 88%; top: 46%; animation-delay: .4s; }
.orb-4 { left: 82%; top: 78%; animation-delay: .6s; }
.orb-5 { left: 50%; top: 90%; animation-delay: .8s; }
.orb-6 { left: 18%; top: 78%; animation-delay: 1s; }
.orb-7 { left: 10%; top: 50%; animation-delay: 1.2s; }
.orb-8 { left: 28%; top: 14%; animation-delay: 1.4s; }
@keyframes orbFloat {
  0%,100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, calc(-50% - 5px)) scale(1.05); }
}
.const-side { display: flex; flex-direction: column; gap: 10px; }
.vol-meter {
  padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--card-glow);
}
.vm-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.vm-head span { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.vm-head strong { font-size: 22px; color: var(--navy); }
.vm-track {
  position: relative; height: 12px; border-radius: 999px; overflow: visible;
  background: linear-gradient(90deg, #16a34a 0%, #f5b547 55%, #dc2626 100%);
}
.vm-fill {
  position: absolute; left: 0; top: 0; bottom: 0; border-radius: inherit;
  background: rgba(255,255,255,.25); animation: barGrow 1.2s ease both;
}
.vm-dot {
  position: absolute; top: 50%; width: 10px; height: 10px; border-radius: 50%;
  transform: translate(-50%, -50%); border: 2px solid #fff;
  animation: markPop .5s ease both;
}
.vm-dot.green { background: var(--green); animation-delay: .6s; }
.vm-dot.yellow { background: var(--gold); animation-delay: .8s; }
.vm-dot.red { background: #dc2626; animation-delay: 1s; }
.vm-legend { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; font-size: 11.5px; color: var(--muted); font-weight: 600; }
.vm-legend span { display: inline-flex; align-items: center; gap: 5px; }
.const-out {
  list-style: none; margin: 0; padding: 10px 12px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--card-glow);
}
.const-out li {
  padding: 8px 0; border-bottom: 1px solid #f0f4fa; font-size: 13px; color: var(--ink); font-weight: 600;
  animation: rowIn .5s ease both;
}
.const-out li:nth-child(2) { animation-delay: .1s; }
.const-out li:nth-child(3) { animation-delay: .2s; }
.const-out li:last-child { border-bottom: 0; }
.const-out b { color: var(--blue); margin-right: 6px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

@media (prefers-reduced-motion: reduce) {
  .chart--snap .vol rect, .chart--snap .mark, .pr-row, .score-ring, .score-bar i,
  .const-orbit, .const-core, .const-links line, .orb, .vm-dot, .const-out li { animation: none !important; opacity: 1; }
}
.tryit-cta {
  display: none; /* replaced by .audit-band */
}
.audit-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  max-width: var(--content);
  margin: 18px auto 0;
  padding: 22px 4px;
  background: transparent;
  border-top: 1px solid rgba(18, 41, 74, 0.1);
  border-bottom: 1px solid rgba(18, 41, 74, 0.1);
  border-radius: 0;
  box-shadow: none;
}
.audit-band-copy { min-width: 0; flex: 1 1 auto; }
.audit-band-kicker { margin: 0 0 8px; }
.audit-band-title { margin: 0; }
.audit-band-sub { margin: 8px 0 0; }
.audit-band .btn { flex: none; }
@media (max-width: 700px) {
  .audit-band {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .audit-band .btn { justify-content: center; }
}

/* ---------- CHART motion ---------- */
.chart { position: relative; width: 100%; }
.chart svg { width: 100%; height: auto; display: block; }
.chart .ax line { stroke: #e6edf6; stroke-width: 1; opacity: 0; transition: opacity .5s ease; }
.chart .line {
  stroke-dasharray: 1; stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.4s cubic-bezier(.22,.8,.28,1) .35s;
}
.chart .area { opacity: 0; transition: opacity .9s ease .55s; }
.chart .dots circle {
  fill: var(--blue); opacity: 0; transform-origin: center;
  transition: opacity .35s ease, transform .35s ease;
}
.chart .dots circle.dot-last { fill: var(--blue-deep); }
.chart .xlab text {
  fill: var(--muted); font-size: 11px; font-family: "IBM Plex Mono", monospace;
  opacity: 0; transition: opacity .4s ease .7s;
}
.chart.is-in .ax line { opacity: 1; }
.chart.is-in .line { stroke-dashoffset: 0; }
.chart.is-in .area { opacity: 1; }
.chart.is-in .dots circle { opacity: 1; }
.chart.is-in .dots circle:nth-child(1) { transition-delay: .55s; }
.chart.is-in .dots circle:nth-child(2) { transition-delay: .62s; }
.chart.is-in .dots circle:nth-child(3) { transition-delay: .69s; }
.chart.is-in .dots circle:nth-child(4) { transition-delay: .76s; }
.chart.is-in .dots circle:nth-child(5) { transition-delay: .83s; }
.chart.is-in .dots circle:nth-child(6) { transition-delay: .90s; }
.chart.is-in .dots circle:nth-child(7) { transition-delay: .97s; }
.chart.is-in .dots circle:nth-child(8) { transition-delay: 1.04s; }
.chart.is-in .dots circle:nth-child(9) { transition-delay: 1.11s; }
.chart.is-in .xlab text { opacity: 1; }
.chart--mini { min-height: 160px; background: #fafcff; border: 1px solid var(--line); border-radius: 14px; padding: 8px; }
.chart--mini svg { min-height: 140px; }

@media (prefers-reduced-motion: reduce) {
  .chart .ax line, .chart .area, .chart .dots circle, .chart .xlab text { opacity: 1; transition: none; }
  .chart .line { stroke-dashoffset: 0; transition: none; }
}

/* ---------- PROOF (dual-curve illustrative model) ---------- */
.proof-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--card-glow);
  padding: 18px 20px;
  max-width: var(--content);
  margin: 0 auto;
}
.proof-chart { margin: 0; min-width: 0; }
.proof-chart svg { width: 100%; height: auto; max-height: 168px; display: block; }
.proof-chart .line--campaign { opacity: 0.9; }
.proof-chart-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  margin-top: 10px;
}
.proof-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}
.proof-legend li { display: inline-flex; align-items: center; gap: 8px; }
.proof-swatch {
  width: 18px;
  height: 3px;
  border-radius: 999px;
  flex: none;
}
.proof-swatch--cont { background: linear-gradient(90deg, #2B8FD9, #3FA9F5); height: 4px; }
.proof-swatch--camp {
  background: repeating-linear-gradient(90deg, #94a3b8 0 4px, transparent 4px 7px);
}
.proof-chart-tag {
  margin: 0;
  text-align: right;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.advantage-band {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin: 18px auto 0; max-width: 980px; padding: 16px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--card-glow); text-decoration: none;
}
.advantage-text { color: var(--ink); font-size: 15px; line-height: 1.45; }
.advantage-text b { color: var(--navy); }
.advantage-go {
  flex: none; width: 36px; height: 36px; border-radius: 999px;
  background: var(--tint); color: var(--blue); display: grid; place-items: center;
}
.advantage-go svg { width: 18px; height: 18px; }

/* ---------- NEXT STEP ---------- */
.next-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 28px 32px;
  align-items: stretch;
  max-width: var(--content);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--card-glow);
  padding: clamp(22px, 2.6vw, 28px);
}
.next-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.next-copy .tx--label { margin: 0 0 8px; }
.next-copy .tx--accent { margin: 0 0 12px; }
.next-copy .tx--title { margin: 0 0 10px !important; }
.next-copy .tx--body {
  margin: 0 !important;
  max-width: 36rem;
}
.next-primary {
  align-self: flex-start;
  margin-top: 16px;
}
.next-secondary {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.next-secondary-label { margin: 0 0 6px !important; }
.next-secondary-title { margin: 0 0 6px !important; }
.next-secondary .tx--meta { margin: 0 0 12px !important; }
.next-form {
  display: grid;
  gap: 14px;
  max-width: 480px;
  margin: 0;
  padding-top: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.nf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}
.nf-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; height: 100%; }
.nf-field span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
}
.nf-field input {
  padding: 13px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-size: 15px;
  outline: none;
  width: 100%;
  flex: 1;
  min-height: 48px;
}
.nf-field input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(63,169,245,.12); }
.nf-field--gold,
.nf-field--ticker {
  padding: 10px;
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 40% 50%, rgba(245, 181, 71, 0.4) 0%, transparent 70%),
    linear-gradient(180deg, #fff8e8 0%, #fff3d6 100%);
  border: 1px solid rgba(245, 181, 71, 0.5);
}
.nf-field--gold span,
.nf-field--ticker span { color: var(--navy); }
.nf-field--gold input,
.nf-field--ticker input {
  border-color: rgba(245, 181, 71, 0.9);
  font-weight: 700;
  box-shadow: 0 0 0 2px rgba(245, 181, 71, 0.16);
}
.nf-field--ticker input { text-transform: uppercase; }
.nf-field--gold input:focus,
.nf-field--ticker input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 181, 71, 0.32);
}
.next-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 2px;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.nf-status { min-height: 0; margin: 0; font-size: 13.5px; color: var(--muted); }
.nf-status:empty { display: none; }
.nf-status.is-error { color: #b91c1c; }
.nf-status.is-ok { color: var(--green); }
.next-trust {
  margin: 12px 0 0 !important;
  max-width: 42ch;
}

.audit-preview {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 4px 2px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}
.audit-preview-head { margin-bottom: 14px; }
.audit-preview-head .tx--label { margin: 0 0 8px; text-align: left; }
.audit-preview-title {
  margin: 0 0 8px !important;
  font-size: clamp(18px, 1.7vw, 22px) !important;
  text-align: left;
}
.audit-preview-lead {
  margin: 0 !important;
  max-width: 40ch;
  text-align: left;
}
.audit-sections {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}
.audit-sections li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: #f7fbff;
  border: 1px solid rgba(18, 41, 74, 0.08);
  border-radius: 12px;
}
.audit-sec-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--tint);
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 800;
}
.audit-sections strong {
  display: block;
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 800;
  margin-bottom: 3px;
  line-height: 1.2;
}
.audit-sections p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
}
.audit-sec--deliverable {
  border-color: rgba(43, 143, 217, 0.28);
  background: linear-gradient(180deg, #eef7fd 0%, #f7fbff 100%);
  box-shadow: none;
}
.audit-sec--deliverable .audit-sec-num {
  background: var(--blue);
  color: #fff;
}
.audit-sec--deliverable p b { color: var(--blue); font-weight: 800; }

/* ---------- VERSUS: one board — stack rows + Tier1 loop bar ---------- */
.versus-intro {
  margin-bottom: 14px;
}
.versus-hook {
  max-width: 42rem;
  margin: 0 auto 14px;
  text-align: center;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.22;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.versus-hook-lead { color: var(--navy); }
.versus-hook-stack { color: var(--muted); }
.versus-hook-or {
  color: #0b1f3a;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.versus-hook-loop { color: var(--blue); }
.versus-hook-clear { color: var(--navy); }
.versus-board {
  max-width: var(--content);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--card-glow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.versus-board-stack {
  padding: 14px 22px 8px;
}
.versus-board-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(18, 41, 74, 0.08);
  text-align: left;
}
.versus-board-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin: 4px 0 0;
}
.versus-board-title {
  margin: 0 !important;
  font-size: clamp(20px, 2vw, 26px) !important;
  text-align: left !important;
}
.versus-board-aside {
  margin: 0 !important;
}
.versus-logo-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 24px);
  gap: 6px;
  flex: none;
}
.versus-logo-grid li {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 41, 74, 0.1);
}
.versus-logo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.versus-comp-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.versus-comp-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px 16px;
  align-items: center;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(18, 41, 74, 0.08);
}
.versus-comp-row:last-child { border-bottom: 0; }
.versus-comp {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-align: left;
}
.versus-comp img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid #e8edf4;
  padding: 3px;
  object-fit: contain;
  flex: none;
}
.versus-comp .tx--meta {
  display: block;
  margin-top: 3px;
  line-height: 1.35;
}
.versus-dots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 5px;
  align-items: center;
}
.versus-dots li {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 2px solid #c9d3e0;
  background: transparent;
}
.versus-dots li.is-on {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 0 0 2px rgba(63,169,245,.16);
}
.versus-score {
  flex: none;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1f4f8;
  color: var(--muted);
  font-weight: 700;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
}
.versus-score b {
  color: var(--navy);
  font-size: 1.15em;
  font-weight: 900;
}
.versus-score--full {
  background: rgba(255, 255, 255, 0.95);
  color: rgba(18, 41, 74, 0.55);
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 22px -12px rgba(11, 31, 58, 0.45);
}
.versus-score--full b {
  color: var(--navy);
  font-size: 1.65em;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.versus-more {
  margin: 4px 0 8px;
  border-top: 1px solid rgba(18, 41, 74, 0.08);
  padding-top: 6px;
}
.versus-more-sum {
  list-style: none;
  cursor: pointer;
  padding: 10px 4px;
  user-select: none;
}
.versus-more-sum::-webkit-details-marker { display: none; }
.versus-more-sum::after {
  content: "Show the rest of the field ▾";
  display: block;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  margin-top: 4px;
}
.versus-more[open] .versus-more-sum::after { content: "Hide the rest of the field ▴"; }
.versus-rest-list {
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
}
.versus-rest-list li {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(18, 41, 74, 0.08);
}
.versus-rest-list li:last-child { border-bottom: 0; }
.versus-rest-list .versus-comp img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.versus-rest-list .tx--meta:last-child { text-align: right; }

/* Tier1 bar — compact row aligned to comps, visually separate */
.versus-loopbar {
  margin: 8px 12px 12px;
  padding: 14px 16px;
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(ellipse at 8% 0%, rgba(255,255,255,.2) 0%, transparent 50%),
    linear-gradient(135deg, #1a6fb8 0%, #2B8FD9 48%, #3FA9F5 100%);
  color: #fff;
  position: relative;
  box-shadow:
    0 16px 32px -20px rgba(11, 31, 58, 0.45),
    inset 0 1px 0 rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.18);
}
.versus-loopbar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--gold);
  pointer-events: none;
}
.versus-loopbar-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(140px, 0.9fr) minmax(0, 1.6fr) auto;
  gap: 12px 16px;
  align-items: center;
}
.versus-loopbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin: 0;
}
.versus-loopbar-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  padding: 3px;
  box-shadow: 0 8px 18px -10px rgba(11, 31, 58, 0.45);
  flex: none;
}
.versus-loopbar-brand .tx--label {
  color: rgba(255,255,255,.78) !important;
  margin: 0 0 2px !important;
}
.versus-loopbar-name {
  margin: 0;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}
.versus-loopbar-name .slash { color: #fff; opacity: .85; }
.versus-loopbar-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
}
.versus-loopbar-pills li {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}
.versus-loopbar-copy {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(255,255,255,.92);
  max-width: none;
}
.versus-loopbar-copy b { color: #fff; font-weight: 800; }

.versus-foot {
  text-align: center;
  margin: 14px auto 0 !important;
  max-width: var(--content);
}
.versus-foot a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.versus-foot a:hover { text-decoration: underline; }
.versus-bridge {
  text-align: center;
  max-width: 40rem;
  margin: 22px auto 0 !important;
}

@media (max-width: 820px) {
  .versus-board-head {
    flex-direction: column;
  }
  .versus-logo-grid {
    grid-template-columns: repeat(6, 24px);
  }
  .versus-comp-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }
  .versus-comp-row .versus-dots {
    grid-column: 1 / -1;
  }
  .versus-rest-list li {
    grid-template-columns: 1fr auto;
  }
  .versus-rest-list .tx--meta:last-child {
    text-align: left;
    grid-column: 1 / -1;
  }
  .versus-loopbar-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .versus-loopbar-pills {
    grid-column: 1 / -1;
  }
  .versus-score--full {
    padding: 8px 12px;
    font-size: 16px;
  }
}

/* ---------- PRICING (review-card cream / gold attention) ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: var(--content);
  margin: 0 auto;
}
.price-card {
  background: #fff8e8;
  border: 1px solid rgba(245, 181, 71, 0.45);
  border-radius: 16px;
  box-shadow: var(--card-glow);
  padding: 14px 14px;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 6px; min-height: 100%;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 160, 64, 0.85);
  box-shadow: var(--card-glow-hover);
}
.price-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price-label {
  font-family: "IBM Plex Mono", monospace; font-size: 12px; font-weight: 800;
  letter-spacing: .16em; color: var(--navy);
}
.price-badge {
  font-size: 10.5px; font-weight: 800; letter-spacing: .1em;
  color: #3a2a0a; background: var(--gold); padding: 4px 8px; border-radius: 6px;
}
.price-badge--gold { background: #e8a040; color: #3a2a0a; }
.price-amount { margin: 0; font-size: 28px; font-weight: 900; color: var(--navy); line-height: 1; }
.price-period { font-size: 14px; font-weight: 600; color: #6b5b40; }
.price-copy { margin: 0; color: var(--ink); font-size: 14.5px; line-height: 1.5; }
.price-feat { margin: 4px 0 8px; padding: 0 0 0 18px; color: #5c5346; font-size: 13.5px; line-height: 1.55; }
.price-cta {
  align-self: flex-start; margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 800; color: var(--navy);
  padding: 8px 12px; border-radius: 999px;
  background: rgba(245, 181, 71, 0.35); border: 1px solid rgba(232, 160, 64, 0.55);
}
.price-card:hover .price-cta { background: #e8a040; color: #3a2a0a; }
.price-foot { text-align: center; color: var(--muted); font-size: 14px; margin: 12px 0 0; }
.price-foot a { color: var(--blue); font-weight: 700; text-decoration: none; }
.price-foot a:hover { text-decoration: underline; }

/* ---------- FOOTER ---------- */
.foot { position: relative; margin-top: 0; border-top: 1px solid var(--line); background: rgba(255,255,255,.7); }
.foot-wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; padding-top: 22px; padding-bottom: 22px; }
.foot-brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--navy); }
.foot-copy { color: var(--muted); font-size: 13.5px; margin: 0; }
.foot-links { margin-left: auto; display: flex; gap: 18px; }
.foot-links a { color: var(--muted); text-decoration: none; font-size: 14px; }
.foot-links a:hover { color: var(--blue); }

/* ---------- Create account CTA band (float — no card shell) ---------- */
.create-cta {
  background:
    radial-gradient(ellipse 70% 80% at 10% 20%, rgba(245, 181, 71, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 90% 80%, rgba(63, 169, 245, 0.12) 0%, transparent 50%),
    transparent;
  border-top: 0;
}
.create-cta-inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.create-cta-echo {
  margin: 0 auto 12px !important;
  text-align: center;
}
.create-cta .btn { margin-top: 0; }

/* ---------- FLOATING GUNNER (white gear + tempo dots + icon flash) ---------- */
.cc {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  touch-action: none;
}
.cc.is-dragging { z-index: 90; }
.cc-orb {
  width: 135px; height: 135px;
  border: 0;
  padding: 0;
  cursor: grab;
  position: relative;
  display: grid;
  place-items: center;
  background: transparent;
  filter: drop-shadow(0 14px 28px rgba(43, 143, 217, 0.4));
  transition: transform .15s ease, filter .15s ease;
}
.cc-orb:hover { transform: translateY(-2px) scale(1.04); }
.cc-orb:active { cursor: grabbing; }
.cc.is-open .cc-orb { display: none; }

.cc-gear-wrap {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
}
.cc-gear-svg {
  width: 92%;
  height: 92%;
  overflow: visible;
  filter: drop-shadow(0 2px 4px rgba(11, 31, 58, 0.18));
}
.cc-gear-body, .cc-gear-body * { fill: #FFFFFF; }

.cc-orbit {
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  animation: cc-orbit-spin var(--orbit-dur, 5.5s) linear infinite;
}
.cc-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: #3FA9F5;
  box-shadow:
    0 0 0 2px rgba(255,255,255,.95),
    0 0 10px 2px rgba(63,169,245,.95);
  transform:
    rotate(calc(var(--i) * 120deg))
    translateY(calc(-1 * var(--orbit-r, 60px)));
}
@keyframes cc-orbit-spin {
  to { transform: rotate(360deg); }
}

.cc-icons {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.cc-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72) rotate(-12deg);
  transform-origin: center center;
  pointer-events: none;
  display: block;
}
.cc-icon--word {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}
.cc-icon.is-on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  animation: cc-icon-flash .55s ease;
}
@keyframes cc-icon-flash {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.55) rotate(-18deg); filter: brightness(2); }
  35% { opacity: 1; transform: translate(-50%, -50%) scale(1.12) rotate(4deg); filter: brightness(1.4); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0deg); filter: brightness(1); }
}
.cc-head-mark { display: grid; place-items: center; flex: none; }

.cc-panel {
  width: min(440px, calc(100vw - 28px));
  height: min(560px, calc(100vh - 100px));
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  box-shadow: 0 24px 60px -24px rgba(20,45,90,.38);
  display: flex; flex-direction: column; overflow: hidden;
}
.cc-head {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 12px 12px 14px; border-bottom: 1px solid var(--line);
  background: #fafcff; cursor: grab; user-select: none;
}
.cc-head:active { cursor: grabbing; }
.cc-head-title { font-weight: 800; color: var(--navy); font-size: 14px; flex: 1; }
.cc-live {
  display: inline-block; margin-left: 6px; padding: 2px 7px; border-radius: 999px;
  background: #e8f8ee; color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .08em;
}
.cc-drag-hint { color: #9aa8bd; width: 22px; height: 22px; display: grid; place-items: center; }
.cc-drag-hint svg { width: 16px; height: 16px; }
.cc-close {
  width: 30px; height: 30px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--navy); display: grid; place-items: center; cursor: pointer;
}
.cc-close svg { width: 16px; height: 16px; }
.cc-body {
  flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px;
  background: #fff;
}
.cc-msg {
  max-width: 90%; padding: 10px 12px; border-radius: 14px;
  font-size: 13.5px; line-height: 1.45;
}
.cc-msg--bot { align-self: flex-start; background: var(--tint); color: var(--ink); border-bottom-left-radius: 6px; }
.cc-msg--user { align-self: flex-end; background: var(--blue); color: #fff; border-bottom-right-radius: 6px; }
.cc-msg .cc-em {
  color: var(--blue);
  font-weight: 800;
}
.cc-input-row {
  display: flex; gap: 8px; padding: 10px 12px 12px; border-top: 1px solid var(--line);
  background: #fafcff;
}
.cc-input {
  flex: 1; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 11px 12px; outline: none; background: #fff; color: var(--navy);
}
.cc-input:focus { border-color: var(--blue); }
.cc-send {
  width: 42px; height: 42px; border-radius: 12px; border: 0;
  background: var(--blue); color: #fff; display: grid; place-items: center; cursor: pointer;
}
.cc-send svg { width: 18px; height: 18px; }
@media (prefers-reduced-motion: reduce) {
  .cc-orbit, .cc-icon.is-on { animation: none; }
  .cc-icon { opacity: 0; }
  .cc-icon.is-on {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* ---------- Insight / Sentiment modal ---------- */
.insight-modal {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center; padding: 20px;
}
.insight-modal[hidden] { display: none !important; }
.insight-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 31, 58, 0.5);
  backdrop-filter: blur(5px);
}
.insight-modal__card {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(460px, calc(100vw - 32px));
  overflow: visible;
  background:
    radial-gradient(ellipse 80% 55% at 100% -10%, rgba(245, 181, 71, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at -5% 110%, rgba(63, 169, 245, 0.16) 0%, transparent 50%),
    #FFFFFF !important;
  border: 1px solid rgba(18, 41, 74, 0.1) !important;
  border-radius: calc(var(--radius) + 4px);
  box-shadow:
    0 32px 72px -28px rgba(20, 45, 90, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 24px 26px 16px;
  animation: insight-in .32s cubic-bezier(.22, .9, .28, 1);
}
.insight-modal__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--blue) 100%);
}
@keyframes insight-in {
  from { opacity: 0; transform: translateY(14px) scale(.97); }
  to { opacity: 1; transform: none; }
}
.insight-modal__close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 999px;
  border: 1px solid rgba(18, 41, 74, 0.12); background: rgba(255,255,255,.85);
  color: var(--navy); font-size: 20px; line-height: 1; cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.insight-modal__close:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.insight-modal__mark {
  display: none;
  width: 46px;
  height: 46px;
  margin: 2px 0 10px;
  border-radius: 50%;
  place-items: center;
  background: linear-gradient(160deg, #163a6e 0%, #0d2a62 100%);
  box-shadow:
    0 0 0 3px rgba(245, 181, 71, 0.55),
    0 8px 18px -8px rgba(13, 42, 98, 0.45);
}
.insight-modal.is-gunner .insight-modal__mark {
  display: grid;
}
.insight-modal.is-gunner .insight-modal__card::before {
  background: linear-gradient(90deg, var(--blue) 0%, var(--gold) 100%);
}
.insight-modal__kicker {
  margin: 4px 0 12px;
  padding-right: 36px;
}
.insight-modal__title {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 30px) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.03em !important;
}
.insight-modal__body {
  margin: 14px 0 0;
  white-space: pre-line;
  font-size: clamp(14.5px, 1.2vw, 16px) !important;
  line-height: 1.5 !important;
  max-width: none;
}
.insight-modal__template {
  margin-top: 16px;
  padding: 14px 14px 12px;
  border-top: 0;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(234, 246, 253, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);
  border: 1px solid rgba(63, 169, 245, 0.18);
  text-align: center;
}
.insight-modal__template-title {
  margin: 0 0 16px;
  font-size: clamp(14.5px, 1.2vw, 16px) !important;
  line-height: 1.35 !important;
  color: var(--navy) !important;
}
.insight-modal__template-sub {
  margin: 0 0 16px;
  line-height: 1.4;
}
.insight-modal__template-sub[hidden] {
  display: none !important;
}
.insight-modal__template .btn,
.insight-modal__template .btn-primary,
.insight-modal__template .btn-gunner {
  width: 100%;
  min-height: 46px;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding-top: 11px;
  padding-bottom: 11px;
  margin: 0;
}
.insight-modal__template .btn-primary .btn-arrow {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
@media (prefers-reduced-motion: reduce) {
  .insight-modal__card { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .cycle { grid-template-columns: 1fr; max-width: 520px; }
  .cycle-fade { min-height: 180px; }
  .loop-board { max-width: 720px; }
  .loop-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-tiles { grid-template-columns: 1fr; }
  .review-tiles--2,
  .review-tiles--addons { grid-template-columns: 1fr; }
  .review-tiles--addons .review-tile--wide { grid-column: auto; }
  .review-check { columns: 1; }
  .proof-chart svg { max-height: 140px; }
  .proof-chart-meta { flex-direction: column; align-items: flex-start; }
  .proof-chart-tag { text-align: left; }
  .next-grid { grid-template-columns: 1fr; }
  .nf-field--ticker { margin: 0; }
  .price-grid { grid-template-columns: 1fr; }
  .snap-grid, .constellation { grid-template-columns: 1fr; }
  .snap-prs { grid-template-columns: 1fr; }
  .tryit-field { max-width: none; }
}
@media (max-width: 780px) {
  .why-grid { grid-template-columns: 1fr; }
  .audience-list { grid-template-columns: 1fr; }
  .solution-card { flex-direction: column; text-align: center; }
  .nf-row { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-actions { display: none; }
  .nav.is-open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 10px; gap: 2px;
  }
}
@media (max-width: 620px) {
  .trust-item + .trust-item { border-left: 0; padding-left: 0; }
  .cc { right: 12px; bottom: 12px; }
}


/* ============================================================
   TYPE SYSTEM + CARD LAW (site-wide)
   Categories only — same color / size / font per type.
   Bold (b/strong) is the only emphasis within a type.
   WHY / transitions = text. WHAT / HOW = card or glass.
   ============================================================ */
.tx-block {
  max-width: var(--content);
  margin: 0 auto var(--section-head-gap);
  text-align: center;
}
.tx-block--left { text-align: left; }
.tx {
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.tx + .tx { margin-top: 10px; }
.tx-block .tx--label + .tx--title { margin-top: 10px; }
.tx-block .tx--title + .tx--body { margin-top: 12px; }

/* label — blue mono */
.tx--label,
.audit-band-kicker,
.why-solution-kicker,
.eyebrow {
  color: var(--blue) !important;
  font-family: "IBM Plex Mono", ui-monospace, monospace !important;
  font-size: clamp(11.5px, 1.05vw, 13px) !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  line-height: 1.35 !important;
}

/* title — navy display (why + transitions) */
.tx--title,
.hero-title,
.h2 {
  color: var(--navy) !important;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif !important;
  font-size: clamp(26px, 3.2vw, 40px) !important;
  font-weight: 800 !important;
  line-height: 1.14 !important;
  letter-spacing: -0.025em !important;
}
.hero-title {
  font-size: clamp(32px, 4.6vw, 56px) !important;
  font-weight: 900 !important;
}

/* body — muted reading */
.tx--body,
.hero-sub,
.lead,
.why-open,
.why-solution,
.audit-band-sub {
  color: var(--muted) !important;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif !important;
  font-size: clamp(15px, 1.3vw, 17.5px) !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  letter-spacing: -0.01em !important;
}
.audit-band-title {
  color: var(--navy) !important;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif !important;
  font-size: clamp(17px, 1.5vw, 20px) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.015em !important;
}

/* meta — smaller muted */
.tx--meta {
  color: var(--muted) !important;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif !important;
  font-size: clamp(13px, 1.05vw, 14.5px) !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  margin: 0;
}

/* ui — compact navy labels inside what/how surfaces */
.tx--ui {
  color: var(--navy) !important;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif !important;
  font-size: clamp(15px, 1.35vw, 18px) !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.015em !important;
  margin: 0;
}

/* accent line — same size as body, blue + bold weight */
.tx--accent {
  color: var(--blue) !important;
  font-size: clamp(15px, 1.3vw, 17.5px) !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
}

/* Bold is the only size-safe standout */
.tx b, .tx strong,
.tx--body b, .tx--body strong,
.tx--meta b, .tx--meta strong {
  font-weight: 800;
  color: var(--navy);
}

.tx-block .tx--title,
.tx-block .tx--body { max-width: 46rem; margin-left: auto; margin-right: auto; }
.tx-block--left .tx--title,
.tx-block--left .tx--body { margin-left: 0; margin-right: 0; }

/* WHAT / HOW — solid card */
.card,
.card--what,
.tryit-panel,
.proof-card,
.cycle,
.journey {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--card-glow);
  padding: 18px 20px;
}

/* Transparent / glass — comparisons & light surfaces (never card-on-card) */
.glass,
.glass--us,
.qcard,
.audit-band,
.loop-step {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(18, 41, 74, 0.1);
  border-radius: calc(var(--radius) - 2px);
  box-shadow: none;
  padding: 16px 18px;
  backdrop-filter: blur(6px);
}
.glass--us {
  background: rgba(63, 169, 245, 0.08);
  border-color: rgba(63, 169, 245, 0.28);
  margin-bottom: 8px;
}
.qcard {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 22px 20px;
  backdrop-filter: none;
}
.audit-band {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  backdrop-filter: none;
  background: transparent;
}

.section-head,
.section-head--tight {
  max-width: var(--content);
  margin: 0 auto var(--section-head-gap) !important;
  text-align: center;
}
.eyebrow::before,
.eyebrow::after { display: none !important; content: none !important; width: 0 !important; }

.cycle,
.loop-board,
.tryit-panel,
.audit-band,
.proof-card,
.next-grid,
.versus-board {
  max-width: var(--content) !important;
}
.cycle {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--card-glow);
}
.cycle-card {
  box-shadow: none !important;
}
.cycle-card {
  border: 1px solid var(--line);
  background: #fafcff;
}
.loop-board {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  gap: 18px;
}
.conviction-card { /* why = text; neutralize old card shell */
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.next-copy .tx { text-align: left; margin-left: 0; margin-right: 0; max-width: none; }
.cycle-hub strong { font-size: 13px; line-height: 1.15; }

@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; }
  .qcard + .qcard { border-left: 0; border-top: 1px solid rgba(18, 41, 74, 0.1); }
}

/* ===== Score means + Choice (user sections) ===== */
.section.score-means,
.section.choice {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.section.score-means > .wrap,
.section.choice > .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section.score-means > .wrap > *,
.section.choice > .wrap > * {
  width: 100%;
  max-width: var(--content);
}
.score-means-head {
  text-align: center;
}
.score-means-head .tx--body {
  max-width: 46rem;
}
.score-means-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 14px;
  width: 100%;
  max-width: var(--content);
  margin: 22px auto 0;
  align-items: stretch;
}
.score-means-card {
  padding: 16px 16px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--card-glow);
  height: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 6px;
  align-content: start;
  text-align: center;
}
.score-means-strip {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(63, 169, 245, 0.16);
  border-radius: calc(var(--radius) - 4px);
  box-shadow: none;
  height: auto;
  box-sizing: border-box;
}
.score-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 28px);
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto;
}
.score-strip-metric {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 150px;
  min-width: 0;
  max-width: 210px;
}
.score-strip-label {
  flex: none;
  width: 4.6rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.score-strip-track {
  flex: 1 1 auto;
  min-width: 52px;
  height: 5px;
  border-radius: 999px;
  background: rgba(231, 237, 246, 0.85);
  overflow: hidden;
}
.score-strip-track i {
  display: block;
  height: 100%;
  width: var(--w, 70%);
  border-radius: inherit;
  background: linear-gradient(90deg, #2B8FD9, #3FA9F5);
}
.score-strip-track--gold i {
  background: linear-gradient(90deg, #F5B547, #E8A040);
}
.score-strip-val {
  flex: none;
  width: 1.4rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
}
.score-strip-score {
  flex: none;
}
.score-strip-ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.92) 0 56%, transparent 57%),
    conic-gradient(#16a34a 0 82%, rgba(231, 237, 246, 0.85) 0);
  border: 1.5px solid rgba(63, 169, 245, 0.18);
}
.score-strip-ring b {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.score-strip-ring em {
  font-style: normal;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #16a34a;
}
.score-means-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
}
.score-means-card strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
}
.score-means-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.choice-intro {
  margin-bottom: 0;
}
.choice-intro .versus-hook {
  margin-top: 10px;
}
.choice-foot {
  margin: 18px auto 0;
  text-align: center;
  max-width: 46rem;
}
.choice-foot a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.choice-foot a:hover { text-decoration: underline; }
.choice-duo {
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
  width: 100%;
}
.choice-duo-card {
  padding: clamp(18px, 2.5vw, 24px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--card-glow);
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
  min-height: 380px;
  box-sizing: border-box;
}
.choice-duo-card--stack {
  background: #f7f9fc;
}
.choice-duo-card--os {
  border-color: rgba(63, 169, 245, 0.45);
  background: linear-gradient(180deg, #f4faff 0%, #fff 60%);
  box-shadow:
    var(--card-glow),
    0 0 0 1px rgba(63, 169, 245, 0.08);
}
.choice-duo-head .tx--ui {
  margin: 4px 0 0;
  text-align: left;
}
.choice-duo-head .tx--label {
  text-align: left;
  margin: 0;
}
.choice-duo-body {
  margin: 0 !important;
  text-align: left !important;
  max-width: none !important;
}
.choice-duo-viz {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  margin-top: auto;
}
.choice-duo-card--os .choice-duo-viz {
  justify-content: center;
}
.choice-duo-vs {
  align-self: center;
  width: clamp(52px, 5.5vw, 68px);
  height: clamp(52px, 5.5vw, 68px);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--card-glow);
  color: var(--navy);
  font-weight: 900;
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.choice-stack-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
}
.choice-stack-grid li {
  display: grid;
  place-items: center;
  aspect-ratio: 1.1;
  border-radius: 10px;
  background: #fff;
  border: 1px dashed #c5d8ea;
}
.choice-stack-grid img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.choice-stack-converge {
  width: 100%;
  margin-top: 6px;
}
.choice-stack-svg {
  display: block;
  width: 100%;
  height: 52px;
}
.choice-os-hub {
  margin-top: 0;
  padding: 16px 14px;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(63, 169, 245, 0.25);
  background: #fff;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.choice-os-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.choice-os-mark strong {
  color: var(--navy);
  font-size: 15px;
  letter-spacing: -0.02em;
}
.choice-os-spine {
  display: block;
  width: 40px;
  height: 32px;
  margin: 4px auto;
}
.choice-os-gunner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
}
.choice-os-gunner-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.choice-os-gunner em {
  font-style: normal;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue);
}
.choice-os-approve {
  margin: 10px 0 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 960px) {
  .score-means-grid {
    grid-template-columns: 1fr;
  }
  .score-strip-inner {
    max-width: 100%;
  }
  .score-strip-metric {
    max-width: none;
  }
  .choice-duo {
    grid-template-columns: 1fr;
  }
  .choice-duo-vs {
    margin: 0 auto;
  }
}
