/* ============================================================
   Carousel — Tenant Screening v3 "quiet" iteration
   Simplified, centered, editorial. Loads AFTER tenant-screening.css
   (which still provides nav, buttons, footer, report card, faq,
   step visuals). These styles cover the new section shells.
   ============================================================ */

:root {
  --sv-gap: clamp(72px, 7vw, 110px);
  --paper: #FAF9F5;
  --paper-deep: #F1EDE4;
}

/* the Claude-feel ground: warm paper, not white */
body { background: var(--paper); }
.topstrip { background: var(--paper); }
header.site { background: rgba(250, 249, 245, 0.85); }
::selection { background: #EBD8C3; color: var(--ink); }

/* soft secondary button */
.btn-ghost { background: #EFECE3; border-color: transparent; color: var(--ink); }
.btn-ghost:hover { background: #E7E3D8; border-color: transparent; }

main { overflow-x: clip; }

/* Claude-wide page: open the shared container up on this page */
.wrap { max-width: 1320px; padding: 0 clamp(24px, 4vw, 64px); }

/* ---------- nav, scaled up ---------- */
header.site nav { height: 86px; gap: 16px; }
.brand { font-size: 23px; }
.brand .mark img { height: 34px; }
.menu { gap: 6px; }
.menu-item > button { font-size: 15px; padding: 9px 12px; }
.dropdown { min-width: 250px; }
.dropdown a { font-size: 15px; padding: 10px 13px; }
.dropdown a span { font-size: 13.5px; }
.lang-btn { font-size: 14.5px; }
.btn { font-size: 14.5px; padding: 11px 18px; }
.btn-lg { font-size: 16.5px; padding: 15px 28px; }

/* breadcrumb subnav under the menu */
.subnav { border-top: 1px solid var(--line); }
header.site.scrolled .subnav { border-bottom: 0; }
.subnav .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 48px;
}
.sn-path { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted); min-width: 0; }
.sn-path svg { color: var(--muted-2); flex-shrink: 0; }
.sn-path a { color: var(--muted); text-decoration: none; transition: color .15s ease; }
.sn-path a:hover { color: var(--ink); }
.sn-path b { color: var(--ink); font-weight: 600; white-space: nowrap; }
.sn-explore > button {
  font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--muted);
  background: none; border: 0; cursor: pointer; padding: 7px 10px; border-radius: 8px;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}
.sn-explore > button:hover { background: var(--faint); color: var(--ink); }
.sn-explore > button .chev { width: 9px; height: 9px; opacity: .55; transition: transform .2s ease; }
.sn-explore:hover > button .chev { transform: rotate(180deg); }
.sn-explore .dropdown { min-width: 190px; }

/* editorial italic accents */
.sv-h1 em, .sv-h2 em { font-style: italic; font-weight: 400; letter-spacing: -0.015em; }
.ink-mag { color: oklch(0.52 0.19 340); }

/* quiet scroll reveals (class added by JS only; no-JS stays visible) */
@media (prefers-reduced-motion: no-preference) {
  .rv { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1); transition-delay: var(--rv-d, 0ms); }
  .rv.in { opacity: 1; transform: none; }
}

/* ---------- shared simplified section anatomy ---------- */
.sv { padding-top: var(--sv-gap); padding-bottom: var(--sv-gap); }

/* soft color blobs behind sections */
.sv { position: relative; }
.sv::before {
  content: ""; position: absolute; pointer-events: none; z-index: -1;
}
.sv-hero::before {
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(1100px, 90vw); height: 100%;
  background: radial-gradient(closest-side, rgba(217, 138, 87, 0.09), rgba(217, 138, 87, 0.025) 55%, transparent 78%);
}
#report::before {
  top: 60px; left: -340px;
  width: 1100px; height: 1100px;
  background: radial-gradient(closest-side, rgba(157, 191, 168, 0.14), rgba(157, 191, 168, 0.04) 55%, transparent 75%);
}
#how::before {
  top: -120px; right: -380px;
  width: 1100px; height: 1100px;
  background: radial-gradient(closest-side, rgba(228, 201, 154, 0.16), rgba(228, 201, 154, 0.05) 55%, transparent 75%);
}
#pricing::before {
  top: -60px; left: 50%; transform: translateX(-50%);
  width: min(1300px, 100vw); height: 1000px;
  background: radial-gradient(closest-side, rgba(217, 138, 87, 0.08), rgba(217, 138, 87, 0.02) 55%, transparent 75%);
}
.sv-final::before {
  bottom: -200px; right: -300px; top: auto;
  width: 1000px; height: 900px;
  background: radial-gradient(closest-side, rgba(157, 191, 168, 0.12), transparent 72%);
}
.sv .sv-head {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0;
}

/* ---------- dynamic motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* card hover lifts */
.howc-card { transition: transform .25s cubic-bezier(.2,.7,.2,1); }
.howc-card:hover { transform: translateY(-4px); }

.pt-card { transition: none; }

/* subtle hero peek float — gentle breathing */
.sv-product.is-peek .peek-snap,
.sv-product.is-peek .orch-frame {
  animation: peekFloat 9s ease-in-out infinite;
}
@keyframes peekFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .sv-product.is-peek .peek-snap,
  .sv-product.is-peek .orch-frame { animation: none; }
}
/* alternate header anatomies for visual rhythm */
.sv .sv-head.is-left {
  align-items: flex-start; text-align: left;
  max-width: none;
}
.sv .sv-head.is-left .sv-h2 { max-width: 22ch; margin-left: 0; }
.sv .sv-head.is-left .sv-sub { margin-left: 0; }

.sv .sv-head.is-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: clamp(32px, 4vw, 80px);
  text-align: left;
  max-width: none;
}
.sv .sv-head.is-split .sv-h2 {
  max-width: 18ch; margin: 0;
}
.sv .sv-head.is-split .sv-sub {
  margin: 0 0 12px 0;
  max-width: 38ch;
  font-size: clamp(16px, 1.35vw, 19px);
  border-left: 1px solid rgba(20,17,13,0.14);
  padding-left: clamp(20px, 2.4vw, 32px);
}

.sv-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(20px, 2.2vw, 28px);
}
.sv-eyebrow::before {
  content: ""; width: 24px; height: 1px;
  background: rgba(20,17,13,0.3);
}
.sv .sv-head.is-left .sv-eyebrow { margin-bottom: 22px; }

@media (max-width: 760px) {
  .sv .sv-head.is-split { grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .sv .sv-head.is-split .sv-sub { border-left: 0; padding-left: 0; }
}
.sv-spot { color: var(--ink); margin-bottom: 28px; display: inline-flex; }
.sv-spot svg { display: block; }
.sv-spot .tint { color: #cdc5b8; }
.howc-logo-spot { margin-bottom: 18px; }
.howc-logo-spot img { height: 52px; width: auto; display: block; }
.howc-hands { display: block; transform-origin: 50% 60%; }
@media (prefers-reduced-motion: no-preference) {
  .howc-hands { animation: howcShake 1.6s ease-in-out infinite; }
}
@keyframes howcShake {
  0%, 64%, 100% { transform: translateY(0) rotate(0deg); }
  72% { transform: translateY(-2px) rotate(-7deg); }
  80% { transform: translateY(0) rotate(6deg); }
  88% { transform: translateY(-1px) rotate(-4deg); }
  94% { transform: translateY(0) rotate(2deg); }
}

.sv-h2 {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.06; letter-spacing: -0.024em;
  color: var(--ink); text-wrap: balance;
  max-width: 28ch;
}
.sv-sub {
  font-size: clamp(19px, 1.75vw, 25px); line-height: 1.5; color: var(--ink-soft);
  max-width: 46ch; text-wrap: pretty; margin-top: 26px;
}
.sv-actions { display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }

/* ---------- hero — pure type, centered ---------- */
.sv-hero {
  padding-top: clamp(72px, 11vh, 140px);
  padding-bottom: 0;
  overflow: hidden;
}

/* product peek — full-bleed portal preview that fades into the page */
.hero-peek {
  margin: clamp(64px, 9vh, 110px) auto 0;
  max-width: 1320px;
  padding: 0 8px;
  /* fade out the bottom so it reads as "more below" / half-hidden by the page */
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 68%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0, #000 68%, transparent 100%);
}
.hero-peek .portal {
  margin: 0;
  max-width: none;
  box-shadow: 0 40px 80px -40px rgba(45, 30, 15, 0.18), 0 12px 24px -16px rgba(45, 30, 15, 0.08);
}
@media (max-width: 760px) {
  .hero-peek { padding: 0; }
}
.hero-bg-vid {
  position: absolute;
  left: 0;
  right: 0;
  top: 25%;
  bottom: 0;
  width: 100%;
  height: 75%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, var(--paper) 0%, var(--paper) 22%, rgba(250,249,245,0.65) 32%, rgba(250,249,245,0.15) 45%, rgba(250,249,245,0) 70%, rgba(250,249,245,0.4) 92%, var(--paper) 100%);
}
.sv-hero > .wrap { position: relative; z-index: 2; width: 100%; }
.sv-hero .sv-h1 {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(54px, 6.6vw, 116px);
  line-height: 1.0; letter-spacing: -0.027em;
  color: var(--ink); text-wrap: balance;
  max-width: 17ch;
}
.sv-hero .sv-sub { margin-top: 34px; }
.sv-hero .sv-actions { margin-top: 44px; }
.sv-microline {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-top: 30px;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.08em;
  color: var(--muted);
}
.sv-microline .sep { width: 3px; height: 3px; border-radius: 50%; background: #cdc5b8; }

/* hero — preview of the workflow link */
.hero-linkprev { margin: 56px auto 0; max-width: 380px; text-align: left; }
.hlp-cap {
  display: block; text-align: center;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; color: var(--muted-2);
  margin-bottom: 16px;
}
.hlp-bubble {
  background: var(--black); color: #fff;
  border-radius: 18px 18px 18px 6px;
  padding: 15px 19px;
  font-family: var(--mono); font-size: 12.5px; line-height: 1.65;
  box-shadow: 0 16px 32px -18px rgba(45,30,15,.45);
  word-break: break-all;
}
.hlp-bubble b { color: #e6c896; font-weight: 500; }
.hlp-deliv {
  display: flex; align-items: center; justify-content: flex-end; gap: 5px;
  font-size: 11px; color: var(--muted); margin-top: 9px; font-weight: 600;
}
.hlp-deliv svg { color: var(--green); }

/* hero sources line */
/* film band */
.sv-film .film-video {
  display: block; width: 100%;
  height: clamp(420px, 72vh, 780px);
  object-fit: cover;
  border-radius: 36px;
  box-shadow: 0 44px 100px -42px rgba(20, 24, 30, .5), 0 10px 28px -16px rgba(20, 24, 30, .2);
}
.sv-hero-visual .report-card { box-shadow: 0 30px 70px -30px rgba(45,32,18,.28), 0 6px 18px -10px rgba(45,32,18,.12); }
.sv-sources {
  margin-top: 76px; text-align: center;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--muted-2); text-transform: uppercase;
  line-height: 2;
}

/* ---------- portal preview (the report) ---------- */
.portal {
  max-width: 1240px; margin: 88px auto 0;
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  box-shadow: 0 40px 90px -44px rgba(45, 32, 18, .35), 0 8px 24px -14px rgba(45, 32, 18, .12);
  overflow: hidden;
}
.portal-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 26px; border-bottom: 1px solid var(--faint);
  background: var(--faint-2);
}
.pb-crumb {
  display: flex; align-items: center; gap: 9px; min-width: 0;
  font-family: var(--mono); font-size: 12.5px; color: var(--muted);
}
.pb-crumb svg { color: var(--muted-2); flex-shrink: 0; }
.pb-crumb b { color: var(--ink); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pb-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.08em;
  background: var(--green-bg); color: var(--green);
  border-radius: 999px; padding: 6px 12px; white-space: nowrap; flex-shrink: 0;
}
.portal-body { display: grid; grid-template-columns: 1.3fr 1fr; align-items: stretch; }

/* left — the sequence builder */
.portal-seq { padding: 30px 34px 28px; min-width: 0; }
.ps-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.ps-head h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.ps-head > span { font-size: 13px; color: var(--muted); }
.ps-rows { display: flex; flex-direction: column; gap: 9px; margin-top: 20px; }
.ps-row {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 13px;
  padding: 13px 18px 13px 14px;
}
.ps-grip { color: #cdc5b8; display: inline-flex; flex-shrink: 0; cursor: grab; }
.ps-n {
  width: 23px; height: 23px; border-radius: 50%; flex-shrink: 0;
  background: var(--faint); color: var(--muted);
  font-family: var(--mono); font-size: 11.5px; font-weight: 500;
  display: grid; place-items: center;
}
.ps-txt { min-width: 0; }
.ps-txt b { display: block; font-size: 15px; font-weight: 600; letter-spacing: -0.008em; color: var(--ink); }
.ps-txt span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ps-st {
  margin-left: auto; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em;
  border-radius: 999px; padding: 5px 11px;
}
.ps-st.done { background: var(--green-bg); color: var(--green); }
.ps-st.run { background: var(--amber-bg); color: var(--amber); }
.ps-st.wait { background: var(--faint); color: var(--muted); }
.ps-st.skip { background: transparent; color: var(--muted-2); border: 1px dashed #d8d3ca; }
.ps-spin {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid currentColor; border-top-color: transparent;
  animation: psspin 1s linear infinite;
}
@keyframes psspin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .ps-spin { animation: none; } }

/* mid-drag state */
.ps-row.lift {
  border-color: #cfc8bd;
  box-shadow: 0 18px 36px -16px rgba(45, 30, 15, .35), 0 0 0 3px rgba(180, 150, 90, .10);
  transform: rotate(-0.6deg) scale(1.012);
  cursor: grabbing;
}
.ps-row.lift .ps-grip { color: var(--ink); cursor: grabbing; }
.ps-drop { display: flex; align-items: center; gap: 0; height: 3px; margin: 2px 4px; }
.ps-drop .dot { width: 7px; height: 7px; border-radius: 50%; background: #8a6f4d; flex-shrink: 0; }
.ps-drop::after { content: ""; flex: 1; height: 2px; background: #c9b696; border-radius: 2px; }

/* toggled-off row */
.ps-row.off { background: var(--faint-2); border-style: dashed; }
.ps-row.off .ps-txt b, .ps-row.off .ps-n { color: var(--muted-2); }
.ps-row.off .ps-txt span { color: var(--muted-2); }
.ps-row.off .ps-n { background: transparent; border: 1px dashed #d8d3ca; }

.ps-note {
  margin-top: 22px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted-2);
}

/* right — live report preview */
.portal-prev {
  border-left: 1px solid var(--faint);
  background: var(--faint-2);
  padding: 30px 34px 28px;
  display: flex; flex-direction: column; min-width: 0;
}
.pp-head { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.pp-av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--black); color: #e6c896;
  font-family: var(--mono); font-size: 13px;
  display: grid; place-items: center;
}
.pp-who { min-width: 0; }
.pp-who b { display: block; font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.pp-who span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.pp-chip {
  margin-left: auto; flex-shrink: 0;
  font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.08em;
  background: var(--amber-bg); color: var(--amber);
  border-radius: 999px; padding: 5px 11px; white-space: nowrap;
}
.pp-rows { display: flex; flex-direction: column; }
.pp-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 15px 2px; border-bottom: 1px solid var(--line);
  font-size: 14.5px; font-weight: 500; color: var(--ink);
}
.pp-row .v { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 13px; color: var(--ink); }
.pp-row .v.ok svg { color: var(--green); }
.pp-row .v.run { color: var(--amber); }
.pp-row.dim, .pp-row.dim .v { color: var(--muted-2); }
.pp-foot { margin-top: auto; padding-top: 20px; font-size: 13px; color: var(--muted); }

@media (max-width: 980px) {
  .portal-body { grid-template-columns: 1fr; }
  .portal-prev { border-left: 0; border-top: 1px solid var(--faint); }
  .ps-txt span { white-space: normal; }
}
@media (max-width: 560px) {
  .portal-seq, .portal-prev { padding: 22px 18px; }
  .ps-row { flex-wrap: wrap; }
  .ps-st { margin-left: 45px; }
}

/* ---------- check grid (the report) ---------- */
.check-grid {
  max-width: 1240px; margin: 88px auto 0;
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: 96px; row-gap: 72px;
}
.check {
  border-top: 1px solid var(--line);
  padding-top: 36px;
  display: grid; grid-template-columns: 34px 1fr; column-gap: 20px;
  align-items: start;
}
.check .ck-ic {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--black); color: #fff;
  display: grid; place-items: center; margin-top: 6px;
}
.check h3 {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(27px, 2.5vw, 36px); letter-spacing: -0.017em; line-height: 1.12;
  color: var(--ink);
}
.check p {
  font-size: clamp(17px, 1.5vw, 19px); line-height: 1.55; color: var(--muted);
  margin-top: 12px; max-width: 38ch; text-wrap: pretty;
}

/* ---------- how it works ---------- */
.sv-steps {
  max-width: 1360px; margin: 88px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
/* cards on paper need a touch more contrast */
.sv-step {
  background: #F3F0E8; border: 1px solid #EBE6DA; border-radius: 24px;
  padding: 38px 30px 44px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.sv-step .vis {
  width: 100%; min-height: 190px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 30px;
}
.sv-step .vis > * { margin: 0 auto; }
.sv-step .n {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
  color: var(--muted-2); margin-bottom: 12px;
}
.sv-step h3 {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(27px, 2.3vw, 32px); letter-spacing: -0.016em; line-height: 1.1;
  color: var(--ink); text-wrap: balance;
}
.sv-steps-note {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 42px;
  font-size: 17px; color: var(--muted);
}
.sv-steps-note svg { color: var(--green); flex-shrink: 0; }

/* ---------- product — embedded live orchestration, page-standard anatomy ---------- */
.orch-frame {
  display: block;
  width: 100%;
  border: 0;
  min-height: 584px;
  margin-top: 72px;
  background: transparent;
}

/* ---------- product peek — full live orchestration, rounded, embedded under the hero ---------- */
.sv-product.is-peek {
  padding-top: clamp(20px, 2.5vw, 36px);
  padding-bottom: 0;
  margin-top: 0;
  position: relative;
}
.sv-product.is-peek .peek-stage {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 clamp(8px, 1.2vw, 20px);
}
.sv-product.is-peek .peek-wrap {
  position: relative;
  width: 100%;
}

/* live activity ticker — full-width strip below hero */
.sv-hero .peek-ticker {
  position: relative;
  margin: clamp(40px, 4vw, 56px) 0 0;
  display: flex;
  align-items: stretch;
  width: 100%;
  font-family: var(--mono);
  overflow: hidden;
  text-align: left;
}
.sv-hero .pt-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px clamp(16px, 1.8vw, 22px) 9px 0;
  flex-shrink: 0;
  z-index: 3;
}
.sv-hero .pt-spin {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2B6B3A;
  position: relative;
  flex-shrink: 0;
  animation: ptPulse 1.6s ease-in-out infinite;
}
.sv-hero .pt-spin::before {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%;
  background: #2B6B3A;
  opacity: 0.25;
  animation: ptPulseRing 1.6s ease-out infinite;
}
@keyframes ptPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
@keyframes ptPulseRing {
  0% { transform: scale(0.6); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}
.sv-hero .pt-eye {
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--ink);
}
.sv-hero .pt-marquee {
  flex: 1;
  min-width: 0;
  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%);
}
.sv-hero .pt-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ptMarquee 60s linear infinite;
}
.sv-hero .peek-ticker:hover .pt-track { animation-play-state: paused; }
@keyframes ptMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.sv-hero .pt-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.sv-hero .pt-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
  padding: 9px clamp(16px, 2vw, 24px);
  white-space: nowrap;
}
.sv-hero .pt-stat + .pt-stat { border-left: 1px solid rgba(20,17,13,0.10); }
.sv-hero .pt-lab {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.sv-hero .pt-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  display: inline-block;
  padding: 2px 6px;
  margin: -2px -2px;
  border-radius: 5px;
  background: transparent;
  transition: background-color 1.2s ease-out;
}
.sv-hero .pt-num.is-flash {
  background: rgba(20,17,13,0.14);
  transition: background-color 0s;
}
.sv-hero .pt-num-u { font-size: 10px; font-weight: 500; color: var(--muted); letter-spacing: 0.04em; margin-left: 3px; }

