/* ---------- Tokens ---------- */
:root {
  /* ===== Official brand colors ===== */
  --navy: #0D1B2A;           /* primary dark — text, dark sections */
  --navy-2: #16263A;         /* hover / slightly lighter */
  --navy-deep: #050E1A;      /* deepest */

  --blue: #2563EB;           /* primary brand blue */
  --blue-2: #1D4FD4;         /* blue hover */
  --blue-tint: #E6F0FF;      /* pale blue backgrounds */
  --blue-wash: #F3F7FF;      /* faintest blue wash */

  --green: #10B981;          /* success / positive */
  --green-bg: #E7FAF3;
  --green-2: #047857;        /* deep green — text on light */

  --slate: #64748B;          /* secondary text */

  /* Semantic */
  --ink: #0D1B2A;
  --ink-2: #334155;
  --ink-3: #64748B;
  --ink-4: #94A3B8;

  --line: #E2E8F0;
  --line-2: #EEF2F7;

  --paper: #FFFFFF;
  --surface: #FFFFFF;
  --mist: #E6F0FF;
  --mist-2: #F3F7FF;

  /* Aliases for any older rules */
  --soft-blue: var(--blue);
  --soft-blue-2: var(--blue-2);
  --soft-blue-tint: var(--blue-tint);
  --soft-blue-wash: var(--blue-wash);
  --blue-hover: var(--blue-2);
  --blue-deep: var(--navy);

  /* Warning */
  --amber: #B8740A;
  --amber-bg: #FFF6E5;
  --amber-line: #F3D58A;
  --red: #DC2626;
  --red-bg: #FEE4E2;
}

/* ---------- Typefaces ----------
   IBM Plex Sans is drawn for interface use: it stays legible at the 11px label
   sizes this product leans on, where Helvetica Neue (and its Arial fallback on
   Windows) goes muddy. Change the family here and it changes everywhere. */
:root {
  --font-sans: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --font-label: var(--font-sans);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-feature-settings: "cv11", "ss01", "ss03";
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ---------- Type ---------- */
.mono { font-family: var(--font-sans); font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; text-wrap: balance; color: var(--navy); }
p { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-right: 8px;
  vertical-align: 2px;
}

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 251, 253, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: 64px;
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 500; letter-spacing: -0.01em; }
.brand-mark {
  width: 36px; height: 36px;
  flex-shrink: 0;
  position: relative;
}
.brand-mark svg { display: block; width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-size: 17px; color: var(--navy); }
.brand-name b { font-weight: 600; }
.brand-tagline {
  font-size: 10.5px;
  color: var(--soft-blue-2);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--ink-2); font-size: 14px; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* ---------- Mobile nav (hamburger + slide-down panel) ---------- */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 18px; height: 2px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  overflow: hidden;
  max-height: 0;
  background: var(--surface, #fff);
  border-bottom: 1px solid var(--line);
  transition: max-height .32s cubic-bezier(.4,0,.2,1);
}
.nav-mobile.open { max-height: calc(100vh - 64px); }
.nav-mobile-scroll {
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 12px 20px 24px;
}
.nav-mobile-group {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.nav-mobile-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3, #8A93A3);
  margin-bottom: 6px;
}
.nav-mobile-group a {
  display: block;
  padding: 11px 0;
  font-size: 16px;
  color: var(--ink, #1B2433);
  font-weight: 500;
}
.nav-mobile-group a:active { color: var(--blue); }
.nav-mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
}
.nav-mobile-cta .btn { width: 100%; justify-content: center; padding: 13px; font-size: 15px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.05s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-2); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--ink-3); }
.btn-ghost { background: transparent; color: var(--ink-2); }
.btn-ghost:hover { color: var(--ink); }
.btn-lg { height: 48px; padding: 0 22px; font-size: 15px; }
.btn .arrow { transition: transform 0.15s; }
.btn:hover .arrow { transform: translateX(2px); }

/* ---------- Hero ---------- */
.hero { padding-top: 80px; padding-bottom: 64px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}
.hero-title {
  font-size: clamp(44px, 5.4vw, 72px);
  letter-spacing: -0.035em;
  font-weight: 700;
  line-height: 1;
}
.hero-title .accent {
  color: var(--navy);
  background-image: linear-gradient(
    transparent 55%,
    rgba(79, 124, 191, 0.45) 55%,
    rgba(79, 124, 191, 0.45) 92%,
    transparent 92%
  );
  padding: 0 0.06em;
}
.hero-title .strike {
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  color: var(--ink-3);
}
.hero-sub {
  margin-top: 24px;
  font-size: 19px;
  color: var(--ink-2);
  max-width: 560px;
  line-height: 1.5;
}
.hero-actions { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
/* ---------- Hero: before / after (centered) ---------- */
.hero-ba-section { padding-top: 64px; }
.hero-ba-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero-ba-inner .hero-title { max-width: 820px; }
.hero-ba-sub {
  margin-top: 18px; max-width: none; white-space: nowrap;
  font-size: 18px; line-height: 1.55; color: var(--ink-2);
}
.hero-ba {
  margin-top: 44px; width: 100%; max-width: 1240px;
  display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr); gap: 30px; align-items: stretch;
}
.hero-ba .ba-card {
  text-align: left; border-radius: 14px; border: 1px solid var(--line); background: #fff;
  display: flex; flex-direction: column;
  box-shadow: 0 18px 40px -26px rgba(13,27,42,0.34); overflow: hidden;
}
.hero-ba .ba-tab {
  display: flex; align-items: center; gap: 8px; padding: 14px 20px;
  min-height: 53px; box-sizing: border-box;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.hero-ba .ba-tab.before { background: var(--red-bg); color: var(--red); border-bottom: 1px solid #F6C9C2; }
.hero-ba .ba-tab.after { background: var(--green-bg); color: #047857; border-bottom: 1px solid #BBE9D6; }
.hero-ba .ba-tab .d { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.hero-ba .ba-tab .sc { margin-left: auto; font-size: 12px; background: #fff; padding: 3px 10px; border-radius: 999px; }
.hero-ba .ba-mail { padding: 22px 24px; font-size: 16px; line-height: 1.65; color: var(--ink-2); }
.hero-ba .ba-foot { display: flex; justify-content: flex-end; padding: 0 24px 22px; margin-top: auto; }
.hero-ba .ba-stat { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 17px 9px 15px; font-size: 14px; font-weight: 700; color: var(--navy); letter-spacing: -0.005em; box-shadow: 0 3px 10px -4px rgba(13,27,42,0.16); }
.hero-ba .ba-stat .d { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.hero-ba .ba-stat.warn .d { background: #F2445E; }
.hero-ba .ba-stat.ok .d { background: #0FC9B7; }
.hero-ba .ba-mail .meta { font-size: 13px; color: var(--ink-4); margin-bottom: 13px; }
.hero-ba .ba-mail .flag { background: #FFE4E4; color: #B42318; padding: 1px 4px; border-radius: 4px; box-shadow: inset 0 -2px 0 rgba(220,38,38,0.35); }
.hero-ba .ba-mail .fix { background: var(--green-bg); color: #047857; padding: 1px 4px; border-radius: 4px; }
.hero-ba .ba-arrow {
  width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 22px -10px rgba(13,27,42,0.5);
}
.hero-ba .ba-arrow svg { width: 20px; height: 20px; }
.hero-ba-actions { margin-top: 38px; justify-content: center; }
.hero-ba-meta { justify-content: center; }
.hero-ba-inner .platform-support { justify-content: center; }
@media (max-width: 1000px) {
  .hero-ba-sub { white-space: normal; max-width: 600px; }
}
@media (max-width: 760px) {
  .hero-ba { grid-template-columns: 1fr; gap: 14px; }
  .hero-ba .ba-arrow { transform: rotate(90deg); margin: 0 auto; }
}

.hero-meta {
  margin-top: 28px;
  display: flex; gap: 24px;
  font-family: var(--font-label);
  font-size: 12px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-meta-item { display: flex; align-items: center; gap: 8px; }
.hero-meta-item::before {
  content: ""; width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* Platform compatibility strip */
.platform-support {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}
.platform-support-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 6px 9px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--green-bg);
  border: 1px solid color-mix(in oklab, var(--green) 28%, var(--line));
  white-space: nowrap;
}
.platform-chip-ic {
  display: inline-grid;
  place-items: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}
.platform-chip-ic svg { width: 11px; height: 11px; }
.platform-note {
  font-size: 12.5px;
  color: var(--ink-3);
  padding-left: 2px;
}
.platform-note::before {
  content: "✕";
  display: inline-block;
  margin-right: 6px;
  font-weight: 700;
  color: var(--ink-4);
}

/* ---------- Demo Card ---------- */
.demo {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(10, 23, 51, 0.04),
              0 24px 64px -28px rgba(10, 23, 51, 0.18);
}
.demo-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  background: var(--mist-2);
}
.demo-tab {
  flex: 1;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--ink-3);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-label);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.demo-tab.active {
  background: var(--surface);
  color: var(--ink);
  border-bottom-color: var(--navy);
}
.demo-tab-dot {
  width: 16px; height: 16px;
  border-radius: 3px;
  background: var(--ink-4);
  display: inline-block;
}
.demo-tab.active .demo-tab-dot { background: var(--blue); }

.email-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-2);
  display: grid; grid-template-columns: 60px 1fr; gap: 8px 16px;
  font-size: 14px;
}
.email-header .label { color: var(--ink-3); font-family: var(--font-label); font-size: 12px; padding-top: 2px; }
.email-header .value { color: var(--ink); }
.email-header .value input,
.email-header .value .input-like {
  width: 100%;
  background: transparent;
  border: none;
  font: inherit;
  color: var(--ink);
  padding: 0;
  outline: none;
}

.email-body {
  position: relative;
}
.email-body textarea {
  width: 100%;
  min-height: 220px;
  border: none;
  outline: none;
  padding: 20px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  resize: none;
  background: transparent;
  line-height: 1.55;
}
.email-body .flagged {
  background: linear-gradient(transparent 60%, rgba(184, 116, 10, 0.22) 60%);
  border-bottom: 1.5px dashed var(--amber);  padding-bottom: 1px;
}
.email-body .rewritten {
  background: linear-gradient(transparent 60%, rgba(16, 185, 129, 0.22) 60%);
  border-bottom: 1.5px solid var(--green);
  padding-bottom: 1px;
  animation: rewriteIn 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes rewriteIn {
  from { background-color: rgba(16, 185, 129, 0.55); }
  to   { background-color: transparent; }
}

.email-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--line-2);
  background: var(--mist-2);
}
.email-footer-left { display: flex; gap: 14px; align-items: center; color: var(--ink-3); }
.icon-btn {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-3);
}
.send-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 0 18px;
  height: 36px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.send-btn:hover { background: var(--navy-2); }
.send-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ---------- Compliance Popup ---------- */
.popup {
  position: absolute;
  left: 20px; right: 20px;
  bottom: 76px;
  background: var(--surface);
  border: 1px solid var(--amber-line);
  border-radius: 12px;
  box-shadow: 0 16px 40px -10px rgba(10, 23, 51, 0.22);
  overflow: hidden;
  animation: popIn 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 10;
}
@keyframes popIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.popup-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--amber-bg);
  border-bottom: 1px solid var(--amber-line);
}
.popup-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}
.popup-badge::before {
  content: ""; width: 8px; height: 8px;
  background: var(--amber); border-radius: 50%;
}
.popup-score {
  margin-left: auto;
  font-family: var(--font-label);
  font-size: 12px;
  color: var(--amber);
}
.popup-body { padding: 16px; }
.popup-issue {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 500;
}
.popup-why {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}
.popup-rewrite {
  margin-top: 12px;
  background: var(--soft-blue-wash);
  border: 1px solid var(--soft-blue-tint);
  border-radius: 6px;
  padding: 12px 14px;
}
.popup-rewrite .label {
  font-family: var(--font-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--soft-blue-2);
  margin-bottom: 6px;
}
.popup-rewrite .text {
  font-size: 14px; color: var(--ink); line-height: 1.5;
}
.popup-actions {
  display: flex; gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--line-2);
  background: var(--mist-2);
}
.popup-btn {
  flex: 1;
  min-width: 0;
  height: 34px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  white-space: nowrap;
}
.popup-btn:hover { border-color: var(--ink-3); }
.popup-btn.primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.popup-btn.primary:hover { background: var(--navy-2); }

