/* ============================================================
   Carousel — Tenant Screening page styles
   Shares the Carousel Landing design system (warm paper, Newsreader
   serif, Hanken Grotesk, JetBrains Mono).
   ============================================================ */

:root {
  --bg: #ffffff;
  --ink: #1a1714;
  --ink-soft: #2c2823;
  --muted: #837b71;
  --muted-2: #a39a8e;
  --faint: #f2f0ec;
  --faint-2: #f7f5f1;
  --line: #e8e4dd;
  --black: #100e0c;
  --green: #1F8A5B;
  --green-bg: #e5f2ea;
  --amber: #9a6b1f;
  --amber-bg: #fdf2dd;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --sec-gap: 110px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.topstrip { height: 6px; background: linear-gradient(to bottom, #ececec, #f6f6f6); }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* ---------- NAV (shared with landing) ---------- */
header.site {
  position: sticky; top: 0; z-index: 300;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
header.site.scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(0,0,0,.01); }
header.site nav { display: flex; align-items: center; gap: 12px; height: 74px; }
.brand {
  display: flex; align-items: center; gap: 0;
  font-weight: 600; font-size: 20px; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none; flex-shrink: 0;
}
.brand .mark { display: flex; align-items: center; flex-shrink: 0; }
.brand .mark img { height: 30px; width: auto; max-width: none; display: block; margin-right: -11px; }
.menu { display: flex; align-items: center; gap: 1px; flex: 1; }
.menu-item { position: relative; }
.menu-item > button {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: var(--ink-soft); background: none; border: 0; cursor: pointer;
  padding: 8px 7px; border-radius: 8px;
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}
.menu-item > button:hover { background: var(--faint); color: var(--ink); }
.menu-item > button .chev { width: 9px; height: 9px; transition: transform .2s ease; opacity: .55; }
.menu-item:hover > button .chev { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 8px;
  box-shadow: 0 18px 50px -16px rgba(40,32,20,.22), 0 4px 12px -6px rgba(40,32,20,.12);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.dropdown.right { left: auto; right: 0; }
.menu-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 9px 12px; border-radius: 9px; text-decoration: none;
  color: var(--ink-soft); font-size: 14px; font-weight: 500;
  transition: background .15s ease;
}
.dropdown a span { display: block; font-size: 12.5px; font-weight: 400; color: var(--muted); margin-top: 2px; }
.dropdown a:hover { background: var(--faint-2); }
.dropdown a.active { background: var(--faint-2); color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lang { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  background: none; border: 0; cursor: pointer; padding: 8px 10px; border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}
.lang-btn:hover { background: var(--faint); color: var(--ink); }
.lang-btn svg { opacity: .8; }
.lang-code { letter-spacing: 0.02em; }
.lang-menu { min-width: 184px; }
.lang-menu a.active::after { content: "✓"; float: right; color: oklch(0.6 0.13 55); font-weight: 700; }
.btn {
  font-family: var(--sans); font-weight: 600; font-size: 13.5px;
  border-radius: 999px; padding: 10px 16px; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .12s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: #2a2622; }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--faint-2); border-color: #d8d3ca; }
.btn-lg { font-size: 15px; padding: 13px 24px; }

/* ---------- HAMBURGER + MOBILE NAV ---------- */
.hamburger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line); background: #fff; border-radius: 11px;
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; flex-shrink: 0;
  transition: background .18s ease, border-color .18s ease;
}
@media (max-width: 1200px) {
  .menu { display: none; }
  .hamburger { display: flex; }
  .nav-actions { margin-left: auto; }
}
.hamburger:hover { background: var(--faint-2); }
.hamburger span {
  display: block; width: 18px; height: 1.9px;
  background: var(--ink); border-radius: 2px;
  transition: transform .26s ease, opacity .18s ease;
}
body.menu-open .hamburger span:nth-child(1) { transform: translateY(5.9px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-5.9px) rotate(-45deg); }
.mobile-nav {
  display: block; position: fixed; top: 0; left: 0; right: 0;
  height: 100dvh; padding: 96px 22px 40px;
  background: #fff; z-index: 40; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .22s ease, transform .26s ease, visibility .22s;
}
body.menu-open .mobile-nav { opacity: 1; visibility: visible; transform: translateY(0); }
body.menu-open { overflow: hidden; }
.m-link, .m-acc-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  font-family: var(--sans); font-size: 17px; font-weight: 600; color: var(--ink);
  text-decoration: none; padding: 16px 4px;
  border: 0; border-bottom: 1px solid var(--faint);
  background: none; cursor: pointer; text-align: left;
}
.m-acc-btn .chev { width: 12px; height: 12px; opacity: .5; transition: transform .26s ease; }
.m-acc.open .m-acc-btn .chev { transform: rotate(180deg); }
.m-acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.m-acc.open .m-acc-body { grid-template-rows: 1fr; }
.m-acc-inner { overflow: hidden; }
.m-acc-body a {
  display: block; padding: 12px 4px 12px 16px;
  font-size: 15px; font-weight: 500; color: var(--muted); text-decoration: none;
}
.m-acc-body a:active { color: var(--ink); }
.m-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.m-actions .btn { width: 100%; padding: 14px; font-size: 15px; }