.sv-product.is-peek .orch-frame {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  height: 560px;
  min-height: 560px;
}
.sv-product.is-peek .peek-snap {
  display: block;
  width: 100%;
  height: 560px;
  background: var(--paper-deep);
}
@media (max-width: 920px) {
  .sv-product.is-peek .orch-frame { height: 540px; min-height: 540px; }
  .sv-product.is-peek .peek-snap { height: 420px; }
  .pt-badge { padding: 8px 14px; }
  .pt-stat { padding: 8px 16px; }
  .pt-lab { font-size: 10px; }
}

/* ---------- customer quotes ---------- */
.quote-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 4vw, 72px);
  max-width: 1360px;
  margin: 88px auto 0;
}
.q {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 36px;
  display: flex; flex-direction: column; gap: 26px;
}
.q .q-logo { height: 48px; width: 176px; }
.q blockquote {
  margin: 0;
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(20px, 1.9vw, 25px); line-height: 1.42; letter-spacing: -0.012em;
  color: var(--ink); text-wrap: pretty;
}
.q figcaption { margin-top: auto; font-size: 15px; color: var(--muted); line-height: 1.5; }
.q figcaption b { display: block; color: var(--ink); font-weight: 600; }
@media (max-width: 920px) {
  .quote-grid { grid-template-columns: 1fr; max-width: 560px; gap: 44px; }
}

/* ---------- story band — standard section anatomy, no full-bleed band ---------- */
.sv-story .story-timeline {
  margin-top: 88px; justify-content: center;
  font-size: 13px; letter-spacing: 0.04em;
}
.sv-story .story-timeline .tl-dot { width: 8px; height: 8px; }

/* ---------- pricing ---------- */
.sv-price-num {
  margin-top: 44px;
  display: flex; align-items: baseline; gap: 8px; justify-content: center;
  font-family: var(--serif); color: var(--ink);
}
.sv-price-num .cur { font-size: clamp(34px, 4vw, 48px); font-weight: 420; }
.sv-price-num .amt { font-size: clamp(120px, 15vw, 200px); font-weight: 400; line-height: 0.9; letter-spacing: -0.04em; }
.sv-price-num .per {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.12em;
  color: var(--muted); text-transform: uppercase;
  align-self: flex-end; padding-bottom: 14px;
}
.sv-price-tbc {
  margin-top: 18px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  color: var(--muted-2); text-transform: uppercase;
}
.sv-price-alt {
  margin-top: 52px;
  display: flex; align-items: center; gap: 8px; justify-content: center; flex-wrap: wrap;
  font-size: 17.5px; color: var(--muted);
}
.sv-price-alt a {
  color: var(--ink); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid #cdc5b8;
  padding-bottom: 1px;
  transition: border-color .18s ease;
}
.sv-price-alt a:hover { border-color: var(--ink); }

/* trust strip */
.sv-trust {
  max-width: 1240px; margin: 96px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  display: flex; justify-content: center; gap: 14px 42px; flex-wrap: wrap;
}
.sv-trust span {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.08em;
  color: var(--muted); text-transform: uppercase;
}
.sv-trust svg { color: var(--green); flex-shrink: 0; }

/* ---------- final ---------- */

/* ---------- story band — refined path with year markers ---------- */
.story-path {
  margin-top: clamp(56px, 6vw, 88px);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: clamp(20px, 2.4vw, 40px);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.sp-step {
  display: flex; flex-direction: column; gap: 10px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(20,17,13,0.14);
  position: relative;
}
.sp-step::before {
  content: ""; position: absolute; top: -4px; left: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(20,17,13,0.22);
}
.sp-step.is-active::before { background: var(--ink); box-shadow: 0 0 0 4px rgba(20,17,13,0.06); }
.sp-step.is-active { border-top-color: var(--ink); }
.sp-num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; color: var(--muted-2);
}
.sp-label {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15; letter-spacing: -0.015em;
  color: var(--ink);
}
.sp-note {
  font-size: 14px; line-height: 1.5; color: var(--muted);
  max-width: 28ch;
}
.sp-line {
  align-self: start; margin-top: 28px;
  width: 18px; height: 1px; background: rgba(20,17,13,0.14);
}
@media (max-width: 760px) {
  .story-path { grid-template-columns: 1fr; gap: 24px; }
  .sp-line { width: 1px; height: 24px; justify-self: start; margin: 0 0 0 4px; }
}

/* ---------- hero microline bullets ---------- */
.hero-bullets {
  list-style: none; padding: 0;
  margin: 28px auto 0;
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  justify-content: center;
  font-size: 13.5px;
  color: var(--muted);
}
.hero-bullets li { display: inline-flex; align-items: center; gap: 7px; }
.hero-bullets svg { color: var(--green); flex-shrink: 0; }

/* ---------- §What you get back — three plain-language outcome cards ---------- */
.sv-outcomes .wrap { max-width: 1180px; }
.sv-outcomes .sv-head { max-width: 720px; margin-left: auto; margin-right: auto; }
.oc-grid {
  margin-top: clamp(48px, 5vw, 80px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
}
.oc-card {
  background: var(--paper);
  border-radius: 16px;
  padding: clamp(28px, 2.8vw, 40px);
  box-shadow: inset 0 0 0 1px rgba(20,17,13,0.08);
  display: flex; flex-direction: column;
  text-align: left;
}
.oc-q {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.18; letter-spacing: -0.018em;
  color: var(--ink);
  text-wrap: balance;
}
.oc-a {
  margin: 16px 0 0;
  font-size: clamp(15px, 1.1vw, 16.5px);
  line-height: 1.55; color: var(--muted);
}
.oc-srcs {
  margin-top: auto; padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.oc-src {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 6px;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.04em;
  background: rgba(20,17,13,0.04);
  color: var(--muted);
}
@media (max-width: 880px) {
  .oc-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* ---------- §Differentiators — speed stats + time saved calculator ---------- */
.sv-diff { padding-top: clamp(120px, 12vw, 200px); }
.sv-diff .wrap { max-width: 1180px; }
.diff-stats {
  margin-top: clamp(48px, 5vw, 80px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 36px);
  text-align: left;
}
.ds-stat {
  padding: clamp(24px, 2.4vw, 32px) 0;
  border-top: 1px solid rgba(20,17,13,0.10);
}
.ds-num {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--ink);
  display: inline-flex; align-items: baseline; gap: 6px;
}
.ds-unit {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(15px, 1.2vw, 18px);
  letter-spacing: 0.01em;
  color: var(--muted);
}
.ds-label {
  margin-top: 14px;
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(21px, 1.8vw, 26px);
  letter-spacing: -0.015em;
  color: var(--ink);
}
.ds-sub {
  margin-top: 8px;
  font-size: clamp(16px, 1.3vw, 18px); line-height: 1.5;
  color: var(--muted);
}

/* ===== accessible savings calculator ===== */
.calc {
  margin-top: clamp(48px, 5vw, 72px);
  background: var(--paper-deep);
  border-radius: 24px;
  padding: clamp(28px, 3.5vw, 52px);
  border: 1px solid rgba(20,17,13,0.12);
  box-shadow: 0 30px 64px -46px rgba(60,48,30,0.32);
}
.calc-top {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.calc-q {
  font-family: var(--serif); font-weight: 460;
  font-size: clamp(26px, 2.6vw, 34px); letter-spacing: -0.018em;
  color: var(--ink); max-width: 20ch; line-height: 1.14;
}
.calc-vol {
  font-family: var(--serif); color: var(--ink);
  display: inline-flex; align-items: baseline; gap: 9px; white-space: nowrap;
}
.calc-vol #calcVol {
  font-size: clamp(44px, 5vw, 64px); font-weight: 420;
  letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
}
.calc-vol-u { font-family: var(--sans); font-size: 17px; color: var(--muted); }
.calc-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 12px; border-radius: 99px;
  background: rgba(20,17,13,0.12);
  outline: none; cursor: pointer;
  margin: 6px 0 clamp(36px, 4vw, 52px);
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink); border: 4px solid var(--paper-deep);
  box-shadow: 0 5px 14px -4px rgba(20,17,13,0.55);
  cursor: grab;
}
.calc-range::-webkit-slider-thumb:active { cursor: grabbing; }
.calc-range::-moz-range-thumb {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink); border: 4px solid var(--paper-deep);
  cursor: grab;
}
.calc-range:focus-visible { box-shadow: 0 0 0 4px rgba(20,17,13,0.14); }
.calc-results {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  border-top: 1px solid rgba(20,17,13,0.1);
  padding-top: clamp(28px, 3vw, 40px);
}
.calc-r { display: flex; flex-direction: column; gap: 9px; }
.calc-rn {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(42px, 4.4vw, 60px); line-height: 1;
  letter-spacing: -0.03em; color: var(--ink);
  font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: baseline; gap: 7px;
}
.calc-ru { font-family: var(--sans); font-size: clamp(16px, 1.4vw, 19px); font-weight: 500; color: var(--muted); letter-spacing: -0.01em; }
.calc-rl { font-size: clamp(15px, 1.2vw, 17px); color: var(--muted); letter-spacing: -0.005em; }
@media (max-width: 760px) {
  .calc-results { grid-template-columns: 1fr; gap: 24px; }
  .calc-top { flex-direction: column; gap: 10px; }
}