.popup-note {
  padding: 10px 16px 14px;
  background: var(--mist-2);
  font-size: 11.5px;
  color: var(--ink-3);
  text-align: center;
  letter-spacing: 0.01em;
  border-top: 1px solid var(--line-2);
}

/* preset chips */
.preset-row {
  display: flex; gap: 8px; padding: 12px 20px;
  border-bottom: 1px solid var(--line-2);
  background: var(--paper);
  overflow-x: auto;
}
.preset-chip {
  flex-shrink: 0;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-2);
}
.preset-chip:hover { border-color: var(--ink-3); }
.preset-chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.preset-chip:not(.active):hover { background: var(--soft-blue-wash); }

/* status bar above demo */
.demo-status {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px;
  background: var(--navy);
  color: #C7D2EE;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.demo-status .left { display: flex; gap: 16px; align-items: center; }
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.18);
  display: inline-block; vertical-align: 1px;
  margin-right: 6px;
}
.scan-indicator {
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff;
}
.scan-indicator.scanning .status-dot { background: var(--amber); box-shadow: 0 0 0 3px rgba(184, 116, 10, 0.25); animation: pulse 1s infinite; }
@keyframes pulse { 50% { transform: scale(1.3); opacity: 0.6; } }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  position: relative;
}
.step-num {
  font-family: var(--font-label);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.step h3 { font-size: 22px; letter-spacing: -0.02em; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 48px;
  margin-bottom: 8px;
}
.section-head h2, .x-mgr h2, .pr2-top h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  letter-spacing: -0.03em;
  max-width: 600px;
}
.section-head p {
  color: var(--ink-2);
  max-width: 440px;
  font-size: 17px;
}
.how-see-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid var(--blue);
  background: var(--blue);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.how-see-link:hover { background: var(--blue-2, #1d4ed8); border-color: var(--blue-2, #1d4ed8); color: #fff; }
.how-see-link .arrow { transition: transform 0.18s ease; }
.how-see-link:hover .arrow { transform: translateX(4px); }
.how-see-row {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
@media (max-width: 760px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section-head h2 { max-width: none; }
  .section-head p { max-width: none; font-size: 15.5px; }
  .sh { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 480px) {
  .brand-tagline { display: none; }
  .nav-cta .btn { padding-left: 13px; padding-right: 13px; font-size: 13px; }
  .pcmp-head, .pcmp-row, .pcmp-foot { grid-template-columns: 1.5fr 1fr 1fr; }
  .pcmp-feat { padding: 10px 11px; font-size: 11.5px; }
  .pcmp-plan-price { font-size: 19px; }
  .pcmp-plan-per, .pcmp-ladder-row { font-size: 10px; }
  .pcmp-foot .btn { font-size: 11px; padding: 0 6px; }
  .pcmp-foot-note { padding: 12px 11px; }
}

/* ---------- Industries ---------- */
.industry-cards {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Feature card — single full-width tile for the live industry */
.industry-card-feature {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 40px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  position: relative;
}
.industry-card-feature:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 32px -16px rgba(13, 27, 42, 0.18);
  transform: translateY(-2px);
}
.industry-card-feature .industry-card-name {
  font-size: 28px;
}
.industry-card-feature .industry-card-headline {
  font-size: 17px;
}
.industry-card-feature .industry-card-risks ul {
  grid-template-columns: repeat(2, 1fr);
}

/* Coming-soon grouped block */
.industry-upcoming {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
}
.industry-upcoming-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-2);
  flex-wrap: wrap;
}
.industry-upcoming-eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--mist);
  padding: 5px 10px;
  border-radius: 5px;
  flex-shrink: 0;
}
.industry-upcoming-lede {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
}
.industry-upcoming-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.industry-upcoming-list li {
  border-top: 1px solid var(--line-2);
}
.industry-upcoming-list li:first-child {
  border-top: none;
}
.industry-upcoming-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 4px;
  color: inherit;
}
.industry-upcoming-soon {
  font-family: var(--font-label);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--mist-2);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.industry-upcoming-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.industry-upcoming-cta svg { transition: transform 0.15s ease; }
.industry-upcoming-cta:hover svg { transform: translateX(3px); }
.industry-upcoming-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.industry-upcoming-desc {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}
.industry-upcoming-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}
.industry-upcoming-link svg {
  transition: transform 0.15s ease;
}

@media (max-width: 720px) {
  .industry-card-feature { padding: 28px; }
  .industry-card-feature .industry-card-risks ul { grid-template-columns: 1fr; }
  .industry-upcoming { padding: 22px; }
  .industry-upcoming-row { grid-template-columns: 1fr; gap: 10px; }
}

/* Not-limited-to-these block */
.industry-more {
  margin-top: 28px;
  padding: 28px 32px;
  background: linear-gradient(180deg, transparent, var(--blue-wash));
  border: 1px dashed var(--line);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.industry-more-eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.industry-more-text p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
  max-width: 680px;
}
.industry-more-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.industry-more-chips li {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 7px 12px;
  border-radius: 999px;
  letter-spacing: -0.005em;
}
.industry-more-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  padding: 8px 0;
}
.industry-more-cta svg {
  transition: transform 0.15s ease;
}
.industry-more-cta:hover svg {
  transform: translateX(3px);
}

/* Legacy industry-cards grid (kept for safety) */
.industry-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  position: relative;
}
.industry-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 32px -16px rgba(13, 27, 42, 0.18);
  transform: translateY(-2px);
}
.industry-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.industry-card-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
}
.industry-card-badge {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--mist);
  color: var(--ink-3);
  padding: 4px 8px;
  border-radius: 5px;
}
.industry-card-badge.is-live {
  background: var(--green-bg);
  color: var(--green);
}
.industry-card-headline {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.industry-card-lead {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}
.industry-card-risks {
  margin-top: 4px;
}
.industry-card-risks-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.industry-card-risks ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
}
.industry-card-risks li {
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.industry-card-risks li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 7px;
  flex-shrink: 0;
}
.industry-card-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}
.industry-card:hover .industry-card-foot {
  color: var(--blue-2);
}
.industry-card-foot svg {
  transition: transform 0.18s ease;
}
.industry-card:hover .industry-card-foot svg {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .industry-cards { grid-template-columns: 1fr; }
  .industry-card-risks ul { grid-template-columns: 1fr; }
}

/* ---------- Legacy industry-tabs (kept for safety) ---------- */
.industries-wrap {
  margin-top: 56px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.industry-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  background: var(--mist-2);
}
.industry-tab {
  padding: 16px 24px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.industry-tab.active {
  background: var(--surface);
  color: var(--ink);
  border-bottom-color: var(--navy);
}
.industry-tab .badge {
  font-family: var(--font-label);
  font-size: 10px;
  background: var(--soft-blue-tint);
  color: var(--navy);
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.industry-tab.active .badge {
  background: var(--navy);
  color: #fff;
}
.industry-panel { padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.industry-panel h3 { font-size: 28px; letter-spacing: -0.025em; margin-bottom: 12px; }
.industry-panel .lead { color: var(--ink-2); font-size: 16px; margin-bottom: 24px; line-height: 1.55; }
.risk-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.risk-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 14px;
  color: var(--ink-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--line-2);
}
.risk-item::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ---------- Features ---------- */
.features {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
/* Editorial big-number layout */
.features-ed {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
}
.feature-ed {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 16px;
  border-top: 2px solid var(--navy);
}
.feature-ed-num {
  font-family: var(--font-label);
  font-size: 32px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--blue-2);
}
.feature-ed-body h4 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 7px;
}
.feature-ed-body p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 860px) {
  .features-ed { grid-template-columns: 1fr 1fr; gap: 26px 32px; }
}
@media (max-width: 560px) {
  .features-ed { grid-template-columns: 1fr; }
}

/* Bento feature grid (live) — two wide flagship tiles */
.features-bento {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
}
.feat-bento {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.feat-bento:hover { box-shadow: 0 16px 34px -22px rgba(13,27,42,0.4); transform: translateY(-2px); border-color: #D3DEEC; }
.feat-bento-ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: var(--blue-tint); color: var(--blue); flex-shrink: 0; }
.feat-bento-ic svg { width: 21px; height: 21px; }
.feat-bento h4 { font-size: 16.5px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; margin: 0; }
.feat-bento p { margin: 7px 0 0; font-size: 14px; line-height: 1.55; color: var(--ink-3); }
.feat-bento.wide { grid-column: span 2; background: linear-gradient(180deg, var(--blue-wash), var(--surface)); border-color: #CFE0FF; }
.feat-bento.wide .feat-bento-ic { width: 52px; height: 52px; background: var(--blue); color: #fff; border-radius: 13px; }
.feat-bento.wide .feat-bento-ic svg { width: 26px; height: 26px; }
.feat-bento.wide h4 { font-size: 20px; }
.feat-bento.wide p { font-size: 15px; max-width: 520px; }
@media (max-width: 860px) {
  .features-bento { grid-template-columns: 1fr 1fr; }
  .feat-bento.wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .features-bento { grid-template-columns: 1fr; }
  .feat-bento.wide { grid-column: span 1; }
}
.feature-suggest {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.feature-suggest p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-2);
  max-width: none;
}
.feature-suggest-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-2);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.18s ease;
}
.feature-suggest-link:hover { gap: 12px; }
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at 0 0, var(--blue-tint), transparent 70%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}
.feature:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -16px rgba(13, 27, 42, 0.18);
}
.feature:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-tint);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 6px;
  position: relative;
}
.feature-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.feature h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0;
}
.feature p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .features { grid-template-columns: 1fr; }
}