/* ---------- SHARED TYPE ---------- */
.eyebrow {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.11em; text-transform: uppercase; color: var(--muted);
}
.sec-h2 {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(34px, 4.2vw, 50px); line-height: 1.06; letter-spacing: -0.02em;
  color: var(--ink); text-wrap: balance; max-width: 640px;
  margin-top: 16px;
}
.sec-h2.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-sub {
  font-size: 16.5px; line-height: 1.55; color: var(--muted);
  max-width: 560px; margin-top: 16px; text-wrap: pretty;
}
.sec-sub.center { margin-left: auto; margin-right: auto; text-align: center; }
.center-block { text-align: center; }

/* ---------- HERO ---------- */
.hero { padding: 76px 0 0; }
.hero .wrap {
  display: grid; grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.hero h1 {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(38px, 4.5vw, 58px); line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink); margin-top: 22px; max-width: 15ch; text-wrap: balance;
}
.hero .lede {
  margin-top: 22px; font-size: 17px; line-height: 1.6; color: var(--muted);
  max-width: 46ch; text-wrap: pretty;
}
.hero .lede b { color: var(--ink-soft); font-weight: 600; }
.hero-ctas { display: flex; align-items: center; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero-micro {
  display: flex; align-items: center; gap: 8px;
  margin-top: 18px; font-size: 13px; color: var(--muted); font-weight: 500;
}
.hero-micro svg { color: var(--green); flex-shrink: 0; }
.hero-micros { display: flex; gap: 8px 22px; flex-wrap: wrap; margin-top: 18px; }
.hero-micros .hero-micro { margin-top: 0; }

/* report summary card — the signature visual */
.hero-visual { position: relative; }
.report-card {
  position: relative; z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 36px 70px -34px rgba(45,30,15,.38), 0 10px 26px -14px rgba(45,30,15,.18);
  padding: 22px 24px 18px;
  max-width: 460px;
  margin: 0 auto;
}
.rc-head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--faint); }
.rc-av {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: #6f675c; color: #fff;
  display: grid; place-items: center; font-size: 12.5px; font-weight: 700;
}
.rc-name { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.rc-meta { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.rc-chip {
  margin-left: auto;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.05em;
  background: var(--green-bg); color: var(--green);
  border-radius: 999px; padding: 4px 10px; white-space: nowrap;
}
.rc-body { display: flex; gap: 20px; align-items: center; padding: 18px 0 14px; }
.rc-dial { flex-shrink: 0; text-align: center; width: 124px; }
.rc-dial .dial-wrap { position: relative; width: 124px; height: 124px; margin: 0 auto; }
.rc-dial svg { display: block; }
.rc-dial .dial-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.rc-dial .score {
  font-family: var(--mono); font-size: 26px; font-weight: 600; color: var(--ink);
  line-height: 1;
}
.rc-dial .score-cap { font-size: 10px; color: var(--muted-2); font-family: var(--mono); margin-top: 3px; }
.rc-dial .dial-label { font-size: 10.5px; color: var(--muted); margin-top: 8px; line-height: 1.4; }
.rc-flags { flex: 1; display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.rc-flag { display: flex; align-items: flex-start; gap: 9px; }
.rc-flag .fl-ic {
  width: 19px; height: 19px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  display: grid; place-items: center;
}
.rc-flag.ok .fl-ic { background: var(--green-bg); color: var(--green); }
.rc-flag.warn .fl-ic { background: var(--amber-bg); color: var(--amber); }
.rc-flag b { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.005em; }
.rc-flag span { display: block; font-size: 11px; color: var(--muted); margin-top: 1px; }
.rc-foot {
  display: flex; align-items: center; gap: 7px;
  border-top: 1px solid var(--faint); padding-top: 13px;
  font-family: var(--mono); font-size: 9.5px; color: var(--muted-2);
  letter-spacing: 0.02em;
}
.rc-foot svg { flex-shrink: 0; }

/* floating source chips around the card */
.float-chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px 8px 9px;
  font-size: 11.5px; font-weight: 600; color: var(--ink-soft);
  box-shadow: 0 14px 30px -16px rgba(45,30,15,.35);
  white-space: nowrap;
}
.float-chip .fc-ic {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-bg); color: var(--green);
  display: grid; place-items: center; flex-shrink: 0;
}
.float-chip.a { top: -16px; right: 6px; animation: floaty 5.2s ease-in-out infinite; }
.float-chip.b { bottom: 26px; left: -10px; animation: floaty 6.1s ease-in-out .8s infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (prefers-reduced-motion: reduce) {
  .float-chip.a, .float-chip.b { animation: none; }
}

/* sources strip */
.sources { padding: 54px 0 0; }
.sources-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.sources-row .lbl {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.09em; color: var(--muted);
  margin-right: 10px; white-space: nowrap;
}
.src-pill {
  font-family: var(--mono); font-size: 12px; color: var(--ink-soft);
  background: var(--faint-2); border: 1px solid var(--faint);
  border-radius: 7px; padding: 6px 12px; white-space: nowrap;
}
.sources-note { font-size: 11px; color: var(--muted-2); margin-top: 10px; }

/* ---------- LIVE TICKER ---------- */
.ticker-section { padding: 72px 0 0; }
.ticker-wrap {
  position: relative;
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ticker-head {
  position: absolute; top: 0; bottom: 0; left: 0; z-index: 3;
  display: flex; align-items: center; gap: 9px;
  padding: 0 22px 0 2px;
  background: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em; color: var(--ink);
  white-space: nowrap;
}
.ticker-head::after {
  content: ""; position: absolute; top: 0; bottom: 0; right: -40px; width: 40px;
  background: linear-gradient(to right, #fff, rgba(255,255,255,0));
  pointer-events: none;
}
.ticker-head .spinner {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1.5px solid var(--ink); border-top-color: transparent;
  animation: tickspin 1.1s linear infinite;
}
@keyframes tickspin { to { transform: rotate(360deg); } }
.ticker-track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.ticker-marquee { display: flex; align-items: center; width: max-content; animation: tickmarquee 60s linear infinite; }
.ticker-wrap:hover .ticker-marquee { animation-play-state: paused; }
@keyframes tickmarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-set { display: flex; align-items: center; flex-shrink: 0; }
.tstat { display: flex; align-items: center; gap: 9px; flex-shrink: 0; padding: 0 28px; }
.tstat .label { font-size: 10px; font-weight: 600; letter-spacing: 0.085em; color: var(--muted); white-space: nowrap; }
.tstat .val {
  font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--ink);
  background: var(--faint); border-radius: 5px; padding: 3px 7px;
  font-variant-numeric: tabular-nums;
}

/* ---------- VALUE PROPS ---------- */
.props { padding: var(--sec-gap) 0 0; }
.props-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.prop {
  border: 1px solid var(--line); border-radius: 18px;
  background: #fff; padding: 26px 24px 28px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.prop:hover {
  border-color: #dcd6cc;
  box-shadow: 0 14px 32px -20px rgba(60,48,30,.3);
  transform: translateY(-2px);
}
.prop .p-ic {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--faint); display: grid; place-items: center; color: var(--ink-soft);
}
.prop h3 { font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em; margin-top: 18px; }
.prop p { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin-top: 8px; text-wrap: pretty; }

/* ---------- STORY BAND (born in private credit) ---------- */
.story { padding: var(--sec-gap) 0 0; }
.story-band {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(to bottom, #fbf7f0, #f7f2ea);
  padding: clamp(44px, 5.4vw, 76px) clamp(28px, 5vw, 76px);
}
.story-band .eyebrow { color: #8a6f4d; }
.story-band h2 {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -0.02em;
  margin-top: 16px; max-width: 17ch; text-wrap: balance;
}
.story-band .story-body {
  margin-top: 22px; font-size: 17px; line-height: 1.65; color: #6b5e4d;
  max-width: 68ch; text-wrap: pretty;
}
.story-band .story-body b { color: var(--ink); font-weight: 600; }
.story-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.story-chip {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(20,17,13,.08);
  border-radius: 14px; padding: 18px 20px;
}
.story-chip b { display: block; font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; }
.story-chip span { display: block; font-size: 13px; line-height: 1.5; color: var(--muted); margin-top: 6px; text-wrap: pretty; }
.story-timeline {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  margin-top: 34px;
  font-family: var(--mono); font-size: 11.5px; color: #8a6f4d; letter-spacing: 0.02em;
}
.story-timeline .tl-node { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.story-timeline .tl-dot { width: 7px; height: 7px; border-radius: 50%; background: #8a6f4d; flex-shrink: 0; }
.story-timeline .tl-line { width: clamp(24px, 4vw, 64px); height: 1px; background: #c9b696; margin: 0 10px; flex-shrink: 0; }

/* ---------- SAMPLE REPORT (tabs) ---------- */
.sample { padding: var(--sec-gap) 0 0; }
.sample-shell {
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 60px -38px rgba(45,30,15,.3);
  overflow: hidden;
}
.tabbar {
  display: flex; gap: 2px;
  background: var(--faint-2);
  border-bottom: 1px solid var(--line);
  padding: 10px 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabbar::-webkit-scrollbar { display: none; }
.tab {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  color: var(--muted); background: none; border: 0; cursor: pointer;
  padding: 11px 15px 13px;
  border-radius: 10px 10px 0 0;
  white-space: nowrap;
  position: relative;
  transition: color .15s ease, background .15s ease;
}
.tab:hover { color: var(--ink); background: rgba(255,255,255,.6); }
.tab[aria-selected="true"] {
  color: var(--ink); background: #fff;
  box-shadow: 0 -1px 0 var(--line), 1px 0 0 var(--line), -1px 0 0 var(--line);
}
.tabbar.auto .tab[aria-selected="true"]::after {
  content: "";
  position: absolute; left: 12px; bottom: 5px;
  height: 2px; width: 0;
  border-radius: 2px;
  background: var(--ink);
  animation: tabProg 5s linear forwards;
  opacity: .5;
}
@keyframes tabProg { from { width: 0; } to { width: calc(100% - 24px); } }
@media (prefers-reduced-motion: reduce) {
  .tabbar.auto .tab[aria-selected="true"]::after { animation: none; display: none; }
}
.tabpanel.anim-run .tp-grid { animation: tpIn .45s ease both; }
@keyframes tpIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.tabpanel.anim-run .inc-chart i {
  transform-origin: bottom;
  animation: barUp .55s cubic-bezier(.22,1,.36,1) both;
}
.tabpanel.anim-run .inc-chart i:nth-child(2) { animation-delay: .04s; }
.tabpanel.anim-run .inc-chart i:nth-child(3) { animation-delay: .08s; }
.tabpanel.anim-run .inc-chart i:nth-child(4) { animation-delay: .12s; }
.tabpanel.anim-run .inc-chart i:nth-child(5) { animation-delay: .16s; }
.tabpanel.anim-run .inc-chart i:nth-child(6) { animation-delay: .2s; }
.tabpanel.anim-run .inc-chart i:nth-child(7) { animation-delay: .24s; }
.tabpanel.anim-run .inc-chart i:nth-child(8) { animation-delay: .28s; }
.tabpanel.anim-run .inc-chart i:nth-child(9) { animation-delay: .32s; }
.tabpanel.anim-run .inc-chart i:nth-child(10) { animation-delay: .36s; }
.tabpanel.anim-run .inc-chart i:nth-child(11) { animation-delay: .4s; }
.tabpanel.anim-run .inc-chart i:nth-child(12) { animation-delay: .44s; }
@keyframes barUp { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.dial-draw { animation: dialDraw 1.1s cubic-bezier(.22,1,.36,1) both; }
.tabpanel.anim-run .dial-draw { animation: dialDraw 1.1s cubic-bezier(.22,1,.36,1) both; }
@keyframes dialDraw { from { stroke-dasharray: 0 327; } to { stroke-dasharray: 269 327; } }
@media (prefers-reduced-motion: reduce) {
  .tabpanel.anim-run .tp-grid, .tabpanel.anim-run .inc-chart i, .dial-draw { animation: none; }
}
.tabpanel { padding: clamp(24px, 3.4vw, 44px); }
.tabpanel[hidden] { display: none; }

.tp-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(24px, 3.4vw, 48px); align-items: start; }
.tp-callouts { display: flex; flex-direction: column; gap: 12px; }
.tp-callout {
  display: flex; gap: 11px; align-items: flex-start;
  background: var(--faint-2); border-radius: 13px; padding: 14px 16px;
}
.tp-callout .c-ic {
  width: 24px; height: 24px; border-radius: 8px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink-soft);
}
.tp-callout b { display: block; font-size: 13px; font-weight: 700; letter-spacing: -0.005em; }
.tp-callout span { display: block; font-size: 12.5px; line-height: 1.5; color: var(--muted); margin-top: 3px; text-wrap: pretty; }

/* mock report fragments inside tabs */
.mock {
  border: 1px solid var(--faint); border-radius: 16px;
  background: linear-gradient(to bottom, #fdfcfa, #fff);
  padding: 20px;
}
.mock-h {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: -0.005em;
  margin-bottom: 14px;
}
.mock-h .dot { width: 6px; height: 6px; border-radius: 50%; background: oklch(0.62 0.13 55); }
.mock-row {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 0;
  border-bottom: 1px solid var(--faint);
  font-size: 12.5px;
}
.mock-row:last-child { border-bottom: 0; }
.mock-row .mr-ic {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
  background: var(--faint-2); display: grid; place-items: center; color: var(--ink-soft);
}
.mock-row b { font-weight: 600; font-size: 12.5px; display: block; }
.mock-row .sub { display: block; font-size: 10.5px; color: var(--muted); margin-top: 1px; }
.mock-row .val {
  margin-left: auto; font-family: var(--mono); font-size: 11.5px;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.ok-ic { color: var(--green); display: inline-flex; }
.warn-ic { color: var(--amber); display: inline-flex; }
.pill-ok {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.04em;
  background: var(--green-bg); color: var(--green);
  border-radius: 999px; padding: 3px 9px;
}
.pill-warn { font-size: 9.5px; font-weight: 700; letter-spacing: 0.04em; background: var(--amber-bg); color: var(--amber); border-radius: 999px; padding: 3px 9px; }
.pill-mut { font-size: 9.5px; font-weight: 700; letter-spacing: 0.04em; background: var(--faint); color: var(--muted); border-radius: 999px; padding: 3px 9px; }

/* income bars */
.inc-chart { display: flex; align-items: flex-end; gap: 5px; height: 88px; margin: 14px 2px 6px; }
.inc-chart i { flex: 1; border-radius: 4px 4px 2px 2px; background: #ded7ca; min-height: 12%; }
.inc-chart i.hi { background: var(--green); }
.inc-cap { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 9.5px; color: var(--muted-2); margin: 0 2px; }
.inc-stats { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.inc-stat {
  flex: 1; min-width: 110px;
  background: var(--faint-2); border-radius: 11px; padding: 12px 14px;
}
.inc-stat .l { font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em; color: var(--muted-2); }
.inc-stat .v { font-family: var(--mono); font-size: 16px; color: var(--ink); margin-top: 4px; }
.inc-stat .v small { font-size: 10px; color: var(--muted); }

/* credit gauge in tab */
.credit-top { display: flex; gap: 22px; align-items: center; margin-bottom: 8px; }
.credit-meta { font-size: 12px; color: var(--muted); line-height: 1.55; }
.credit-meta b { color: var(--ink); }
.util-bar { height: 7px; border-radius: 999px; background: var(--faint); margin-top: 8px; overflow: hidden; }
.util-bar i { display: block; height: 100%; width: 24%; border-radius: 999px; background: var(--green); }

/* ID tab */
.idv { display: flex; gap: 16px; align-items: stretch; }
.idv-card {
  flex: 1; border: 1px solid var(--faint); border-radius: 13px; padding: 16px;
  background: #fff; text-align: center;
}
.idv-card .big { font-family: var(--mono); font-size: 22px; color: var(--ink); margin-top: 8px; }
.idv-card .l { font-size: 10.5px; color: var(--muted); margin-top: 4px; }
.idv-face {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto;
  background: var(--faint); display: grid; place-items: center; color: var(--muted);
  position: relative; overflow: hidden;
}
.idv-face .scan {
  position: absolute; left: 7px; right: 7px; height: 2px;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: idscan 2s ease-in-out infinite;
}
@keyframes idscan { 0%, 100% { top: 22%; } 50% { top: 74%; } }
@media (prefers-reduced-motion: reduce) { .idv-face .scan { animation: none; top: 48%; } }

.sample-cta { display: flex; justify-content: center; margin-top: 28px; }

/* ---------- HOW IT WORKS ---------- */
.hiw { padding: var(--sec-gap) 0 0; }
.hiw-toggle {
  display: inline-flex; gap: 4px;
  background: var(--faint); border-radius: 999px; padding: 4px;
  margin: 36px auto 0;
}
.hiw-toggle button {
  font-family: var(--sans); font-size: 13.5px; font-weight: 600;
  color: var(--muted); background: none; border: 0; cursor: pointer;
  border-radius: 999px; padding: 10px 22px;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.hiw-toggle button.on {
  background: #fff; color: var(--ink);
  box-shadow: 0 2px 8px -3px rgba(40,30,15,.25);
}
.hiw-paths { margin-top: 44px; position: relative; }
.hiw-path { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.hiw-path[hidden] { display: none; }
.hiw-card {
  position: relative;
  border: 1px solid var(--line); border-radius: 18px;
  background: #fff; text-align: left;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.hiw-card:hover {
  border-color: #dcd6cc;
  box-shadow: 0 14px 32px -20px rgba(60,48,30,.3);
  transform: translateY(-2px);
}
.hiw-card.arrow::before {
  content: "→";
  position: absolute; left: -32px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif); font-size: 20px; color: var(--muted-2);
}
.hc-vis {
  position: relative;
  background: var(--faint-2);
  border-bottom: 1px solid var(--faint);
  border-radius: 17px 17px 0 0;
  height: 178px;
  display: grid; place-items: center;
  overflow: hidden;
}
.hc-num {
  position: absolute; top: 12px; left: 16px;
  font-family: var(--serif); font-style: italic; font-weight: 420;
  font-size: 15px; color: var(--muted-2);
}
.hc-body { padding: 18px 20px 22px; }
.hc-body h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.015em; }
.hc-body p { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin-top: 7px; text-wrap: pretty; }

/* step visuals */
.vis-sms { width: 76%; }
.vis-bubble {
  background: var(--black); color: #fff;
  border-radius: 16px 16px 16px 5px;
  padding: 12px 15px;
  font-family: var(--mono); font-size: 10.5px; line-height: 1.6;
  box-shadow: 0 12px 24px -14px rgba(45,30,15,.4);
  word-break: break-all;
}
.vis-bubble b { color: #e6c896; font-weight: 500; }
.vis-deliv {
  display: flex; align-items: center; justify-content: flex-end; gap: 5px;
  font-size: 10px; color: var(--muted); margin-top: 8px; font-weight: 600;
}
.vis-deliv svg { color: var(--green); }
.vis-steps { width: 76%; display: flex; flex-direction: column; gap: 7px; }
.vis-step {
  display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 8px 11px;
  font-size: 11px; font-weight: 600; color: var(--ink);
}
.vis-step .st { margin-left: auto; display: inline-flex; }
.vis-step .st.ok { color: var(--green); }
.vis-step.cur { border-color: #cfc8bd; box-shadow: 0 0 0 3px rgba(180,150,90,.10); }
.vis-step.cur .st { color: var(--muted-2); }
.vis-report {
  width: 80%;
  background: #fff; border: 1px solid var(--line); border-radius: 13px;
  padding: 12px 14px;
  box-shadow: 0 12px 26px -16px rgba(45,30,15,.3);
}
.vr-head { display: flex; align-items: center; gap: 8px; padding-bottom: 9px; border-bottom: 1px solid var(--faint); }
.vr-av {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: #6f675c; color: #fff;
  display: grid; place-items: center; font-size: 9px; font-weight: 700;
}
.vr-name { font-size: 11.5px; font-weight: 700; }
.vr-chip {
  margin-left: auto;
  font-size: 8px; font-weight: 700; letter-spacing: 0.05em;
  background: var(--green-bg); color: var(--green);
  border-radius: 999px; padding: 3px 8px;
}
.vr-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 8px;
  font-size: 10.5px; color: var(--muted); font-weight: 600;
}
.vr-row .v { font-family: var(--mono); color: var(--ink); display: flex; align-items: center; gap: 5px; font-weight: 500; }
.vr-row .v svg { color: var(--green); }
.vis-form { width: 76%; display: flex; flex-direction: column; gap: 8px; }
.vis-input {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 9px 12px;
  font-size: 11px; color: var(--ink); font-weight: 600;
}
.vis-input span { color: var(--muted-2); font-weight: 500; font-size: 10px; }
.vis-pay {
  width: 76%;
  background: #fff; border: 1px solid var(--line); border-radius: 13px;
  padding: 13px 14px;
  box-shadow: 0 12px 26px -16px rgba(45,30,15,.3);
}
.vis-pay .vp-row { display: flex; align-items: baseline; justify-content: space-between; font-size: 11px; color: var(--muted); font-weight: 600; }
.vis-pay .vp-row .amt { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.vis-pay .vp-btn {
  margin-top: 10px; width: 100%;
  background: var(--black); color: #fff;
  border: 0; border-radius: 9px; padding: 9px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
}
.hiw-micro {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 38px; font-size: 13.5px; color: var(--muted); font-weight: 500;
}
.hiw-micro svg { color: var(--green); flex-shrink: 0; }

/* ---------- MODULE GRID ---------- */
.modules { padding: var(--sec-gap) 0 0; }
.mod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 44px; }
.mod {
  border: 1px solid var(--line); border-radius: 16px;
  background: #fff; padding: 22px 22px 20px;
  display: flex; flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.mod:hover {
  border-color: #dcd6cc;
  box-shadow: 0 14px 32px -20px rgba(60,48,30,.3);
  transform: translateY(-2px);
}
.mod-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.mod .m-ic {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--faint); display: grid; place-items: center; color: var(--ink-soft);
}
.mod-toggle {
  width: 36px; height: 21px; border-radius: 999px; flex-shrink: 0;
  background: #ddd7cc; position: relative; cursor: pointer;
  border: 0; padding: 0;
  transition: background .22s ease;
}
.mod-toggle::after {
  content: ""; position: absolute; top: 2.5px; left: 2.5px;
  width: 16px; height: 16px; border-radius: 50%; background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  transition: transform .22s ease;
}
.mod-toggle.on { background: var(--black); }
.mod-toggle.on::after { transform: translateX(15px); }
.mod-toggle:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.mod.off { opacity: .45; }
.mod.off:hover { transform: none; box-shadow: none; border-color: var(--line); }
.mod-summary {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 26px auto 0; width: fit-content; max-width: 100%;
  background: var(--faint-2); border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px; color: var(--muted); font-weight: 500;
  flex-wrap: wrap; text-align: center;
}
.mod-summary b { color: var(--ink); font-weight: 700; }
.mod-summary .dot-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); }
.mod h3 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; margin-top: 14px; }
.mod p { font-size: 13px; line-height: 1.5; color: var(--muted); margin-top: 6px; text-wrap: pretty; }
.mod .see {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: var(--ink);
  background: none; border: 0; cursor: pointer; padding: 0;
  font-family: var(--sans);
  transition: gap .15s ease;
  align-self: flex-start;
}
.mod .see:hover { gap: 9px; }

/* ---------- COMPARISON TABLE ---------- */
.compare { padding: var(--sec-gap) 0 0; }
.cmp-scroll { margin-top: 44px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.cmp {
  width: 100%; min-width: 640px;
  border-collapse: separate; border-spacing: 0;
  border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden;
  font-size: 14px;
}
table.cmp th, table.cmp td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--faint); }
table.cmp tr:last-child td { border-bottom: 0; }
table.cmp th {
  background: var(--faint-2);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.01em;
  border-bottom: 1px solid var(--line);
}
table.cmp th:first-child, table.cmp td:first-child {
  text-align: left; font-weight: 600; font-size: 13.5px; color: var(--ink);
}
table.cmp td:first-child .sub { display: block; font-size: 11.5px; font-weight: 400; color: var(--muted); margin-top: 2px; }
table.cmp th.us {
  background: var(--black); color: #fff;
}
table.cmp td.us { background: #fbf9f5; }
.cmark { display: inline-flex; width: 22px; height: 22px; border-radius: 50%; align-items: center; justify-content: center; }
.cmark.yes { background: var(--green-bg); color: var(--green); }
.cmark.part { background: var(--amber-bg); color: var(--amber); font-size: 10px; font-weight: 800; }
.cmark.no { color: var(--muted-2); font-weight: 600; }
.cmp-legend {
  display: flex; gap: 22px; flex-wrap: wrap;
  margin-top: 14px; font-size: 12px; color: var(--muted);
  align-items: center;
}
.cmp-legend span { display: inline-flex; align-items: center; gap: 7px; }
.cmp-note { font-size: 11.5px; color: var(--muted-2); margin-top: 10px; max-width: 70ch; }

/* ---------- ENTERPRISE BAND ---------- */
.enterprise { padding: var(--sec-gap) 0 0; }
.ent-band {
  background: var(--black);
  border-radius: 28px;
  padding: clamp(48px, 6vw, 84px) clamp(28px, 5vw, 76px);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ent-band::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 88% 0%, rgba(230,200,150,.13), transparent 60%),
    radial-gradient(50% 50% at 0% 100%, rgba(230,200,150,.07), transparent 55%);
  pointer-events: none;
}
.ent-band > * { position: relative; z-index: 1; }
.ent-band .eyebrow { color: rgba(255,255,255,.55); }
.ent-band h2 {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(34px, 4.2vw, 52px); line-height: 1.05; letter-spacing: -0.02em;
  margin-top: 16px; max-width: 16ch; text-wrap: balance;
}
.ent-band .ent-sub {
  margin-top: 20px; font-size: 16.5px; line-height: 1.6;
  color: rgba(255,255,255,.66); max-width: 56ch; text-wrap: pretty;
}
.ent-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.ent-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 22px;
}
.ent-card .e-ic {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,.1); display: grid; place-items: center; color: #e6c896;
}
.ent-card b { display: block; font-size: 15px; font-weight: 700; margin-top: 14px; letter-spacing: -0.01em; }
.ent-card span { display: block; font-size: 13px; line-height: 1.55; color: rgba(255,255,255,.6); margin-top: 6px; text-wrap: pretty; }
.ent-cta { display: flex; align-items: center; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.btn-light { background: #fff; color: var(--black); }
.btn-light:hover { background: #efe9df; }
.ent-cta .note { font-size: 13px; color: rgba(255,255,255,.5); }
.ent-regions { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.rg {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  padding: 7px 14px; color: rgba(255,255,255,.75);
}
.rg .rdot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.rg.live .rdot { background: #4ec88f; box-shadow: 0 0 8px rgba(78,200,143,.7); }
.rg.soon { color: rgba(255,255,255,.45); }
.rg.soon .rdot { background: rgba(255,255,255,.3); }

/* ---------- PRICING ---------- */
.pricing { padding: var(--sec-gap) 0 0; }
.price-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 16px;
  margin-top: 44px; max-width: 920px; margin-left: auto; margin-right: auto;
  align-items: stretch;
}
.price-card {
  border: 1px solid var(--line); border-radius: 22px;
  background: #fff; padding: 34px 34px 32px;
  display: flex; flex-direction: column;
}
.price-card.main { border-color: #d8d0c2; box-shadow: 0 24px 50px -32px rgba(60,48,30,.35); }
.price-card .k { font-size: 13px; font-weight: 700; letter-spacing: 0.02em; color: var(--muted); }
.price-num { display: flex; align-items: baseline; gap: 8px; margin-top: 14px; }
.price-num .cur { font-family: var(--serif); font-size: 26px; color: var(--ink); }
.price-num .amt {
  font-family: var(--serif); font-weight: 420;
  font-size: 56px; line-height: 1; letter-spacing: -0.02em; color: var(--ink);
}
.price-num .per { font-size: 14px; color: var(--muted); }
.price-tbc {
  display: inline-block; margin-top: 10px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.07em;
  color: var(--amber); background: var(--amber-bg);
  border-radius: 5px; padding: 3px 8px;
  align-self: flex-start;
}
.price-desc { font-size: 14px; line-height: 1.55; color: var(--muted); margin-top: 14px; text-wrap: pretty; }
.price-list { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.price-li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-soft); }
.price-li svg { color: var(--green); flex-shrink: 0; }
.price-card .btn { margin-top: 28px; align-self: flex-start; }
.price-card.alt { background: var(--faint-2); }
.price-card.alt .price-num .amt { font-size: 34px; }
.price-foot { text-align: center; font-size: 12px; color: var(--muted-2); margin-top: 18px; }

/* ---------- TRUST ---------- */
.trust { padding: var(--sec-gap) 0 0; }
.trust-badges {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px;
}
.t-badge {
  display: flex; align-items: flex-start; gap: 12px;
  border: 1px solid var(--line); border-radius: 15px;
  background: #fff; padding: 18px;
}
.t-badge .t-ic {
  width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0;
  background: var(--faint); display: grid; place-items: center; color: var(--ink-soft);
}
.t-badge b { display: block; font-size: 13.5px; font-weight: 700; letter-spacing: -0.005em; }
.t-badge span { display: block; font-size: 12px; line-height: 1.5; color: var(--muted); margin-top: 3px; }
.stats-band {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 16px;
}
.stat-cell {
  border: 1px solid var(--line); border-radius: 15px;
  background: var(--faint-2); padding: 24px 22px;
  text-align: center;
}
.stat-cell .num {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(34px, 3.4vw, 46px); letter-spacing: -0.02em; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat-cell .lbl { font-size: 12.5px; color: var(--muted); margin-top: 6px; font-weight: 500; }
.stats-note { font-size: 11px; color: var(--muted-2); margin-top: 10px; text-align: center; }

/* ---------- FAQ ---------- */
.faq { padding: var(--sec-gap) 0 0; }
.faq-list { max-width: 780px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  width: 100%;
  font-family: var(--sans); font-size: 16.5px; font-weight: 600; color: var(--ink);
  text-align: left;
  background: none; border: 0; cursor: pointer;
  padding: 22px 4px;
  letter-spacing: -0.01em;
}
.faq-q .fq-ic {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--muted);
  transition: transform .26s ease, background .2s ease, color .2s ease;
}
.faq-item.open .fq-ic { transform: rotate(45deg); background: var(--black); color: #fff; border-color: var(--black); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a p {
  font-size: 15px; line-height: 1.65; color: var(--muted);
  padding: 0 44px 24px 4px; max-width: 64ch; text-wrap: pretty;
}
.faq-a p b { color: var(--ink-soft); font-weight: 600; }

/* ---------- FINAL CTA ---------- */
.final { padding: var(--sec-gap) 0 var(--sec-gap); }
.final-band {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: clamp(56px, 7vw, 100px) clamp(28px, 5vw, 64px);
  text-align: center;
  background: linear-gradient(to bottom, #fbf7f0, #f5efe4);
  border: 1px solid var(--line);
}
.final-band h2 {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(34px, 4.4vw, 54px); line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink); max-width: 540px; margin: 0 auto; text-wrap: balance;
}
.final-band p { font-size: 16px; color: var(--muted); margin-top: 16px; }
.final-ctas { display: flex; justify-content: center; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.final-band .btn-ghost { background: #fff; }

footer.site {
  border-top: 1px solid var(--line); padding: 28px 0;
  color: var(--muted-2); font-size: 13px;
}
footer.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
footer.site .legal { display: flex; gap: 18px; }
footer.site a { color: var(--muted); text-decoration: none; font-weight: 500; }
footer.site a:hover { color: var(--ink); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .props-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 52px; }
  .hero h1 { max-width: none; }
  .report-card { margin: 0; }
  .mod-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .ent-cards { grid-template-columns: 1fr; }
  .story-chips { grid-template-columns: 1fr; }
  .tp-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  :root { --sec-gap: 80px; }
  .wrap { padding: 0 22px; }
  .hiw-path { grid-template-columns: 1fr; gap: 26px; }
  .hiw-card.arrow::before { display: none; }
  .nav-actions .btn-ghost { display: none; }
}
@media (max-width: 600px) {
  :root { --sec-gap: 64px; }
  .hero { padding: 52px 0 0; }
  .props-grid { grid-template-columns: 1fr; }
  .mod-grid { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; }
  .rc-body { flex-direction: column; align-items: stretch; gap: 14px; }
  .rc-dial { margin: 0 auto; }
  .float-chip.a { top: -14px; right: -2px; }
  .float-chip.b { bottom: 10px; left: -4px; }
  .hero-ctas .btn-lg { width: 100%; }
  .final-ctas .btn-lg { width: 100%; }
  .idv { flex-direction: column; }
}

.hamburger { border: 0; background: none; }
.hamburger:hover { background: none; }

/* mobile: titles full width */
@media (max-width:760px){.hero h1,.story-band h2{max-width:none}}