/* ---------- §A look inside — text left, orchestration right ---------- */
.sv-snaps { padding-top: var(--sv-gap); }
.sv-snaps .wrap { max-width: 1320px; }
.snaps-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(8px, 1vw, 20px);
  align-items: center;
}
.snaps-beige {
  position: relative;
  background: #8a6f52 url("orch-bg2.png") center center / cover no-repeat;
  border-radius: 32px;
  min-height: 600px;
  padding: clamp(48px, 5vw, 88px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.snaps-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(44px, 4.5vw, 72px);
}
.snaps-head .sv-h2 { margin-top: 0; }
.snaps-head .sv-sub { margin-left: auto; margin-right: auto; }
.og-tabs {
  display: flex;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto clamp(36px, 3.6vw, 56px);
  padding: 6px;
  border-radius: 18px;
  background: rgba(20,17,13,0.05);
  box-shadow: inset 0 0 0 1px rgba(20,17,13,0.06);
  overflow-x: auto;
  scrollbar-width: none;
}
.og-tabs::-webkit-scrollbar { display: none; }
.og-tab {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 19px;
  border: 0; border-radius: 13px;
  background: transparent;
  font-family: inherit; font-size: 15.5px; font-weight: 500;
  letter-spacing: -0.01em; white-space: nowrap;
  color: rgba(20,17,13,0.56);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.og-tab:hover { color: rgba(20,17,13,0.9); }
.og-tab.is-active {
  background: #FBF8F1;
  color: #14110d;
  box-shadow: 0 1px 2px rgba(20,17,13,0.07), 0 8px 18px -12px rgba(20,17,13,0.4);
}
.og-tab-ic { display: inline-flex; opacity: 0.7; }
.og-tab.is-active .og-tab-ic { opacity: 1; }

/* caption under the leasing-teams mock — two-column, Claude-style */
.snaps-cap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: start;
  margin-top: clamp(36px, 4vw, 60px);
}
.snaps-cap-h {
  margin: 0; font-family: var(--serif); font-weight: 480;
  font-size: clamp(26px, 2.4vw, 34px); line-height: 1.12;
  letter-spacing: -0.018em; color: var(--ink);
}
.snaps-cap-r { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.snaps-cap-r p { margin: 0; font-size: 16.5px; line-height: 1.55; color: var(--ink-soft); max-width: 44ch; text-wrap: pretty; }
@media (max-width: 760px) {
  .snaps-cap { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- §Trusted by — Swiper cards-effect testimonial deck (Claude enterprise style) ---------- */
.sv-trust { overflow: hidden; }

.trust-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: clamp(28px, 3vw, 44px); }
.trust-h { font-family: var(--serif); font-weight: 480; font-size: clamp(22px, 2vw, 30px); letter-spacing: -0.015em; color: var(--ink); margin: 0; }
.trust-nav { display: flex; gap: 10px; flex: 0 0 auto; }
.trust-arrow { width: 46px; height: 46px; border-radius: 50%; flex: 0 0 auto; border: 1px solid rgba(20,17,13,0.16); background: transparent; color: var(--ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background .16s ease, border-color .16s ease, opacity .16s ease; }
.trust-arrow:hover { background: rgba(20,17,13,0.05); border-color: rgba(20,17,13,0.28); }
.trust-arrow.is-disabled { opacity: 0.3; pointer-events: none; }

/* card deck */
.trust-cards { display: flex; flex-direction: column; align-items: center; gap: clamp(26px, 3vw, 40px); }
.trust-swiper { width: min(880px, 84vw); overflow: visible; }
/* prevent slides from stacking vertically (a visible "duplicate") before Swiper inits */
.trust-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) { display: none; }
.trust-swiper .swiper-slide { border-radius: 24px; overflow: hidden; }
.trust-dots { display: flex; align-items: center; justify-content: center; gap: 10px; }
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(20,17,13,0.2); cursor: pointer; transition: background .16s ease, transform .16s ease; }
.trust-dot.is-on { background: var(--ink); transform: scale(1.3); }

.trust-card {
  position: relative; width: 100%;
  height: clamp(420px, 56vh, 560px);
  border-radius: 24px; overflow: hidden;
  background: var(--tone, #26201a) url("snapshots/apply-start.png") 76% center / cover no-repeat;
  isolation: isolate;
}
.tc-shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(104deg, rgba(8,10,8,0.94) 0%, rgba(8,10,8,0.80) 32%, rgba(8,10,8,0.42) 62%, rgba(8,10,8,0.16) 100%),
    linear-gradient(0deg, rgba(8,10,8,0.80) 0%, rgba(8,10,8,0) 42%);
}
.tc-topo {
  display: none;
}
.tc-shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(176deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 32%, rgba(0,0,0,0.10) 60%, rgba(0,0,0,0.6) 100%);
}
.tc-logo {
  position: absolute; top: clamp(24px,2.5vw,34px); left: clamp(24px,2.5vw,36px); z-index: 3;
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--serif); font-weight: 500; font-size: 19px; color: #fff;
  white-space: nowrap;
}
.tc-logo svg { color: #fff; flex: 0 0 auto; }
.tc-detail {
  position: absolute; inset: 0; z-index: 2;
  width: 100%;
  padding: clamp(28px,3.2vw,52px);
  padding-top: clamp(78px, 7vw, 112px);
  display: flex; flex-direction: column;
  color: #fff;
}
.tc-quote {
  margin: 0;
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(22px, 2.3vw, 34px); line-height: 1.3; letter-spacing: -0.015em;
  color: #fff; max-width: 22ch; text-wrap: pretty; flex: 1;
}
.tc-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.tc-stat { display: flex; flex-direction: column; gap: 7px; }
.tc-stat-n { font-family: var(--serif); font-weight: 400; font-size: clamp(44px, 4.4vw, 66px); line-height: 1; letter-spacing: -0.03em; color: #fff; }
.tc-stat-l { font-size: 12.5px; color: rgba(255,255,255,0.62); max-width: 22ch; line-height: 1.45; }
.tc-meta { display: flex; flex-direction: column; gap: 11px; }
.tc-mrow { display: flex; gap: 18px; font-size: 12.5px; white-space: nowrap; }
.tc-mrow dt { color: rgba(255,255,255,0.5); min-width: 80px; }
.tc-mrow dd { color: rgba(255,255,255,0.9); margin: 0; }
@media (max-width: 760px) {
  .tc-foot { gap: 18px; }
  .tc-meta { display: none; }
  .tc-logo { font-size: 16px; }
}

/* reset the legacy ".sv-trust span" mono/uppercase rule inside the new cards */
.trust-card span { display: inline; font-family: inherit; font-size: inherit; letter-spacing: inherit; text-transform: none; color: inherit; }
.trust-card .tc-logo span { font-family: var(--serif); font-weight: 500; font-size: 19px; letter-spacing: -0.01em; color: #fff; }
.trust-card .tc-stat-n { font-family: var(--serif); font-weight: 400; font-size: clamp(44px, 4.4vw, 66px); line-height: 1; letter-spacing: -0.03em; color: #fff; }
.trust-card .tc-stat-l { font-size: 12.5px; letter-spacing: -0.003em; color: rgba(255,255,255,0.62); line-height: 1.45; }
@media (max-width: 760px) { .trust-card .tc-logo span { font-size: 16px; } }

/* ---------- reviews carousel (auto-rotating 3-up, Claude-style) ---------- */
.sv-reviews-fan .sv-head { margin-bottom: clamp(40px, 4vw, 64px); }
.sv-reviews-fan .sv-h2 { font-size: clamp(24px, 2.2vw, 30px); }
.revx { position: relative; }
.revx-viewport { position: relative; overflow: hidden; }
.revx-viewport::before, .revx-viewport::after {
  content: ""; position: absolute; top: 6%; bottom: 6%; width: 1px;
  background: rgba(20,17,13,0.12); z-index: 3; pointer-events: none;
}
.revx-viewport::before { left: 33.333%; }
.revx-viewport::after  { left: 66.666%; }
.revx-track { display: flex; align-items: stretch; will-change: transform; transition: transform .62s cubic-bezier(.4,0,.2,1); }
.revx-card {
  flex: 0 0 33.3333%; box-sizing: border-box;
  display: flex; flex-direction: column;
  padding: 6px clamp(28px, 3vw, 52px);
  min-height: 0;
}
.revx-co {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--serif); font-weight: 500; font-size: 22px; letter-spacing: -0.012em;
  margin-bottom: 30px;
}
.revx-co svg { flex: 0 0 auto; }
.revx-co span { color: var(--ink); }
.revx-metric { display: flex; align-items: baseline; gap: 5px; color: var(--ink); }
.revx-mn { font-family: var(--serif); font-weight: 360; font-size: clamp(54px, 5vw, 74px); letter-spacing: -0.03em; line-height: 0.95; }
.revx-mu { font-family: var(--serif); font-weight: 360; font-size: clamp(28px, 2.6vw, 40px); color: var(--muted); }
.revx-ml { margin-top: 13px; font-size: 14px; color: var(--ink-soft); letter-spacing: -0.005em; }
.revx-q { margin: 26px 0 0; font-size: 16.5px; line-height: 1.55; color: var(--ink-soft); text-wrap: pretty; }
.revx-foot { margin-top: clamp(24px, 2.4vw, 34px); display: flex; flex-direction: column; gap: 16px; }
.revx-by { display: flex; flex-direction: column; gap: 2px; }
.revx-by b { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.revx-by span { font-size: 13px; color: var(--muted); }
.revx-read {
  align-self: flex-start; font-size: 13.5px; font-weight: 500; color: var(--ink-soft);
  text-decoration: none; padding: 9px 16px; border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(20,17,13,0.14);
  transition: background .16s ease, color .16s ease;
}
.revx-read:hover { background: rgba(20,17,13,0.05); color: var(--ink); }
.revx-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: clamp(34px, 3.4vw, 52px); }
.revx-arrow {
  width: 46px; height: 46px; border-radius: 50%; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(20,17,13,0.16); background: transparent; color: var(--ink);
  cursor: pointer; transition: background .16s ease, border-color .16s ease;
}
.revx-arrow:hover { background: rgba(20,17,13,0.05); border-color: rgba(20,17,13,0.28); }
.revx-dots { display: flex; align-items: center; gap: 10px; }
.revx-dot { width: 8px; height: 8px; border-radius: 50%; padding: 0; border: 0; background: rgba(20,17,13,0.2); cursor: pointer; transition: background .16s ease, transform .16s ease; }
.revx-dot.is-on { background: var(--ink); transform: scale(1.3); }

@media (max-width: 980px) {
  .revx-card { flex-basis: 50%; }
  .revx-viewport::after { display: none; }
  .revx-viewport::before { left: 50%; }
}
@media (max-width: 620px) {
  .revx-card { flex-basis: 100%; min-height: 0; }
  .revx-viewport::before { display: none; }
}

/* ---------- §Why Carousel — Claude "stay in control" rows ---------- */
.sv-control .wrap { max-width: 1120px; }
.ctrl-intro { max-width: 720px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.ctrl-glyph { color: var(--ink); margin-bottom: 24px; display: inline-flex; }
.ctrl-intro .sv-h2 { max-width: none; margin: 0; text-align: center; }
.ctrl-intro .sv-sub { text-align: center; margin: 22px auto 0; max-width: 46ch; }
.ctrl-intro .btn { margin-top: 34px; }
.ctrl-rows { margin-top: clamp(56px, 6vw, 104px); }
.ctrl-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 120px);
  padding: clamp(32px, 3.4vw, 50px) 0;
  border-top: 1px solid rgba(20,17,13,0.12);
}
.ctrl-row:last-child { border-bottom: 1px solid rgba(20,17,13,0.12); }
.ctrl-row-l { display: flex; align-items: flex-start; gap: 16px; }
.ctrl-ic { flex: 0 0 auto; color: var(--ink); margin-top: 4px; display: inline-flex; }
.ctrl-row-l h3 {
  margin: 0; font-family: var(--serif); font-weight: 500;
  font-size: clamp(21px, 1.9vw, 25px); line-height: 1.2; letter-spacing: -0.015em; color: var(--ink);
}
.ctrl-row-r { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.ctrl-row-r p { margin: 0; font-size: 16.5px; line-height: 1.55; color: var(--ink-soft); text-wrap: pretty; }
.ctrl-row-r p b { color: var(--ink); font-weight: 600; }
.ctrl-learn {
  font-size: 13.5px; font-weight: 500; color: var(--ink); text-decoration: none; white-space: nowrap;
  padding: 9px 17px; border-radius: 10px; box-shadow: inset 0 0 0 1px rgba(20,17,13,0.16);
  transition: background .16s ease;
}
.ctrl-learn:hover { background: rgba(20,17,13,0.05); }

@media (max-width: 760px) {
  .ctrl-row { grid-template-columns: 1fr; gap: 14px; }
  .ctrl-intro { text-align: center !important; align-items: center !important; }
  .ctrl-intro .sv-h2, .ctrl-intro .sv-sub { text-align: center !important; }
}

/* ===== self-contained liquid-glass orchestration mock ===== */
.og {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.og-pipe {
  position: relative; z-index: 2;
  width: clamp(170px, 16vw, 210px);
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.og-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 13.5px; font-weight: 600; letter-spacing: -0.006em;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    inset 0 0 0 1px rgba(255,255,255,0.14);
}
.og-pill-ic {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.9);
}
.og-pill.is-done { color: rgba(255,255,255,0.62); }
.og-pill.is-done .og-pill-ic { color: rgba(255,255,255,0.7); }
.og-pill.is-active {
  background: rgba(255,255,255,0.26);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.3),
    0 10px 26px -14px rgba(0,0,0,0.5);
}
.og-pill.is-active .og-pill-ic { background: rgba(255,255,255,0.28); color: #fff; }

.og-win {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: auto;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.16);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  backdrop-filter: blur(30px) saturate(160%);
  box-shadow:
    0 44px 100px -44px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.26);
}
.og-win-bar {
  height: 46px; display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  padding: 0 18px;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.16);
}
.og-dot { width: 11px; height: 11px; border-radius: 50%; opacity: 0.9; }
.og-win-body { position: relative; flex: 1; padding: 0; min-height: 408px; }
.og-layer {
  position: absolute; inset: 0;
  padding: clamp(28px, 3vw, 40px);
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.og-layer.is-on { opacity: 1; pointer-events: auto; }
@media (prefers-reduced-motion: reduce) { .og-layer { transition: none; } }
.og-logo {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22);
  margin-bottom: 18px;
}
.og-h {
  margin: 0 0 6px;
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(22px, 2vw, 27px); letter-spacing: -0.018em;
  color: #fff;
}
.og-sub {
  margin: 0 0 22px;
  font-size: 14.5px; line-height: 1.45;
  color: rgba(255,255,255,0.78);
  max-width: 42ch;
}
.og-consent {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
  cursor: pointer;
}
.og-check {
  width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.9);
  color: #1f1b16;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}