/* ---------- Trust / Privacy ---------- */
.trust {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.trust h2 { font-size: clamp(32px, 3.4vw, 44px); letter-spacing: -0.03em; color: #fff; }
.trust p { color: #B8C3DE; margin-top: 16px; font-size: 17px; line-height: 1.55; }
.trust-list {
  display: flex; flex-direction: column; gap: 14px;
  padding: 0; margin: 0; list-style: none;
}
.trust-list li {
  display: flex; gap: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
.trust-list .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--soft-blue);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.trust-list .check::after {
  content: "";
  width: 8px; height: 5px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}
.trust-list strong { display: block; color: #fff; font-weight: 500; margin-bottom: 2px; }
.trust-list span { color: #B8C3DE; font-size: 14px; }

/* Centered + icon-cards variant */
.trust-centered {
  display: block;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.trust-centered::after {
  content: "";
  position: absolute;
  top: -60px; right: -40px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent 70%);
  pointer-events: none;
}
.trust-centered > * { position: relative; z-index: 1; }
.trust-centered h2 { max-width: 640px; margin-left: auto; margin-right: auto; }
.trust-centered > p { max-width: 620px; margin-left: auto; margin-right: auto; }
.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  text-align: left;
}
.trust-panel {
  margin-top: 40px;
  background: var(--navy);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.trust-panel::after {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent 70%);
  pointer-events: none;
}
.trust-panel > * { position: relative; z-index: 1; }
.trust-panel .trust-cards { margin-top: 0; }
.trust-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px 22px;
}
.trust-card .trust-card-ico {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.25);
  color: #9DC0FF;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.trust-card .trust-card-ico svg { width: 27px; height: 27px; }
.trust-card strong { display: block; color: #fff; font-weight: 700; font-size: 15px; letter-spacing: -0.01em; margin-bottom: 7px; }
.trust-card span { display: block; color: rgba(255, 255, 255, 0.66); font-size: 13px; line-height: 1.5; }
@media (max-width: 860px) {
  .trust-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .trust-cards { grid-template-columns: 1fr; }
}

/* ---------- CTA ---------- */
.cta-section {
  text-align: center;
  padding: 96px 0;
}
.cta-section h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  letter-spacing: -0.035em;
  max-width: 760px;
  margin: 0 auto;
}
.cta-section .hero-sub {
  margin: 24px auto 0;
  text-align: center;
}
.cta-section .hero-actions { justify-content: center; }
.waitlist-form {
  margin: 36px auto 0;
  max-width: 480px;
  display: flex;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 1px 0 rgba(10, 23, 51, 0.04);
}
.waitlist-form input {
  flex: 1;
  border: none;
  outline: none;
  font: inherit;
  font-size: 15px;
  padding: 0 12px;
  background: transparent;
  color: var(--ink);
}
.waitlist-form input::placeholder { color: var(--ink-4); }
.waitlist-note {
  margin-top: 14px;
  font-family: var(--font-label);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Comparison ---------- */
.compare {
  margin-top: 56px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td {
  padding: 18px 24px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--line-2);
}
.compare th {
  font-weight: 500;
  color: var(--ink-3);
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--mist-2);
}
.compare th.us {
  color: var(--navy);
  background: var(--soft-blue-tint);
}
.compare td.us { background: var(--soft-blue-wash); color: var(--ink); font-weight: 500; }
.compare tr:last-child td { border-bottom: none; }
.compare .row-label { color: var(--ink-2); font-weight: 500; }
.tick {
  display: inline-block;
  width: 16px; height: 16px;
  border-radius: 50%;
}
.tick.yes { background: var(--green); position: relative; }
.tick.yes::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 7px; height: 4px;
  border-left: 1.5px solid #fff; border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  top: -1px;
}
.tick.no { background: var(--line); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  background: var(--paper);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer h5 {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer ul { padding: 0; margin: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: var(--ink-2); font-size: 14px; }
.footer a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
  display: flex; justify-content: space-between;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer-legal {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
  font-family: var(--font-label);
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-3);
}
.footer-legal a { color: var(--ink-3); text-decoration: underline; text-underline-offset: 2px; }
.footer-legal a:hover { color: var(--ink); }
.footer-legal + .footer-bottom { margin-top: 14px; padding-top: 14px; border-top: none; }

/* ---------- Hero grid for demo column ---------- */
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
}
@media (max-width: 900px) {
  .industry-panel { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .risk-list { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-inner:has(.nav-burger) .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: block; }
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
}

/* ---------- Marquee logos ---------- */
.logo-row {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  display: flex; gap: 48px; align-items: center;
  font-family: var(--font-label);
  font-size: 12px; color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-wrap: wrap;
  justify-content: space-between;
}
.logo-row .label { color: var(--soft-blue-2); }


/* ============================================================
   PILLARS (Prevent / Stay compliant / Drive consistency)
   ============================================================ */
.pillars-section {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}
.pillars {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}
.pillar:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.pillar-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue-tint);
  color: var(--blue);
  display: grid; place-items: center;
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--navy);
}
.pillar p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ============================================================
   PROTECT STRIP (dark navy CTA)
   ============================================================ */
.protect-strip {
  padding: 0;
}
.protect-strip .container {
  padding-top: 0; padding-bottom: 0;
}
.protect-inner {
  background: var(--navy);
  background-image: radial-gradient(at top right, rgba(37,99,235,0.18) 0%, transparent 50%);
  border-radius: 18px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 32px;
  color: #fff;
  margin: 32px 0;
}
.protect-inner .brand-mark { flex-shrink: 0; }
.protect-text h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  color: #fff;
  letter-spacing: -0.025em;
}
.protect-text p {
  margin-top: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 17px;
}
.protect-inner .btn-primary {
  background: var(--blue);
  border-color: var(--blue);
}
.protect-inner .btn-primary:hover {
  background: var(--blue-2);
  border-color: var(--blue-2);
}

/* ============================================================
   VALUES (Trustworthy / Secure / Smart / Human / Reliable)
   ============================================================ */
.values-section {
  padding: 80px 0 96px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.values-grid .value {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 20px;
  border-radius: 12px;
}
.values-grid .value-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--blue-tint);
  color: var(--blue);
  display: grid; place-items: center;
}
.values-grid .value h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}
.values-grid .value p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ============================================================
   UTILITY
   ============================================================ */
.label-cap {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .protect-inner { flex-direction: column; align-items: flex-start; padding: 32px 28px; }
  .protect-inner .btn-primary { margin-left: 0 !important; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   PRE-SEND vs POST-SEND TIMELINE
   ============================================================ */
.timeline-card {
  margin-top: 56px;
  margin-bottom: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 40px 28px;
  overflow: hidden;
}
.timeline-rows {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.timeline-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
}
.timeline-label { display: flex; flex-direction: column; gap: 6px; }
.timeline-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  width: fit-content;
}
.us-tag { background: var(--blue-tint); color: var(--blue); }
.them-tag { background: #FEE4E2; color: var(--red); }
.timeline-headline {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.timeline-track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8px 32px;
  min-height: 80px;
}
.tl-line {
  position: absolute;
  left: 8px; right: 8px;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  border-radius: 2px;
  z-index: 0;
}
.tl-line.them-line {
  background: linear-gradient(90deg, #94A3B8 0%, var(--red) 30%, var(--red) 60%, var(--amber) 100%);
}
.tl-dot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 4px;
}
.tl-marker {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 1px currentColor;
}
.tl-time {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tl-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 6px;
}
.tl-sub {
  font-size: 11px;
  color: var(--ink-3);
  max-width: 100px;
  line-height: 1.35;
}
.tl-stamp {
  position: absolute;
  right: 8px;
  bottom: -8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.tl-stamp.safe  { background: var(--green-bg); color: var(--green); }
.tl-stamp.risky { background: #FEE4E2; color: var(--red); }

@media (max-width: 800px) {
  .timeline-row { grid-template-columns: 1fr; gap: 12px; }
  .timeline-track { padding: 16px 4px 24px; }
  .tl-sub { display: none; }
}

/* ============================================================
   COMPARISON UPDATES (partial tick)
   ============================================================ */
.compare { margin-top: 32px; }
.tick.partial {
  background: transparent;
  border: 1.5px solid var(--amber);
  position: relative;
}
.tick.partial::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--amber);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  background: linear-gradient(90deg, var(--amber) 50%, transparent 50%);
}
.compare-legend {
  display: flex;
  gap: 24px;
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  background: var(--mist-2);
  font-size: 12px;
  color: var(--ink-3);
}
.compare-legend span {
  display: inline-flex; align-items: center; gap: 8px;
}

/* ============================================================
   DIFFERENTIATOR CHIPS
   ============================================================ */
.diff-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.diff {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.15s, transform 0.15s;
}
.diff:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.diff-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--blue-tint);
  color: var(--blue);
  display: grid; place-items: center;
}
.diff-icon svg { width: 18px; height: 18px; }
.diff h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.diff p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}

@media (max-width: 800px) {
  .diff-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.problem-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.problem-stat {
  background: var(--surface);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.problem-stat .stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.problem-stat .stat-label {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  min-height: 42px;
}
.problem-stat .stat-src {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.problem-stat .stat-src sup { color: var(--blue); margin-right: 2px; }
.problem-foot {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-3);
  text-align: right;
}
.problem-foot sup { color: var(--blue); }

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOUNDING 20 BADGE + PERKS
   ============================================================ */
.founding-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--blue-tint);
  border: 1px solid #C7D9FE;
  border-radius: 999px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
}
.founding-pulse {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  position: relative;
}
.founding-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.3;
  animation: pulse-ring 1.6s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 0.45; }
  100% { transform: scale(2.2); opacity: 0; }
}
.founding-text b { font-weight: 700; color: var(--navy); }

.waitlist-ok {
  margin: 36px auto 0;
  padding: 20px 24px;
  max-width: 480px;
  background: var(--surface);
  border: 1px solid #B7E2C7;
  border-left: 3px solid var(--green);
  border-radius: 10px;
  text-align: left;
}
.waitlist-ok-title { font-weight: 600; margin-bottom: 4px; color: var(--navy); }
.waitlist-ok-sub { font-size: 14px; color: var(--ink-2); }

.founding-perks {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 13px;
  color: var(--ink-2);
}
.founding-perks span { display: inline-flex; align-items: center; gap: 8px; }
.check-i {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green);
  display: inline-grid; place-items: center;
  position: relative;
  flex-shrink: 0;
}
.check-i::after {
  content: "";
  width: 8px; height: 4px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}


/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.pricing-bar {
  margin-top: 48px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.founding-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
}
.founding-banner b { color: #FFD66B; font-weight: 700; margin-right: 2px; }
.founding-banner .founding-pulse { background: #FFD66B; }
.founding-banner .founding-pulse::after { background: #FFD66B; }

.bill-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--mist-2);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.bill-toggle button {
  padding: 8px 16px;
  border-radius: 7px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bill-toggle button.active {
  background: var(--surface);
  color: var(--navy);
  box-shadow: 0 1px 2px rgba(13,27,42,0.08);
}
.pill-save {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--green-bg);
  color: var(--green);
}

.tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.tier:hover { transform: translateY(-2px); }
.tier.featured {
  border-color: var(--blue);
  border-width: 2px;
  box-shadow: 0 24px 56px -28px rgba(37, 99, 235, 0.35);
  padding-top: 36px;
}
.tier-flag {
  position: absolute;
  top: -1px; right: 24px;
  transform: translateY(-50%);
  background: var(--blue);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tier-head h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.tier-head p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}

.tier-price {
  padding: 18px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.price-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-num .currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-3);
  vertical-align: top;
}
.price-num .per {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0;
  margin-left: 6px;
}
.price-unit {
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-3);
}