.og-consent-t {
  font-size: 13.5px; line-height: 1.45;
  color: rgba(255,255,255,0.9);
}
.og-cta {
  margin-top: 22px;
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 22px;
  border: 0; border-radius: 13px;
  font-family: inherit; font-size: 15px; font-weight: 600; letter-spacing: -0.006em;
  color: #1f1b16;
  background: rgba(255,255,255,0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 12px 30px -16px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: background .18s ease, transform .12s ease;
}
.og-cta:hover { background: #fff; transform: translateY(-1px); }
.og-cta:active { transform: translateY(0); }
.og-cta span { font-size: 16px; }

/* animated step transitions + per-step body variants */
.og-pill { transition: background .4s ease, color .4s ease, box-shadow .4s ease; position: relative; overflow: hidden; }
.og-pill.is-active::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(255,255,255,0.16);
  transform-origin: left; transform: scaleX(0);
  animation: ogProg 2s linear forwards;
}
@keyframes ogProg { to { transform: scaleX(1); } }
.og-rows { display: flex; flex-direction: column; gap: 10px; }
.og-irow {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
.og-irow span { font-size: 12px; color: rgba(255,255,255,0.62); font-family: var(--mono); letter-spacing: 0.04em; text-transform: uppercase; }
.og-irow b { font-size: 14px; color: #fff; font-weight: 600; }
.og-code { display: flex; gap: 9px; }
.og-code i {
  flex: 1; aspect-ratio: 3 / 4; max-width: 46px;
  display: grid; place-items: center;
  border-radius: 10px; font-style: normal;
  font-family: var(--mono); font-size: 19px; font-weight: 600; color: #fff;
  background: rgba(255,255,255,0.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}
.og-bars { display: flex; align-items: flex-end; gap: 8px; height: 78px; margin-bottom: 14px; }
.og-bars i {
  flex: 1; border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.4));
}
.og-sig {
  font-family: var(--serif); font-style: italic; font-size: 30px; color: #fff;
  padding: 14px 4px 8px; border-bottom: 1px solid rgba(255,255,255,0.3);
}
.og-sigcap { margin-top: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); text-transform: uppercase; }
.og-done { display: flex; align-items: center; gap: 14px; padding: 8px 0; }
.og-donecheck {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 20px;
  background: rgba(141,215,164,0.9); color: #14361f; font-weight: 700;
}
.og-done b { font-size: 17px; color: #fff; font-weight: 600; }

@media (max-width: 720px) {
  .og {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .og-pipe {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 7px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding: 2px 4px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  }
  .og-pipe::-webkit-scrollbar { display: none; }
  .og-pill {
    flex: 0 0 auto;
    padding: 9px 13px;
    font-size: 12.5px;
    scroll-snap-align: center;
  }
  .og-win {
    position: static;
    width: 100%;
    height: auto;
    left: auto;
    right: auto;
    margin-top: 14px;
  }
  /* layers crossfade via absolute stacking; on mobile let the ACTIVE layer
     drive the body height so each step fits exactly — no clip, no dead space.
     min-height keeps the window comfortably tall on the shorter steps. */
  .og-win-body { min-height: 440px; }
  .og-layer { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
  .og-layer.is-on { position: relative; }
}
.snaps-copy {
  display: flex; flex-direction: column; align-items: flex-start;
  text-align: left;
}
.snaps-copy .sv-h2 {
  max-width: 14ch;
  text-align: left;
  margin-top: 0;
}
.snaps-copy .sv-sub { text-align: left; max-width: 32ch; }

@media (max-width: 880px) {
  .snaps-split { grid-template-columns: 1fr; }
  .snaps-copy .sv-h2 { max-width: 18ch; }
  .snaps-split .snaps-orch { aspect-ratio: 4 / 3.2; }
}

@media (max-width: 760px) {
  .snaps-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "feat" "a" "b" "c";
  }
  .snaps-grid .islot:nth-child(1) { aspect-ratio: 16 / 9; }
}
.diff-calc-mini {
  margin-top: clamp(36px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.4fr;
  column-gap: clamp(24px, 3vw, 48px);
  row-gap: clamp(20px, 2.4vw, 28px);
  align-items: center;
  padding: clamp(24px, 2.6vw, 32px) clamp(28px, 3vw, 40px);
  border-radius: 16px;
  background: rgba(20,17,13,0.04);
}
.dcm-heads {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: clamp(14px, 1.6vw, 20px);
  border-top: 1px dashed rgba(20,17,13,0.12);
}
.dcm-head {
  width: 18px; height: 18px;
  color: rgba(20,17,13,0.10);
  flex-shrink: 0;
  transform: scale(0.82) translateY(2px);
  transition: color .35s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.dcm-head.is-on {
  color: #C58A4A;
  transform: scale(1) translateY(0);
}
.dcm-head svg { display: block; width: 100%; height: 100%; }
.dcm-control {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: clamp(28px, 3vw, 44px);
  row-gap: 10px;
  align-items: end;
}
.dcm-label {
  grid-column: 1;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.diff-calc-mini input[type="range"] {
  -webkit-appearance: none; appearance: none;
  grid-column: 1;
  width: 100%; height: 4px;
  background: rgba(20,17,13,0.14);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.diff-calc-mini input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--ink); border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px rgba(20,17,13,0.2), 0 4px 10px -2px rgba(20,17,13,0.25);
  cursor: grab;
  transition: transform .15s ease;
}
.diff-calc-mini input[type="range"]:active::-webkit-slider-thumb { cursor: grabbing; transform: scale(1.12); }
.diff-calc-mini input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--ink); border: 3px solid var(--paper);
  cursor: grab;
}
.dcm-vol {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  display: inline-flex; align-items: baseline; gap: 6px;
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(36px, 3.6vw, 52px); line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.dcm-vol-u { font-size: 14px; color: var(--muted); font-family: var(--sans); letter-spacing: -0.005em; }

.dcm-heads-row { display: flex; flex-direction: column; gap: 10px; }
.dcm-heads-cap {
  font-size: 12px; color: var(--muted);
  letter-spacing: -0.005em;
}
.dcm-heads-key { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); }
.dcm-heads-key svg { color: #C58A4A; }

.dcm-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: clamp(18px, 2vw, 24px);
  border-top: 1px solid rgba(20,17,13,0.10);
}
.dcm-r {
  display: flex; flex-direction: column; gap: 6px;
  padding: 0 clamp(16px, 2vw, 28px);
  border-left: 1px solid rgba(20,17,13,0.10);
}
.dcm-r:first-child { border-left: 0; padding-left: 0; }
.dcm-rn {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(28px, 3vw, 40px); line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.dcm-rl {
  font-size: 13px; line-height: 1.35;
  color: var(--muted);
  letter-spacing: -0.005em;
}

@media (max-width: 760px) {
  .diff-calc-mini { padding: 24px; }
  .dcm-vol { font-size: 32px; }
  .dcm-results { grid-template-columns: 1fr; gap: 16px; }
  .dcm-r { padding: 0; border-left: 0; border-top: 1px dashed rgba(20,17,13,0.10); padding-top: 14px; }
  .dcm-r:first-child { border-top: 0; padding-top: 0; }
}

/* ---------- diff calculator — paper-bg, people-head visual ---------- */
.diff-calc {
  margin-top: clamp(48px, 5vw, 80px);
  max-width: 1040px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  display: flex; flex-direction: column;
  gap: clamp(28px, 3vw, 40px);
  text-align: left;
}
.dc-head { display: flex; flex-direction: column; gap: 8px; }
.dc-eyebrow {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.dc-head h3 {
  margin: 0;
  font-family: var(--serif); font-weight: 440;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15; letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 32ch;
  text-wrap: balance;
}

/* slider control on paper */
.dc-control {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(20px, 2.4vw, 36px);
  row-gap: 6px;
  align-items: center;
  padding: clamp(18px, 2vw, 24px) 0;
  border-top: 1px solid rgba(20,17,13,0.10);
  border-bottom: 1px solid rgba(20,17,13,0.10);
}
.dc-control-l {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.dc-control-r {
  display: flex; align-items: center; gap: clamp(20px, 2.4vw, 32px);
  min-width: 0;
}
.dc-control input[type="range"] {
  -webkit-appearance: none; appearance: none;
  flex: 1; min-width: 0;
  height: 3px;
  background: rgba(20,17,13,0.12);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.dc-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ink); border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px rgba(20,17,13,0.2);
  cursor: grab;
  transition: transform .15s ease;
}
.dc-control input[type="range"]:active::-webkit-slider-thumb { cursor: grabbing; transform: scale(1.1); }
.dc-control input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ink); border: 3px solid var(--paper);
  cursor: grab;
}
.dc-readout {
  display: inline-flex; align-items: baseline; gap: 8px;
  white-space: nowrap;
}
.dc-readout-n {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(28px, 2.6vw, 36px); line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.dc-readout-u {
  font-size: 12.5px; color: var(--muted);
  letter-spacing: -0.005em;
}
.dc-scale {
  grid-column: 2;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  color: rgba(20,17,13,0.3);
  margin-top: 4px;
}

/* before / after people-head visualization */
.dc-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2vw, 24px);
}
.dcc-row {
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: clamp(20px, 2.4vw, 32px);
  align-items: center;
  padding: clamp(14px, 1.6vw, 20px) 0;
}
.dcc-row + .dcc-row { border-top: 1px dashed rgba(20,17,13,0.12); }
.dcc-meta { display: flex; flex-direction: column; gap: 4px; }
.dcc-tag {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.dcc-amt {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(28px, 2.4vw, 34px); line-height: 1.1; letter-spacing: -0.02em;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.dcc-unit {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--muted);
}
.dcc-people {
  display: flex; flex-wrap: wrap; gap: 5px;
  align-items: center;
  min-height: 22px;
}
.dcc-person {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: opacity .35s ease, transform .35s ease;
  flex-shrink: 0;
}
.dcc-old .dcc-person { color: var(--ink); opacity: 0.8; }
.dcc-old .dcc-person.is-dim { color: var(--ink); opacity: 0.14; transform: scale(0.85); }
.dcc-new .dcc-person { color: #C58A4A; }

/* results — small inline chips */
.dc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 28px);
  padding-top: clamp(20px, 2.2vw, 28px);
  border-top: 1px solid rgba(20,17,13,0.10);
}
.dc-result { display: flex; flex-direction: column; gap: 4px; }
.dc-rnum {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1; letter-spacing: -0.025em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.dc-rlabel {
  font-size: 13.5px; line-height: 1.35;
  color: var(--muted);
  letter-spacing: -0.005em;
}

@media (max-width: 720px) {
  .dc-control { grid-template-columns: 1fr; }
  .dc-control-r { flex-direction: column-reverse; align-items: stretch; gap: 12px; }
  .dc-scale { grid-column: 1; }
  .dcc-row { grid-template-columns: 1fr; gap: 12px; }
  .dc-results { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- §Platform — API & embed callout ---------- */
.sv-platform { background: var(--paper-deep); }
.sv-platform .wrap { max-width: 1280px; }
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 3.5vw, 64px);
  align-items: center;
}
.pl-tag {
  display: inline-flex; align-items: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--muted);
  text-transform: uppercase;
}
.pl-h2 {
  margin: 16px 0 0;
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.04; letter-spacing: -0.022em;
  color: var(--ink); text-wrap: balance;
}
.pl-h2 em { font-style: italic; font-weight: 400; }
.pl-sub {
  margin: 20px 0 0;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55; color: var(--muted);
  max-width: 48ch;
}
.pl-ways {
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pl-way {
  padding: 20px;
  background: var(--paper);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(20,17,13,0.08);
}
.pl-way-h { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.pl-way-h h3 {
  margin: 0;
  font-family: var(--serif); font-weight: 480;
  font-size: 17px; letter-spacing: -0.015em;
  color: var(--ink);
}
.pl-way p {
  margin: 8px 0 12px;
  font-size: 13.5px; line-height: 1.5;
  color: var(--muted);
}
.pl-way code {
  display: inline-block;
  font-family: var(--mono); font-size: 11.5px;
  padding: 4px 8px; border-radius: 5px;
  background: rgba(20,17,13,0.06);
  color: var(--ink);
}
.pl-cta {
  margin-top: 28px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.pl-visual {
  display: flex; justify-content: center;
}
.pl-code {
  width: 100%; max-width: 520px;
  border-radius: 12px; overflow: hidden;
  background: var(--ink);
  box-shadow: 0 30px 70px -40px rgba(20,17,13,0.5), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.plc-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.06);
}
.plc-dot { width: 10px; height: 10px; border-radius: 50%; }
.plc-name {
  margin-left: 8px;
  font-family: var(--mono); font-size: 11.5px;
  color: rgba(255,255,255,0.5);
}
.plc-body {
  margin: 0;
  padding: 20px;
  font-family: var(--mono); font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  white-space: pre-wrap; word-break: break-word;
  overflow-x: auto;
}
.plc-c { color: rgba(255,255,255,0.4); }
.plc-k { color: #FBC892; }
.plc-s { color: #9DBFA8; }

@media (max-width: 960px) {
  .platform-grid { grid-template-columns: 1fr; }
  .pl-ways { grid-template-columns: 1fr; }
}

/* ---------- pricing — three-up tier cards with CA/US toggle ---------- */
#pricing .wrap { max-width: 1180px; }
#pricing .sv-head { align-items: center; text-align: center; }
#pricing .sv-h2 em { font-style: italic; color: var(--muted); font-weight: 380; }

.pricing-region {
  margin: clamp(28px, 3vw, 40px) auto 0;
  display: inline-flex; gap: 4px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  width: max-content;
}
.pr-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 999px;
  background: transparent; border: 1px solid rgba(20,17,13,0.12);
  font-family: var(--sans); font-size: 13.5px; font-weight: 500;
  color: var(--muted); cursor: pointer;
  letter-spacing: -0.005em;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.pr-tab:hover { color: var(--ink); border-color: rgba(20,17,13,0.2); }
.pr-tab.is-on { background: #fff; color: var(--ink); border-color: rgba(20,17,13,0.18); box-shadow: 0 1px 3px rgba(20,17,13,0.06); }

.pricing-tiers {
  margin: clamp(36px, 3.8vw, 56px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
  align-items: stretch;
}
.pt-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: clamp(28px, 3vw, 40px) clamp(26px, 2.6vw, 34px);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(20,17,13,0.18);
}
.pt-card.is-featured {
  background: var(--paper-deep);
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px rgba(20,17,13,0.22);
  transform: none;
}
.pt-card.is-featured .pt-card-name,
.pt-card.is-featured .pt-card-num,
.pt-card.is-featured .pt-card-list li { color: var(--ink); }
.pt-card.is-featured .pt-card-tag,
.pt-card.is-featured .pt-card-cur,
.pt-card.is-featured .pt-card-per { color: var(--muted); }
.pt-card.is-featured .pt-card-list svg { color: var(--green); }
.pt-card.is-featured .pt-card-list li { border-color: rgba(20,17,13,0.10); }

.pt-card-badge {
  position: absolute; top: -11px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: #FBC892; color: #5b3a0e;
  padding: 5px 12px; border-radius: 999px;
  white-space: nowrap;
}
.pt-card-h { margin-bottom: clamp(20px, 2vw, 28px); }
.pt-card-name {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(24px, 2.2vw, 30px);
  letter-spacing: -0.018em;
  color: var(--ink); margin: 0;
}
.pt-card-tag {
  margin: 6px 0 0;
  font-size: 14px; line-height: 1.4;
  color: var(--muted);
}
.pt-card-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: clamp(22px, 2.4vw, 28px);
  padding-bottom: clamp(22px, 2.4vw, 28px);
  border-bottom: 1px solid rgba(20,17,13,0.10);
  font-family: var(--serif);
}
.pt-card.is-featured .pt-card-price { border-color: rgba(20,17,13,0.10); }
.pt-card-cur {
  font-size: clamp(18px, 1.5vw, 22px); font-weight: 420;
  line-height: 1; letter-spacing: -0.01em;
  color: var(--muted);
  align-self: flex-start; margin-top: 8px;
}
.pt-card-num {
  font-size: clamp(56px, 5.5vw, 72px); font-weight: 400;
  line-height: 1; letter-spacing: -0.035em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.pt-card-per {
  font-family: var(--sans); font-size: 13.5px; color: var(--muted);
  letter-spacing: -0.005em;
  margin-left: 6px;
}
.pt-card-cta {
  width: 100%; justify-content: center;
  margin-bottom: clamp(22px, 2.4vw, 28px);
}
.pt-card-list {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column;
  gap: 0;
}
.pt-card-list li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 11px 0;
  font-size: 14px; line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.005em;
  border-top: 1px dashed rgba(20,17,13,0.10);
}
.pt-card-list li:first-child { border-top: 0; padding-top: 0; }
.pt-card-list svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* mobile-only pricing carousel nav — hidden on desktop */
.pt-nav { display: none; }

/* volume row — bottom CTA */
.pricing-volume {
  margin-top: clamp(36px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(22px, 2.4vw, 32px) clamp(28px, 3vw, 40px);
  border-radius: 18px;
  background: rgba(20,17,13,0.04);
  text-decoration: none;
  color: inherit;
  transition: background .15s ease;
}
.pricing-volume:hover { background: rgba(20,17,13,0.06); }
.pricing-volume .pv-l { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.pv-eyebrow {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.16em; color: var(--muted);
  text-transform: uppercase;
}
.pv-title {
  margin: 0;
  font-family: var(--serif); font-weight: 460;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 60ch;
  text-wrap: balance;
}
.pv-cta {
  flex-shrink: 0;
  font-family: var(--sans); font-size: 14.5px; font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* region-conditional list items */
[data-region="ca"] [data-region-show="us"],
[data-region="us"] [data-region-show="ca"] { display: none; }

@media (max-width: 1080px) {
  .pricing-tiers { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .pt-card.is-featured { transform: none; }
  .pricing-volume { flex-direction: column; align-items: flex-start; }
}

/* FAQ — scale up to match */
.faq-list { max-width: 920px; margin-top: 56px; }
.faq-q { font-size: clamp(19px, 1.8vw, 23px); padding: 26px 4px 26px 4px; }
.faq-a p { font-size: 17px; }

/* ---------- §No app. No account. Just a link. ---------- */
.sv-link .sv-h2 { max-width: 22ch; }
.sv-link::before { background: radial-gradient(closest-side, rgba(190, 90, 165, 0.10), transparent 72%); }

.link-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 22px;
  margin-top: 72px;
  align-items: stretch;
}
.link-panel,
.link-photo {
  border-radius: 28px;
  overflow: hidden;
  min-height: 580px;
  position: relative;
}
.link-panel {
  background: oklch(0.78 0.025 110);
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 36px;
}
.link-panel .lp-text { max-width: 36ch; }
.lp-eyebrow {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: oklch(0.32 0.02 95);
  display: block;
}
.lp-body {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.4; letter-spacing: -0.012em;
  color: oklch(0.22 0.02 95);
  margin-top: 22px; text-wrap: pretty;
}
.lp-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.lp-pill {
  font-family: var(--sans); font-size: 14.5px; font-weight: 600;
  background: #FAF9F5; color: var(--ink);
  border: 0; border-radius: 999px;
  padding: 12px 22px; cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.lp-pill:hover { transform: translateY(-1px); }
.lp-pill.is-active {
  background: var(--ink); color: #FAF9F5;
}

.link-photo {
  background: oklch(0.78 0.025 110);
}
.link-photo .lp-img { width: 100%; height: 100%; display: block; }
.link-photo .lp-vid { width: 100%; height: 100%; object-fit: cover; display: block; }

/* phone, centered & tilted, overlapping the title */
.link-phone {
  position: absolute;
  left: 50%;
  top: -140px;
  transform: translateX(-50%) rotate(6deg);
  width: 260px;
  z-index: 5;
  filter: drop-shadow(0 40px 60px rgba(30, 22, 12, 0.22)) drop-shadow(0 12px 20px rgba(30, 22, 12, 0.12));
  pointer-events: none;
}
.lph-bezel {
  background: #E8E4DC;
  border: 1px solid #d4cfc3;
  border-radius: 44px;
  padding: 8px;
  position: relative;
}
.lph-notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 26px;
  background: #1a1714;
  border-radius: 999px;
  z-index: 3;
}
.lph-screen {
  background: #FAF9F5;
  border-radius: 36px;
  padding: 16px 18px 18px;
  position: relative;
  min-height: 520px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.lph-top {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  color: var(--ink);
  padding: 4px 8px 0;
}
.lph-time { letter-spacing: -0.01em; }
.lph-sys { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); }
.lph-chrome {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 28px; padding: 0 4px;
  color: var(--ink);
}
.lph-lantern { display: inline-flex; }
.lph-lang {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--ink-soft); font-weight: 500;
}

.lph-state { display: none; flex: 1; flex-direction: column; padding: 18px 4px 0; }
.lph-state.is-active { display: flex; }
.lph-h {
  font-family: var(--sans); font-weight: 700;
  font-size: 19px; letter-spacing: -0.012em;
  color: var(--ink);
}
.lph-p {
  font-size: 12.5px; color: var(--muted);
  line-height: 1.45; margin-top: 8px; text-wrap: pretty;
}
.lph-text-lines { display: flex; flex-direction: column; gap: 6px; margin-top: 22px; }
.lph-line { display: block; height: 6px; border-radius: 3px; background: #E0DBCF; }
.lph-line.w90 { width: 90%; }
.lph-line.w70 { width: 70%; }
.lph-line.w55 { width: 55%; }
.lph-sig { width: 70%; height: 36px; margin-top: 36px; }
.lph-sig-line {
  height: 1px; background: oklch(0.55 0.05 95);
  margin-top: 2px;
}
.lph-meta {
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.14em; color: var(--muted-2);
  margin-top: 6px;
}
.lph-meta.right { align-self: flex-end; }

/* ID state */
.lph-idframe {
  position: relative;
  margin-top: 22px;
  height: 150px;
  border-radius: 14px;
  background: #F3EFE7;
  display: grid; place-items: center;
}
.lph-corner {
  position: absolute; width: 16px; height: 16px;
  border: 2px solid var(--ink);
}
.lph-corner.tl { top: 8px; left: 8px; border-right: 0; border-bottom: 0; border-top-left-radius: 6px; }
.lph-corner.tr { top: 8px; right: 8px; border-left: 0; border-bottom: 0; border-top-right-radius: 6px; }
.lph-corner.bl { bottom: 8px; left: 8px; border-right: 0; border-top: 0; border-bottom-left-radius: 6px; }
.lph-corner.br { bottom: 8px; right: 8px; border-left: 0; border-top: 0; border-bottom-right-radius: 6px; }
.lph-idcard {
  position: relative;
  width: 72%; height: 70%;
  background: #fff; border-radius: 8px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: 0 6px 16px -8px rgba(30,22,12,0.2);
}
.lph-idline { height: 5px; border-radius: 3px; background: #E0DBCF; }
.lph-idline.w70 { width: 70%; }
.lph-idline.w50 { width: 50%; }
.lph-idphoto {
  position: absolute; right: 12px; bottom: 12px;
  width: 30px; height: 38px; border-radius: 4px;
  background: linear-gradient(160deg, #c9bea8, #a89a82);
}

/* Bank state */
.lph-banks { display: flex; flex-direction: column; gap: 8px; margin-top: 22px; }
.lph-bank {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid #EBE6DA;
  border-radius: 12px;
  padding: 11px 13px;
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.lph-bank.sel { border-color: var(--ink); }
.lph-bdot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.lph-bcheck { margin-left: auto; color: var(--ink); display: inline-flex; }

/* dots + CTA, shared bottom of screen */
.lph-dots {
  display: flex; gap: 5px; justify-content: center;
  margin-top: auto; padding-top: 16px;
}
.lph-dots span {
  width: 5px; height: 5px; border-radius: 50%; background: #d8d2c4;
}
.lph-dots span.on { background: var(--ink); }
.lph-cta {
  margin-top: 12px;
  background: var(--ink); color: #FAF9F5;
  border: 0; border-radius: 999px;
  padding: 16px 12px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  position: relative;
  letter-spacing: -0.005em;
}
.lph-cta span { display: none; }
.lph-cta span.on { display: inline; }

/* state-driven labels */
.link-stage[data-active="id"] .lph-state[data-step="id"],
.link-stage[data-active="bank"] .lph-state[data-step="bank"],
.link-stage[data-active="esign"] .lph-state[data-step="esign"] { display: flex; }
.link-stage[data-active="id"] .lph-state:not([data-step="id"]),
.link-stage[data-active="bank"] .lph-state:not([data-step="bank"]),
.link-stage[data-active="esign"] .lph-state:not([data-step="esign"]) { display: none; }

.link-stage[data-active="id"] .lph-cta span { display: none; }
.link-stage[data-active="id"] .lph-cta span[data-step="id"] { display: inline; }
.link-stage[data-active="bank"] .lph-cta span { display: none; }
.link-stage[data-active="bank"] .lph-cta span[data-step="bank"] { display: inline; }
.link-stage[data-active="esign"] .lph-cta span { display: none; }
.link-stage[data-active="esign"] .lph-cta span[data-step="esign"] { display: inline; }

@media (max-width: 1100px) {
  .link-phone { width: 220px; top: -110px; }
  .link-panel { padding: 40px 36px; min-height: 520px; }
  .link-photo { min-height: 520px; }
}
@media (max-width: 760px) {
  .link-stage { grid-template-columns: 1fr; margin-top: 32px; gap: 16px; }
  .link-panel { min-height: 0; padding: 36px 28px 30px; }
  .link-photo { min-height: 280px; }
  .link-phone {
    position: relative;
    left: auto; top: auto;
    transform: rotate(4deg);
    margin: 8px auto 0;
    width: 240px;
  }
}

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  :root { --sv-gap: 96px; }
  .sv-steps { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 760px) {
  .check-grid { grid-template-columns: 1fr; row-gap: 48px; max-width: 540px; }
  .sv-hero .sv-h1 { font-size: clamp(44px, 11vw, 60px); }
  .sv-h2 { font-size: clamp(38px, 9.4vw, 50px); max-width: 18ch; }
}

/* ---------- §Stats ticker — live activity strip ---------- */
.sv-ticker {
  background: var(--paper);
  padding: 0 0 8px;
}
.tk-wrap {
  position: relative;
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tk-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: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: var(--ink);
  white-space: nowrap;
}
.tk-head::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; right: -40px;
  width: 40px;
  background: linear-gradient(to right, var(--paper), rgba(250,249,245,0));
  pointer-events: none;
}
.tk-spin {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  border-top-color: transparent;
  animation: tkSpin 1.1s linear infinite;
}
@keyframes tkSpin { to { transform: rotate(360deg); } }
.tk-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%);
}
.tk-marquee {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tkMarquee 60s linear infinite;
}
.tk-wrap:hover .tk-marquee { animation-play-state: paused; }
@keyframes tkMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.tk-set { display: flex; align-items: center; flex-shrink: 0; }
.tk-stat {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  padding: 0 28px;
}
.tk-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.085em;
  color: var(--muted);
  white-space: nowrap;
}
.tk-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;
}

/* ---------- §Reviews — two-up customer quotes with dot pager ---------- */
.sv-reviews {
  background: var(--paper);
  padding-top: clamp(20px, 2.5vw, 40px);
  padding-bottom: clamp(48px, 5vw, 80px);
}
.rev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 32px);
  position: relative;
}
.rev-grid::before { display: none; }
.rev-card {
  display: flex;
  flex-direction: column;
  padding: clamp(36px, 4vw, 56px) clamp(32px, 3.6vw, 52px);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(20, 17, 13, 0.07), 0 30px 60px -40px rgba(40, 30, 15, 0.18);
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.rev-card::before {
  content: "“";
  position: absolute;
  top: -28px;
  left: clamp(20px, 2.8vw, 36px);
  font-family: var(--serif);
  font-size: 180px;
  line-height: 1;
  color: rgba(20, 17, 13, 0.05);
  pointer-events: none;
  z-index: 0;
}

.rev-logo {
  display: flex;
  align-items: center;
  margin-bottom: clamp(28px, 3vw, 40px);
  position: relative;
  z-index: 1;
}
.rev-quote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 420;
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: pretty;
  max-width: 42ch;
  position: relative;
  z-index: 1;
  flex: 1;
}
.rev-by {
  margin-top: auto;
  padding-top: clamp(24px, 3vw, 36px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.rev-by::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(20, 17, 13, 0.18);
  margin-right: 4px;
}
  gap: 0;
  position: relative;
}
.rev-grid::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(20,17,13,0.08);
}
.rev-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 48px) clamp(28px, 4vw, 64px);
  min-height: 360px;
}

.rev-logo {
  display: flex;
  align-items: center;
  height: 28px;
  margin-bottom: clamp(28px, 3.4vw, 44px);
}
.rev-quote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.008em;
  color: var(--ink);
  text-wrap: pretty;
  max-width: 52ch;
}
.rev-by {
  margin-top: auto;
  padding-top: clamp(32px, 4vw, 56px);
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}
.rev-by .rev-name { font-weight: 500; color: var(--ink); }
.rev-by .rev-role::before { content: "·"; padding-right: 6px; color: rgba(20,17,13,0.3); }

.rev-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 28px);
  margin-top: clamp(36px, 4vw, 56px);
}
.rev-pager { display: none; }
.rev-arrow {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(20,17,13,0.14);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.rev-arrow:hover {
  background: rgba(20,17,13,0.04);
  border-color: rgba(20,17,13,0.24);
}
.rev-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rev-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(20,17,13,0.16);
  transition: background .15s ease, transform .15s ease;
}
.rev-dots span.on {
  background: var(--ink);
  transform: scale(1.3);
}

@media (max-width: 760px) {
  .rev-grid { grid-template-columns: 1fr; gap: 14px; }
  .rev-card { padding: 32px 24px; min-height: auto; border-radius: 18px; }
  .rev-card + .rev-card { border-top: 0; }
  .rev-by { padding-top: 22px; }
}

/* ---------- §Reviews — auto-rotating carousel with metric chip ---------- */
.rev-deck { position: relative; }
.rev-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s cubic-bezier(.2,.7,.2,1);
}
.rev-slide.is-active { opacity: 1; visibility: visible; position: relative; z-index: 1; }
.rev-slide:not(.is-active) { position: absolute; inset: 0; pointer-events: none; }

.rev-metric {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 0;
  margin-bottom: clamp(20px, 2.4vw, 32px);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
  z-index: 1;
}
  gap: 10px;
  margin-bottom: clamp(18px, 2vw, 28px);
  padding: 6px 12px 8px;
  border-radius: 8px;
  background: rgba(20,17,13,0.04);
  align-self: flex-start;
  overflow: hidden;
}
.rev-metric-n,
.rev-metric-l { display: inline-block; }
.rev-slide.is-active .rev-metric-n,
.rev-slide.is-active .rev-metric-l {
  animation: revMetricIn .65s cubic-bezier(.2,.7,.2,1) both;
}
.rev-slide.is-active .rev-metric-n { animation-delay: 0.05s; }
.rev-slide.is-active .rev-metric-l { animation-delay: 0.28s; }
@keyframes revMetricIn {
  from { opacity: 0; transform: translateY(12px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .rev-slide.is-active .rev-metric-n,
  .rev-slide.is-active .rev-metric-l { animation: none; opacity: 1; transform: none; filter: none; }
}
.rev-metric-n {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(56px, 5.4vw, 76px); line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  letter-spacing: -0.022em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.rev-metric-u {
  font-family: var(--serif); font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 380; color: var(--muted);
  letter-spacing: -0.015em;
  margin-left: 2px;
}
.rev-metric-l {
  display: block !important;
  font-size: 13.5px; color: var(--muted);
  letter-spacing: -0.005em;
  margin-top: 8px;
  max-width: 22ch;
  line-height: 1.4;
}

/* show the pager now that it's wired */
.rev-pager { display: flex !important; }
.rev-dot {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0; padding: 0;
  background: rgba(20,17,13,0.16);
  cursor: pointer;
  overflow: hidden;
  transition: background .15s ease, transform .15s ease, width .35s cubic-bezier(.2,.7,.2,1);
}
.rev-dot:hover { background: rgba(20,17,13,0.32); }
.rev-dot.is-on {
  background: rgba(20,17,13,0.16);
  width: 36px;
  border-radius: 999px;
}
.rev-dot.is-on::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 0;
  background: var(--ink);
  border-radius: inherit;
  animation: revFill 7s linear forwards;
}
.rev-deck:hover ~ .rev-pager .rev-dot.is-on::before,
.rev-pager:hover .rev-dot.is-on::before { animation-play-state: paused; }
@keyframes revFill {
  to { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .rev-dot.is-on::before { animation: none; background: var(--ink); transform: none; }
}

/* arrows: subtle nudge on hover */
.rev-arrow svg { transition: transform .2s cubic-bezier(.2,.7,.2,1); }
.rev-arrow[data-rev-prev]:hover svg { transform: translateX(-2px); }
.rev-arrow[data-rev-next]:hover svg { transform: translateX(2px); }
.rev-logos {
  margin-top: clamp(36px, 4vw, 56px);
  padding-top: 0;
  border-top: 0;
}
.rev-logos .logo-marquee {
  overflow: hidden;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.rev-logos .logo-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: revLogoScroll 42s linear infinite;
}
.rev-logos .logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes revLogoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.rev-logos .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 168px;
  height: 64px;
  padding: 0 24px;
  border: 1px solid rgba(20,17,13,0.10);
  border-radius: 14px;
  background: var(--paper);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.018em;
  color: #b3a89b;
  transition: color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.rev-logos .logo svg { flex-shrink: 0; }
.rev-logos .logo:hover {
  color: var(--ink);
  border-color: rgba(20,17,13,0.22);
  box-shadow: 0 10px 26px -14px rgba(60,48,30,0.18);
  transform: translateY(-2px);
}

/* ---------- §Export to CRM — developer section, animated dark bg ---------- */
.sv-dev {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0B0907;
  border-radius: 36px;
  margin: clamp(40px, 5vw, 80px) clamp(16px, 4vw, 56px);
}
.dev-stars {
  position: absolute; inset: 0; z-index: -2;
  overflow: hidden; pointer-events: none;
}
.dev-star {
  position: absolute;
  width: 3px; height: 3px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 7px 1px rgba(255,255,255,0.8);
  opacity: 0;
}
.dev-star::after {
  content: ""; position: absolute; top: 50%; left: 2px;
  width: 130px; height: 1px; transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(255,255,255,0.7), rgba(255,255,255,0));
}
.dev-star:nth-child(1) { top: 6%;  left: 72%; animation: devShoot 3.6s linear infinite; animation-delay: 0s; }
.dev-star:nth-child(2) { top: 2%;  left: 46%; animation: devShoot 4.4s linear infinite; animation-delay: 1.3s; }
.dev-star:nth-child(3) { top: 16%; left: 90%; animation: devShoot 3.1s linear infinite; animation-delay: 2.2s; }
.dev-star:nth-child(4) { top: 30%; left: 62%; animation: devShoot 5s   linear infinite; animation-delay: 0.7s; }
.dev-star:nth-child(5) { top: 9%;  left: 28%; animation: devShoot 4s   linear infinite; animation-delay: 3.1s; }
@keyframes devShoot {
  0%   { opacity: 0; transform: translate(0, 0) rotate(-42deg); }
  6%   { opacity: 1; }
  72%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-540px, 460px) rotate(-42deg); }
}
.sv-dev::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(38% 48% at 22% 26%, rgba(232,138,86,0.18), transparent 70%),
    radial-gradient(44% 54% at 82% 74%, rgba(92,138,232,0.15), transparent 72%);
  animation: devGlow 15s ease-in-out infinite alternate;
}
@keyframes devGlow {
  from { opacity: 0.55; transform: translate3d(-2%, 0, 0); }
  to   { opacity: 1; transform: translate3d(2%, -12px, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .sv-dev::after, .dev-star { animation: none; }
  .dev-star { opacity: 0; }
}

.dev-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.dev-eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #8DD7A4;
  box-shadow: 0 0 0 0 rgba(141,215,164,0.6);
  animation: devPulse 2s ease-out infinite;
}
@keyframes devPulse {
  0% { box-shadow: 0 0 0 0 rgba(141,215,164,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(141,215,164,0); }
  100% { box-shadow: 0 0 0 0 rgba(141,215,164,0); }
}
.sv-dev .sv-h2 { color: #fff; }
.sv-dev .sv-h2 em { color: #F3B98C; }
.sv-dev .sv-sub { color: rgba(255,255,255,0.68); }
.sv-dev .ex-term {
  box-shadow:
    0 50px 100px -44px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.07),
    0 0 60px -20px rgba(232,138,86,0.25);
  background: rgba(22,19,15,0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.sv-dev .ex-logo { color: rgba(255,255,255,0.52); }
.sv-dev .ex-logo:hover { opacity: 1; color: #fff; }
.sv-dev .ex-foot-link {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.sv-dev .ex-foot-link:hover { border-color: #fff; }

/* ---------- §Export to CRM — simple, editorial ---------- */
.sv-export .wrap { max-width: 1080px; }
.sv-export .sv-head { margin-bottom: clamp(40px, 4vw, 56px); }

.ex-term {
  background: #16130F;
  border-radius: 18px;
  overflow: hidden;
  margin: 0 auto clamp(56px, 5vw, 80px);
  max-width: 760px;
  box-shadow:
    0 40px 80px -40px rgba(20,17,13,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}
.ex-term-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: #0F0D0A;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ex-term-dots { display: inline-flex; gap: 7px; }
.ex-term-dot {
  width: 11px; height: 11px; border-radius: 50%;
  display: inline-block;
}
.ex-term-title {
  font-family: var(--mono); font-size: 11.5px;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.04em;
}
.ex-term-meta {
  margin-left: auto;
  font-family: var(--mono); font-size: 10.5px;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ex-term-body {
  margin: 0;
  padding: 22px 26px 24px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  white-space: pre-wrap;
  overflow-x: auto;
  tab-size: 2;
}
.ex-term-body .t-mut { color: rgba(255,255,255,0.36); font-style: italic; }
.ex-term-body .t-fn  { color: #FFB266; font-weight: 600; }
.ex-term-body .t-key { color: #B6CFF1; }
.ex-term-body .t-str { color: #C6D9A8; }
.ex-term-body .t-num { color: #E8C99B; }
.ex-term-body .t-acc { color: #8DD7A4; font-weight: 600; }

@media (max-width: 620px) {
  .ex-term-body { font-size: 11.5px; padding: 18px 18px 20px; }
  .ex-term-meta { display: none; }
}

.ex-logos { position: relative; }
.ex-logos-nav { display: none; }
.ex-logos-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
  align-items: stretch;
}
.ex-logos-cap {
  text-align: center;
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 clamp(20px, 2vw, 28px);
}
.ex-logo {
  display: flex; align-items: center; justify-content: center;
  height: 66px;
  border: 1px solid rgba(20,17,13,0.12);
  border-radius: 14px;
  background: var(--paper);
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 460;
  color: var(--ink);
  letter-spacing: -0.015em;
  opacity: 1;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.ex-logo:hover {
  border-color: rgba(20,17,13,0.24);
  box-shadow: 0 12px 28px -16px rgba(60,48,30,0.22);
  transform: translateY(-2px);
}

.ex-foot {
  margin: clamp(48px, 5vw, 72px) 0 0;
  text-align: center;
}
.ex-foot-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--serif);
  font-size: 17px; font-weight: 460;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(20,17,13,0.18);
  padding-bottom: 4px;
  transition: gap .2s ease, border-color .2s ease;
}
.ex-foot-link:hover { gap: 12px; border-color: var(--ink); }

@media (max-width: 760px) {
  .ex-logos-row { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- §How it works — Claude-style centered + rows ---------- */
.sv-howc { background: #F6F3EC; padding-top: clamp(120px, 12vw, 200px); }
.sv-howc .sv-head { margin-bottom: clamp(40px, 4vw, 64px); }
.sv-howc .wrap { max-width: 1320px; }
.howc-hero { text-align: center; padding-bottom: clamp(48px, 5vw, 80px); }
.howc-spot { display: inline-flex; margin-bottom: 28px; color: var(--ink); }
.howc-spot svg { display: block; }
.howc-h2 {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(48px, 5.6vw, 84px);
  line-height: 1.02; letter-spacing: -0.025em;
  color: var(--ink); text-wrap: balance;
  max-width: 18ch; margin: 0 auto;
}
.howc-sub {
  margin-top: 22px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.45; color: var(--muted);
  text-wrap: balance;
}
.howc-sub a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .15s ease;
}
.howc-sub a:hover { color: var(--ink); }

.howc-cards { display: none; }

/* sticky-scroll layout */
.howc-scroll {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
}
.howc-copy-col {
  display: flex; flex-direction: column;
}
.howc-step-copy {
  min-height: 90vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 5vh 0;
  opacity: 0.35;
  transition: opacity .5s ease;
}
.howc-step-copy.is-active { opacity: 1; }
.howc-stepnum {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 28px;
}
.howc-step-copy h3 {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(30px, 2.8vw, 40px);
  line-height: 1.05; letter-spacing: -0.022em;
  color: var(--ink); margin: 0;
}
.howc-step-copy p {
  margin: 22px 0 0;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5; color: var(--ink-soft);
  max-width: 34ch;
}

.howc-vis-col {
  position: relative;
}
.howc-m-panel { display: none; }
@media (prefers-reduced-motion: reduce) {
  .howc-m-text { transition: opacity .2s ease; transform: none !important; }
  .howc-m-dot::after { transition: none; }
}
.howc-vis-sticky {
  position: sticky;
  top: var(--nav-h, 134px);
  height: calc(100vh - var(--nav-h, 134px));
  display: flex;
  align-items: center;
  justify-content: center;
}
.howc-vis-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 1 / 1.05;
  margin: 0 auto;
  border-radius: 22px;
  background: #9fb0b8 url("howc-bg4.png") center top / cover no-repeat;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
}
.howc-vis-slide {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center; justify-content: center;
  padding: 0;
  pointer-events: none;
}
.howc-vis-slide.is-active {
  display: flex;
  pointer-events: auto;
}

/* visual 1 — share link as iMessage thread */
.howc-share-stack {
  width: 86%;
  display: flex; flex-direction: column; gap: 14px;
}
.hsx-row { display: flex; }
.hsx-row-them { justify-content: flex-start; }
.hsx-row-me { justify-content: flex-end; }
.hsx-bubble {
  max-width: 78%;
  padding: 14px 20px;
  border-radius: 26px;
  background: rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  box-shadow:
    0 8px 26px -12px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.18);
}
.hsx-bubble-me {
  background: rgba(10,132,255,0.42);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  color: #fff;
  box-shadow:
    0 8px 26px -12px rgba(10,132,255,0.5),
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.22);
}
.hsx-linkcard {
  display: flex;
  width: 94%;
  background: rgba(255,255,255,0.13);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  box-shadow:
    0 16px 40px -20px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.16);
}
.hsx-linkcard-art {
  flex: 0 0 100px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.14);
  color: #fff;
}
.hsx-linkcard-body { padding: 18px 22px; min-width: 0; flex: 1; }
.hsx-linkcard-domain {
  font-family: var(--mono);
  font-size: 13px; color: rgba(255,255,255,0.65);
  text-transform: lowercase;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.hsx-linkcard-title {
  font-family: var(--serif);
  font-size: 20px; line-height: 1.22; color: #fff;
  font-weight: 500; letter-spacing: -0.012em;
  text-wrap: balance;
  margin-bottom: 8px;
}
.hsx-linkcard-meta {
  font-size: 13.5px; color: rgba(255,255,255,0.65);
}
.hsx-typing {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 14px 18px; border-radius: 26px;
  background: rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
  align-self: flex-start;
  box-shadow:
    0 8px 26px -12px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.18);
}
.hsx-typing span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.7);
  animation: hsxBlink 1.4s ease-in-out infinite;
}
.hsx-typing span:nth-child(2) { animation-delay: 0.2s; }
.hsx-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes hsxBlink { 0%,80%,100% { opacity: 0.25; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-2px); } }

/* visual 2 — phone screen with screening flow */
.howc-phone {
  position: relative;
  width: 336px;
  max-width: 86%;
  background: transparent;
  border-radius: 28px;
}
.hp-notch { display: none; }
.hp-home { display: none; }
.hp-status { display: none; }
.hp-screen {
  background: rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  backdrop-filter: blur(26px) saturate(150%);
  border-radius: 24px;
  padding: 24px 22px 26px;
  box-shadow:
    0 36px 70px -32px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.16);
}
/* ===== glass light-text overrides for ID-scan + report screens ===== */
.hp-screen .hp-brand,
.hp-screen .hp-title { color: #fff; }
.hp-screen .hp-eyebrow,
.hp-screen .hp-sub,
.hp-screen .hp-progress-label,
.hp-screen .hp-trust { color: rgba(255,255,255,0.7); }
.hp-screen .hp-back,
.hp-screen .hp-secure {
  background: rgba(255,255,255,0.16);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
.hp-screen .hp-progress-bar { background: rgba(255,255,255,0.18); }

.howc-report-pro .hrp-ribbon {
  background: rgba(255,255,255,0.08);
  border-bottom-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
}
.howc-report-pro .hrp-rid,
.howc-report-pro .hrp-who b,
.howc-report-pro .hrp-dial-n,
.howc-report-pro .hrp-score-headline,
.howc-report-pro .hrp-cell-v b { color: #fff; }
.howc-report-pro .hrp-who span,
.howc-report-pro .hrp-score-label,
.howc-report-pro .hrp-score-note,
.howc-report-pro .hrp-cell-l,
.howc-report-pro .hrp-cell-src,
.howc-report-pro .hrp-cell-band { color: rgba(255,255,255,0.66); }
.howc-report-pro .hrp-head,
.howc-report-pro .hrp-score,
.howc-report-pro .hrp-grid,
.howc-report-pro .hrp-cell { border-color: rgba(255,255,255,0.14); }
.howc-report-pro .hrp-cell-band { background: rgba(255,255,255,0.1); }

.hp-topline {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.hp-back, .hp-secure {
  width: 26px; height: 26px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(20,17,13,0.05);
  color: var(--ink);
  flex-shrink: 0;
}
.hp-brand {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.005em;
}
.hp-brand-dot {
  width: 14px; height: 14px; border-radius: 4px;
  background: linear-gradient(135deg, #1F4D2E, #2B7A3F);
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.12);
}
.hp-progress {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.hp-progress-bar {
  flex: 1; height: 4px; border-radius: 99px;
  background: rgba(20,17,13,0.08);
  overflow: hidden;
}
.hp-progress-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, #1F4D2E, #2B7A3F);
  border-radius: 99px;
}
.hp-progress-label {
  font-family: var(--mono);
  font-size: 10.5px; color: var(--muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.hp-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.hp-title {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 22px; font-weight: 480; letter-spacing: -0.018em;
  color: var(--ink);
}
.hp-sub {
  margin: 0 0 16px;
  font-size: 12.5px; line-height: 1.4; color: var(--muted);
}
/* ID scan visual inside phone */
.hp-scanner {
  position: relative;
  margin: 4px 0 14px;
  padding: 18px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1a1816 0%, #221F1B 100%);
  overflow: hidden;
}
.hp-id {
  position: relative;
  background: linear-gradient(180deg, #F5F0E2 0%, #E7DFC9 100%);
  border-radius: 9px;
  padding: 9px 11px 7px;
  box-shadow: 0 8px 20px -10px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(0,0,0,0.05);
  color: #2A2620;
}
.hp-id-head {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 7px;
  border-bottom: 1px dashed rgba(0,0,0,0.18);
  margin-bottom: 9px;
}
.hp-id-region {
  font-family: var(--mono);
  font-size: 8px; font-weight: 600; letter-spacing: 0.08em;
  color: #6B5E48;
}
.hp-id-body { display: flex; gap: 10px; align-items: center; }
.hp-id-photo {
  width: 38px; height: 46px;
  border-radius: 4px;
  background: linear-gradient(180deg, #DAD2BA 0%, #C3B999 100%);
  display: inline-flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}
.hp-id-fields { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.hp-id-row { display: flex; flex-direction: column; gap: 1px; }
.hp-id-row span {
  font-family: var(--mono);
  font-size: 7.5px; font-weight: 600; letter-spacing: 0.1em;
  color: #8C7F66;
}
.hp-id-row b {
  font-size: 11px; font-weight: 600; letter-spacing: -0.005em;
  color: #2A2620;
}
.hp-id-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hp-id-row-grid > div { display: flex; flex-direction: column; gap: 1px; }
.hp-id-barcode {
  display: flex; gap: 2px;
  margin-top: 9px; padding-top: 7px;
  border-top: 1px dashed rgba(0,0,0,0.18);
  height: 14px;
}
.hp-id-barcode span {
  flex: 1; background: #2A2620;
  border-radius: 0.5px;
}
.hp-id-barcode span:nth-child(2n) { opacity: 0.4; }
.hp-id-barcode span:nth-child(3n) { opacity: 0.7; }
.hp-id-barcode span:nth-child(5n) { opacity: 0.25; }
.hp-id-barcode span:nth-child(7n) { opacity: 1; }

.hp-scan-frame {
  position: absolute;
  inset: 8px;
  pointer-events: none;
}
.hp-scan-corner {
  position: absolute;
  width: 16px; height: 16px;
  border: 2px solid #2B7A3F;
}
.hp-scan-tl { top: 0; left: 0; border-right: 0; border-bottom: 0; border-top-left-radius: 4px; }
.hp-scan-tr { top: 0; right: 0; border-left: 0; border-bottom: 0; border-top-right-radius: 4px; }
.hp-scan-bl { bottom: 0; left: 0; border-right: 0; border-top: 0; border-bottom-left-radius: 4px; }
.hp-scan-br { bottom: 0; right: 0; border-left: 0; border-top: 0; border-bottom-right-radius: 4px; }
.hp-scan-line {
  position: absolute;
  left: 6px; right: 6px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #2B7A3F 50%, transparent 100%);
  box-shadow: 0 0 8px rgba(43,122,63,0.7);
  animation: hpScanSweep 2.4s ease-in-out infinite;
}
@keyframes hpScanSweep {
  0%, 100% { top: 8%; }
  50% { top: 86%; }
}

.hp-detect {
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 12px;
  font-size: 11.5px; color: #2B7A3F;
  font-weight: 500;
}
.hp-detect-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #2B7A3F;
  box-shadow: 0 0 0 0 rgba(43,122,63,0.6);
  animation: hpPulse 1.6s ease-out infinite;
}
@keyframes hpPulse {
  0% { box-shadow: 0 0 0 0 rgba(43,122,63,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(43,122,63,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,122,63,0); }
}
.hp-trust {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 12px;
  font-size: 10.5px; color: var(--muted);
  letter-spacing: -0.002em;
}

/* visual 3 — pro report card */
.howc-report-pro {
  width: 100%;
  background: rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  backdrop-filter: blur(26px) saturate(150%);
  border-radius: 22px;
  padding: 0;
  box-shadow:
    0 28px 60px -28px rgba(0,0,0,0.62),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.16);
  overflow: hidden;
}
.hrp-ribbon {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: #FBF9F4;
  border-bottom: 1px solid rgba(20,17,13,0.06);
  font-family: var(--mono);
  font-size: 10.5px; color: var(--muted);
  letter-spacing: 0.06em;
}
.hrp-rid { font-weight: 600; color: var(--ink); letter-spacing: 0.08em; }
.hrp-rsep { opacity: 0.5; }
.hrp-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 20px 22px 18px;
  border-bottom: 1px solid rgba(20,17,13,0.07);
}
.hrp-applicant { display: flex; align-items: center; gap: 12px; min-width: 0; }
.hrp-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: #fff;
  font-size: 13.5px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hrp-who { display: flex; flex-direction: column; min-width: 0; }
.hrp-who b { font-size: 15.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.008em; }
.hrp-who span { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.hrp-chip {
  font-family: var(--mono);
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  padding: 6px 10px; border-radius: 999px;
  background: #E6F1E2; color: #1F5430;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(43,122,63,0.18);
}

.hrp-score {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 22px;
  border-bottom: 1px solid rgba(20,17,13,0.07);
}
.hrp-dial {
  position: relative;
  width: 88px; height: 88px;
  flex-shrink: 0;
}
.hrp-dial svg { width: 100%; height: 100%; }
.hrp-dial-n {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 28px; font-weight: 460;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hrp-score-meta { flex: 1; min-width: 0; }
.hrp-score-label {
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hrp-score-headline {
  font-family: var(--serif);
  font-size: 22px; font-weight: 460; letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 6px;
}
.hrp-score-note {
  font-size: 12.5px; line-height: 1.45; color: var(--muted);
  text-wrap: pretty;
}

.hrp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(20,17,13,0.07);
}
.hrp-cell {
  padding: 16px 20px;
  border-right: 1px solid rgba(20,17,13,0.07);
  border-bottom: 1px solid rgba(20,17,13,0.07);
}
.hrp-cell:nth-child(2n) { border-right: 0; }
.hrp-cell:nth-last-child(-n+2) { border-bottom: 0; }
.hrp-cell-h {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.hrp-cell-l {
  font-size: 11.5px; font-weight: 500; color: var(--muted);
  letter-spacing: -0.005em;
}
.hrp-cell-src {
  font-family: var(--mono);
  font-size: 9.5px; color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hrp-cell-v {
  display: flex; align-items: baseline; gap: 8px;
}
.hrp-cell-v b {
  font-family: var(--serif);
  font-size: 24px; font-weight: 460;
  letter-spacing: -0.022em;
  color: var(--ink);
  line-height: 1;
}
.hrp-cell-band {
  font-size: 10.5px; font-weight: 500;
  padding: 2px 7px; border-radius: 999px;
  background: rgba(20,17,13,0.05);
  color: var(--muted);
}
.hrp-band-good { background: #E6F1E2; color: #1F5430; }
.hrp-cell-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #E6F1E2;
}
.hrp-spark {
  height: 22px; margin-top: 8px;
}
.hrp-spark svg { width: 100%; height: 100%; display: block; overflow: visible; }
.hrp-spark polyline:nth-child(1) {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
}
.howc-vis-slide.is-active .hrp-spark polyline:nth-child(1) {
  animation: hrpSparkDraw 1.6s cubic-bezier(.22,.8,.3,1) forwards;
}
.hrp-spark polyline:nth-child(2) { opacity: 0; }
.howc-vis-slide.is-active .hrp-spark polyline:nth-child(2) {
  animation: hrpSparkFill .8s ease 1.2s forwards;
}
@keyframes hrpSparkDraw { to { stroke-dashoffset: 0; } }
@keyframes hrpSparkFill { to { opacity: 1; } }
.hrp-deposits {
  display: flex; align-items: flex-end; gap: 4px;
  height: 22px; margin-top: 8px;
}
.hrp-deposits span {
  flex: 1;
  background: linear-gradient(180deg, #2B7A3F 0%, #1F5430 100%);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: bottom;
}
.howc-vis-slide.is-active .hrp-deposits span {
  animation: hrpBarGrow .7s cubic-bezier(.2,.7,.2,1) forwards;
}
.howc-vis-slide.is-active .hrp-deposits span:nth-child(1) { animation-delay: .15s; }
.howc-vis-slide.is-active .hrp-deposits span:nth-child(2) { animation-delay: .25s; }
.howc-vis-slide.is-active .hrp-deposits span:nth-child(3) { animation-delay: .35s; }
.howc-vis-slide.is-active .hrp-deposits span:nth-child(4) { animation-delay: .45s; }
.howc-vis-slide.is-active .hrp-deposits span:nth-child(5) { animation-delay: .55s; }
.howc-vis-slide.is-active .hrp-deposits span:nth-child(6) { animation-delay: .65s; }
@keyframes hrpBarGrow { to { transform: scaleY(1); } }
.hrp-dial svg circle:nth-of-type(2) {
  stroke-dashoffset: 213.6;
}
.howc-vis-slide.is-active .hrp-dial svg circle:nth-of-type(2) {
  animation: hrpDial 1.4s cubic-bezier(.22,.8,.3,1) forwards;
}
@keyframes hrpDial { to { stroke-dashoffset: 29.9; } }
.hrp-dial-n {
  opacity: 0;
}
.howc-vis-slide.is-active .hrp-dial-n {
  animation: hrpDialN .6s ease 1s forwards;
}
@keyframes hrpDialN { to { opacity: 1; } }
.hrp-meta {
  margin-top: 8px;
  font-size: 11px; color: var(--muted);
  letter-spacing: -0.002em;
}

.hrp-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: #FBF9F4;
}
.hrp-foot-l {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; color: var(--muted);
}
.hrp-foot-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #2B7A3F;
  box-shadow: 0 0 0 3px rgba(43,122,63,0.18);
}
.hrp-actions { display: inline-flex; gap: 8px; }
.hrp-act {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 12px; border-radius: 8px;
  font-size: 12px; font-weight: 500;
  border: 0; cursor: pointer;
  letter-spacing: -0.005em;
}
.hrp-act-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(20,17,13,0.12);
}
.hrp-act-primary {
  background: var(--ink);
  color: #fff;
}

@media (max-width: 900px) {
  .howc-scroll { display: block; }
  .howc-scroll > .howc-copy-col,
  .howc-scroll > .howc-vis-col { grid-area: auto; }
  .howc-copy-col { width: auto; pointer-events: auto; }
  .howc-step-copy { min-height: auto; padding: 24px 0; opacity: 1; }
  .howc-vis-col { position: relative; top: auto; height: auto; z-index: auto; order: -1; }
  .howc-vis-sticky { position: relative; top: auto; transform: none; max-width: 480px; margin: 0 auto; }
  .howc-vis-frame::before { display: none; }
  .howc-vis-slide { justify-content: center; padding: 0; }
}

/* =====================================================================
   ============== GLOBAL RESPONSIVE PASS — page-wide ==================
   ===================================================================== */

/* ---- Tablet (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .wrap { padding: 0 clamp(20px, 4vw, 40px); }
  :root { --sv-gap: clamp(64px, 8vw, 96px); }

  /* type — cap display sizes */
  .sv-h2 { font-size: clamp(38px, 5.6vw, 60px); }
  .sv-sub { font-size: clamp(17px, 1.9vw, 21px); }
  .sv-hero .sv-h1 { font-size: clamp(56px, 9vw, 96px); }

  /* nav */
  header.site nav { gap: 14px; }
  .subnav .wrap { height: 44px; }

  /* major 2-col grids → stack */
  .snaps-split,
  .platform-grid,
  .diff-stats,
  .check-grid,
  .quote-grid,
  .pl-ways {
    grid-template-columns: 1fr !important;
    gap: clamp(32px, 5vw, 48px) !important;
    align-items: stretch !important;
  }
  .snaps-beige { height: clamp(430px, 52vw, 520px); }

  /* pricing 3-up → 1-col stack */
  .pricing-tiers { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .pt-card.is-featured { transform: none; }

  /* outcome cards */
  .oc-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }

  /* export logos 8→4 wraps */
  .ex-logos-row { grid-template-columns: repeat(4, 1fr); }

  /* trust strip */
  .sv-trust { gap: clamp(20px, 3vw, 36px); flex-wrap: wrap; }

  /* differentiator wide cards */
  .diff-calc-mini { padding: clamp(28px, 4vw, 44px); }

  /* iframe-based orchestration */
  .snaps-split .snaps-orch { height: 100%; }
}

/* ---- Mobile (≤ 720px) ---- claude.com-style: restraint, breathing room, single column */
@media (max-width: 720px) {
  .wrap { padding: 0 22px; max-width: 100%; }
  :root { --sv-gap: 88px; }

  html, body { overflow-x: clip; }
  body { width: 100%; }
  * { min-width: 0; }
  img, iframe, video, svg { max-width: 100%; height: auto; }

  /* ============ TYPE ============ */
  .sv-hero .sv-h1 {
    font-size: 52px;
    line-height: 1.0;
    letter-spacing: -0.028em;
    max-width: none;
    text-wrap: balance;
  }
  .sv-h2 {
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -0.022em;
    max-width: none;
    text-wrap: balance;
  }
  .sv-sub {
    font-size: 17px;
    line-height: 1.5;
    max-width: none;
    margin-top: 18px;
  }
  .sv-hero .sv-sub { font-size: 18px; margin-top: 26px; }

  /* ============ SECTION RHYTHM ============ */
  .sv { padding-top: var(--sv-gap); padding-bottom: var(--sv-gap); }
  .sv-hero { padding-top: 56px; padding-bottom: 0; }
  .sv-howc, .sv-diff { padding-top: 80px; }
  .sv-howc .sv-head { margin-bottom: 56px; }

  /* ============ HEADS — always left-aligned on mobile ============ */
  .sv-head {
    text-align: left !important;
    align-items: flex-start !important;
    margin-bottom: 32px;
  }
  .sv-head .sv-h2,
  .sv-head .sv-sub {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .sv-head.is-split {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
    align-items: flex-start !important;
  }
  .sv-head.is-split .sv-sub { border-left: 0; padding-left: 0; }

  /* ============ NAV ============ */
  header.site nav { gap: 10px; padding: 14px 0; }
  header.site .brand { font-size: 18px; }
  header.site nav > a:not(.brand),
  header.site nav > button:not(.brand):not([class*="cta"]) { display: none; }
  .subnav { display: none; }

  /* ============ HERO ACTIONS — side by side ============ */
  .sv-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    margin-top: 32px !important;
  }
  .sv-actions a,
  .sv-actions button {
    flex: 1 1 0;
    width: auto;
    justify-content: center;
    padding: 19px 28px;
    font-size: 17px;
    border-radius: 999px;
  }
  .sv-microline { justify-content: flex-start; margin-top: 22px; font-size: 12.5px; }

  /* ============ HERO PEEK — simple rounded card ============ */
  .sv-product.is-peek { padding: 0 22px; margin-top: 48px; }
  .sv-product.is-peek .peek-stage { padding: 0; display: block; }
  .sv-product.is-peek .peek-snap,
  .sv-product.is-peek .orch-frame {
    height: 360px !important;
    min-height: 360px !important;
    width: 100% !important;
    border-radius: 18px;
    margin: 0 !important;
  }

  /* ============ REVIEWS ============ */
  .rev-deck { padding: 0; border-radius: 0; }
  .rev-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .rev-card { padding: 32px 26px; border-radius: 18px; min-height: 0 !important; }
  .rev-card::before { font-size: 120px; top: -16px; }
  .rev-metric-n { font-size: 56px !important; }
  .rev-metric-u { font-size: 26px !important; }
  .rev-metric-l { font-size: 13px; }
  .rev-quote { font-size: 18px; line-height: 1.42; }
  .rev-dots { gap: 8px; margin-top: 24px; }

  /* ============ HOW IT WORKS — mobile pinned panel + scrub ============ */
  .howc-scroll {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    align-items: stretch;
    position: relative;
  }
  /* the panel: image + progress + sliding step text, pinned together */
  .howc-vis-col {
    display: flex;
    flex-direction: column;
    order: -1;
    position: sticky;
    top: var(--nav-h, 72px);
    z-index: 2;
    align-self: stretch;
    height: calc(100svh - var(--nav-h, 72px));
    padding: 28px 0 14px;
    background: transparent;
    contain: none;
  }
  .howc-vis-sticky {
    position: static !important;
    top: auto !important;
    height: auto !important;
    transform: none !important;
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    contain: none !important;
  }
  .howc-vis-frame {
    position: relative !important;
    flex: 0 0 50vh;
    min-height: 0;
    height: 50vh !important;
    max-height: 50vh !important;
    aspect-ratio: auto !important;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  .howc-vis-slide { position: absolute !important; }
  .howc-vis-slide > * { max-height: 100% !important; }

  /* ---- condense the rich step mocks so they render legibly on mobile ---- */
  /* report: keep applicant + score + two key metrics; drop secondary detail */
  .howc-report-pro { width: 100% !important; }
  .hrp-rsep, .hrp-rdate,
  .hrp-spark, .hrp-deposits,
  .hrp-score-note,
  .hrp-foot,
  .hrp-cell:nth-child(3),
  .hrp-cell:nth-child(4) { display: none !important; }
  .hrp-grid { grid-template-columns: 1fr 1fr !important; }
  .hrp-ribbon { padding-top: 14px !important; padding-bottom: 14px !important; }

  /* share-link thread + phone: nudge up a touch so they fill the frame */
  .howc-share-stack { width: 94% !important; }

  /* progress tracker */
  .howc-m-panel { display: flex; flex-direction: column; justify-content: center; flex: 1 1 auto; min-height: 0; width: 100%; max-width: 460px; margin: 0 auto; padding: 8px 6px 0; }
  .howc-m-track { display: flex; gap: 7px; justify-content: center; margin-bottom: 16px; }
  .howc-m-dot {
    height: 4px; flex: 1 1 0; max-width: 60px; border-radius: 99px;
    background: rgba(20,17,13,0.13); position: relative; overflow: hidden;
  }
  .howc-m-dot::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit;
    background: var(--ink); transform: scaleX(0); transform-origin: left;
    transition: transform .4s ease;
  }
  .howc-m-dot.is-done::after,
  .howc-m-dot.is-active::after { transform: scaleX(1); }

  /* sliding step text — exactly one shown at a time, no overlap */
  .howc-m-textwrap { position: relative; height: 168px; overflow: hidden; }
  .howc-m-text h3 {
    font-family: var(--serif); font-weight: 480;
    font-size: 31px; line-height: 1.08; letter-spacing: -0.02em;
    color: var(--ink); margin: 0;
  }
  .howc-m-text p {
    margin: 14px auto 0; font-size: 18px; line-height: 1.5;
    color: var(--ink-soft); max-width: 32ch;
  }
  .howc-m-text {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
    text-align: center;
    opacity: 0; transform: translateY(28px);
    transition: opacity .3s ease, transform .34s cubic-bezier(.2,.7,.2,1);
    pointer-events: none;
  }
  .howc-m-text.is-active { opacity: 1; transform: none; pointer-events: auto; }
  .howc-m-text.is-above { opacity: 0; transform: translateY(-28px); }
  .howc-m-text .howc-stepnum { display: none; }

  /* real articles become invisible scroll-distance spacers behind the panel */
  .howc-copy-col { display: block; order: 0; }
  .howc-step-copy {
    min-height: 72vh !important;
    opacity: 0 !important;
    transform: none !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: none;
  }

  /* ============ A LOOK INSIDE ============ */
  .snaps-split {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }
  .snaps-copy .sv-h2 { max-width: none; }
  .snaps-copy .sv-sub { max-width: none; }
  .snaps-beige {
    height: auto;
    min-height: 360px;
    padding: 40px 12px;
    border-radius: 18px;
  }
  iframe[class*="orch"], iframe.snaps-orch {
    height: 360px !important;
    min-height: 360px !important;
  }

  /* ============ DIFFERENTIATORS ============ */
  .diff-stats {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    margin-top: 36px !important;
  }
  .ds-stat { padding: 26px 24px; border-radius: 16px; }
  .ds-stat-n { font-size: 52px; line-height: 1; }
  .ds-stat-l { font-size: 14.5px; line-height: 1.4; }
  .diff-calc-mini {
    padding: 28px 22px;
    border-radius: 18px;
    margin-top: 36px;
  }
  .dcm-vol { font-size: 32px; }
  .dc-control { grid-template-columns: 1fr !important; gap: 18px; }
  .dc-control-r { flex-direction: column-reverse; align-items: stretch; gap: 12px; }

  /* ============ OUTCOMES / WHAT YOU GET BACK ============ */
  .oc-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    max-width: none;
  }
  .oc-card {
    padding: 28px 24px;
    border-radius: 18px;
  }

  /* ============ PRICING ============ */
  .pricing-region {
    display: flex;
    width: 100%;
    max-width: 360px;
    margin: 22px auto 0;
    gap: 6px;
  }
  .pr-tab {
    flex: 1 1 0;
    justify-content: center;
    padding: 12px 10px;
    font-size: 13px;
  }
  .pricing-tiers {
    display: flex !important;
    grid-template-columns: none !important;
    max-width: none;
    gap: 14px;
    margin-top: 30px !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding-bottom: 4px;
    /* room for the "Most popular" badge that sits above the card */
    padding-top: 14px;
  }
  .pricing-tiers::-webkit-scrollbar { display: none; }
  .pt-card {
    padding: 30px 24px;
    border-radius: 18px;
    flex: 0 0 100%;
    scroll-snap-align: center;
  }
  .pt-card.is-featured { transform: none; }

  /* carousel arrows + dots, below the row */
  .pt-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 22px;
  }
  .pt-nav-arrow {
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid rgba(20,17,13,0.16); background: var(--paper);
    color: var(--ink); cursor: pointer;
    transition: background .15s ease, border-color .15s ease, opacity .15s ease;
  }
  .pt-nav-arrow:active { background: #EFEAE0; }
  .pt-nav-arrow:disabled { opacity: 0.3; cursor: default; }
  .pt-nav-dots { display: flex; align-items: center; gap: 9px; }
  .pt-nav-dots button {
    width: 8px; height: 8px; border-radius: 50%; padding: 0;
    border: 0; background: rgba(20,17,13,0.20); cursor: pointer;
    transition: background .15s ease, transform .15s ease;
  }
  .pt-nav-dots button.is-on { background: var(--ink); transform: scale(1.25); }

  /* ============ EXPORT TO CRM — swipeable logo carousel ============ */
  .ex-logos {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .ex-logos-nav {
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(20,17,13,0.16); background: var(--paper);
    color: var(--ink); cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
  }
  .ex-logos-nav:active { background: #EFEAE0; }
  .ex-logos-row {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 12px !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1 1 auto;
    scroll-behavior: smooth;
  }
  .ex-logos-row::-webkit-scrollbar { display: none; }
  .ex-logo {
    flex: 0 0 calc(50% - 6px);
    scroll-snap-align: start;
    height: 60px;
    font-size: 17px;
  }
  .ex-foot { margin-top: 40px !important; }

  /* ============ FAQ ============ */
  .faq .fq-item { padding: 22px 0; }
  .fq-q { font-size: 17px; line-height: 1.32; gap: 16px; }
  .fq-a { font-size: 15px; line-height: 1.55; }

  /* ============ FINAL CTA ============ */
  .sv-final { padding-top: 96px; padding-bottom: 96px; }
  .sv-final .sv-h2 { font-size: 38px; text-align: left !important; }
  .sv-final .sv-actions {
    margin-top: 36px !important;
    flex-direction: column;
    align-items: stretch;
  }

  /* ============ FOOTER ============ */
  footer .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  /* ============ PLATFORM / API ============ */
  .platform-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .pl-ways { grid-template-columns: 1fr !important; gap: 18px; }

  /* ============ TRUST STRIP ============ */
  .sv-trust { gap: 18px; flex-wrap: wrap; padding-top: 26px; }

  /* ============ CHECK GRID / PORTAL ============ */
  .check-grid {
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
    row-gap: 44px !important;
    max-width: none;
  }
  .portal {
    margin-top: 52px;
    border-radius: 18px;
    max-width: none;
  }
  .portal-body {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }

  /* ============ LINK/PHONE COMPOSITION ============ */
  .link-stage {
    grid-template-columns: 1fr !important;
    margin-top: 28px;
    gap: 20px;
  }
  .link-phone {
    width: 200px;
    top: auto;
    position: relative;
    margin: 0 auto;
  }
  .link-panel {
    min-height: 0;
    padding: 32px 24px;
    border-radius: 18px;
  }
  .link-photo {
    min-height: 280px;
    border-radius: 18px;
  }
}

/* ---- Very small (≤ 380px) ---- */
@media (max-width: 380px) {
  .wrap { padding: 0 18px; }
  .sv-hero .sv-h1 { font-size: 44px; }
  .sv-h2 { font-size: 32px; }
  .ex-logos-row { grid-template-columns: 1fr !important; gap: 20px; }
  .howc-step-copy h3 { font-size: 26px !important; }
}
/* ============================================================
   §Reviews — row of three fanned card stacks
   Each stack: 2 cards. Hover spreads; click a back card to swap.
   ============================================================ */
.sv-reviews-fan {
  background: var(--paper);
  padding-top: clamp(48px, 5vw, 80px);
  padding-bottom: clamp(48px, 5vw, 80px);
  overflow: clip;
}
.sv-reviews-fan .sv-head { margin-bottom: clamp(48px, 5vw, 72px); }

.revfan-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
  padding-bottom: clamp(40px, 4vw, 64px);
  /* slack so rotated/translated back-cards stay inside the row box */
  padding-top: 14px;
  padding-right: 34px;
}

.revfan-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 5.4;
}
.revfan-card {
  position: absolute;
  inset: 0;
  background: var(--paper);
  border-radius: 20px;
  padding: clamp(24px, 2.2vw, 32px);
  box-shadow:
    0 24px 50px -32px rgba(20,17,13,0.28),
    inset 0 0 0 1px rgba(20,17,13,0.07);
  display: flex; flex-direction: column;
  transform-origin: 18% 100%;
  transition:
    transform .55s cubic-bezier(.2,.7,.2,1),
    opacity .35s ease,
    box-shadow .35s ease;
  will-change: transform, opacity;
  cursor: pointer;
}
.revfan-card { transform: translate(0,0) rotate(0deg); }

.revfan-card[data-pos="0"] {
  transform: translate(0, 0) rotate(0deg);
  opacity: 1;
  cursor: default;
}
.revfan-card[data-pos="1"] {
  transform: translate(14px, 12px) rotate(3deg);
  opacity: 0.7;
}

/* Hover — spread */
.revfan-stack:hover .revfan-card[data-pos="0"] {
  transform: translate(-4px, -8px) rotate(-1.6deg);
}
.revfan-stack:hover .revfan-card[data-pos="1"] {
  transform: translate(22px, 18px) rotate(4.2deg);
  opacity: 0.9;
}

/* Card contents */
.revfan-card-h {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 10px;
}
.revfan-co {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--serif); font-weight: 500;
  font-size: 17px; letter-spacing: -0.012em;
}
.revfan-co svg { flex-shrink: 0; }
.revfan-units {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
.revfan-metric {
  display: flex; align-items: baseline; gap: 2px;
  margin-top: clamp(18px, 1.8vw, 24px);
  font-family: var(--serif);
}
.revfan-mn {
  font-weight: 380;
  font-size: clamp(54px, 5.4vw, 76px);
  line-height: 0.9; letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.revfan-mu {
  font-weight: 380;
  font-size: clamp(24px, 2.2vw, 32px);
  color: var(--muted);
  letter-spacing: -0.01em;
  margin-left: 2px;
}
.revfan-ml {
  font-family: var(--sans); font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: -0.005em;
}
.revfan-q {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(14.5px, 1.15vw, 16px);
  line-height: 1.5; letter-spacing: -0.008em;
  color: var(--ink);
  margin: clamp(20px, 2vw, 26px) 0 0;
  text-wrap: pretty;
}
.revfan-by {
  margin-top: auto;
  padding-top: clamp(16px, 1.6vw, 20px);
  border-top: 1px solid rgba(20,17,13,0.1);
  font-size: 12.5px;
  color: var(--muted);
  display: flex; align-items: baseline; gap: 6px;
  flex-wrap: wrap;
}
.revfan-by b {
  color: var(--ink); font-weight: 600;
  font-size: 13px;
}
.revfan-by span::before { content: "·"; margin: 0 6px; color: rgba(20,17,13,0.3); }

@media (prefers-reduced-motion: reduce) {
  .revfan-card { transition: opacity .2s ease; }
  .revfan-stack:hover .revfan-card { transform: none; }
}

/* Two-up on tablet, one-up on mobile */
/* Two-up on tablet, one-up on mobile — always a single row */
@media (max-width: 1120px) {
  .revfan-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 860px;
    margin: 0 auto;
  }
  .revfan-row .revfan-stack:nth-child(3) { display: none; }
}
@media (max-width: 620px) {
  .revfan-row {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 460px;
    margin: 0 auto;
  }
  /* show a single stack on mobile */
  .revfan-row .revfan-stack:nth-child(n+2) { display: none; }
  .revfan-stack { aspect-ratio: 5 / 4.2; }
  .revfan-card { padding: 26px 24px; border-radius: 18px; }
  .revfan-mn { font-size: 56px; }
  .revfan-mu { font-size: 24px; }
}

/* mobile: section titles use full width */
@media (max-width:880px){.sv-h2,.sv-hero .sv-h1{max-width:none}}