.tier-seats {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.seat-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.seat-label { color: var(--ink-3); }
.seat-val { color: var(--navy); font-weight: 500; }

.tier-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
}
.tier-features .check-i {
  margin-top: 2px;
}

.pricing-foot {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.pf-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 4px;
}
.pf-item strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.pf-item span {
  font-size: 12px;
  color: var(--ink-2);  line-height: 1.5;
}
.pf-item.highlight {
  background: var(--blue-tint);
  border-color: #C3D7FF;
}
.pf-item.highlight strong {
  color: var(--blue);
}

@media (max-width: 1000px) {
  .tiers { grid-template-columns: 1fr; }
  .pricing-foot { grid-template-columns: repeat(2, 1fr); }
  .pricing-bar { flex-direction: column; align-items: stretch; }
  .pricing-bar > * { width: 100%; justify-content: center; }
}

/* ============================================================
   ONBOARDING TIMELINE
   ============================================================ */
.onboarding-section {
  padding: 96px 0;
  background: var(--mist-2);
}

/* ============================================================
   PRODUCT WALKTHROUGH TEASER
   ============================================================ */
.walkthrough-section {
  padding: 96px 0;
}
.wt-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  margin-top: 52px;
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  background: radial-gradient(620px 320px at 50% -10%, rgba(37,99,235,0.32), transparent 62%), #0A1422;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 90px -40px rgba(13,27,42,0.5);
}
.wt-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  color: #fff;
}
.wt-cap { font-size: 16px; font-weight: 600; color: #fff; letter-spacing: -0.01em; }
.wt-sub { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #7BA9FF; }
.wt-chapters {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.wt-chapter {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}
.wt-ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-tint);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.wt-chapter h4 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.01em; }
.wt-chapter p { font-size: 13px; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 800px) { .wt-chapters { grid-template-columns: 1fr; } }

/* Walkthrough — scripted product demo */
.wt-demo {
  position: relative;
  max-width: 940px;
  margin: 26px auto 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 30px 60px -30px rgba(13, 27, 42, 0.4);
  overflow: hidden;
}
.wt-demo-bar { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: #F4F6F9; border-bottom: 1px solid var(--line); }
.wt-demo-dots { display: flex; gap: 6px; }
.wt-demo-dots i { width: 10px; height: 10px; border-radius: 50%; }
.wt-demo-dots i:nth-child(1) { background: #FF5F57; }
.wt-demo-dots i:nth-child(2) { background: #FEBC2E; }
.wt-demo-dots i:nth-child(3) { background: #28C840; }
.wt-demo-app { font-size: 12.5px; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.wt-demo-live { margin-left: auto; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; color: var(--green-2); background: var(--green-bg); padding: 3px 8px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.wt-demo-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: wtPulse 1.6s ease-in-out infinite; }
@keyframes wtPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.wt-demo-mail { padding: 16px 18px; }
.wt-demo-meta { font-size: 12px; color: var(--ink-4); margin-bottom: 12px; }
.wt-demo-text { font-size: 14px; line-height: 1.65; color: var(--ink-2); }
.wt-demo-risky { padding: 1px 4px; border-radius: 4px; background: #FFE4E4; color: #B42318; box-shadow: inset 0 -2px 0 rgba(220, 38, 38, 0.35); }
/* The SafeReplies panel, drawn to match the real Outlook / Gmail add-in */
.wt-demo-split { display: grid; grid-template-columns: minmax(0, 1fr) 382px; align-items: stretch; }
.srp { background: var(--surface); border-left: 1px solid var(--line); min-width: 0; }
.srp-head { display: flex; align-items: center; gap: 9px; padding: 11px 13px; border-bottom: 1px solid var(--line); }
.srp-head svg { flex-shrink: 0; }
.srp-id { min-width: 0; margin-right: auto; }
.srp-id b { display: block; font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.2; white-space: nowrap; }
.srp-id span { display: block; font-family: var(--font-label); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-top: 2px; white-space: nowrap; }
.srp-state { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; font-size: 11px; font-weight: 700; color: var(--navy); background: #FFF1F1; border: 1px solid #FBD9D9; padding: 4px 9px; border-radius: 999px; }
.srp-state i { width: 7px; height: 7px; border-radius: 50%; background: #F0435B; flex-shrink: 0; }
.srp-win { width: 21px; height: 21px; border: 1px solid var(--line); border-radius: 5px; display: grid; place-items: center; font-size: 12px; color: var(--ink-3); flex-shrink: 0; }
.srp-body { padding: 10px 12px 12px; }
.srp-summary { border: 1px solid var(--line); border-radius: 9px; padding: 9px 11px; display: flex; align-items: center; gap: 10px; }
.srp-badge { display: inline-block; font-family: var(--font-label); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #B42318; background: #FFE4E6; padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.srp-count { font-size: 13px; font-weight: 700; color: var(--navy); white-space: nowrap; }
.srp-label { font-family: var(--font-label); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin: 11px 0 6px; }
.srp-find { border: 1px solid var(--line); border-radius: 9px; padding: 10px 11px; }
.srp-find-head { display: flex; align-items: center; gap: 9px; }
.srp-num { width: 19px; height: 19px; border-radius: 6px; background: var(--blue-tint); color: var(--blue); font-size: 10.5px; font-weight: 700; display: grid; place-items: center; flex-shrink: 0; }
.srp-find-t { flex: 1; min-width: 0; font-size: 12.5px; font-weight: 700; color: var(--navy); }
.srp-sev { font-size: 10px; font-weight: 700; color: #B42318; background: #FFE4E6; padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.srp-quote { font-size: 12px; font-weight: 700; color: var(--navy); line-height: 1.4; margin-top: 9px; text-wrap: pretty; }
.srp-sub { font-family: var(--font-label); font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: #5B7CA8; margin-top: 9px; }
.srp-tx { font-size: 11px; line-height: 1.5; color: #33507A; margin-top: 3px; text-wrap: pretty; }
.srp-tx-last { margin-bottom: 0; }
.srp-consider { background: #ECFAF3; border: 1px solid #C6EBD9; border-radius: 8px; padding: 9px 10px; margin-top: 9px; }
.srp-consider-l { font-family: var(--font-label); font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--green-2); }
.srp-consider p { font-size: 11px; line-height: 1.5; color: #1F5B44; margin-top: 3px; text-wrap: pretty; }
@media (max-width: 820px) {
  .wt-demo-split { grid-template-columns: 1fr; }
  .srp { border-left: 0; border-top: 1px solid var(--line); }
}

/* ============================================================
   PROOF BAND — stats + testimonial
   ============================================================ */
.proof-section { padding: 72px 0; background: var(--navy); }
/* Quote-led: testimonial first, figures as supporting evidence beneath. */
.proof-quote { margin: 0; max-width: 70ch; position: relative; }
.proof-quote-mark { font-size: 64px; line-height: 0.5; color: #3A5A8C; height: 30px; }
.proof-quote blockquote { margin: 10px 0 0; font-size: 25px; line-height: 1.45; font-weight: 600; color: #fff; letter-spacing: -0.01em; text-wrap: pretty; }
.proof-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; margin-top: 44px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.proof-stat-v { font-size: 31px; font-weight: 700; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.proof-stat-l { font-size: 12.5px; color: #9DB0CC; margin-top: 10px; line-height: 1.45; }
.proof-cite { display: inline-flex; align-items: center; gap: 13px; margin-top: 24px; }
.proof-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 14px; font-weight: 700; }
img.proof-avatar { object-fit: cover; flex: none; }
.proof-cite-tx { text-align: left; }
.proof-cite-name { display: block; font-size: 14.5px; font-weight: 700; color: #fff; }
.proof-cite-role { display: block; font-size: 13px; color: #7BA9FF; margin-top: 1px; }
@media (max-width: 800px) {
  .proof-stats { grid-template-columns: 1fr; gap: 26px; }
  .proof-quote blockquote { font-size: 20px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 96px 0; background: var(--surface); border-top: 1px solid var(--line); }
.faq-link { color: var(--blue); font-weight: 600; }
.faq-list { max-width: 860px; margin: 44px auto 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: none; border: 0; padding: 22px 4px; text-align: left; font-size: 17px; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; }
.faq-q > span:first-child { flex: 1 1 auto; min-width: 0; text-wrap: initial; }
.faq-chev { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-3); transition: transform 0.22s ease, background 0.2s ease, color 0.2s ease; }
.faq-chev svg { width: 15px; height: 15px; }
.faq-item.open .faq-chev { transform: rotate(180deg); background: var(--blue); border-color: var(--blue); color: #fff; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.26s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > p { overflow: hidden; margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-2); max-width: 680px; padding-right: 40px; }
.faq-item.open .faq-a > p { padding-bottom: 24px; }

.onboarding-track {
  margin-top: 56px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Arrow flow */
.ob-video { margin-top: 44px; max-width: 640px; margin-left: auto; margin-right: auto; }
.ob-video-ph {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 18px;
  background: radial-gradient(520px 280px at 50% -10%, rgba(37,99,235,0.28), transparent 62%), #0A1422;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
}
.ob-video-ph::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 45%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000, transparent 78%);
  pointer-events: none;
}
.ob-video-play {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -10px rgba(37,99,235,0.7);
  margin-bottom: 8px;
}
.ob-video-cap { position: relative; font-size: 16px; font-weight: 600; color: #fff; letter-spacing: -0.01em; }
.ob-video-sub { position: relative; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #7BA9FF; }
.onboarding-flow {
  margin-top: 52px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.ob-node {
  flex: 1;
  text-align: center;
  padding: 0 6px;
}
.ob-node-ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
  display: grid; place-items: center;
  margin: 0 auto 13px;
  box-shadow: 0 14px 30px -12px rgba(37, 99, 235, 0.6);
}
.ob-node-ico svg { width: 24px; height: 24px; }
.ob-node-num {
  font-family: var(--font-label);
  font-size: 11px; font-weight: 700;
  color: var(--ink-4);
  margin-bottom: 5px;
}
.ob-node-title {
  font-size: 14.5px; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 6px;
}
.ob-node-text {
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.ob-arrow {
  flex-shrink: 0;
  padding-top: 16px;
  color: var(--blue);
}
.ob-arrow svg { width: 22px; height: 22px; }
@media (max-width: 880px) {
  .onboarding-flow { flex-wrap: wrap; justify-content: center; gap: 24px 0; }
  .ob-node { flex: 0 0 33%; }
  .ob-arrow { display: none; }
}
@media (max-width: 560px) {
  .ob-node { flex: 0 0 50%; }
}

/* Onboarding — horizontal rail (live) */
.onboarding-checklist { margin-top: 40px; }
.ob5-cta { display: inline-flex; align-items: center; gap: 9px; background: var(--navy); color: #fff; font-size: 14px; font-weight: 600; padding: 12px 18px; border-radius: 10px; transition: background 0.15s ease; flex-shrink: 0; }
.ob5-cta:hover { background: var(--navy-2); color: #fff; }
.ob5-cta svg { width: 16px; height: 16px; }
.ob6-rail { position: relative; padding-top: 9px; }
.ob6-line { position: absolute; left: 0; right: 0; top: 17px; height: 2px; background: var(--line); }
.ob6-line i { position: absolute; left: 0; top: 0; bottom: 0; background: var(--green); border-radius: 2px; }
.ob6-steps { display: flex; gap: 14px; position: relative; }
.ob6-step { flex: 1 1 0; min-width: 0; }
.ob6-dot { width: 17px; height: 17px; border-radius: 50%; background: var(--surface); border: 2px solid #CFD8E6; display: grid; place-items: center; color: #fff; }
.ob6-dot.done { background: var(--green); border-color: var(--green); }
.ob6-dot svg { width: 9px; height: 9px; }
.ob6-title { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.35; margin-top: 15px; text-wrap: pretty; }
.ob6-sub { font-size: 12.5px; color: var(--ink-3); line-height: 1.4; margin-top: 4px; text-wrap: pretty; }
.ob6-foot { display: flex; align-items: center; gap: 22px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.ob6-foot p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-2); flex: 1; min-width: 260px; }
@media (max-width: 900px) {
  .ob6-steps { flex-wrap: wrap; gap: 22px 18px; }
  .ob6-step { flex: 1 1 42%; }
  .ob6-line { display: none; }
  .ob6-title { margin-top: 11px; }
}
.onboarding-rail {
  position: absolute;
  top: 64px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  z-index: 0;
}
.onboarding-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.ob-day {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 4px 10px;
  background: var(--blue-tint);
  border-radius: 999px;
}
.ob-marker {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--blue);
  color: var(--blue);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.25);
}
.ob-marker svg { width: 24px; height: 24px; }

.ob-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ob-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.ob-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
}
.ob-card p {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .onboarding-track { grid-template-columns: 1fr; gap: 32px; }
  .onboarding-rail { display: none; }
  .onboarding-step { flex-direction: row; align-items: flex-start; text-align: left; gap: 20px; }
  .onboarding-step .ob-day { align-self: flex-start; }
  .ob-marker { flex-shrink: 0; }
}


/* ============================================================
   WHY SAFEREPLIES (compact version)
   ============================================================ */
.why-section {
  padding: 80px 0;
  background: var(--mist-2);
}

.why-card {
  margin-top: 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 32px 24px;
}

/* Two-jobs comparison (SafeReplies vs AI writing assistants) */
.wj { margin-top: 48px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 0 22px; align-items: stretch; }
.wj-card { border: 1px solid var(--line); border-radius: 16px; padding: 26px 26px 24px; background: var(--surface); }
.wj-card.us { border-color: #CFE0FF; background: linear-gradient(180deg, var(--blue-wash), #fff); }
.wj-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px; }
.wj-ic.them { background: #F1F5F9; color: var(--ink-2); }
.wj-ic.us { background: var(--blue); color: #fff; }
.wj-ic svg { width: 23px; height: 23px; }
.wj-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-4); }
.wj-card.us .wj-kicker { color: var(--blue-2); }
.wj-name { font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; margin: 4px 0; }
.wj-sub { font-size: 13px; color: var(--ink-3); margin-bottom: 16px; }
.wj-line { font-size: 15px; line-height: 1.5; color: var(--ink-2); margin-bottom: 16px; }
.wj-card.us .wj-line { color: var(--navy); }
.wj-line b { font-weight: 700; }
.wj-list { display: flex; flex-direction: column; gap: 9px; }
.wj-item { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--ink-2); }
.wj-mk { width: 17px; height: 17px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.wj-mk svg { width: 10px; height: 10px; stroke-width: 3; }
.wj-mk.yes { background: var(--green); color: #fff; }
.wj-mk.dash { background: #EDF1F6; color: var(--ink-4); }
.wj-plus { align-self: center; width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.wj-plus svg { width: 18px; height: 18px; }
.wj-together { margin-top: 18px; text-align: center; background: var(--navy); color: #fff; border-radius: 12px; padding: 16px 22px; font-size: 15px; }
.wj-together b { color: #8FB4FF; font-weight: 700; }
@media (max-width: 860px) {
  .wj { grid-template-columns: 1fr; gap: 16px; }
  .wj-plus { transform: rotate(90deg); margin: 0 auto; }
}
.why2-rowhead { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.why2-rowhead.muted { margin-top: 20px; }
.why2-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 6px 12px; border-radius: 8px; }
.why2-tag.safe { background: var(--blue); color: #fff; }
.why2-tag.muted { background: #F1F5F9; color: var(--ink-3); }
.why2-chip { font-size: 12px; font-weight: 700; letter-spacing: 0.02em; }
.why2-chip.safe { color: #047857; }
.why2-chip.muted { color: var(--ink-4); }
.why2-plot { position: relative; height: 94px; }
.why2-line { position: absolute; top: 35px; height: 3px; border-radius: 2px; }
.why2-node { position: absolute; top: 0; transform: translateX(-50%); width: 140px; text-align: center; line-height: 1.25; }
.why2-time { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-4); height: 16px; }
.why2-dot { display: block; width: 15px; height: 15px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px var(--surface), 0 0 0 5px color-mix(in oklab, currentColor 32%, #fff); margin: 12px auto 0; }
.why2-label { display: block; margin-top: 12px; font-size: 14px; font-weight: 700; color: var(--navy); }
.why2-secondary .why2-label { font-size: 13px; color: var(--ink-3); font-weight: 600; }
.why2-secondary .why2-time { color: #AEB8C4; }
.why2-secondary .why2-dot { width: 13px; height: 13px; box-shadow: 0 0 0 4px var(--surface), 0 0 0 5px #E6EAF0; margin-top: 13px; }
.why2-sendaxis { position: relative; height: 30px; margin: 0 0 2px; }
.why2-sendaxis::before { content: ""; position: absolute; left: 0; right: 0; top: 15px; border-top: 1px dashed #D7DEE8; }
.why2-sendpill { position: absolute; top: 3px; transform: translateX(-50%); background: var(--navy); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; white-space: nowrap; }

.why-rail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-rail-head { display: flex; }
.why-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}
.us-tag { background: var(--blue-tint); color: var(--blue); }
.them-tag { background: #FEE4E2; color: var(--red); }

.why-rail-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8px 0;
  position: relative;
}
.why-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  gap: 6px;
  position: relative;
  min-width: 0;
}
.why-step-time {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.why-step-row {
  display: flex;
  align-items: center;
  width: 100%;
}
.why-step-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 1.5px currentColor;
  flex-shrink: 0;
}
.why-step-line {
  height: 2px;
  flex: 1;
  margin-left: 4px;
  border-radius: 1px;
}
.why-step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.why-rail-foot {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 6px;
  align-self: flex-start;
}
.why-rail-foot.safe  { background: var(--green-bg); color: var(--green); }
.why-rail-foot.risky { background: #FEE4E2; color: var(--red); }

.why-pillars {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.wp-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--blue-tint);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.wp-icon svg { width: 18px; height: 18px; }
.why-pillar strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.why-pillar span {
  display: block;
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 2px;
}

@media (max-width: 1000px) {
  .why-card { padding: 24px 22px; }
  .why-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .why2-node { width: 92px; }
  .why2-label { font-size: 12px; }
  .why2-secondary .why2-label { font-size: 11.5px; }
  .why2-plot { height: 88px; }
}
@media (max-width: 560px) {
  .why-pillars { grid-template-columns: 1fr; }
}


/* ============================================================
   TRIAL CTA (replaces founding-spot styling)
   ============================================================ */
.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--green-bg);
  border: 1px solid #BDEAD2;
  border-radius: 999px;
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
}
.trial-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
}
.trial-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.35;
  animation: pulse-ring 1.6s ease-out infinite;
}

.trial-includes {
  margin: 32px auto 0;
  max-width: 640px;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 24px;
}
.trial-includes-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.trial-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
.trial-includes-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
}

@media (max-width: 560px) {
  .trial-includes-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   HERO STATIC PREVIEW (non-interactive card)
   ============================================================ */
.hero-preview {
  display: block;
  color: inherit;
  position: relative;
}

.hp-mail {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(13,27,42,0.04),
              0 24px 64px -28px rgba(13,27,42,0.18);
  overflow: hidden;
  position: relative;
}
.hp-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-2);
  font-size: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.hp-header > div { display: flex; gap: 16px; }
.hp-header .hp-label {
  font-size: 12px;
  color: var(--ink-3);
  width: 60px;
  flex-shrink: 0;
}
.hp-body {
  padding: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  display: flex; flex-direction: column; gap: 10px;
  min-height: 140px;
}
.hp-body p { margin: 0; }
.hp-flagged {
  background: linear-gradient(transparent 60%, rgba(184,116,10,0.22) 60%);
  border-bottom: 1.5px dashed var(--amber);
  padding-bottom: 1px;
}

.hp-popup {
  margin: 0 16px 16px;
  background: var(--surface);
  border: 1px solid var(--amber-line);
  border-radius: 10px;
  box-shadow: 0 16px 32px -12px rgba(13,27,42,0.18);
  overflow: hidden;
}
.hp-popup-head {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--amber-bg);
  border-bottom: 1px solid var(--amber-line);
}
.hp-popup-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
}
.hp-popup-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--amber);
}
.hp-popup-score {
  margin-left: auto;
  font-size: 11px;
  color: var(--amber);
  font-weight: 500;
}
.hp-popup-issue {
  padding: 12px 14px 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.hp-popup-rewrite {
  margin: 8px 14px 12px;
  padding: 10px 12px;
  background: var(--blue-wash);
  border-radius: 6px;
}
.hp-rewrite-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.hp-popup-rewrite p {
  margin: 0;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
}
.hp-popup-actions {
  display: flex; gap: 6px;
  padding: 10px 14px;
  border-top: 1px solid var(--line-2);
  background: var(--mist-2);
}
.hp-btn {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  padding: 7px 4px;
  border-radius: 5px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.hp-btn.primary {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}



/* ============================================================
   FINANCIAL BURDEN
   ============================================================ */
.burden-section {
  padding: 80px 0;
  background: var(--mist-2);
}

.burden-card {
  margin-top: 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 40px;
}

.burden-bars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.burden-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 24px;
}

.burden-label { display: flex; flex-direction: column; gap: 2px; }
.burden-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.burden-sub {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.4;
}

.burden-bar-wrap {
  background: var(--mist-2);
  border-radius: 8px;
  height: 44px;
  position: relative;
  overflow: visible;
}
.burden-bar {
  height: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 14px;
  transition: width 0.6s ease;
  position: relative;
  min-width: 70px;
}
.burden-value {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.tone-red .burden-bar {
  background: linear-gradient(90deg, #DC2626 0%, #991B1B 100%);
}
.tone-amber .burden-bar {
  background: linear-gradient(90deg, #F59E0B 0%, #B8740A 100%);
}
.tone-good .burden-bar {
  background: linear-gradient(90deg, #10B981 0%, #047857 100%);
}

.burden-foot {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  gap: 16px;
}
.burden-foot-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue-tint);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.burden-foot-icon svg { width: 22px; height: 22px; }
.burden-foot strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.burden-foot span {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}
.burden-foot span b { color: var(--navy); font-weight: 700; }

@media (max-width: 800px) {
  .burden-row { grid-template-columns: 1fr; gap: 8px; }
  .burden-card { padding: 24px; }
  .burden-foot { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   PRICING ROI BLOCK (cost-of-incidents vs cost-of-SafeReplies)
   ============================================================ */
.pricing-roi {
  margin-top: 48px;
  background: var(--mist-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 36px;
}
.roi-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}
.roi-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.roi-head h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-weight: 700;
  max-width: 520px;
}
.roi-callout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  border-left: 3px solid var(--green);
  max-width: 280px;
}
.roi-callout strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
  line-height: 1.4;
}
.roi-callout span {
  font-size: 12px;
  color: var(--ink-2);
}
.roi-callout b { color: var(--navy); font-weight: 700; }

.roi-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.roi-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 20px;
}
.roi-label { display: flex; flex-direction: column; gap: 2px; }
.roi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.roi-sub {
  font-size: 11px;
  color: var(--ink-3);
}
.roi-bar-wrap {
  background: var(--surface);
  border-radius: 6px;
  height: 36px;
  position: relative;
}
.roi-bar {
  height: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  transition: width 0.6s ease;
  min-width: 64px;
}
.roi-value {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.roi-row.tone-red .roi-bar {
  background: linear-gradient(90deg, #DC2626 0%, #991B1B 100%);
}
.roi-row.tone-amber .roi-bar {
  background: linear-gradient(90deg, #F59E0B 0%, #B8740A 100%);
}
.roi-row.tone-good .roi-bar {
  background: linear-gradient(90deg, #10B981 0%, #047857 100%);
}

@media (max-width: 900px) {
  .roi-head { grid-template-columns: 1fr; gap: 16px; }
  .roi-callout { max-width: none; }
  .roi-row { grid-template-columns: 1fr; gap: 6px; }
  .pricing-roi { padding: 24px; }
}


/* Sit inside Why-us section: white card on mist-2 background */
.why-roi {
  margin-top: 28px;
  background: var(--surface);
}


/* ============================================================
   BACKGROUND VARIANTS — driven by body[data-bg]
   ============================================================ */

/* "soft-tint" — subtle blue wash on body, white surfaces still pop */
body[data-bg="soft-tint"] {
  background: #F4F7FC;
}
body[data-bg="soft-tint"] .nav {
  background: rgba(244, 247, 252, 0.85);
}
body[data-bg="soft-tint"] .hero {
  background: linear-gradient(180deg, #EAF0F9 0%, #F1F5FB 100%);
}

/* "grid" — faint blue dot pattern across whole page */
body[data-bg="grid"] {
  background-color: #FCFDFE;
  background-image:
    radial-gradient(circle, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  background-attachment: fixed;
}
body[data-bg="grid"] .nav {
  background: rgba(252, 253, 254, 0.85);
}

/* "glow" — soft radial glows in corners (hero only, sections stay clean) */
body[data-bg="glow"] {
  background: #FFFFFF;
}
body[data-bg="glow"] .hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 15% 0%, rgba(37, 99, 235, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 30%, rgba(123, 169, 255, 0.10) 0%, transparent 60%),
    #FFFFFF;
}

/* "warm" — soft cream paper feel */
body[data-bg="warm"] {
  background: #FAF8F4;
}
body[data-bg="warm"] .nav {
  background: rgba(250, 248, 244, 0.85);
}
body[data-bg="warm"] .hero {
  background: linear-gradient(180deg, #F6F2EA 0%, #FAF8F4 100%);
}
body[data-bg="warm"] section[style*="--mist-2"],
body[data-bg="warm"] .problem-section,
body[data-bg="warm"] .pricing-section {
  background: #FFFFFF !important;
}

/* "white" (default) — explicit reset */
body[data-bg="white"] {
  background: #FFFFFF;
}

/* ============================================================
   LEGISLATION — always up to date
   ============================================================ */
.legis-section {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
/* Promise split (navy left + bullets right) */
.legis-promise {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -40px rgba(13, 27, 42, 0.3);
}
.legis-promise-left {
  background: var(--navy);
  color: #fff;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.legis-promise-left::after {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.32), transparent 70%);
  pointer-events: none;
}
.legis-promise-left > * { position: relative; z-index: 1; }
.legis-promise-left h2 {
  font-size: clamp(25px, 2.5vw, 31px);
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 16px;
  line-height: 1.14;
}
.legis-promise-left p {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
}
.legis-live-badge {
  background: var(--green-bg);
  color: var(--green);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-left: 4px;
}
.legis-notify-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  padding: 10px 16px;
  background: rgba(37, 99, 235, 0.22);
  border: 1px solid rgba(124, 163, 255, 0.4);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}
.legis-notify-pill svg { width: 16px; height: 16px; color: #7FA3FF; flex-shrink: 0; }
.legis-bell {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--blue), var(--blue-2));
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 16px 36px -14px rgba(37, 99, 235, 0.7);
}
.legis-bell svg { width: 26px; height: 26px; }
.legis-promise-right {
  background: #fff;
  padding: 48px;
  display: flex;
  align-items: center;
}
@media (max-width: 860px) {
  .legis-promise { grid-template-columns: 1fr; }
  .legis-promise-left, .legis-promise-right { padding: 40px 32px; }
}
.legis-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 960px) {
  .legis-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Bullets column */
.legis-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}
.legis-bullets li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
}
.legis-bullets strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
}
.legis-bullets span:not(.legis-check) {
  display: block;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
.legis-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}
.legis-check::after {
  content: "";
  position: absolute;
  left: 6px; top: 9px;
  width: 9px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* Feed column */
.legis-feed {
  background: var(--navy);
  border-radius: 16px;
  padding: 20px;
  box-shadow:
    0 24px 60px -20px rgba(13, 27, 42, 0.35),
    0 2px 0 rgba(255,255,255,0.04) inset;
  position: relative;
  overflow: hidden;
}
.legis-feed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 200px at 100% 0%, rgba(37, 99, 235, 0.18), transparent 60%),
    radial-gradient(600px 240px at 0% 100%, rgba(16, 185, 129, 0.10), transparent 60%);
  pointer-events: none;
}
.legis-feed > * { position: relative; }

.legis-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
}
.legis-feed-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.legis-feed-meta {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legis-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: legisPulse 1.8s ease-out infinite;
}
@keyframes legisPulse {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.legis-feed-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.legis-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 14px 16px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.legis-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.legis-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.legis-tag {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7FA3FF;
}
.legis-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #6EE7B7;
}
.legis-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.legis-item-title {
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.4;
}
.legis-item-summary {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-bottom: 10px;
}
.legis-item-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-label);
  font-size: 11px;
}
.legis-date {
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.legis-pushed {
  color: #6EE7B7;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.legis-pushed::before {
  content: "✓ ";
  margin-right: 2px;
}

.legis-feed-foot {
  margin-top: 14px;
  padding: 12px 6px 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.legis-foot-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ============================================================
   NAV DROPDOWNS
   ============================================================ */
.nav-links {
  position: relative;
}
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-trigger {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.nav-trigger:hover,
.nav-item.open .nav-trigger {
  color: var(--ink);
}
.nav-caret {
  transition: transform 0.18s ease;
  opacity: 0.7;
}
.nav-item.open .nav-caret {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow:
    0 24px 60px -16px rgba(13, 27, 42, 0.18),
    0 4px 12px -4px rgba(13, 27, 42, 0.08);
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 60;
}
.nav-item.open .nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}
/* invisible hover bridge so cursor can travel from trigger to menu */
.nav-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-menu-wide { width: 640px; }
.nav-menu-narrow { width: 420px; }
.nav-menu-compact { width: 280px; padding: 10px; }
.nav-menu-compact .nav-menu-list { gap: 0; }
.nav-menu-row-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.12s ease;
}
.nav-menu-row-compact:hover { background: var(--blue-wash); }
.nav-menu-row-compact .nav-row-name {
  font-weight: 500;
}
.nav-menu-row-compact .nav-row-badge {
  font-size: 10px;
}

.nav-menu-head {
  padding: 4px 8px 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line-2);
}
.nav-menu-eyebrow {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.nav-menu-lede {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}

.nav-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.nav-menu-card {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  transition: background 0.15s ease;
}
.nav-menu-card:hover {
  background: var(--blue-wash);
}
.nav-card-num {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: var(--blue-tint);
  border-radius: 6px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.nav-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-card-badge {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--green-bg);
  color: var(--green);
  padding: 2px 6px;
  border-radius: 4px;
}
.nav-card-desc {
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.45;
}

.nav-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}
.nav-menu-row {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  transition: background 0.15s ease;
}
.nav-menu-row:hover {
  background: var(--blue-wash);
}
.nav-row-main {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.nav-row-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.nav-row-badge {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--mist);
  color: var(--ink-3);
  padding: 2px 6px;
  border-radius: 4px;
}
.nav-row-badge.is-live {
  background: var(--green-bg);
  color: var(--green);
}
.nav-row-desc {
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.45;
}

.nav-menu-foot {
  margin-top: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--mist-2);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: background 0.15s ease;
}
.nav-menu-foot:hover {
  background: var(--blue-tint);
}

@media (max-width: 960px) {
  .nav-menu-wide,
  .nav-menu-narrow { width: 320px; }
  .nav-menu-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WHY-SECTION DISCLAIMER
   ============================================================ */
.why-disclaimer {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 22px;
  background: var(--mist-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: 12px;
}
.why-disclaimer-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-disclaimer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}
.why-disclaimer strong {
  color: var(--ink);
  font-weight: 600;
}

/* ============================================================
   PRICING COMPARISON TABLE — gradient Team column (blue scale)
   ============================================================ */
.pcmp {
  max-width: 820px;
  margin: 36px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px -32px rgba(13, 27, 42, 0.2);
}
.pcmp-head, .pcmp-row, .pcmp-foot {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr; /* feature 50% · Starter 25% · Team 25% */
  align-items: stretch;
}
.pcmp-head { border-bottom: 1px solid var(--line); }
.pcmp-head-feat {
  padding: 26px 24px 18px; align-self: end;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3);
}
.pcmp-head-plan { padding: 22px 12px 18px; text-align: center; }
.pcmp-head-plan.feat {
  position: relative;
  padding-top: 30px;
  background: var(--blue-2);
  color: #fff;
}
.pcmp-pop {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-label);
  font-size: 10px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--blue-2); background: #fff; padding: 3px 10px; border-radius: 999px;
  white-space: nowrap;
}
.pcmp-plan-name { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: var(--navy); }
.pcmp-head-plan.feat .pcmp-plan-name { color: #fff; }
.pcmp-plan-price { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; margin-top: 5px; color: var(--navy); }
.pcmp-head-plan.feat .pcmp-plan-price { color: #fff; }
.pcmp-plan-price .cur { font-size: 15px; font-weight: 700; vertical-align: top; margin-right: 1px; }
.pcmp-plan-per { font-size: 10.5px; color: var(--ink-3); margin-top: 3px; }
.pcmp-head-plan.feat .pcmp-plan-per { color: rgba(255, 255, 255, 0.78); }

.pcmp-ladder { margin-top: 12px; display: flex; flex-direction: column; gap: 4px; }
.pcmp-ladder-row { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 10.5px; }
.pcmp-ladder-row .k { color: var(--ink-3); }
.pcmp-ladder-row .v { font-weight: 700; color: var(--navy); }
.pcmp-head-plan.feat .pcmp-ladder-row .k { color: rgba(255, 255, 255, 0.8); }
.pcmp-head-plan.feat .pcmp-ladder-row .v { color: #fff; }

.pcmp-feat { padding: 12px 24px; font-size: 13.5px; color: var(--ink-2); font-weight: 500; align-self: center; }
.pcmp-row.odd .pcmp-feat,
.pcmp-row.odd .pcmp-cell.s { background: var(--mist-2); }
.pcmp-cell { display: grid; place-items: center; padding: 9px 0; }
.pcmp-cell.t { background: var(--blue-wash); }

.pcmp-mark { width: 22px; height: 22px; border-radius: 50%; display: inline-grid; place-items: center; }
.pcmp-mark svg { width: 12px; height: 12px; }
.pcmp-mark.yes { background: var(--green-bg); color: var(--green); }
.pcmp-mark.no  { background: var(--red-bg);  color: var(--red); }

.pcmp-foot { border-top: 1px solid var(--line); }
.pcmp-foot-note { padding: 16px 24px; font-size: 12px; color: var(--ink-3); align-self: center; }
.pcmp-foot .pcmp-cell { padding: 14px 12px; }
.pcmp-foot .btn { height: 42px; font-size: 13px; }
.pcmp-foot .pcmp-cell.t .btn { background: var(--blue-2); border-color: var(--blue-2); color: #fff; }

@media (max-width: 720px) {
  .pcmp-head, .pcmp-row, .pcmp-foot { grid-template-columns: 1.7fr 1fr 1fr; }
  .pcmp-feat { padding: 11px 14px; font-size: 12.5px; }
  .pcmp-head-feat { padding: 18px 14px 14px; }
  .pcmp-plan-price { font-size: 22px; }
  .pcmp-foot-note { padding: 14px; font-size: 11px; }
}

/* ============================================================
   PRICING CARDS — Starter (white) + Team (navy)
   ============================================================ */
.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.is-team {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.price-pop {
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.price-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.is-team .price-name { color: #fff; }
.price-tag {
  font-size: 13px;
  color: var(--ink-3);
  margin: 4px 0 18px;
  line-height: 1.45;
  min-height: 36px;
}
.is-team .price-tag { color: rgba(255,255,255,0.6); }
.price-amount { display: flex; align-items: baseline; gap: 2px; }
.price-amount .cur { font-size: 22px; font-weight: 600; color: var(--navy); }
.price-amount .amt { font-size: 44px; font-weight: 700; letter-spacing: -0.03em; color: var(--navy); line-height: 1; }
.price-amount .per { font-size: 13px; color: var(--ink-3); margin-left: 6px; }
.is-team .price-amount .cur,
.is-team .price-amount .amt { color: #fff; }
.is-team .price-amount .per { color: rgba(255,255,255,0.55); }
.price-ladder {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.is-team .price-ladder { border-top-color: rgba(255,255,255,0.14); }
.price-ladder .plr { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ink-3); }
.is-team .price-ladder .plr { color: rgba(255,255,255,0.6); }
.price-ladder .plr b { color: var(--navy); font-weight: 600; }
.is-team .price-ladder .plr b { color: #fff; }
.price-feats {
  list-style: none;
  margin: 20px 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.price-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink-2); line-height: 1.4; }
.is-team .price-feats li { color: rgba(255,255,255,0.82); }
.price-feats .pf-ck {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-feats .pf-ck svg { width: 11px; height: 11px; }
.is-team .price-feats .pf-ck { background: rgba(123,169,255,0.2); color: #9DBEFF; }
.price-btn {
  margin-top: auto;
  height: 48px;
  border-radius: 11px;
  font-size: 14.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.price-btn.ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.price-btn.ghost:hover { border-color: var(--blue); color: var(--blue); }
.price-btn.primary { background: #fff; color: var(--navy); border: none; }
.price-btn.primary:hover { background: var(--blue-wash); }
.price-legal { margin-top: 18px; text-align: center; font-size: 12.5px; color: var(--ink-3); }
@media (max-width: 760px) {
  .price-cards { grid-template-columns: 1fr; }
}
.price-cards.single { grid-template-columns: minmax(0, 460px); justify-content: center; }

/* ---- Pricing Option 4: annual/monthly banners + top-up rail ---- */
.pb-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; margin-top: 28px; }
.pb-main { display: flex; flex-direction: column; gap: 14px; }
.pb-banner { display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid var(--line); border-radius: 16px; padding: 22px 26px; background: #fff; }
.pb-banner.dark { background: var(--navy); border-color: var(--navy); color: #fff; }
.pb-banner-l b { font-size: 16px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.pb-banner.dark .pb-banner-l b { color: #fff; }
.pb-banner-l span { display: block; font-size: 13px; color: var(--ink-3); margin-top: 4px; }
.pb-banner.dark .pb-banner-l span { color: rgba(255,255,255,0.6); }
.pb-save, .pb-banner-l .pb-save { display: inline-flex; align-items: center; white-space: nowrap; font-size: 11px; font-weight: 700; color: #fff; background: var(--blue); padding: 3px 9px; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase; }
.pb-banner-r { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.pb-seat { font-size: 12px; color: var(--ink-3); white-space: nowrap; }
.pb-seat b { color: var(--navy); font-weight: 600; }
.pb-banner.dark .pb-seat { color: rgba(255,255,255,0.6); }
.pb-banner.dark .pb-seat b { color: #fff; }
.pb-cta { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 2px; padding: 16px 22px; border-radius: 14px; background: var(--blue-wash); border: 1px solid #DCE8FF; font-size: 14px; color: var(--ink-2); text-decoration: none; font-weight: 500; text-align: center; transition: background .15s ease; }
.pb-cta b { color: var(--blue-2); font-weight: 600; }
.pb-cta:hover { background: var(--blue-tint); }
.pb-vat-note { margin-top: 14px; font-size: 12px; color: var(--ink-3); line-height: 1.5; text-align: center; }
.pb-bespoke {
  margin-top: 28px;
  background: var(--mist-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 38px 42px;
}
.pb-bespoke-tx { max-width: 620px; }
.pb-bespoke h3 { font-size: 26px; font-weight: 700; color: var(--navy); letter-spacing: -0.03em; line-height: 1.14; margin: 12px 0 12px; }
.pb-bespoke-tx p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; margin: 0; }
.pb-bespoke-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.pb-bespoke-card { background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 18px; }
.pbc-ic { width: 34px; height: 34px; border-radius: 9px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; margin-bottom: 11px; }
.pb-bespoke-card b { display: block; font-size: 13.5px; color: var(--navy); margin-bottom: 3px; }
.pb-bespoke-card > span:last-child { font-size: 12px; color: var(--ink-3); line-height: 1.45; }
.pb-bespoke-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-2, #1D4FD4); color: #fff;
  border-radius: 11px; padding: 13px 24px;
  font-size: 14.5px; font-weight: 600; text-decoration: none;
  box-shadow: 0 14px 30px -12px rgba(29,79,212,0.5);
  transition: background .15s;
}
.pb-bespoke-cta:hover { background: #2563EB; }
.pb-bespoke-cta .arrow { transition: transform .15s; }
.pb-bespoke-cta:hover .arrow { transform: translateX(3px); }
@media (max-width: 860px) {
  .pb-bespoke { padding: 30px 24px; }
  .pb-bespoke-grid { grid-template-columns: 1fr; gap: 12px; }
}
.pb-price { display: flex; align-items: baseline; gap: 2px; flex-shrink: 0; }
.pb-price .cur { font-size: 18px; font-weight: 600; color: var(--navy); }
.pb-price .amt { font-size: 34px; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); line-height: 1; }
.pb-price .per { font-size: 12px; color: var(--ink-3); margin-left: 4px; white-space: nowrap; }
.pb-banner-l { min-width: 0; }
.pb-banner.dark .pb-price .cur, .pb-banner.dark .pb-price .amt { color: #fff; }
.pb-banner.dark .pb-price .per { color: rgba(255,255,255,0.6); }
.pb-btn { height: 44px; padding: 0 22px; border-radius: 10px; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; gap: 7px; text-decoration: none; white-space: nowrap; transition: background .15s ease, border-color .15s ease, color .15s ease; }
.pb-btn.white { background: #fff; color: var(--navy); }
.pb-btn.white:hover { background: var(--blue-wash); }
.pb-btn.ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.pb-btn.ghost:hover { border-color: var(--blue); color: var(--blue); }
.pb-feats { border: 1px solid var(--line); border-radius: 16px; padding: 22px 26px; background: var(--mist-2); }
.pb-feats-ttl { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; }
.pb-feats-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 28px; }
.pb-feats-grid li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink-2); line-height: 1.4; }
.pb-feats-grid .pf-ck { width: 18px; height: 18px; border-radius: 50%; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.pb-feats-grid .pf-ck svg { width: 11px; height: 11px; }
.pb-rail { display: flex; flex-direction: column; gap: 12px; }
.floating-book { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: #fff; font-weight: 600; font-size: 14px; padding: 13px 20px; border-radius: 999px; box-shadow: 0 14px 32px -10px rgba(13,27,42,0.55); text-decoration: none; transition: transform .12s ease, background .15s ease; }
.floating-book:hover { background: var(--blue-2); transform: translateY(-2px); }
.floating-book svg { flex-shrink: 0; }
@media (max-width: 600px) { .floating-book { right: 14px; bottom: 14px; padding: 12px 16px; font-size: 13px; } }
.pb-fairuse { display: flex; align-items: center; gap: 11px; padding: 14px 18px; border: 1px solid #DCE8FF; background: var(--blue-wash); border-radius: 14px; font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }
.pb-fairuse svg { color: var(--blue-2); flex-shrink: 0; }
.pb-fairuse b { color: var(--navy); font-weight: 600; }
.pb-rail-ttl { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.pb-rail .pf-item { margin: 0; }
.pb-rail .pf-item em { font-style: normal; font-weight: 600; color: var(--blue-2); }
.pb-rail-bespoke { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; padding: 14px 16px; background: var(--navy); border-radius: 12px; text-decoration: none; transition: background .15s ease; }
.pb-rail-bespoke:hover { background: var(--blue-2); }
.pb-rail-bespoke-tx { display: flex; flex-direction: column; gap: 2px; }
.pb-rail-bespoke-tx strong { font-size: 13.5px; font-weight: 700; color: #fff; }
.pb-rail-bespoke-tx span { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.45; }
.pb-rail-bespoke-cta { flex-shrink: 0; font-size: 12.5px; font-weight: 600; color: #fff; white-space: nowrap; }
.pb-rail-bespoke-cta .arrow { display: inline-block; transition: transform .15s ease; }
.pb-rail-bespoke:hover .arrow { transform: translateX(3px); }
@media (max-width: 920px) {
  .pb-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pb-feats-grid { grid-template-columns: 1fr; }
  .pb-banner { flex-wrap: wrap; }
  .pb-banner-r { width: 100%; justify-content: space-between; }
}

.proof-caveat{max-width:74ch;margin:26px 0 0;font-size:12.5px;line-height:1.6;color:#9DB0CC;text-wrap:pretty}

.industry-card-risks-more{color:var(--ink-3);font-style:italic}

/* ============================================================
   Homepage section rhythm — strict light-blue / white alternation.
   Dark sections (.proof-section) sit outside the alternation and
   keep their own background; the sequence carries on across them.
   Edit here, not on the individual sections.
   ============================================================ */
#matters, #trust, #features, #legislation, #walkthrough, #pricing, .protect-strip { background: var(--mist-2); }
#who, #why, #how, #services, #onboarding, #industries, #faq { background: var(--surface); }

/* Walkthrough panel — clean / flagged loop */
.srp-state.safe { background: #E7FAF3; border-color: #BFE9D8; }
.srp-state.safe i { background: #0FBFA0; }
.srp-badge.ok { color: var(--green-2); background: var(--green-bg); }

/* Walkthrough — fit the section within one viewport */
.walkthrough-section { padding-top: 48px; padding-bottom: 48px; }
.walkthrough-section .wt-chapters { margin-top: 26px; gap: 14px; }
.walkthrough-section .wt-chapter { padding: 16px 18px; }
.walkthrough-section .wt-chapter h4 { font-size: 14.5px; margin-top: 10px; }
.walkthrough-section .wt-chapter p { font-size: 12.5px; line-height: 1.5; margin-top: 5px; }


/* Scripted walkthrough — panel slides in, status cue sits bottom-right */
.wt-demo { position: relative; }
.wt-demo-mail { min-height: 232px; }
.srp { opacity: 0; transform: translateX(10px); transition: opacity .34s ease, transform .34s ease; }
.srp.is-open { opacity: 1; transform: none; }
.wt-caret { display: inline-block; width: 2px; height: 1em; margin-left: 1px; background: var(--blue); vertical-align: -2px; animation: wtCaret 1s step-end infinite; }
@keyframes wtCaret { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
.wt-cue {
  position: absolute; right: 18px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--blue); color: #fff;
  font-size: 12.5px; font-weight: 600; white-space: nowrap;
  padding: 10px 14px; border-radius: 10px;
  box-shadow: 0 14px 30px -12px rgba(37, 99, 235, 0.55);
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.wt-cue.is-on { opacity: 1; transform: none; }
.wt-cue-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; opacity: .85; animation: wtPulse 1.6s ease-in-out infinite; }
.wt-cue-spin { width: 13px; height: 13px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff; animation: wtSpin .7s linear infinite; }
@keyframes wtSpin { to { transform: rotate(360deg); } }
@media (max-width: 820px) { .wt-demo-mail { min-height: 0; } }

/* Header: the desktop nav has no slack between the burger breakpoint and ~1000px,
   so the brand tagline collided with the first nav item. Drop it early and keep
   every nav label on one line. */
@media (max-width: 1000px) { .brand-tagline { display: none; } }
.nav-links, .nav-cta { flex-shrink: 0; }
.nav-trigger, .nav-links > a, .nav-cta .btn { white-space: nowrap; }
.ip-back, .ip-badge { white-space: nowrap; }

/* The desktop nav needs ~932px; the burger only took over at 900px, leaving a
   901–932px band where neither fitted. Hand over to the burger before that. */
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-inner:has(.nav-burger) .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: block; }
}


/* Industries — live pack beside the "any regulated sector" answer */
.ipack { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.ipack-l { padding: 32px 34px; }
.ipack-pill { display: inline-block; font-family: var(--font-label); font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; white-space: nowrap; color: var(--green-2); background: var(--green-bg); }
.ipack-l h3 { font-size: 25px; line-height: 1.24; letter-spacing: -.02em; margin: 13px 0 11px; text-wrap: balance; }
.ipack-l p { margin: 0 0 20px; font-size: 14.5px; line-height: 1.65; color: var(--ink-2); text-wrap: pretty; }
.ipack-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.ipack-tags span { font-size: 12.5px; color: var(--ink-2); background: var(--blue-wash); border: 1px solid #C9DCFB; padding: 5px 10px; border-radius: 7px; white-space: nowrap; }
.ipack-go { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--blue); }
.ipack-go:hover { color: var(--blue-2); }
.ipack-go svg { transition: transform .15s ease; }
.ipack-go:hover svg { transform: translateX(3px); }
.ipack-r { background: var(--navy); padding: 32px 34px; display: flex; flex-direction: column; }
.ipack-lbl { font-family: var(--font-label); font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #6E8FC4; }
.ipack-r h4 { font-size: 18px; line-height: 1.35; color: #fff; margin: 12px 0 10px; letter-spacing: -.01em; text-wrap: balance; }
.ipack-r p { margin: 0 0 20px; font-size: 14px; line-height: 1.6; color: #A9C2E8; text-wrap: pretty; }
.ipack-r-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.ipack-r-chips span { font-size: 12px; color: #D6E4F8; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .13); padding: 4px 9px; border-radius: 6px; white-space: nowrap; }
.ipack-r .ipack-go { margin-top: auto; color: #fff; }
.ipack-r .ipack-go:hover { color: #fff; }
@media (max-width: 900px) {
  .ipack { grid-template-columns: 1fr; }
  .ipack-l, .ipack-r { padding: 26px 22px; }
  .ipack-l h3 { font-size: 22px; }
}

/* Who we are — statement left, numbered pillars right */
.who-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 56px; align-items: start; }
.who-statement > p { margin: 20px 0 0; font-size: 15px; line-height: 1.65; color: var(--ink-2); text-wrap: pretty; }
.who-statement > p.who-quiet { margin-top: 14px; font-size: 14px; color: var(--ink-3); }
.who-list { list-style: none; margin: 0; padding: 0; display: grid; }
.who-item { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 18px; align-items: start; padding: 20px 0; border-bottom: 1px solid var(--line-2); }
.who-item:first-child { padding-top: 0; }
.who-item:last-child { border-bottom: 0; padding-bottom: 0; }
.who-n { font-family: var(--font-label); font-size: 12px; font-weight: 700; color: var(--blue); font-variant-numeric: tabular-nums; padding-top: 2px; }
.who-item h3 { font-size: 16px; letter-spacing: -0.01em; margin: 0 0 6px; }
.who-item p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-3); text-wrap: pretty; }
@media (max-width: 900px) { .who-split { grid-template-columns: 1fr; gap: 30px; } }

.faq-more { display: flex; justify-content: center; margin-top: 28px; }

.pricing-anchor { max-width: 760px; margin: 28px auto 0; padding: 14px 20px; text-align: center; font-size: 15px; line-height: 1.55; color: var(--ink-2); background: var(--mist-2); border: 1px solid var(--line); border-radius: 10px; text-wrap: pretty; }
.pricing-anchor b { color: var(--navy); font-weight: 700; }

button.faq-more { cursor: pointer; font-family: inherit; white-space: nowrap; }

.page-back, .ip-back { white-space: nowrap; }

/* ---- Pricing (toggle layout) ---- */
.pr2-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.pr2-tog { display: inline-flex; background: var(--mist-2); border: 1px solid var(--line); border-radius: 999px; padding: 4px; flex-shrink: 0; }
.pr2-tog button { border: 0; background: transparent; white-space: nowrap; padding: 9px 18px; border-radius: 999px; font-family: inherit; font-size: 13.5px; font-weight: 600; color: var(--ink-3); cursor: pointer; transition: background .15s, color .15s; }
.pr2-tog button.on { background: var(--navy); color: #fff; }
.pr2-card { margin-top: 36px; border: 1px solid var(--line); border-radius: 20px; display: grid; grid-template-columns: 380px 1fr; background: #fff; }
.pr2-price { padding: 40px; background: var(--navy); color: #fff; border-radius: 19px 0 0 19px; }
.pr2-name { font-size: 14px; font-weight: 700; }
.pr2-tag { font-size: 13px; color: rgba(255,255,255,0.6); margin: 4px 0 24px; }
.pr2-price .big { display: flex; align-items: baseline; gap: 2px; }
.pr2-price .big .cur { font-size: 22px; font-weight: 600; }
.pr2-price .big .amt { font-size: 56px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.pr2-price .big .per { font-size: 13px; color: rgba(255,255,255,0.6); margin-left: 8px; white-space: nowrap; }
.pr2-ladder { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.15); display: grid; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.65); }
.pr2-ladder b { color: #fff; font-weight: 600; }
.pr2-btn { display: flex; align-items: center; justify-content: center; width: 100%; height: 46px; margin-top: 28px; border-radius: 10px; background: #fff; color: var(--navy); font-weight: 600; font-size: 14px; text-decoration: none; transition: background .15s; }
.pr2-btn:hover { background: var(--blue-wash); color: var(--navy); }
.pr2-feats { padding: 40px; }
.pr2-ttl { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; }
.pr2-feats .feats { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 28px; }
.pr2-feats .feats li { display: flex; gap: 10px; font-size: 13.5px; color: var(--ink-2); line-height: 1.4; }
.pr2-feats .ck { width: 18px; height: 18px; border-radius: 50%; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.pr2-feats .ck svg { width: 11px; height: 11px; }
.pr2-foot { margin-top: 22px; font-size: 12.5px; color: var(--ink-3); text-align: center; line-height: 1.6; }
.pr2-foot b { color: var(--navy); font-weight: 600; }
.pr2-foot a { color: var(--blue); text-decoration: none; }
.pr2-foot a:hover { color: var(--blue-2); }
@media (max-width: 860px) {
  .pr2-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .pr2-card { grid-template-columns: 1fr; }
  .pr2-price { border-radius: 19px 19px 0 0; padding: 30px 24px; }
  .pr2-feats { padding: 28px 24px; }
  .pr2-feats .feats { grid-template-columns: 1fr; }
}

.pr2-note { margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; text-align: center; }
.dash-illustrative { align-self: flex-start; flex-shrink: 0; white-space: nowrap; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; }

/* ---- Mobile tap targets (44px min) ---- */
@media (max-width: 760px) {
  .footer-col a, .footer-legal a, .footer-bottom a, .page-back, .faq-link, .try-back { display: inline-flex; align-items: center; min-height: 44px; }
  .footer-col li { margin: 0; }
  .footer-legal { line-height: 1.4; }
  .nav-links a, .nav-mobile a { min-height: 48px; display: flex; align-items: center; }
  .x-try-ex > button, .dash-roletab, .pr2-tog button, .preset-chip { min-height: 44px; }
  .x-try-ex { gap: 8px; }
  .wt-demo-head { gap: 8px; }
  .wt-demo-live { flex-shrink: 0; }
}

/* ---- Scanner panel on phones: header and verdict wrap instead of overflowing ---- */
@media (max-width: 760px) {
  .srp-head { flex-wrap: wrap; gap: 8px 10px; padding: 12px 14px; }
  .srp-id { flex: 1 1 auto; }
  .srp-id b, .srp-id span { white-space: normal; }
  .srp-state { order: 5; flex: 0 0 100%; width: fit-content; }
  .srp-summary { flex-wrap: wrap; gap: 8px 10px; }
  .srp-count { white-space: normal; line-height: 1.35; flex: 1 1 100%; }
  .srp-body { padding: 12px 14px 14px; }
}
