/* ============================================================
   MESH — Website UI kit styles
   Uses foundations from ../../colors_and_type.css
   ============================================================ */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
/* Canonical breakpoints — use ONLY these values when adding media queries
   400  very small phones (iPhone SE landscape)
   480  small phones
   560  medium phones (most phone layout reflows)
   640  large phones / small phablets
   760  phablets / portrait tablet sub-sections
   880  tablet — nav collapses, most section reflows   ← primary mobile threshold
   920  tablet landscape — hero stacks
   980  wide tablet
   1080 small laptop (13" retina at 1× CSS px)
   1280 laptop   (14-15" retina)
   1440 large laptop / desktop
   1920 desktop monitor
   2560 4K / ultra-wide
*/
body{
  font-family:var(--font-sans);
  color:var(--fg-1);
  background:var(--bg-0);
  -webkit-font-smoothing:antialiased;
  min-width:320px;
}
/* Highlight = classic Mesh blue; all selected text flips to white for legibility. */
::selection{background:var(--brand);color:#fff}
::-moz-selection{background:var(--brand);color:#fff}
a{color:inherit;text-decoration:none}
.wrap{max-width:1400px;margin:0 auto;padding:0 48px}

/* ---------- buttons ---------- */
.btn{display:inline-flex;align-items:center;gap:9px;font-family:var(--font-sans);font-weight:600;
  font-size:15px;border-radius:11px;padding:13px 20px;border:1px solid transparent;cursor:pointer;
  line-height:1;transition:transform .14s ease, box-shadow .2s ease, background .15s ease, color .15s ease;white-space:nowrap}
.btn:active{transform:translateY(1px) scale(.99)}
.btn-primary{background:var(--brand);color:#fff;box-shadow:var(--shadow-blue)}
.btn-primary:hover{background:var(--brand-hover)}
.btn-ghost{background:transparent;color:var(--fg-1);border-color:var(--line-2)}
.btn-ghost:hover{border-color:var(--fg-3);background:var(--bg-1)}
.btn-outline{background:#fff;color:var(--brand);border:1.5px solid var(--brand);box-shadow:var(--shadow-sm)}
.btn-outline:hover{background:var(--blue-50)}
.btn-outline .ic{color:var(--brand)}
.btn-dark{background:var(--ink-900);color:#fff}
.btn-dark:hover{background:var(--ink-800)}
.btn-white{background:#fff;color:var(--ink-900)}
.btn-white:hover{background:var(--blue-50)}
.btn-lg{padding:16px 26px;font-size:16px;border-radius:13px}
.btn .ic{width:17px;height:17px}
.nav-actions .btn-primary,.nav-actions .btn-demo{border-radius:999px;padding-left:22px;padding-right:22px}
.cta .row .btn{border-radius:999px;transition:transform .16s ease,box-shadow .18s ease}
.cta .row .btn:hover{transform:translateY(-4px);box-shadow:0 14px 36px rgba(10,17,36,.22)}
#book-demo{scroll-margin-top:80px}

/* ---------- eyebrow / pills ---------- */
.eyebrow{font-family:var(--font-mono);font-weight:500;font-size:12px;letter-spacing:.08em;
  text-transform:uppercase;color:var(--brand);display:inline-flex;align-items:center;gap:8px}
.eyebrow .bar{width:18px;height:1.5px;background:var(--brand)}
.pill{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:500;white-space:nowrap;
  padding:7px 14px;border-radius:999px;background:var(--blue-50);color:var(--brand);border:1px solid var(--blue-100)}

/* ---------- NAV ---------- */
.nav{position:sticky;top:0;z-index:50;transition:padding .3s cubic-bezier(.4,0,.2,1)}
.nav .wrap{transition:max-width .3s cubic-bezier(.4,0,.2,1)}
.nav-inner{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;height:72px;
  padding:0 8px;border:1px solid transparent;border-radius:0;
  background:transparent;backdrop-filter:none;box-shadow:none;
  transition:height .3s cubic-bezier(.4,0,.2,1), padding .3s cubic-bezier(.4,0,.2,1),
    border-radius .3s cubic-bezier(.4,0,.2,1), background .3s ease, border-color .3s ease,
    box-shadow .3s ease, backdrop-filter .3s ease}
/* scrolled → floating, rounded, translucent "pill" bar */
.nav-scrolled{padding-top:12px}
.nav-scrolled .wrap{max-width:1100px}
.nav-scrolled .nav-inner{height:60px;padding:0 12px 0 20px;border-radius:999px;
  background:rgba(255,255,255,.72);backdrop-filter:saturate(180%) blur(16px);
  -webkit-backdrop-filter:saturate(180%) blur(16px);
  border-color:var(--line-1);box-shadow:var(--shadow-md)}
.nav-logo{height:32px;display:block}
.nav-logo-white{display:none}
.nav-logo-blue{display:block}
.nav-links{display:flex;align-items:center;gap:30px}
.nav-link{font-size:16.5px;font-weight:500;color:var(--fg-2);display:inline-flex;align-items:center;gap:5px;cursor:pointer;transition:color .15s}
.nav-link:hover{color:var(--fg-1)}
.nav-link .chev{width:14px;height:14px;opacity:.6;transition:transform .25s cubic-bezier(.4,0,.2,1)}
.nav-link .chev.up{transform:rotate(180deg);opacity:.9}
.nav-prod.active{color:var(--brand)}
.nav-prod.active .chev{color:var(--brand)}
.nav-item{position:relative;display:inline-flex;align-items:center}
.res-menu{position:absolute;top:calc(100% + 10px);left:50%;min-width:200px;z-index:3;
  background:#fff;border:1px solid var(--line-1);border-radius:14px;box-shadow:var(--shadow-md);
  padding:8px;display:flex;flex-direction:column;gap:2px;
  opacity:0;pointer-events:none;transform:translateX(-50%) translateY(-8px);
  transition:opacity .22s cubic-bezier(.4,0,.2,1),transform .22s cubic-bezier(.4,0,.2,1)}
.res-menu::before{content:'';position:absolute;top:-12px;left:0;right:0;height:12px}
.res-menu.open{opacity:1;pointer-events:auto;transform:translateX(-50%) translateY(0)}
.res-link{display:block;padding:9px 12px;border-radius:9px;font-size:14px;font-weight:500;
  color:var(--fg-2);white-space:nowrap;transition:background .15s,color .15s}
.res-link:hover{background:var(--bg-1);color:var(--fg-1)}
.nav-actions{display:flex;align-items:center;gap:14px}
.nav-cta{font-size:15px;font-weight:500;color:var(--fg-2);cursor:pointer}
.nav-cta:hover{color:var(--fg-1)}
@media(max-width:880px){.nav-links{display:none}}

/* ---------- PRODUCT MEGA-MENU ---------- */
.mega-scrim{position:fixed;inset:0;z-index:1;background:transparent;
  opacity:0;pointer-events:none;transition:opacity .2s ease}
.mega-scrim.show{opacity:1;pointer-events:auto}
.megamenu{position:absolute;left:0;right:0;top:100%;z-index:3;display:flex;justify-content:center;
  padding:0 32px;
  opacity:0;pointer-events:none;transform:translateY(-10px);
  transition:opacity .26s cubic-bezier(.4,0,.2,1),transform .26s cubic-bezier(.4,0,.2,1)}
.megamenu.open{opacity:1;pointer-events:auto;transform:translateY(0)}
.mega-card{width:100%;max-width:320px;
  background:#fff;border:1px solid var(--line-1);border-radius:16px;
  box-shadow:var(--shadow-lg);overflow:hidden;margin-top:8px}
.mega-main{padding:14px 14px 15px}
.mega-eyebrow{font-family:var(--font-mono);font-weight:500;font-size:9px;letter-spacing:.12em;
  text-transform:uppercase;color:var(--fg-3);margin-bottom:9px}
/* featured banner */
.mega-feature{display:flex;align-items:center;justify-content:space-between;
  padding:10px 12px;border-radius:11px;border:1px solid var(--line-1);
  background:linear-gradient(100deg,var(--sky) 0%,#EEF2FE 42%,#F3EEFB 100%);
  transition:box-shadow .22s ease,transform .22s ease,border-color .22s ease}
.mega-feature:hover{box-shadow:var(--shadow-md);transform:translateY(-1px);border-color:var(--blue-200)}
.mega-feature-tx{font-family:var(--font-display);font-weight:700;font-size:13.5px;letter-spacing:-.01em;color:var(--ink-900)}
.mega-feature-ar{display:inline-flex;width:24px;height:24px;align-items:center;justify-content:center;
  border-radius:999px;background:#fff;color:var(--brand);box-shadow:var(--shadow-xs);transition:transform .22s ease}
.mega-feature-ar .ic{width:13px;height:13px}
.mega-feature:hover .mega-feature-ar{transform:translateX(4px)}
/* product grid */
.mega-grid{display:grid;grid-template-columns:1fr;gap:2px;margin-top:8px}
.mega-prod{display:flex;align-items:center;gap:9px;padding:8px 9px;border-radius:9px;
  transition:background .18s ease}
.mega-prod:hover{background:var(--bg-1)}
.mega-prod-ic{display:inline-flex;width:26px;height:26px;align-items:center;justify-content:center;
  border-radius:8px;background:var(--sky);color:var(--brand);flex:none}
.mega-prod-ic .ic{width:14px;height:14px}
.mega-prod-title{font-family:var(--font-display);font-weight:700;font-size:12.5px;letter-spacing:-.01em;color:var(--brand);line-height:1.2}
@media(max-width:880px){.megamenu{display:none}}

/* ---------- HERO (two-column: editorial left, live mesh scene right) ---------- */
.hero{position:relative;padding:56px 0 80px;overflow:hidden}
.hero-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,0.95fr);gap:48px;align-items:center}
.hero-left{position:relative;display:flex;flex-direction:column;align-items:flex-start;text-align:left}
.hero-eyebrow{margin-bottom:26px}
.hero h1{font-family:var(--font-display);font-weight:700;font-size:58px;line-height:1.04;
  letter-spacing:-.02em;color:var(--ink-900);position:relative;z-index:1;max-width:none}
.hero h1 .h1-line{display:block;white-space:nowrap}
.hero h1 .hl{color:var(--brand)}
/* fill-in-the-blank — smooth letter-by-letter reveal */
.blank{position:relative;display:inline-block;vertical-align:baseline;
  border-bottom:.085em solid color-mix(in srgb, var(--brand) 40%, transparent);text-align:left;
  transition:width .22s cubic-bezier(.33,1,.68,1)}
.blank-measure{visibility:hidden;white-space:nowrap;padding:0 .04em}
.blank-reveal{position:absolute;left:.04em;top:0;white-space:pre;color:var(--brand);
  display:inline-flex;opacity:1;transform:none;
  transition:opacity .28s ease, transform .28s cubic-bezier(.2,.7,.2,1)}
.blank-reveal.is-out{opacity:0;transform:translateY(-.16em)}
.rl{display:inline-block;opacity:0;transform:translateY(.22em);filter:blur(5px);
  animation:rlIn .55s cubic-bezier(.2,.7,.2,1) forwards}
@keyframes rlIn{to{opacity:1;transform:none;filter:blur(0)}}
@media(prefers-reduced-motion:reduce){
  .blank-reveal{transition:none}
  .rl{animation:none;opacity:1;transform:none;filter:none}}
.hero-foot{display:flex;flex-direction:column;align-items:flex-start;gap:30px;
  width:100%;margin-top:44px;flex-wrap:wrap}
.hero-foot-left{flex:none;width:100%}
.hero .sub{font-size:23px;line-height:1.45;color:var(--fg-2);margin:0;max-width:34ch}
.hero-capture{display:flex;gap:12px;justify-content:flex-start;align-items:center;flex-wrap:wrap}
.emailbox{display:flex;align-items:center;background:#fff;border:1px solid var(--line-2);
  border-radius:999px;padding:6px 6px 6px 10px;box-shadow:var(--shadow-sm)}
.emailbox input{border:none;outline:none;background:transparent;font-family:var(--font-sans);
  font-size:15px;color:var(--fg-1);padding:10px 14px;flex:1;min-width:0}
.emailbox input::placeholder{color:var(--fg-4)}
.emailbox .btn{border-radius:999px;padding:12px 20px}
.btn-capture{border-radius:999px;padding:14px 26px;font-size:15px;
  min-width:184px;justify-content:center;box-sizing:border-box}
.hero-backed{display:flex;align-items:center;justify-content:flex-start;gap:12px;margin-top:28px}
.backed-label{font-family:var(--font-mono);font-size:13.5px;letter-spacing:.08em;text-transform:uppercase;color:var(--fg-3);white-space:nowrap;line-height:1}
.backed-logo{height:50px;width:auto;display:block}
.hero-note{display:flex;align-items:center;justify-content:flex-start;gap:9px;margin-top:24px;font-size:13.5px;color:var(--fg-3)}
.hero-note .ic{width:15px;height:15px;color:var(--success)}
/* ---------- hero stage — animated Mesh product UI (right column, bleeds right) ---------- */
.hero-stage{position:relative;width:100%;height:560px;min-width:0;align-self:stretch;overflow:visible}
.hero-canvas{position:absolute;inset:0;width:100%;height:100%;display:block}

/* product dashboard card — extends past the right edge for a "screenshot" bleed */
.pf{position:absolute;top:0;left:52px;
  width:calc(100% + 104px);height:100%;display:flex;overflow:hidden;
  background:#fff;border:1px solid var(--line-1);border-radius:18px;
  box-shadow:var(--shadow-lg);font-family:var(--font-sans);
  -webkit-font-smoothing:antialiased;text-align:left;color:var(--fg-1)}

/* sidebar */
.pf-side{width:188px;flex:none;background:var(--bg-1);border-right:1px solid var(--line-1);
  padding:14px 12px;display:flex;flex-direction:column;gap:3px}
.pf-brand{display:flex;align-items:center;justify-content:space-between;padding:2px 4px 10px}
.pf-brand-logo{height:17px;width:auto;display:block}
.pf-brand-collapse{width:15px;height:15px;color:var(--fg-4)}
.pf-search{display:flex;align-items:center;gap:7px;background:#fff;border:1px solid var(--line-1);
  border-radius:8px;padding:6px 8px;margin-bottom:11px;font-size:12px;color:var(--fg-4)}
.pf-search .ic{width:13px;height:13px}
.pf-kbd{margin-left:auto;font-family:var(--font-mono);font-size:10px;color:var(--fg-4);
  border:1px solid var(--line-1);border-radius:4px;padding:1px 4px}
.pf-navhead{font-family:var(--font-mono);font-size:9.5px;letter-spacing:.1em;text-transform:uppercase;
  color:var(--fg-4);padding:11px 8px 5px}
.pf-navgroup{display:flex;flex-direction:column;gap:2px}
.pf-nav-item{display:flex;align-items:center;gap:9px;padding:7px 9px;border-radius:8px;
  font-size:12.5px;font-weight:500;color:var(--fg-2);cursor:default}
.pf-nav-item .pf-nav-ic{display:inline-flex;width:15px;height:15px;color:var(--fg-3);flex:none}
.pf-nav-item .pf-nav-ic .ic{width:15px;height:15px}
.pf-nav-item.active{background:var(--blue-50);color:var(--brand);font-weight:600}
.pf-nav-item.active .pf-nav-ic{color:var(--brand)}
.pf-nav-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.pf-nav-badge{margin-left:auto;font-family:var(--font-mono);font-size:10px;font-weight:600;
  background:var(--blue-100);color:var(--brand);border-radius:999px;padding:1px 6px}
.pf-side-foot{margin-top:auto;display:flex;align-items:center;gap:8px;padding:9px;border-radius:9px;
  background:#fff;border:1px solid var(--line-1);font-size:12px;font-weight:600;color:var(--fg-1)}
.pf-ai-ic{display:inline-flex;width:20px;height:20px;align-items:center;justify-content:center;
  border-radius:6px;background:var(--blue-50);color:var(--brand);flex:none}
.pf-ai-ic .ic{width:12px;height:12px}

/* main */
.pf-main{flex:1;min-width:0;padding:14px 18px;display:flex;flex-direction:column;gap:9px;
  background:#fff;overflow:hidden}
.pf-head{display:flex;align-items:flex-start;justify-content:space-between;gap:14px}
.pf-eyebrow{font-family:var(--font-mono);font-size:10px;letter-spacing:.09em;text-transform:uppercase;color:var(--brand)}
.pf-title{font-family:var(--font-display);font-weight:700;font-size:20px;letter-spacing:-.01em;
  color:var(--ink-900);margin:2px 0 0}
.pf-head-right{display:flex;align-items:center;gap:9px;flex:none}
.pf-entity{display:flex;align-items:center;gap:7px;background:#fff;border:1px solid var(--line-2);
  border-radius:9px;padding:6px 9px;font-size:12px;font-weight:600;color:var(--fg-1);white-space:nowrap}
.pf-entity-av{display:inline-flex;width:18px;height:18px;align-items:center;justify-content:center;
  border-radius:5px;background:var(--ink-900);color:#fff;font-size:8.5px;font-weight:700;flex:none}
.pf-entity-chev{width:13px;height:13px;color:var(--fg-4)}
.pf-status{display:inline-flex;align-items:center;gap:6px;font-size:11.5px;font-weight:600;white-space:nowrap;
  padding:6px 11px;border-radius:999px;background:var(--blue-50);color:var(--brand);border:1px solid var(--blue-100)}
.pf-status .ic{width:13px;height:13px;animation:pfSpin 1.1s linear infinite}
.pf-status.done{background:var(--success-bg);color:var(--success);border-color:transparent}
.pf-status.done .ic{animation:none}
@keyframes pfSpin{to{transform:rotate(360deg)}}

.pf-card{border:1px solid var(--line-1);border-radius:13px;background:#fff;overflow:hidden}
.pf-card-head{display:flex;align-items:center;justify-content:space-between;
  padding:8px 13px;border-bottom:1px solid var(--line-1)}
.pf-card-title{font-weight:600;font-size:13px;color:var(--fg-1)}
.pf-card-meta{font-family:var(--font-mono);font-size:11px;font-weight:600;color:var(--fg-3)}

/* tasks */
.pf-tasks{display:flex;flex-direction:column}
.pf-task{display:flex;align-items:center;gap:11px;padding:6px 13px;border-bottom:1px solid var(--line-1);
  transition:background .3s ease}
.pf-task:last-child{border-bottom:none}
.pf-task.active{background:var(--blue-50)}
.pf-check{display:inline-flex;width:18px;height:18px;align-items:center;justify-content:center;flex:none;
  border:1.5px solid var(--line-2);border-radius:999px;color:#fff;transition:background .25s ease,border-color .25s ease}
.pf-check.on{background:var(--success);border-color:var(--success)}
.pf-check .ic{width:11px;height:11px}
.pf-task.active .pf-check .ic{color:var(--brand);animation:pfSpin 1.1s linear infinite}
.pf-task-ic{display:inline-flex;width:15px;height:15px;color:var(--fg-3);flex:none}
.pf-task-ic .ic{width:15px;height:15px}
.pf-task-tx{flex:1;min-width:0}
.pf-task-label{font-size:13px;font-weight:600;color:var(--fg-1);line-height:1.3}
.pf-task.done .pf-task-label{color:var(--fg-2)}
.pf-task-sub{font-family:var(--font-mono);font-size:10.5px;color:var(--fg-4)}
.pf-task-flag{font-family:var(--font-mono);font-size:10px;font-weight:600;color:var(--success);
  background:var(--success-bg);border-radius:999px;padding:2px 8px;flex:none}

/* ledger */
.pf-tabs{display:flex;align-items:center;gap:16px}
.pf-tab{font-size:12.5px;font-weight:500;color:var(--fg-3);display:inline-flex;align-items:center;gap:6px;
  padding-bottom:2px;border-bottom:2px solid transparent}
.pf-tab.active{color:var(--fg-1);font-weight:600;border-bottom-color:var(--brand)}
.pf-tab-n{font-family:var(--font-mono);font-size:10px;font-weight:600;background:var(--bg-2);
  color:var(--fg-2);border-radius:999px;padding:1px 6px}
.pf-erp{display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:600;color:var(--fg-3);white-space:nowrap}
.pf-erp-logo{display:inline-flex;width:17px;height:17px;align-items:center;justify-content:center;border-radius:5px;
  background:var(--ink-900);color:#fff;font-size:8px;font-weight:700;flex:none}
.pf-erp.on{color:var(--success)}
.pf-ledger{display:flex;flex-direction:column}
.pf-row{align-items:center;gap:11px;padding:5px 13px;border-bottom:1px solid var(--line-1);
  animation:pfRowIn .42s cubic-bezier(.22,1,.36,1) both}
.pf-row:last-child{border-bottom:none}
@keyframes pfRowIn{from{opacity:0;transform:translateX(14px)}to{opacity:1;transform:none}}
.pf-row-ic{display:inline-flex;width:26px;height:26px;align-items:center;justify-content:center;flex:none;
  border-radius:7px;background:var(--bg-2);color:var(--fg-2)}
.pf-row-ic .ic{width:14px;height:14px}
.pf-row-tx{flex:1;min-width:0}
.pf-row-v{font-size:13px;font-weight:600;color:var(--fg-1);display:flex;align-items:center;gap:7px}
.pf-est{font-family:var(--font-mono);font-size:8.5px;font-weight:600;letter-spacing:.04em;color:var(--brand);
  background:var(--blue-50);border:1px solid var(--blue-100);border-radius:4px;padding:0 4px}
.pf-row-sub{font-family:var(--font-mono);font-size:10.5px;color:var(--fg-4)}
.pf-row-amt{font-family:var(--font-mono);font-size:13px;font-weight:600;color:var(--fg-1);
  font-variant-numeric:tabular-nums;white-space:nowrap}
.pf-row-tick{display:inline-flex;width:16px;height:16px;color:var(--fg-4);flex:none}
.pf-row-tick .ic{width:15px;height:15px}
.pf-row-tick.done{color:var(--success)}
.pf-total{display:flex;align-items:center;justify-content:space-between;padding:9px 13px;
  background:var(--bg-1);border-top:1px solid var(--line-1)}
.pf-total span:first-child{font-size:12.5px;font-weight:600;color:var(--fg-1)}
.pf-total-amt{font-family:var(--font-mono);font-size:16px;font-weight:600;color:var(--brand);
  font-variant-numeric:tabular-nums;transition:color .3s ease}

@media(max-width:1080px){.hero h1{font-size:50px}.hero .sub{font-size:21px}.hero-grid{gap:32px}.hero-stage{height:500px}.pf{width:calc(100% + 72px)}}
@media(max-width:920px){
  .hero-grid{grid-template-columns:1fr;gap:8px}
  .hero h1{font-size:46px}
  .hero-stage{height:auto;order:2;margin-top:14px}
  .pf{position:relative;top:auto;left:auto;width:100%;height:auto;min-height:440px}
  .hero-foot{flex-direction:column;align-items:flex-start;gap:30px}
  .hero-capture .btn-capture{min-width:170px}
}
@media(max-width:880px){
  .hero-grid{grid-template-columns:1fr;gap:8px}
  .hero h1{font-size:46px}
  .hero-stage{height:auto;order:2;margin-top:14px}
  .pf{position:relative;top:auto;left:auto;width:100%;height:auto;min-height:440px}
  .hero-foot{flex-direction:column;align-items:flex-start;gap:30px}
}
@media(max-width:640px){.hero h1 .h1-line{white-space:normal}}
@media(max-width:560px){.hero h1{font-size:38px}.pf-side{display:none}}

/* ---------- hero: Mesh Close Engine (sources → engine → ERP) ---------- */
.ce{position:absolute;top:0;left:0;width:calc(100% + 96px);height:100%;
  display:flex;align-items:center;gap:0;font-family:var(--font-sans);color:var(--fg-1);text-align:left}
.ce-rail{flex:none;width:128px;display:flex;flex-direction:column;gap:14px;z-index:2}
.ce-src{background:#fff;border:1px solid var(--line-1);border-radius:16px;padding:13px 14px;
  box-shadow:var(--shadow-sm)}
.ce-src-label{display:block;font-size:11px;letter-spacing:.08em;font-weight:600;
  text-transform:uppercase;color:var(--fg-3);margin-bottom:11px}
.ce-src-logos{display:flex}
.ce-chip{width:32px;height:32px;border-radius:50%;background:#fff;border:1px solid var(--line-1);
  display:inline-flex;align-items:center;justify-content:center;flex:none;
  box-shadow:0 1px 2px rgba(21,27,37,.05)}
.ce-chip img{width:18px;height:18px;object-fit:contain;display:block}
.ce-chip-erp{font-size:10px;font-weight:700;letter-spacing:-.01em}

.ce-mid{flex:none;width:46px;align-self:stretch;position:relative;z-index:1}
.ce-mid-out{width:36px}
.ce-wires{position:absolute;inset:0;width:100%;height:100%;display:block;overflow:visible}
.ce-wire-bg{fill:none;stroke:var(--line-1);stroke-width:1.4;vector-effect:non-scaling-stroke}
.ce-wire-fg{fill:none;stroke:var(--brand);stroke-width:1.6;vector-effect:non-scaling-stroke;
  stroke-linecap:round;stroke-dasharray:24 150;stroke-dashoffset:174;
  animation:ceFlow 2.4s linear infinite}
@keyframes ceFlow{to{stroke-dashoffset:0}}
.ce-wire-fg.lit{stroke-dasharray:none;stroke-dashoffset:0;animation:none;opacity:.85}

/* outer gray container + inner white card */
.ce-engine{flex:1 1 auto;min-width:0;background:var(--bg-1);border:1px solid var(--line-1);
  border-radius:22px;box-shadow:var(--shadow-lg);z-index:2;
  display:flex;flex-direction:column;gap:11px;padding:14px 14px 13px}
.ce-card{background:#fff;border:1px solid var(--line-1);border-radius:15px;
  box-shadow:var(--shadow-sm);padding:14px 16px 6px}

.ce-tabs{display:flex;gap:20px;border-bottom:1px solid var(--line-1);padding-bottom:0;margin-bottom:14px}
.ce-tabs span{font-size:13px;font-weight:500;color:var(--fg-3);padding:0 1px 9px;
  border-bottom:2px solid transparent;margin-bottom:-1px}
.ce-tabs span.on{color:var(--brand);font-weight:600;border-bottom-color:var(--brand)}

.ce-toolbar{display:flex;align-items:center;gap:10px;margin-bottom:6px}
.ce-seg{display:flex;background:var(--bg-1);border:1px solid var(--line-1);border-radius:9px;padding:3px}
.ce-seg span{display:inline-flex;align-items:center;gap:5px;font-size:12px;font-weight:500;
  color:var(--fg-3);padding:5px 11px;border-radius:6px;white-space:nowrap}
.ce-seg span.on{background:#fff;color:var(--ink-900);font-weight:600;box-shadow:0 1px 2px rgba(21,27,37,.08)}
.ce-seg .ic{width:14px;height:14px}
.ce-export{margin-left:auto;display:inline-flex;align-items:center;gap:6px;font-family:inherit;
  font-size:12.5px;font-weight:600;color:#fff;background:var(--brand);border:0;cursor:pointer;
  padding:8px 15px;border-radius:9px}
.ce-export .ic{width:14px;height:14px}

.ce-table{margin-top:4px}
.ce-row{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;align-items:center;
  gap:10px;padding:11px 2px;font-size:12.5px}
.ce-row .r{text-align:right;font-variant-numeric:tabular-nums}
.ce-row-head{font-size:11.5px;color:var(--fg-3);font-weight:500;padding-bottom:8px;align-items:end}
.ce-row:not(.ce-row-head){border-top:1px solid var(--line-1)}
.ce-vn{font-weight:500;color:var(--ink-900)}
.ce-mut{color:var(--fg-2)}

.ce-analyze{align-self:center;display:inline-flex;align-items:center;gap:9px;
  background:#fff;border:1px solid var(--line-1);border-radius:999px;padding:8px 16px;
  font-size:13px;color:var(--fg-2);box-shadow:var(--shadow-sm)}
.ce-spin{width:14px;height:14px;border-radius:50%;border:2px solid var(--line-2,#dce1e8);
  border-top-color:var(--fg-3);flex:none}
.ce-spin.go{animation:ceSpin .9s linear infinite}
@keyframes ceSpin{to{transform:rotate(360deg)}}

.ce-out{flex:none;width:96px;background:#fff;border:1px solid var(--line-1);border-radius:16px;
  padding:13px 14px;box-shadow:var(--shadow-sm);z-index:2}

@media(max-width:1080px){.ce{width:calc(100% + 56px)}.ce-rail{width:118px}.ce-out{width:88px}}
@media(max-width:920px){
  .ce{position:relative;top:auto;left:auto;width:100%;height:auto;min-height:440px}
}
@media(max-width:680px){
  .ce-mid-out,.ce-out{display:none}
}

/* ---------- hero flow story (sources → Mesh → journal entry → trace) ---------- */
.hero-flow{position:absolute;top:50%;right:clamp(16px,3vw,44px);transform:translateY(-50%);
  width:clamp(420px,40vw,520px);pointer-events:none;z-index:0}
.hero-flow svg{width:100%;height:auto;display:block;overflow:visible}
.hf-src-box{fill:var(--bg-2);stroke:var(--line-2);stroke-width:1.25}
.hf-src-t{font-family:var(--font-sans);font-weight:600;font-size:17px;fill:var(--fg-2)}
.hf-mesh-box{fill:var(--blue-50);stroke:var(--brand);stroke-width:1.5}
.hf-mesh-h{font-family:var(--font-display);font-weight:700;font-size:21px;fill:var(--brand)}
.hf-sub{font-family:var(--font-mono);font-weight:500;font-size:12.5px}
.hf-mesh-s{fill:var(--blue-600)}
.hf-gap-box{fill:var(--danger-bg);stroke:var(--danger);stroke-width:1.5;stroke-dasharray:6 5}
.hf-gap-h{font-family:var(--font-display);font-weight:700;font-size:19px;fill:var(--danger)}
.hf-gap-s{fill:var(--danger)}
.hf-je-box{fill:var(--success-bg);stroke:var(--success);stroke-width:1.5}
.hf-je-h{font-family:var(--font-display);font-weight:700;font-size:19px;fill:var(--success)}
.hf-je-s{fill:var(--success)}
.hf-line{fill:none;stroke:var(--brand);stroke-width:1.5;stroke-dasharray:4 4;opacity:0;transition:opacity .6s ease}
.hf-line.on{opacity:.78;animation:hfFlow 1.1s linear infinite}
@keyframes hfFlow{to{stroke-dashoffset:-16}}
.hf-trace{fill:none;stroke:var(--success);stroke-width:1.25;stroke-dasharray:3 5;opacity:0;transition:opacity .6s ease}
.hf-trace.on{opacity:.5;animation:hfFlowBack 1.7s linear infinite}
@keyframes hfFlowBack{to{stroke-dashoffset:24}}
.hf-arrow{stroke:var(--success);stroke-width:2;fill:none}
.hf-g{transform-box:fill-box;transform-origin:center}
.hf-label{font-family:var(--font-mono);font-weight:500;font-size:13px;fill:var(--success);letter-spacing:.02em}
@media(max-width:1024px){.hero-flow{display:none}}
@media(prefers-reduced-motion:reduce){.hf-line.on,.hf-trace.on{animation:none}}

/* ---------- demo panel (hero visual) ---------- */
.panel{background:#fff;border:1px solid var(--line-1);border-radius:18px;box-shadow:var(--shadow-lg);overflow:hidden}
.panel-bar{display:flex;align-items:center;gap:8px;padding:13px 16px;border-bottom:1px solid var(--line-1);background:var(--bg-1)}
.dot{width:10px;height:10px;border-radius:50%}
.panel-title{font-family:var(--font-mono);font-size:12px;color:var(--fg-3);margin-left:8px}
.panel-body{padding:18px}
.code{font-family:var(--font-mono);font-size:13.5px;line-height:1.85}
.code .k{color:var(--brand)} .code .s{color:#1B9E6B} .code .c{color:var(--fg-4)} .code .n{color:#C98A12}
.ledger-row{display:flex;align-items:center;justify-content:space-between;padding:11px 0;border-bottom:1px solid var(--line-1)}
.ledger-row:last-child{border-bottom:none}
.ledger-row .v{display:flex;align-items:center;gap:11px}
.src{width:30px;height:30px;border-radius:8px;display:flex;align-items:center;justify-content:center;background:var(--bg-2)}
.src .ic{width:16px;height:16px;color:var(--fg-2)}
.amt{font-family:var(--font-mono);font-variant-numeric:tabular-nums;font-weight:500;font-size:14px;color:var(--fg-1)}

/* ---------- section scaffolding ---------- */
.section{padding:96px 0}
.section-head{max-width:620px}
.section-head h2{font-family:var(--font-display);font-weight:700;font-size:clamp(30px,3.8vw,44px);line-height:1.04;
  letter-spacing:-.01em;color:var(--ink-900);margin-top:16px}
/* StatsBand heading: wider head + single line (tweakable) */
.dark-band .section-head{max-width:none}
.dark-band .section-head h2{white-space:nowrap;font-size:var(--tw-roi-h2,54px)}
html.tw-band-wrap .dark-band .section-head h2{white-space:normal}
@media(max-width:880px){.dark-band .section-head h2{white-space:normal}}
.section-head .sub{font-size:clamp(15px,1.5vw,18px);line-height:1.6;color:var(--fg-2);margin-top:18px}
.dark-band .section-head .sub{font-size:clamp(17px,1.8vw,21px)}
.center{text-align:center;margin-left:auto;margin-right:auto}

/* signals band — heading + right-to-left marquee of source systems */
.signals{padding:64px 0 68px;border-top:1px solid var(--line-1);border-bottom:1px solid var(--line-1);background:var(--bg-1);overflow:hidden}
.signals-hub{font-family:var(--font-display);font-weight:700;font-size:30px;line-height:1.18;
  letter-spacing:-.01em;color:var(--ink-900)}
.signals-hub-center{text-align:center;margin:0 auto;white-space:nowrap}

.marquee{position:relative;margin-top:40px;padding:8px 0;
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 9%,#000 91%,transparent 100%);
          mask-image:linear-gradient(90deg,transparent 0,#000 9%,#000 91%,transparent 100%)}
.marquee-track{display:flex;width:max-content;animation:marqueeScroll 38s linear infinite;will-change:transform}
.marquee:hover .marquee-track{animation-play-state:paused}
@keyframes marqueeScroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
/* category card — spacing via margin (not flex gap) so the -50% loop is seamless */
.cat-card{flex:none;display:inline-flex;flex-direction:column;margin-right:26px;background:#fff;border:1px solid var(--line-1);border-radius:20px;
  padding:22px 30px 26px;box-shadow:var(--shadow-sm)}
.cat-label{font-family:var(--font-sans);font-weight:600;font-size:15px;letter-spacing:.07em;
  color:var(--fg-3);text-transform:uppercase}
.cat-icons{display:flex;align-items:center;margin-top:18px}
.cat-icon{width:60px;height:60px;border-radius:50%;background:#fff;border:1px solid var(--line-1);
  box-shadow:var(--shadow-xs);display:flex;align-items:center;justify-content:center;overflow:hidden}
.cat-icon img{width:100%;height:100%;object-fit:contain;display:block}
@media(prefers-reduced-motion:reduce){.marquee-track{animation:none}}
@media(max-width:760px){.signals-hub{font-size:22px;max-width:24ch;white-space:normal}}

/* feature rows */
.frow{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.frow.rev .ftext{order:2}
.feature-list{display:flex;flex-direction:column;gap:18px;margin-top:28px}
.fli{display:flex;gap:14px}
.fli .tick{flex:none;width:24px;height:24px;border-radius:7px;background:var(--blue-50);display:flex;align-items:center;justify-content:center;margin-top:1px}
.fli .tick .ic{width:14px;height:14px;color:var(--brand)}
.fli .ft{font-weight:600;font-size:16px;color:var(--fg-1)}
.fli .fd{font-size:14.5px;color:var(--fg-3);line-height:1.5;margin-top:3px}
/* "We streamline ... in 3 ways" lead + sketch underline */
.streamline-lead{font-family:var(--font-display);font-weight:700;font-size:26px;line-height:1.2;
  color:var(--ink-900);margin-top:34px}
.ul-sketch{position:relative;white-space:nowrap}
.ul-sketch::after{content:"";position:absolute;left:-2%;right:-2%;bottom:-7px;height:10px;
  background:no-repeat center/100% 100%;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 12' preserveAspectRatio='none'><path d='M3,7 C60,2 130,2 180,5 C220,7 270,9 297,4' fill='none' stroke='%23345def' stroke-width='3' stroke-linecap='round'/><path d='M40,10 C90,7 150,8 210,9' fill='none' stroke='%23345def' stroke-width='2' stroke-linecap='round' opacity='0.55'/></svg>")}
/* three numbered steps — scroll-driven active/done states */
.steps3{list-style:none;margin:30px 0 0;padding:0;display:flex;flex-direction:column;gap:22px}
.step3{display:flex;align-items:center;gap:18px;opacity:.42;transition:opacity .4s ease}
.step3.active,.step3.done{opacity:1}
.step3-num{flex:none;width:38px;height:38px;border-radius:50%;background:var(--bg-2);color:var(--fg-3);
  font-family:var(--font-display);font-weight:700;font-size:17px;display:flex;align-items:center;justify-content:center;
  box-shadow:none;transition:background .4s ease,color .4s ease,box-shadow .4s ease,transform .4s ease}
.step3.active .step3-num{background:var(--brand);color:#fff;box-shadow:var(--shadow-blue);transform:scale(1.08)}
.step3.done .step3-num{background:var(--blue-100);color:var(--brand)}
.step3-text{font-size:21px;line-height:1.3;color:var(--fg-2)}
.step3-text strong{color:var(--ink-900);font-weight:700}
@media(prefers-reduced-motion:reduce){.step3{opacity:1}}

/* ---------- trust & governance: pinned 3-step scroll stage ---------- */
.tg{position:relative;height:300vh;background:var(--bg-0)}
.tg-stage{position:sticky;top:0;min-height:100vh;min-height:100dvh;display:flex;align-items:center;padding:64px 0}
.tg-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;width:100%}
.tg-panelwrap{display:flex;flex-direction:column;align-items:center;gap:16px}
.tg-panel{width:100%}
.tg-step-pill{margin-left:auto;font-family:var(--font-mono);font-size:11px;letter-spacing:.04em;
  color:var(--brand);background:var(--blue-50);border:1px solid var(--blue-100);border-radius:999px;padding:4px 10px}
.tg-panel-body{position:relative;min-height:264px}
.tg-slide{position:absolute;inset:0;padding:2px;opacity:0;transform:translateY(10px);
  transition:opacity .5s ease,transform .5s ease;pointer-events:none}
.tg-slide.show{opacity:1;transform:none;pointer-events:auto}
.tg-dots{display:flex;gap:8px}
.tg-dot{width:8px;height:8px;border-radius:50%;background:var(--line-2);transition:background .3s ease,width .3s ease}
.tg-dot.on{background:var(--brand);width:22px;border-radius:999px}

/* step panel internals */
.sp-body{display:flex;flex-direction:column;gap:10px}
.sp-sources{display:flex;flex-wrap:wrap;gap:8px;justify-content:center}
.sp-chip{display:inline-flex;align-items:center;gap:7px;font-size:12.5px;font-weight:600;color:var(--fg-2);
  background:var(--bg-1);border:1px solid var(--line-1);border-radius:999px;padding:6px 12px}
.sp-chip img{width:16px;height:16px;object-fit:contain}
.sp-arrow{display:flex;justify-content:center;color:var(--brand)}
.sp-arrow .ic{width:20px;height:20px}
.sp-ledger{border:1px solid var(--line-1);border-radius:10px;overflow:hidden}
.sp-row{display:flex;justify-content:space-between;padding:10px 14px;font-size:13.5px;color:var(--fg-1);border-bottom:1px solid var(--line-1)}
.sp-row:last-child{border-bottom:none}
.sp-num{font-family:var(--font-mono);font-variant-numeric:tabular-nums;font-weight:500;color:var(--fg-1)}
/* collect */
.sp-msg{display:flex;align-items:center;gap:12px;padding:11px 12px;border:1px solid var(--line-1);border-radius:10px}
.sp-msg-ic{flex:none;width:30px;height:30px;border-radius:8px;border:1px solid var(--line-1);display:flex;align-items:center;justify-content:center;overflow:hidden}
.sp-msg-ic img{width:18px;height:18px;object-fit:contain}
.sp-msg-tx{flex:1;min-width:0}
.sp-msg-who{font-size:13px;font-weight:700;color:var(--fg-1)}
.sp-msg-body{font-size:12.5px;color:var(--fg-3);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.sp-stat{flex:none;font-size:11px;font-weight:600;color:var(--fg-3);background:var(--bg-2);border-radius:999px;padding:4px 10px}
.sp-stat.ok{color:var(--success);background:var(--success-bg)}
/* estimate */
.sp-est{display:grid;grid-template-columns:64px 1fr auto;align-items:center;gap:12px}
.sp-est-v{font-size:13.5px;font-weight:600;color:var(--fg-1)}
.sp-est-bar{height:8px;border-radius:999px;background:var(--bg-2);overflow:hidden}
.sp-est-fill{display:block;height:100%;border-radius:999px;background:var(--brand)}
.sp-total{display:flex;justify-content:space-between;align-items:center;padding-top:12px;margin-top:4px;
  border-top:2px solid var(--ink-900);font-weight:700;font-size:14px;color:var(--ink-900)}
.sp-total .sp-num{color:var(--brand);font-weight:700;font-size:16px}

/* step 1 — Mesh integration cluster (vendor context) */
.vc-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.vc-cat{background:var(--bg-1);border:1px solid var(--line-1);border-radius:12px;padding:12px 13px}
.vc-cat-label{font-family:var(--font-mono);font-size:10px;letter-spacing:.09em;text-transform:uppercase;color:var(--fg-3)}
.vc-logos{display:flex;gap:8px;margin-top:9px}
.vc-logo{width:38px;height:38px;border-radius:9px;background:#fff;border:1px solid var(--line-1);
  box-shadow:var(--shadow-xs);display:flex;align-items:center;justify-content:center}
.vc-logo img{width:22px;height:22px;object-fit:contain}
.vc-foot{display:flex;align-items:center;gap:9px;margin-top:14px;padding-top:13px;border-top:1px solid var(--line-1);
  font-size:13px;font-weight:600;color:var(--fg-2)}
.vc-check{flex:none;width:20px;height:20px;border-radius:50%;background:var(--success-bg);color:var(--success);
  display:flex;align-items:center;justify-content:center}
.vc-check .ic{width:13px;height:13px}

@media(max-width:880px){
  .tg{height:auto}
  .tg-stage{position:relative;min-height:0;padding:64px 0}
  .tg-grid{grid-template-columns:1fr;gap:40px}
  .step3{opacity:1}
}
@media(prefers-reduced-motion:reduce){
  .tg{height:auto}
  .tg-stage{position:relative;min-height:0}
  .tg-slide{position:relative;opacity:1;transform:none}
  .tg-slide:not(.show){display:none}
}

/* ---------- The current system breakdown ---------- */
.bd{padding:90px 0 260px;background:var(--bg-1);border-top:1px solid var(--line-1)}
.bd .section-head{max-width:none}
.bd-grid-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;margin-top:54px}
.bd-card{background:transparent;border-radius:16px;padding:6px;cursor:default;outline:none;
  opacity:0;animation:bdIn .6s cubic-bezier(.2,.7,.2,1) forwards;
  transition:transform .32s cubic-bezier(.2,.7,.2,1)}
.bd-card:hover,.bd-card:focus-visible{transform:translateY(-14px) scale(1.025)}
@keyframes bdIn{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:none}}
@media(prefers-reduced-motion:reduce){.bd-card{opacity:1;animation:none;transition:none}.bd-glass{animation:none}}
.bd-stage{position:relative;height:210px;border-radius:16px;background:#fff;border:1px solid var(--line-1);
  box-shadow:var(--shadow-xs);overflow:hidden;display:flex;align-items:center;justify-content:center;
  transition:box-shadow .32s ease,border-color .32s ease}
.bd-card:hover .bd-stage,.bd-card:focus-visible .bd-stage{box-shadow:0 24px 48px rgba(0,0,0,.13);border-color:var(--blue-200)}
.bd-stage::before{content:"";position:absolute;inset:0;opacity:.6;
  background-image:linear-gradient(var(--line-1) 1px,transparent 1px),linear-gradient(90deg,var(--line-1) 1px,transparent 1px);
  background-size:30px 30px;-webkit-mask-image:radial-gradient(circle at 50% 45%,#000,transparent 78%);mask-image:radial-gradient(circle at 50% 45%,#000,transparent 78%)}
.bd-title{font-family:var(--font-display);font-weight:700;font-size:22px;color:var(--ink-900);text-align:center;margin-top:20px}
.bd-body{font-size:14.5px;line-height:1.55;color:var(--fg-3);text-align:center;margin-top:10px;text-wrap:pretty}
@media(max-width:980px){.bd-grid-cards{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.bd-grid-cards{grid-template-columns:1fr}}
@media(max-width:480px){
  .bd{padding:64px 0 160px}
  .bd-stage{height:180px}
  .bd-title{font-size:19px;margin-top:16px}
  .bd-body{font-size:13.5px}
}

.bd-illu{position:relative;width:100%;height:100%}
.bd-win{position:absolute;background:#fff;border:1px solid var(--line-2);border-radius:8px;overflow:hidden;box-shadow:var(--shadow-sm)}
.bd-win-bar{height:16px;background:var(--bg-2);display:flex;align-items:center;gap:4px;padding:0 7px;border-bottom:1px solid var(--line-1)}
.bd-win-bar i{width:5px;height:5px;border-radius:50%;background:var(--line-2)}
.bd-grid{position:relative;height:calc(100% - 16px);
  background-image:linear-gradient(var(--line-1) 1px,transparent 1px),linear-gradient(90deg,var(--line-1) 1px,transparent 1px);
  background-size:16px 14px}
.bd-cell{position:absolute;width:14px;height:12px;border-radius:1px}
.bd-cell.blue{background:var(--brand);left:18px;top:34px}
.bd-cell.blue.b2{left:50px;top:18px}
.bd-cell.red{background:var(--danger);right:30px;bottom:22px}

.bd-win-back{width:118px;height:96px;left:84px;top:44px;transition:transform .3s ease}
.bd-win-front{width:118px;height:96px;left:42px;top:74px;transition:transform .3s ease}
.bd-card:hover .bd-win-back{transform:translate(7px,-6px) rotate(1.5deg)}
.bd-card:hover .bd-win-front{transform:translate(-7px,6px) rotate(-1.5deg)}
.bd-card:hover .bd-cell.blue{animation:bdBlink 1.1s ease-in-out infinite}
@keyframes bdBlink{0%,100%{opacity:1}50%{opacity:.35}}

.bd-disc{position:absolute;width:150px;height:150px;border-radius:50%;background:var(--bg-2);left:50%;top:48%;transform:translate(-50%,-50%)}
.bd-doc{position:absolute;width:62px;height:80px;background:#fff;border:1px solid var(--line-2);border-radius:5px;
  display:flex;align-items:center;justify-content:center;font-family:var(--font-mono);font-size:9px;font-weight:700;color:var(--fg-4);letter-spacing:.04em;transition:transform .35s ease}
.bd-doc::before{content:"";position:absolute;left:8px;right:8px;top:14px;height:1px;background:var(--line-1);box-shadow:0 6px 0 var(--line-1),0 12px 0 var(--line-1)}
.bd-doc-back{left:52%;top:44%;transform:translate(-50%,-50%) rotate(4deg)}
.bd-doc-front{left:38%;top:50%;transform:translate(-50%,-50%) rotate(-3deg)}
.bd-card:hover .bd-doc-back{transform:translate(-50%,-50%) rotate(10deg) translateX(8px)}
.bd-card:hover .bd-doc-front{transform:translate(-50%,-50%) rotate(-8deg) translateX(-8px)}
.bd-glass{position:absolute;left:40%;top:46%;width:56px;height:56px;color:var(--brand);transform:translate(-50%,-50%);animation:bdScan 4.5s ease-in-out infinite}
.bd-glass .ic{width:100%;height:100%}
@keyframes bdScan{
  0%  {transform:translate(-50%,-50%) rotate(0deg)}
  20% {transform:translate(-10%,-46%) rotate(8deg)}
  45% {transform:translate(-72%,-40%) rotate(-7deg)}
  70% {transform:translate(-18%,-58%) rotate(12deg)}
  100%{transform:translate(-50%,-50%) rotate(0deg)}
}

.bd-win-solo{width:172px;height:118px;left:50%;top:50%;transform:translate(-50%,-50%)}
.bd-grid-lg{background-size:22px 18px}
.bd-warn{position:absolute;right:22px;bottom:42px;width:26px;height:26px;color:var(--warning);
  background:#fff;border-radius:6px;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-sm)}
.bd-warn .ic{width:18px;height:18px}
.bd-card:hover .bd-warn{animation:bdPulse 1s ease-in-out infinite}
@keyframes bdPulse{0%,100%{transform:scale(1)}50%{transform:scale(1.18)}}
.bd-card:hover .bd-cell.red{animation:bdBlink 1.1s ease-in-out infinite}

.bd-pill{position:absolute;top:24px;left:50%;transform:translateX(-50%);z-index:2;display:inline-flex;align-items:center;gap:7px;
  font-family:var(--font-mono);font-size:11px;font-weight:600;letter-spacing:.04em;color:var(--success);
  background:#fff;border:1px solid var(--line-1);border-radius:999px;padding:6px 12px;box-shadow:var(--shadow-sm)}
.bd-spin{width:11px;height:11px;border-radius:50%;border:2px solid var(--success-bg);border-top-color:var(--success);animation:bdSpin 1s linear infinite}
@keyframes bdSpin{to{transform:rotate(360deg)}}
.bd-bars{position:absolute;bottom:30px;left:50%;transform:translateX(-50%);display:flex;align-items:flex-end;gap:18px;height:120px}
.bd-bar{width:30px;border-radius:5px 5px 0 0;background:linear-gradient(var(--success),#7FD0A6);transform-origin:bottom}
.bd-bar.ghost{background:repeating-linear-gradient(45deg,var(--line-1),var(--line-1) 4px,transparent 4px,transparent 8px);border:1px solid var(--line-2);height:118px}
.bd-bar.tall{height:96px}
.bd-bar.short{height:58px}
.bd-card:hover .bd-bar.tall,.bd-card:hover .bd-bar.short{animation:bdGrow 1.4s ease-in-out infinite}
@keyframes bdGrow{0%,100%{transform:scaleY(1)}50%{transform:scaleY(.82)}}

/* ---------- scatter → unified scroll transition ---------- */
.tx{position:relative;height:260vh;background:var(--bg-0)}
.tx-stage{position:sticky;top:0;height:100vh;height:100dvh;overflow:hidden;display:flex;flex-direction:column;align-items:center}
.tx-headings{position:relative;z-index:3;text-align:center;padding-top:88px;pointer-events:none}
.tx-head-wrap{position:relative;height:64px}
.tx-h{position:absolute;left:50%;top:0;transform:translateX(-50%);white-space:nowrap;margin:0;
  font-family:var(--font-display);font-weight:700;font-size:50px;letter-spacing:-.015em;line-height:1.05}
.tx-head-wrap .tx-h{left:50%;transform:translateX(-50%)}
.tx-h1{color:var(--ink-900)}
.tx-h2{color:var(--brand);opacity:0}
.tx-sub-wrap{position:relative;height:30px;margin-top:6px}
.tx-sub{position:absolute;left:50%;top:0;transform:translateX(-50%);white-space:nowrap;margin:0;
  font-size:18px;color:var(--fg-3);line-height:1.4}
.tx-sub2{opacity:0}

.tx-field{position:absolute;inset:0;z-index:1;transform:translateY(120px)}
.tx-card{position:absolute;left:50%;top:50%;width:268px;will-change:transform,opacity}

/* mock artefact cards */
.txc{background:#fff;border:1px solid var(--line-1);border-radius:12px;box-shadow:var(--shadow-md);overflow:hidden;font-family:var(--font-sans);zoom:1.18}
.txc .n{font-family:var(--font-mono);font-variant-numeric:tabular-nums;text-align:right}
.txc .muted{color:var(--fg-4)}
.txc-sheet .txc-xl{background:#1B7A4B;color:#fff;font-size:11px;font-weight:600;padding:7px 11px;font-family:var(--font-mono)}
.txc-grid{display:grid;grid-template-columns:1fr auto;gap:6px 14px;padding:11px 13px;font-size:12px;color:var(--fg-1)}
.txc-msg{padding:12px 13px}
.txc-msg-top{display:flex;align-items:center;gap:8px;font-size:12px;font-weight:700;color:var(--fg-1)}
.txc-msg-top img{width:18px;height:18px;object-fit:contain}
.txc-msg-sub{font-size:12px;font-weight:600;color:var(--fg-1);margin-top:8px}
.txc-msg-body{font-size:12px;color:var(--fg-3);margin-top:5px;line-height:1.4}
.txc-pdf{padding:13px;border-top:3px solid var(--danger)}
.txc-pdf-tag{font-family:var(--font-mono);font-size:11px;color:var(--fg-4)}
.txc-pdf-amt{font-family:var(--font-display);font-weight:700;font-size:24px;color:var(--ink-900);margin-top:6px}
.txc-pdf-row{font-size:11.5px;color:var(--fg-3);margin-top:4px}
.txc-db{padding:12px 13px}
.txc-db-top{display:flex;align-items:center;gap:8px;font-size:12px;font-weight:700;font-family:var(--font-mono);color:var(--fg-1)}
.txc-db-top img{width:17px;height:17px;object-fit:contain}
.txc-db-row{display:flex;justify-content:space-between;font-size:12px;color:var(--fg-2);margin-top:7px;font-family:var(--font-mono)}

/* central unified Mesh panel */
.tx-panel{position:absolute;left:50%;top:50%;width:460px;max-width:88vw;transform:translate(-50%,-50%) scale(.9);
  opacity:0;z-index:2;background:#fff;border:1px solid var(--line-1);border-radius:18px;box-shadow:var(--shadow-lg);overflow:hidden}
.tx-panel-bar{display:flex;align-items:center;gap:10px;padding:14px 18px;border-bottom:1px solid var(--line-1);background:var(--bg-1)}
.tx-panel-mark{height:20px}
.tx-panel-title{font-weight:700;font-size:14px;color:var(--ink-900);font-family:var(--font-display)}
.tx-panel-pill{margin-left:auto;display:inline-flex;align-items:center;gap:7px;font-size:12px;font-weight:600;
  color:var(--success);background:var(--success-bg);border-radius:999px;padding:5px 11px}
.tx-panel-pill .tx-dot{width:7px;height:7px;border-radius:50%;background:var(--success)}
.tx-panel-body{padding:8px 18px 16px}
.tx-panel-row{display:flex;align-items:center;gap:12px;padding:11px 0;border-bottom:1px solid var(--line-1)}
.tx-src{flex:none;width:30px;height:30px;border-radius:8px;border:1px solid var(--line-1);display:flex;align-items:center;justify-content:center;overflow:hidden;background:#fff}
.tx-src img{width:18px;height:18px;object-fit:contain}
.tx-src .ic{width:17px;height:17px;color:var(--fg-2)}
.tx-vn{font-weight:600;font-size:14px;color:var(--fg-1)}
.tx-amt{margin-left:auto;font-family:var(--font-mono);font-variant-numeric:tabular-nums;font-weight:500;font-size:14px;color:var(--fg-1)}
.tx-chk{width:18px;height:18px;color:var(--success);display:inline-flex}
.tx-panel-row .tx-amt{margin-left:0}
.tx-panel-row{display:grid;grid-template-columns:30px 1fr auto 18px;align-items:center}
.tx-panel-total{display:flex;align-items:center;justify-content:space-between;padding-top:14px;margin-top:2px;
  border-top:2px solid var(--ink-900);font-weight:700;font-size:14px;color:var(--ink-900)}
.tx-panel-total .tx-amt{font-weight:700;color:var(--brand);font-size:16px}

@media(max-width:760px){
  .tx-h{font-size:30px}
  .tx-sub{font-size:14px;white-space:normal;width:90vw}
  .tx-card{transform-origin:center;zoom:.8}
}
@media(max-width:480px){
  .tx-h{font-size:24px}
  .tx-sub{font-size:13px}
  .tx-card{zoom:.6}
  .tx-panel-bar{padding:12px 14px}
  .tx-panel-body{padding:6px 14px 12px}
  .tx-vn,.tx-amt{font-size:13px}
}
@media(prefers-reduced-motion:reduce){
  .tx{height:auto;padding:80px 0}
  .tx-stage{position:relative;height:auto}
  .tx-h1,.tx-sub1{opacity:0}
  .tx-h2,.tx-sub2{opacity:1;position:relative;transform:none}
  .tx-field{position:relative;height:520px;margin-top:30px}
  .tx-panel{opacity:1;transform:translate(-50%,-50%) scale(1)}
  .tx-card{display:none}
}
@media(max-width:880px){.frow{grid-template-columns:1fr;gap:40px}.frow.rev .ftext{order:0}}

/* ---------- close flow: pinned step rail + swapping panel ---------- */
.cf{position:relative;height:440vh;background:var(--bg-1);border-top:1px solid var(--line-1)}
.cf-stage{position:sticky;top:0;min-height:100vh;min-height:100dvh;display:flex;align-items:center;padding:72px 0}
.cf-head{margin-bottom:88px;max-width:none;margin-top:-56px}
.cf-grid{display:grid;grid-template-columns:1.05fr 1fr;gap:72px;align-items:center;width:100%}
.cf-rail{display:flex;flex-direction:column;gap:26px}
.cf-step{display:block;width:100%;text-align:left;background:none;border:0;padding:0;margin:0;cursor:pointer;font-family:inherit}
.cf-step h3{font-family:var(--font-display);font-weight:700;font-size:31px;line-height:1.16;letter-spacing:-.012em;
  color:var(--fg-4);transition:color .4s ease;margin:0}
.cf-step.active h3{color:var(--ink-900)}
.cf-step:hover h3{color:var(--fg-2)}
.cf-step.active:hover h3{color:var(--ink-900)}
.cf-step-desc{display:grid;grid-template-rows:0fr;opacity:0;margin-top:0;
  transition:grid-template-rows .45s cubic-bezier(.2,.7,.2,1),opacity .35s ease,margin-top .45s ease}
.cf-step-desc>div{overflow:hidden;min-height:0}
.cf-step-desc p{margin:0;font-size:18px;line-height:1.6;color:var(--fg-2);max-width:46ch}
.cf-step.active .cf-step-desc{grid-template-rows:1fr;opacity:1;margin-top:14px}

.cf-mobile-panel{display:none}
.cf-panelwrap{position:relative}
.cf-panel{width:100%;min-height:408px;border-radius:20px}
.cf-pbody{position:relative;min-height:408px}
.cf-slide{position:absolute;inset:0;opacity:0;transform:translateY(12px);
  transition:opacity .5s ease,transform .5s cubic-bezier(.2,.7,.2,1);pointer-events:none}
.cf-slide.show{opacity:1;transform:none;pointer-events:auto}
.cf-pad{padding:26px 26px 22px}

/* centralize / invoice upload */
.cf-row-label{font-family:var(--font-display);font-weight:700;font-size:15px;color:var(--ink-900);margin-bottom:13px}
.cf-drop{border:1.5px dashed var(--blue-300);background:var(--blue-50);border-radius:14px;
  padding:34px 20px;display:flex;flex-direction:column;align-items:center;gap:12px;text-align:center}
.cf-drop-ic{width:44px;height:44px;border-radius:50%;background:#fff;box-shadow:var(--shadow-sm);
  display:flex;align-items:center;justify-content:center}
.cf-drop-ic .ic{width:20px;height:20px;color:var(--brand)}
.cf-drop-tx{font-size:14px;color:var(--fg-3);line-height:1.5}
.cf-drop-file{display:inline-flex;align-items:center;gap:7px;font-family:var(--font-mono);font-size:12px;
  color:var(--fg-2);background:#fff;border:1px solid var(--line-1);border-radius:8px;padding:5px 11px}
.cf-drop-file .ic{width:14px;height:14px;color:var(--success)}
.cf-src{display:flex;align-items:center;gap:12px;margin-top:16px;flex-wrap:wrap}
.cf-src-logos{display:flex}
.cf-src-logo{width:30px;height:30px;border-radius:8px;background:#fff;border:1px solid var(--line-1);
  display:flex;align-items:center;justify-content:center;margin-left:-8px;box-shadow:var(--shadow-sm)}
.cf-src-logo:first-child{margin-left:0}
.cf-src-logo img{width:17px;height:17px;object-fit:contain}
.cf-src-cap{font-size:12.5px;color:var(--fg-4);flex:1;min-width:140px}
.cf-foot{display:flex;justify-content:flex-end;margin-top:18px}
.cf-submit{cursor:default}

/* encode / rule set */
.cf-rulehd{display:flex;align-items:center;gap:12px}
.cf-back{flex:none;width:30px;height:30px;border-radius:9px;border:1px solid var(--line-1);
  display:flex;align-items:center;justify-content:center;color:var(--fg-3)}
.cf-back .ic{width:15px;height:15px}
.cf-rule-title{font-family:var(--font-display);font-weight:700;font-size:18px;color:var(--ink-900)}
.cf-rule-sub{font-size:13px;color:var(--fg-3);margin-top:2px}
.cf-pill-muted{margin-left:auto;font-size:12px;font-weight:600;color:var(--fg-3);
  background:var(--bg-2);border-radius:999px;padding:5px 12px}
.cf-meta{display:grid;grid-template-columns:1fr 1fr;gap:8px;background:var(--bg-1);
  border:1px solid var(--line-1);border-radius:12px;padding:14px 16px;margin-top:16px}
.cf-meta-k{display:block;font-size:12px;color:var(--fg-3)}
.cf-meta-v{display:block;font-size:14px;color:var(--ink-900);font-weight:600;margin-top:3px}
.cf-tabs{display:flex;gap:8px;margin-top:16px}
.cf-tab{display:inline-flex;align-items:center;gap:6px;font-size:13px;font-weight:600;color:var(--fg-3);
  background:var(--bg-1);border:1px solid var(--line-1);border-radius:9px;padding:7px 12px}
.cf-tab .ic{width:14px;height:14px}
.cf-tab.on{color:var(--ink-900);background:#fff;box-shadow:var(--shadow-sm)}
.cf-rule{border:1px solid var(--line-1);border-radius:12px;padding:16px;margin-top:14px}
.cf-rule-r1{display:flex;align-items:center;justify-content:space-between;
  font-family:var(--font-display);font-weight:700;font-size:15.5px;color:var(--ink-900)}
.cf-rule-r1 .ic{width:16px;height:16px;color:var(--fg-4)}
.cf-rule p{margin:8px 0 0;font-size:13.5px;line-height:1.55;color:var(--fg-3)}

/* review / flagged exceptions */
.cf-flag{display:flex;align-items:center;gap:13px;padding:14px 2px;border-bottom:1px solid var(--line-1)}
.cf-flag:first-child{padding-top:2px}
.cf-flag-ic{flex:none;width:34px;height:34px;border-radius:10px;display:flex;align-items:center;justify-content:center}
.cf-flag-ic .ic{width:17px;height:17px}
.cf-flag-ic.warn{background:var(--warning-bg);color:var(--warning)}
.cf-flag-ic.info{background:var(--blue-50);color:var(--brand)}
.cf-flag-ic.judge{background:var(--bg-2);color:var(--fg-2)}
.cf-flag-tx{flex:1}
.cf-flag-t{font-size:15px;font-weight:700;color:var(--ink-900)}
.cf-flag-s{font-size:13px;color:var(--fg-3);margin-top:2px}
.cf-flag-pill{flex:none;font-size:11.5px;font-weight:600;border-radius:999px;padding:4px 11px}
.cf-flag-pill.warn{color:var(--warning);background:var(--warning-bg)}
.cf-flag-pill.info{color:var(--brand);background:var(--blue-50)}
.cf-flag-pill.judge{color:var(--fg-2);background:var(--bg-2)}
.cf-flag-foot{display:flex;align-items:center;gap:8px;margin-top:16px;font-size:13px;color:var(--fg-3)}
.cf-flag-foot .ic{width:15px;height:15px;color:var(--success);flex:none}

/* maintain / audit trail timeline */
.cf-tl{position:relative}
.cf-tl-row{display:grid;grid-template-columns:64px 1fr;gap:12px;align-items:flex-start;padding-bottom:18px}
.cf-tl-row:last-child{padding-bottom:0}
.cf-tl-time{font-family:var(--font-mono);font-size:11.5px;color:var(--fg-4);padding-top:2px;text-align:right}
.cf-tl-main{position:relative;padding-left:24px}
.cf-tl-dot{position:absolute;left:0;top:3px;width:11px;height:11px;border-radius:50%;background:#fff;border:2px solid var(--brand)}
.cf-tl-row.done .cf-tl-dot{background:var(--brand)}
.cf-tl-line{position:absolute;left:5px;top:15px;bottom:-9px;width:2px;background:var(--line-2)}
.cf-tl-row:last-child .cf-tl-line{display:none}
.cf-tl-t{font-size:14.5px;font-weight:700;color:var(--ink-900)}
.cf-tl-s{font-size:13px;color:var(--fg-3);margin-top:2px}

@media(max-width:880px){
  .cf{height:auto}
  .cf-stage{position:relative;min-height:0;padding:64px 0;display:block}
  .cf-grid{grid-template-columns:1fr;gap:0}
  .cf-rail{gap:36px}
  .cf-step h3{color:var(--ink-900)}
  .cf-step-desc{grid-template-rows:1fr;opacity:1;margin-top:12px}
  .cf-panelwrap{display:none}
  .cf-mobile-panel{display:block;margin-top:22px}
  .cf-panel{min-height:0}
}
@media(max-width:480px){
  .cf-stage{padding:48px 0}
  .cf-step h3{font-size:23px}
  .cf-step-desc p{font-size:15px}
  .cf-pad{padding:18px 18px 16px}
}
@media(prefers-reduced-motion:reduce){
  .cf{height:auto}
  .cf-stage{position:relative;min-height:0;display:block}
  .cf-step h3{color:var(--ink-900)}
  .cf-step-desc{grid-template-rows:1fr;opacity:1;margin-top:12px;transition:none}
  .cf-panel{min-height:0}
  .cf-pbody{min-height:0;display:flex;flex-direction:column;gap:16px}
  .cf-slide{position:relative;opacity:1;transform:none;transition:none}
}

/* ROI / stats band — soft blue tint so it blends with the page; accents stay blue */
.dark-band{background:var(--blue-50);color:var(--ink-900);position:relative;overflow:hidden;padding:72px 0;
  border-top:1px solid var(--blue-100);border-bottom:1px solid var(--blue-100)}
.dark-band .eyebrow{color:var(--brand)}
.dark-band h2{color:var(--ink-900)}
.dark-band .sub{color:var(--fg-2)}
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin-top:56px}
.stat{border-left:2px solid var(--blue-500);padding-left:22px}
.stat .num{font-family:var(--font-display);font-weight:700;font-size:60px;letter-spacing:-.01em;color:#fff;font-variant-numeric:tabular-nums}
.stat .lab{font-size:15px;color:#9AB0E8;margin-top:8px;line-height:1.5}
@media(max-width:880px){.stats{grid-template-columns:1fr;gap:34px}}

/* ROI stats — Mesh-blue rule + white stat, no cards; blue CTA reads as a button */
.roi-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:36px;margin-top:40px;align-items:stretch}
.roi-cards>*{display:flex}
.roi-stat{position:relative;width:100%;display:flex;flex-direction:column;
  padding:2px 0 2px 26px}
.roi-stat::before{content:"";position:absolute;left:0;top:3px;bottom:3px;width:6px;
  background:var(--brand);border-radius:3px}
.roi-card-title{font-family:var(--font-display);font-weight:700;font-size:16px;line-height:1.3;color:var(--ink-900);
  white-space:nowrap}
.roi-num{font-family:var(--font-display);font-weight:700;font-size:46px;line-height:1.05;letter-spacing:-.02em;
  color:var(--brand);margin:14px 0 0;white-space:nowrap}
.roi-cap{font-size:13.5px;color:var(--fg-3);line-height:1.5;margin-top:16px}
.roi-cta{width:100%;border:none;border-radius:18px;background:var(--brand);padding:28px 26px;
  display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;gap:11px;
  box-shadow:0 10px 30px -12px rgba(56,96,240,.65);cursor:pointer;
  transition:transform .25s cubic-bezier(.2,.7,.2,1),box-shadow .25s ease}
.roi-cta:hover{transform:translateY(-8px);box-shadow:0 26px 50px -16px rgba(56,96,240,.8)}
.roi-cta:active{transform:translateY(-3px)}
.roi-cta-eyebrow{font-family:var(--font-mono);font-size:11px;letter-spacing:.14em;color:var(--blue-100);text-transform:uppercase}
.roi-cta-h{font-family:var(--font-display);font-weight:700;font-size:20px;line-height:1.28;color:#fff}
.roi-cta-link{display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-size:14px;font-weight:700;color:#000;background:#fff;
  border-radius:999px;padding:11px 20px;margin-top:6px;
  box-shadow:0 6px 16px -6px rgba(0,0,0,.35);transition:transform .25s ease,box-shadow .25s ease}
.roi-cta:hover .roi-cta-link{transform:translateY(-1px);box-shadow:0 10px 22px -8px rgba(0,0,0,.45)}
.roi-cta-link .ic{width:16px;height:16px;transition:transform .25s ease}
.roi-cta:hover .roi-cta-link .ic{transform:translateX(4px)}
@media(max-width:980px){.roi-cards{grid-template-columns:repeat(2,1fr);gap:30px}}
@media(max-width:560px){.roi-cards{grid-template-columns:1fr}}

/* Why Mesh — build-vs-buy comparison, in the soft-blue stats style */
.cmp-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:44px;align-items:stretch}
.cmp-cards>*{display:flex}
.cmp-card{position:relative;width:100%;display:flex;flex-direction:column;
  background:#fff;border:1px solid var(--blue-100);border-radius:18px;padding:30px 28px;
  box-shadow:0 1px 2px rgba(10,17,36,.04);transition:transform .18s ease,box-shadow .18s ease}
.cmp-card:hover{transform:translateY(-5px);box-shadow:0 16px 40px -12px rgba(10,17,36,.14)}
.cmp-card--mesh{border:2px solid var(--brand);box-shadow:0 18px 44px -22px rgba(56,96,240,.55)}
.cmp-title{font-family:var(--font-display);font-weight:700;font-size:21px;line-height:1.25;
  letter-spacing:-.01em;color:var(--brand)}
.cmp-num{font-family:var(--font-display);font-weight:700;font-size:clamp(28px,2.7vw,40px);
  line-height:1.05;letter-spacing:-.02em;color:var(--brand);margin-top:14px;white-space:nowrap}
.cmp-sub{font-size:14.5px;color:var(--brand);font-weight:500;line-height:1.5;margin-top:10px}
.cmp-summary{margin-top:28px;padding:16px 18px;background:var(--blue-50);border-radius:12px;
  font-size:14px;line-height:1.5;color:var(--fg-2);font-weight:500}
.cmp-card--mesh .cmp-summary{background:var(--blue-100);color:var(--ink-900)}
.cmp-cta-row{display:flex;justify-content:center;margin-top:34px}
.cmp-cta{max-width:600px;padding:24px 36px;gap:12px}
.cmp-cta .roi-cta-h{font-size:25px;line-height:1.25}
.cmp-cta .roi-cta-link{font-size:15px;padding:12px 22px;margin-top:8px}
.cmp-cta .roi-cta-link .ic{width:17px;height:17px}
@media(max-width:900px){.cmp-cards{grid-template-columns:1fr;gap:20px}.cmp-num{font-size:38px}}

/* slot-machine reel */
.slot{display:inline-flex;align-items:flex-start;line-height:1.1;font-variant-numeric:tabular-nums}
.slot-ch{display:inline-block;height:1.1em;line-height:1.1}
.slot-reel{display:inline-block;height:1.1em;overflow:hidden;vertical-align:top}
.slot-col{display:flex;flex-direction:column}
.slot-col.spin{transition:transform .7s cubic-bezier(.16,1,.3,1)}
.slot-d{height:1.1em;line-height:1.1;display:block;text-align:center}
@media(prefers-reduced-motion:reduce){.slot-col.spin{transition:none}}

/* quote */
.quote{max-width:840px;margin:0 auto;text-align:center}
.quote blockquote{font-family:var(--font-display);font-weight:700;font-size:36px;line-height:1.18;
  letter-spacing:-.01em;color:var(--ink-900)}
.quote .by{display:flex;align-items:center;justify-content:center;gap:14px;margin-top:30px}
.quote .av{width:46px;height:46px;border-radius:50%;background:var(--blue-100);display:flex;align-items:center;justify-content:center;
  font-weight:700;color:var(--brand);font-family:var(--font-display)}
.quote .who{text-align:left}
.quote .who .nm{font-weight:600;font-size:15px;color:var(--fg-1)}
.quote .who .rl{font-size:13px;color:var(--fg-3)}
/* testimonial section */
.testimonial-section{background-color:#fff;border-bottom:1px solid var(--line-1)}
.testimonial-row{display:flex;align-items:center;gap:64px}
.dark-band .testimonial-row{margin-top:56px}
.testimonial-quote{flex:1;min-width:0}
.testimonial-logo-img{display:block;height:26px;width:auto;margin-bottom:40px}
.testimonial-blockquote{font-family:var(--font-display);font-weight:700;font-size:clamp(19px,2.3vw,27px);line-height:1.4;letter-spacing:-.01em;color:var(--ink-900);text-align:left;margin:14px 0}
.w-word{color:rgba(10,17,36,.25);transition:color .18s linear}
@media(prefers-reduced-motion:reduce){.w-word{color:var(--ink-900)!important;transition:none}}
.tq-icon{display:inline-flex;width:28px;height:28px;color:var(--blue-300)}
.tq-open{display:block;margin-bottom:10px}
.tq-close-row{display:flex;justify-content:flex-end;margin-top:10px}
.tq-close{transform:rotate(180deg)}
.testimonial-person{flex-shrink:0}
.av-photo{border-radius:50%;overflow:hidden;display:block;flex-shrink:0;background:transparent!important;box-shadow:0 8px 32px rgba(14,23,48,.18),0 2px 8px rgba(14,23,48,.08)}
.av-photo img{width:100%;height:100%;object-fit:cover;object-position:right top;border-radius:50%;display:block}
.av-lg{width:220px!important;height:220px!important}
.av-fallback{display:flex;align-items:center;justify-content:center}
.av-fallback::after{content:attr(data-initials);font-family:var(--font-display);font-weight:700;color:var(--brand);font-size:28px}
.testimonial-credit{margin-top:20px}
.testimonial-name{font-family:var(--font-sans);font-weight:700;font-size:23px;color:var(--fg-1);line-height:1.3}
.testimonial-role{font-family:var(--font-sans);font-size:18px;color:var(--fg-2);margin-top:4px}
@media(max-width:760px){
  .testimonial-row{flex-direction:column;gap:32px}
  .testimonial-person{align-self:center;order:2}
  .testimonial-blockquote{font-size:clamp(18px,5vw,24px)}
}
@media(max-width:480px){
  .av-lg{width:140px!important;height:140px!important}
  .testimonial-name{font-size:19px}
  .testimonial-role{font-size:15px}
  .testimonial-logo-img{margin-bottom:24px}
}

/* CTA */
.cta{background:linear-gradient(165deg, var(--blue-500) 0%, var(--blue-700) 100%);border-radius:28px;padding:72px 48px;text-align:center;position:relative;overflow:hidden}
.cta h2{font-family:var(--font-display);font-weight:700;font-size:50px;letter-spacing:-.01em;color:#fff}
.cta h2 .hl{color:#fff}
.cta .sub{font-size:18px;color:rgba(255,255,255,.84);margin-top:18px}
.cta .row{display:flex;gap:14px;justify-content:center;margin-top:34px}
.cta-glow{position:absolute;width:560px;height:560px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.30),transparent 62%);top:-260px;left:50%;transform:translateX(-50%);pointer-events:none}

/* footer */
.footer{padding:72px 0 40px;border-top:1px solid var(--line-1)}
.footer-grid{display:grid;grid-template-columns:2.6fr 1fr 1fr 1fr;gap:40px}
.footer h5{font-size:13px;font-weight:600;color:var(--fg-1);margin-bottom:16px;letter-spacing:.01em}
.footer ul{list-style:none;display:flex;flex-direction:column;gap:11px}
.footer li a{font-size:14px;color:var(--fg-3);cursor:pointer}
.footer li a:hover{color:var(--brand)}
.footer-logo{height:24px;margin-bottom:16px}
.footer-tag{font-size:14px;color:var(--fg-3);line-height:1.6;max-width:30ch}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;margin-top:56px;padding-top:26px;border-top:1px solid var(--line-1)}
.footer-bottom .small{font-size:13px;color:var(--fg-4)}
.footer-bottom-left{display:flex;align-items:center;gap:14px}
.footer-aicpa{height:104px;width:auto;display:block}
.ag-pref-row,.ag-map-row:not(.ag-map-head),.ag-est-row:not(.ag-est-head),.ag-tl-item{transition:background .3s ease,box-shadow .3s ease}
.ag-foc{background:color-mix(in srgb,var(--brand) 7%,transparent)!important;box-shadow:inset 0 0 0 1.5px color-mix(in srgb,var(--brand) 45%,transparent);border-radius:8px}
.footer-soc{display:flex;gap:22px;align-items:center}
.footer-soc a{display:inline-flex;align-items:center;gap:8px;color:var(--fg-3);font-size:13px;text-decoration:none}
.footer-soc a:hover{color:var(--fg-1)}
.footer-soc .ic{width:18px;height:18px;color:inherit;cursor:pointer}
@media(max-width:880px){.footer-grid{grid-template-columns:1fr 1fr;gap:32px}}

/* lucide icon wrappers: caller's class sets the box, svg fills it */
.ic,.chev{display:inline-flex;align-items:center;justify-content:center;flex:none;line-height:0}
.ic svg,.chev svg,.tick svg{width:100%;height:100%;display:block}
.tick{position:relative}

/* scroll reveal */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s cubic-bezier(.2,.7,.2,1),transform .7s cubic-bezier(.2,.7,.2,1)}
.reveal.in{opacity:1;transform:none}
.reveal.ov-pop{transform:translateY(54px) scale(.97)}
.reveal.ov-pop.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none}}

/* ---------- video demo (Product page) ---------- */
.video-frame{max-width:920px;margin:0 auto;border-radius:20px;overflow:hidden;
  border:1px solid var(--line-1);box-shadow:var(--shadow-lg);background:var(--ink-900)}
.video-poster{position:relative;width:100%;padding-top:56.25%;
  background:linear-gradient(160deg, #1B2C66 0%, var(--ink-950) 70%);overflow:hidden}
.video-inner{position:absolute;inset:0;display:flex;align-items:center;justify-content:center}
.video-grid{position:absolute;inset:0;opacity:.5;
  background-image:linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size:42px 42px}
.video-mark{position:absolute;width:64px;opacity:.16;top:50%;left:50%;transform:translate(-50%,-50%)}
.video-play{position:relative;z-index:2;width:84px;height:84px;border-radius:50%;border:none;cursor:pointer;
  background:var(--brand);color:#fff;display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-blue);transition:transform .15s ease, background .15s ease}
.video-play:hover{transform:scale(1.06);background:var(--brand-hover)}
.video-play .ic{width:30px;height:30px;margin-left:4px}
.video-live{position:relative;z-index:2;display:flex;align-items:center;gap:10px;color:#fff;
  font-weight:600;font-size:15px;font-family:var(--font-sans)}
.video-rec{width:11px;height:11px;border-radius:50%;background:#E0564A;box-shadow:0 0 0 0 rgba(224,86,74,.6);animation:rec 1.4s infinite}
@keyframes rec{0%{box-shadow:0 0 0 0 rgba(224,86,74,.6)}100%{box-shadow:0 0 0 9px rgba(224,86,74,0)}}
.video-meta{position:absolute;bottom:14px;right:16px;font-family:var(--font-mono);font-size:12px;color:rgba(255,255,255,.5)}
.video-bar{height:5px;background:#0C1430}
.video-progress{height:100%;background:var(--brand);transition:width .5s ease}

/* ---------- FAQ: shared accordion ---------- */
.faq-list{margin-top:40px}
.faq-list-narrow{max-width:760px;margin-left:auto;margin-right:auto}
.faq-item{border-bottom:1px solid var(--line-1)}
.faq-item:first-child{border-top:1px solid var(--line-1)}
.faq-q{display:flex;align-items:center;justify-content:space-between;gap:24px;width:100%;
  text-align:left;background:none;border:0;cursor:pointer;font-family:inherit;
  padding:24px 4px;color:var(--ink-900)}
.faq-q-text{font-family:var(--font-display);font-weight:700;font-size:19px;line-height:1.35;
  letter-spacing:-.005em;transition:color .18s ease}
.faq-q:hover .faq-q-text{color:var(--brand)}
.faq-chev{flex:none;width:30px;height:30px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  color:var(--fg-3);background:var(--bg-1);transition:none}
.faq-chev .ic{width:17px;height:17px}
.faq-item.open .faq-chev{background:var(--blue-50);color:var(--brand)}
.faq-q:hover .faq-chev{color:var(--brand)}
.faq-a{height:0;overflow:hidden;transition:none}
.faq-a p{margin:0;padding:0 56px 26px 4px;font-size:16px;line-height:1.62;color:var(--fg-2);
  max-width:64ch;text-wrap:pretty}

/* ---------- FAQ: compact homepage block ---------- */
.faq-home{padding:88px 0 96px;scroll-margin-top:88px;background:var(--blue-50)}
.faq-home-head{margin-bottom:8px;max-width:none}
.faq-home-head h2{margin-top:0;white-space:nowrap;text-align:center}
.faq-home-head .eyebrow{justify-content:center}
.faq-home-more{margin-top:34px}
.faq-morelink{display:inline-flex;align-items:center;gap:7px;font-weight:700;font-size:19px;color:var(--brand);background:none;border:none;padding:0;cursor:pointer;font-family:var(--font-display);letter-spacing:-.005em;line-height:1.35}
.faq-morelink .ic{width:16px;height:16px;transition:transform .2s ease}
.faq-morelink:hover .ic{transform:translateX(4px)}

/* ---------- FAQ: dedicated page ---------- */
.faqp-hero{padding:128px 0 0;background:var(--bg-1);border-bottom:1px solid var(--line-1)}
.faqp-hero .wrap{max-width:820px}
.faqp-hero .eyebrow{justify-content:flex-start;white-space:nowrap}
.faqp-hero h1{font-family:var(--font-display);font-weight:700;font-size:52px;line-height:1.02;
  letter-spacing:-.02em;color:var(--ink-900);margin-top:16px}
.faqp-intro{font-size:19px;line-height:1.6;color:var(--fg-2);margin-top:18px;max-width:60ch}
.faqp-search{position:relative;display:flex;align-items:center;margin:34px 0 40px;max-width:560px}
.faqp-search-ic{position:absolute;left:18px;display:flex;width:20px;height:20px;color:var(--fg-4);pointer-events:none}
.faqp-search-ic .ic{width:20px;height:20px}
.faqp-search input{width:100%;font-family:var(--font-sans);font-size:16px;color:var(--fg-1);
  padding:16px 48px 16px 50px;border:1px solid var(--line-2);border-radius:13px;background:#fff;
  outline:none;transition:border-color .15s ease,box-shadow .15s ease}
.faqp-search input::placeholder{color:var(--fg-4)}
.faqp-search input:focus{border-color:var(--brand);box-shadow:0 0 0 4px var(--blue-50)}
.faqp-search-clear{position:absolute;right:12px;width:28px;height:28px;border:0;background:var(--bg-2);
  border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;color:var(--fg-3)}
.faqp-search-clear .ic{width:15px;height:15px}
.faqp-search-clear:hover{background:var(--line-1);color:var(--fg-1)}
.faqp-count{font-family:var(--font-mono);font-size:13px;color:var(--fg-3);margin:-22px 0 38px}

.faqp-body{padding:64px 0 96px}
.faqp-body .wrap{max-width:820px}
.faqp-group{margin-bottom:52px}
.faqp-group:last-of-type{margin-bottom:0}
.faqp-cat{font-family:var(--font-display);font-weight:700;font-size:15px;letter-spacing:.02em;
  color:var(--brand);text-transform:none;margin-bottom:4px}
.faqp-group .faq-list{margin-top:0}
.faqp-empty{text-align:center;padding:48px 0 24px}
.faqp-empty-ic{display:inline-flex;width:40px;height:40px;color:var(--fg-4)}
.faqp-empty-ic .ic{width:40px;height:40px}
.faqp-empty h3{font-family:var(--font-display);font-weight:700;font-size:22px;color:var(--ink-900);margin-top:14px}
.faqp-empty p{font-size:15px;color:var(--fg-3);margin-top:8px}

.faqp-contact{display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap;
  margin-top:64px;padding:34px 36px;background:var(--bg-1);border:1px solid var(--line-1);border-radius:20px}
.faqp-contact-tx h3{font-family:var(--font-display);font-weight:700;font-size:24px;color:var(--ink-900)}
.faqp-contact-tx p{font-size:16px;line-height:1.55;color:var(--fg-3);margin-top:8px;max-width:52ch}
.faq-nav-active{color:var(--brand)!important;font-weight:600}

@media(max-width:760px){
  .faqp-hero h1{font-size:38px}
  .faq-q-text{font-size:17px}
  .faq-morelink{font-size:17px}
  .faq-a p{padding-right:4px}
  .faqp-contact{flex-direction:column;align-items:flex-start}
}

/* ========== PRODUCT OVERVIEW PAGE ========== */
.ov-hero{position:relative;text-align:center;padding:78px 0 60px;overflow:hidden}
.ov-hero-bg{position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(900px 440px at 50% -140px, var(--sky), transparent 70%)}
.ov-hero-inner{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center}
.ov-eyebrow{justify-content:center;margin-bottom:22px}
.ov-h1{font-family:var(--font-display);font-weight:700;font-size:64px;line-height:1.04;
  letter-spacing:-.02em;color:var(--ink-900);max-width:none}
.ov-h1 .hl{color:var(--brand)}
.ov-sub{font-size:21px;line-height:1.5;color:var(--fg-2);margin-top:24px;max-width:48ch;text-wrap:pretty}
.ov-cta-row{display:flex;align-items:center;gap:24px;margin-top:38px}
.ov-cta-row .btn-primary{border-radius:999px;padding-left:28px;padding-right:28px}
.ov-watch{display:inline-flex;align-items:center;gap:10px;font-weight:600;font-size:16px;color:var(--brand)}
.ov-watch .ic{width:16px;height:16px;transition:transform .2s ease}
.ov-watch:hover .ic:last-child{transform:translateX(3px)}
.ov-watch-ic{display:inline-flex;width:32px;height:32px;align-items:center;justify-content:center;
  border-radius:999px;background:var(--blue-50);border:1px solid var(--blue-100)}
.ov-watch-ic .ic{width:14px;height:14px}

/* platform map */
.ov-map-wrap{padding:0 0 104px}
.ov-map{position:relative;max-width:1040px;margin:0 auto;padding:34px;border-radius:30px;
  border:1px solid var(--line-1);background:linear-gradient(180deg,#fff 0%,var(--bg-1) 100%);
  box-shadow:var(--shadow-lg);overflow:hidden}
.ov-map::before{content:"";position:absolute;inset:0;pointer-events:none;
  background-image:radial-gradient(var(--line-1) 1.1px, transparent 1.1px);background-size:24px 24px;opacity:.45;
  -webkit-mask-image:linear-gradient(180deg,#000,transparent 55%);mask-image:linear-gradient(180deg,#000,transparent 55%)}
.ov-cards{position:relative;z-index:1;display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.ov-card{background:#fff;border:1px solid var(--line-1);border-radius:18px;padding:22px;box-shadow:var(--shadow-sm)}
.ov-card-top{display:flex;align-items:center;gap:11px}
.ov-card-ic{display:inline-flex;width:38px;height:38px;align-items:center;justify-content:center;
  border-radius:11px;background:var(--sky);color:var(--brand);flex:none}
.ov-card-ic .ic{width:19px;height:19px}
.ov-card-label{font-family:var(--font-mono);font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--fg-3)}
.ov-card-title{font-family:var(--font-display);font-weight:700;font-size:18px;letter-spacing:-.01em;color:var(--ink-900);margin-top:15px}
.ov-card-body{margin-top:16px}
.ov-logos{display:flex;flex-wrap:wrap;gap:8px}
.ov-logo{border-radius:50%;background:#fff;border:1px solid var(--line-1);box-shadow:var(--shadow-xs);
  display:flex;align-items:center;justify-content:center;overflow:hidden;flex:none}
.ov-logo img{width:62%;height:62%;object-fit:contain;display:block}
.ov-chips{display:flex;flex-wrap:wrap;gap:8px}
.ov-chip{font-size:13px;font-weight:500;color:var(--fg-2);background:var(--bg-1);
  border:1px solid var(--line-1);border-radius:999px;padding:6px 13px}
.ov-link{position:relative;z-index:1;display:flex;justify-content:center;padding:6px 0}
.ov-link span{width:2px;height:28px;background:linear-gradient(var(--line-2),var(--blue-300))}
.ov-core{position:relative;z-index:1}
/* tabbed outputs panel */
.ov-tabs{display:flex;gap:28px;padding:16px 24px 0;border-bottom:1px solid var(--line-1)}
.ov-tab{font-size:15px;font-weight:600;color:var(--fg-3);padding-bottom:13px;position:relative}
.ov-tab.is-active{color:var(--brand)}
.ov-tab.is-active::after{content:"";position:absolute;left:0;right:0;bottom:-1px;height:2px;background:var(--brand);border-radius:2px}
.ov-out{padding:18px 24px 6px}
.ov-out-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px}
.ov-seg{display:flex;gap:6px}
.ov-seg-btn{display:inline-flex;align-items:center;gap:7px;font-size:14px;font-weight:600;color:var(--fg-3);
  padding:8px 14px;border-radius:999px}
.ov-seg-btn .ic{width:15px;height:15px}
.ov-seg-btn.is-active{color:var(--ink-900);background:var(--bg-2)}
.ov-export{border-radius:999px;padding:9px 18px;font-size:14px}
.ov-export .ic{width:15px;height:15px}
.ov-tbl{width:100%;border-collapse:collapse;table-layout:fixed}
.ov-tbl th{font-size:12.5px;font-weight:600;color:var(--fg-3);text-align:right;padding:0 14px 12px;
  border-bottom:1px solid var(--line-1);vertical-align:bottom;line-height:1.25}
.ov-tbl th.l,.ov-tbl td.l{text-align:left}
.ov-tbl td{font-size:14px;color:var(--fg-1);padding:15px 14px;border-bottom:1px solid var(--line-1);
  text-align:right;font-variant-numeric:tabular-nums}
.ov-tbl td.l{font-weight:500;color:var(--ink-900)}
.ov-tbl tbody tr:last-child td{border-bottom:none}
.ov-trow{opacity:0;transform:translateY(7px);transition:opacity .45s ease,transform .45s cubic-bezier(.2,.7,.2,1)}
.ov-trow.in{opacity:1;transform:none}
.ov-analyzing{display:flex;align-items:center;justify-content:center;gap:10px;margin:8px 16px 16px;
  padding:12px 18px;border-radius:14px;background:var(--bg-1);border:1px solid var(--line-1);
  font-size:14px;font-weight:500;color:var(--fg-2)}
.ov-spin{flex:none;width:15px;height:15px;border-radius:50%;border:2px solid var(--blue-200);border-top-color:var(--brand);
  animation:ovspin .8s linear infinite}
@keyframes ovspin{to{transform:rotate(360deg)}}
@media(prefers-reduced-motion:reduce){.ov-trow{opacity:1;transform:none}.ov-spin{animation:none}}
.ov-stack{position:relative;z-index:1;margin-top:26px;display:flex;flex-direction:column;align-items:center;gap:18px;
  padding:30px 26px;border-radius:18px;background:var(--bg-1);border:1px solid var(--line-1)}
.ov-stack-label{font-family:var(--font-mono);font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--fg-3)}
.ov-stack-row{display:flex;gap:14px;flex-wrap:wrap;justify-content:center}
.ov-audit{position:relative;z-index:1;margin-top:28px;display:flex;align-items:center;gap:15px;
  padding:18px 22px;border-radius:16px;background:var(--ink-900);color:#fff}
.ov-audit-ic{display:inline-flex;width:36px;height:36px;align-items:center;justify-content:center;
  border-radius:10px;background:rgba(255,255,255,.1);color:#fff;flex:none}
.ov-audit-ic .ic{width:19px;height:19px}
.ov-audit-tx{font-size:15.5px;color:#C7D2F0;text-wrap:pretty}
.ov-audit-tx strong{color:#fff;font-family:var(--font-display);font-weight:700}
.ov-audit-tag{margin-left:auto;font-family:var(--font-mono);font-size:12px;letter-spacing:.03em;color:#fff;
  background:var(--brand);padding:6px 12px;border-radius:999px;white-space:nowrap}
@media(max-width:880px){
  .ov-h1{font-size:48px}
  .ov-sub{font-size:19px}
  .ov-cards{grid-template-columns:1fr}
}
@media(max-width:560px){
  .ov-h1{font-size:38px}
  .ov-cta-row{flex-direction:column;gap:18px}
  .ov-audit{flex-wrap:wrap}
  .ov-audit-tag{margin-left:0}
}

/* product page — alternating feature rows (Ramp-style) */
.ov-feat-wrap{padding:40px 0 112px}
.ov-feat-head{text-align:center;max-width:620px;margin:0 auto}
.ov-feat-title{font-family:var(--font-display);font-weight:700;font-size:44px;letter-spacing:-.01em;color:var(--ink-900);white-space:nowrap}
.ov-feat-sub{font-size:18px;line-height:1.6;color:var(--fg-2);margin-top:16px;text-wrap:pretty}
.ov-feat-rows{display:flex;flex-direction:column;gap:84px;margin-top:74px}
.ov-feat-row{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:64px;scroll-margin-top:96px}
.ov-feat-row.rev .ov-feat-tx{order:2}
.ov-feat-eyebrow{display:inline-flex;align-items:center;gap:8px;font-family:var(--font-mono);font-size:11px;
  letter-spacing:.1em;text-transform:uppercase;color:var(--fg-3);margin-bottom:16px}
.ov-feat-dot{width:7px;height:7px;border-radius:50%;background:var(--brand);box-shadow:0 0 0 3px var(--blue-50)}
.ov-feat-row--star .ov-feat-eyebrow{color:var(--brand);font-weight:500}
.ov-feat-tx h3{font-family:var(--font-display);font-weight:700;font-size:30px;letter-spacing:-.01em;color:var(--ink-900)}
.ov-feat-row--star .ov-feat-tx h3{font-size:33px}
.ov-feat-tx p{font-size:17px;line-height:1.62;color:var(--fg-2);margin-top:14px;max-width:42ch;text-wrap:pretty}
.ov-feat-cta{display:inline-flex;align-items:center;gap:8px;margin-top:20px;
  font-family:var(--font-sans);font-weight:600;font-size:15px;color:var(--brand)}
.ov-feat-cta .ic{width:15px;height:15px;transition:transform .2s ease}
.ov-feat-cta:hover .ic{transform:translateX(4px)}
.ov-shot{position:relative;aspect-ratio:4/3;border-radius:20px;border:1px solid var(--line-1);
  background:repeating-linear-gradient(135deg,var(--bg-1),var(--bg-1) 14px,var(--bg-2) 14px,var(--bg-2) 28px);
  box-shadow:var(--shadow-md);display:flex;align-items:center;justify-content:center}
.ov-feat-row--star .ov-shot{border-color:var(--blue-200);
  background:repeating-linear-gradient(135deg,var(--blue-50),var(--blue-50) 14px,var(--sky) 14px,var(--sky) 28px)}
.ov-shot-tag{font-family:var(--font-mono);font-size:13px;color:var(--fg-3);background:#fff;
  border:1px solid var(--line-1);padding:8px 14px;border-radius:999px;box-shadow:var(--shadow-xs)}
@media(max-width:880px){
  .ov-feat-title{font-size:34px;white-space:normal}
  .ov-feat-rows{gap:48px;margin-top:52px}
  .ov-feat-row{grid-template-columns:1fr;gap:26px}
  .ov-feat-row.rev .ov-feat-tx{order:0}
  /* grid items default to min-width:auto, so the .fs scene's internal
     content (fixed-width absolutely-positioned cards) was forcing this
     track wider than the viewport once the row drops to one column */
  .ov-feat-row>*{min-width:0}
}

/* ---------- animated feature shots (calm Mesh product UI in motion) ---------- */
.fs{aspect-ratio:4/3;border-radius:22px;border:1px solid var(--line-1);background:var(--bg-1);
  box-shadow:0 4px 24px rgba(21,27,37,.06);display:flex;align-items:center;justify-content:center;padding:30px}
.fs--star{background:linear-gradient(158deg,var(--sky) 0%,#EEF2FE 100%);border-color:var(--blue-200)}
.fs-win{width:100%;background:#fff;border:1px solid var(--line-1);border-radius:14px;
  box-shadow:var(--shadow-sm);overflow:hidden}
.fs-win-bar{display:flex;align-items:center;justify-content:space-between;padding:13px 16px;
  border-bottom:1px solid var(--line-1);background:var(--bg-1)}
.fs-win-title{font-family:var(--font-mono);font-size:11.5px;letter-spacing:.02em;color:var(--fg-3)}
.fs-badge{display:inline-flex;align-items:center;gap:5px;font-size:11px;font-weight:600;color:var(--fg-4);
  background:var(--bg-2);padding:4px 9px;border-radius:999px;transition:color .45s cubic-bezier(.22,1,.36,1),background .45s cubic-bezier(.22,1,.36,1)}
.fs-badge .ic{width:12px;height:12px}
.fs-badge.on{color:var(--success);background:var(--success-bg)}

/* unified vendor view — Slack outreach + fragments converge into one row */
.fsu-stage{position:relative;height:266px;margin:6px}
.fsu-slack{position:absolute;left:50%;top:50%;width:300px;background:#fff;border:1px solid var(--line-1);
  border-radius:13px;box-shadow:var(--shadow-md);padding:13px 15px 12px;z-index:2;will-change:transform,opacity;
  transition:transform 1.05s cubic-bezier(.22,1,.36,1),opacity .8s ease}
.fsu-slack-hd{display:flex;align-items:center;gap:8px}
.fsu-slack-av{flex:none;width:24px;height:24px;border-radius:6px;background:var(--brand);color:#fff;
  font-family:var(--font-display);font-weight:700;font-size:12px;display:flex;align-items:center;justify-content:center}
.fsu-slack-nm{font-weight:700;font-size:13.5px;color:var(--ink-900)}
.fsu-slack-app{font-size:8.5px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--fg-4);
  background:var(--bg-2);padding:1px 4px;border-radius:3px}
.fsu-slack-tm{margin-left:auto;font-size:10.5px;color:var(--fg-4)}
.fsu-slack-msg{font-size:12.5px;line-height:1.5;color:var(--fg-1);margin-top:8px;text-wrap:pretty}
.fsu-slack-tag{display:inline-flex;align-items:center;gap:5px;margin-top:11px;font-family:var(--font-mono);
  font-size:10px;letter-spacing:.03em;color:var(--brand);background:var(--blue-50);padding:3px 8px;border-radius:999px}
.fsu-slack-tag .ic{width:11px;height:11px}
.fsu-chip{position:absolute;left:50%;top:50%;display:flex;align-items:center;gap:9px;width:166px;
  background:#fff;border:1px solid var(--line-1);border-radius:11px;box-shadow:var(--shadow-sm);
  padding:8px 12px 8px 9px;will-change:transform,opacity;
  transition:transform 1.05s cubic-bezier(.22,1,.36,1),opacity .75s ease}
.fsu-chip-ic{flex:none;width:28px;height:28px;border-radius:8px;background:var(--sky);color:var(--brand);
  display:flex;align-items:center;justify-content:center}
.fsu-chip-ic .ic{width:15px;height:15px}
.fsu-chip-src{font-family:var(--font-mono);font-size:9.5px;letter-spacing:.05em;text-transform:uppercase;color:var(--fg-3)}
.fsu-chip-tx{font-size:12.5px;font-weight:600;color:var(--fg-1);margin-top:1px;white-space:nowrap;
  overflow:hidden;text-overflow:ellipsis;max-width:120px}
.fsu-row{position:absolute;left:50%;top:50%;width:calc(100% - 8px);
  background:#fff;border:1px solid var(--blue-200);border-radius:14px;box-shadow:var(--shadow-md);
  padding:16px 16px 15px;will-change:transform,opacity;
  transition:transform .85s cubic-bezier(.22,1,.36,1),opacity .7s ease}
.fsu-vendor{display:flex;align-items:center;gap:10px;font-weight:700;font-size:15px;color:var(--ink-900)}
.fsu-avatar{flex:none;width:30px;height:30px;border-radius:8px;background:var(--brand);color:#fff;
  font-family:var(--font-display);font-size:12px;font-weight:700;display:flex;align-items:center;justify-content:center}
.fsu-period{margin-left:auto;font-family:var(--font-mono);font-size:11px;font-weight:600;color:var(--fg-3);
  background:var(--bg-1);padding:3px 9px;border-radius:999px}
.fsu-cells{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:14px}
.fsu-cell{background:var(--bg-1);border:1px solid var(--line-1);border-radius:10px;padding:9px 11px}
.fsu-k{display:block;font-family:var(--font-mono);font-size:9.5px;letter-spacing:.05em;text-transform:uppercase;color:var(--fg-3)}
.fsu-v{display:block;font-family:var(--font-display);font-weight:700;font-size:18px;color:var(--ink-900);
  margin-top:3px;font-variant-numeric:tabular-nums}
.fsu-v--in{color:var(--brand)}
.fsu-v--pre{color:var(--warning)}
.fsu-v--inc{color:var(--success)}
@media(prefers-reduced-motion:reduce){.fsu-chip,.fsu-row{transition:none}}

/* policy engine — write the rule once, runs every period */
.fsp-live{display:inline-flex;align-items:center;gap:5px;font-family:var(--font-mono);font-size:10.5px;
  font-weight:600;letter-spacing:.02em;color:var(--brand);background:var(--blue-50);padding:4px 9px;border-radius:999px}
.fsp-live .ic{width:12px;height:12px}
.fsp-body{padding:18px 16px 16px}
.fsp-rule{display:flex;align-items:flex-start;gap:11px;min-height:64px;
  background:var(--bg-1);border:1px solid var(--line-1);border-radius:11px;padding:13px 14px}
.fsp-rule-ic{flex:none;width:27px;height:27px;border-radius:8px;background:var(--sky);color:var(--brand);
  display:flex;align-items:center;justify-content:center}
.fsp-rule-ic .ic{width:14px;height:14px}
.fsp-rule-tx{font-family:var(--font-mono);font-size:13px;line-height:1.5;color:var(--ink-900);font-weight:500}
.fsp-caret{display:inline-block;width:2px;height:1.05em;background:var(--brand);margin-left:2px;
  vertical-align:-2px;animation:fsp-blink 1s steps(1) infinite}
@keyframes fsp-blink{50%{opacity:0}}
.fsp-tag{display:inline-flex;align-items:center;gap:7px;margin-top:12px;font-family:var(--font-mono);
  font-size:11px;color:var(--fg-3);opacity:0;transform:translateY(4px);
  transition:opacity .5s cubic-bezier(.22,1,.36,1),transform .5s cubic-bezier(.22,1,.36,1)}
.fsp-tag .ic{width:13px;height:13px;color:var(--brand)}
.fsp-tag.show{opacity:1;transform:none}
.fsp-periods{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:18px}
.fsp-chip{display:flex;flex-direction:column;gap:7px;padding:12px;border-radius:10px;
  border:1px solid var(--line-1);background:#fff;
  transition:background .45s cubic-bezier(.22,1,.36,1),border-color .45s cubic-bezier(.22,1,.36,1)}
.fsp-chip-p{font-family:var(--font-display);font-weight:700;font-size:14px;color:var(--ink-900)}
.fsp-chip-st{display:inline-flex;align-items:center;gap:5px;font-size:11.5px;font-weight:600;color:var(--fg-4)}
.fsp-chip-st .ic{width:13px;height:13px}
.fsp-chip.done{background:var(--success-bg);border-color:#BFE3D0}
.fsp-chip.done .fsp-chip-st{color:var(--success)}
.fsp-chip.done .fsp-chip-st .ic{animation:fsp-pop .42s cubic-bezier(.22,1,.36,1)}
@keyframes fsp-pop{0%{transform:scale(0)}60%{transform:scale(1.18)}100%{transform:scale(1)}}
@media(prefers-reduced-motion:reduce){
  .fsp-caret{animation:none}.fsp-tag{transition:none}.fsp-chip{transition:none}
  .fsp-chip.done .fsp-chip-st .ic{animation:none}
}

/* audit trail — focal figure → its full source lineage */
.fsa-top{padding:20px 18px 6px}
.fsa-num{font-family:var(--font-display);font-weight:700;font-size:42px;line-height:1;letter-spacing:-.02em;color:var(--ink-900)}
.fsa-label{font-size:13px;color:var(--fg-3);margin-top:7px}
.fsa-chain{position:relative;padding:12px 18px 4px}
.fsa-line{position:absolute;left:35px;top:20px;width:2.5px;height:0;background:var(--sky);border-radius:2px;
  transition:height .6s cubic-bezier(.22,1,.36,1)}
.fsa-line.drawn{height:calc(100% - 48px)}
.fsa-node{display:flex;align-items:center;gap:13px;padding:8px 0;position:relative;opacity:0;transform:translateX(-7px);
  transition:opacity .5s cubic-bezier(.22,1,.36,1),transform .5s cubic-bezier(.22,1,.36,1)}
.fsa-node.show{opacity:1;transform:none}
.fsa-node-ic{flex:none;width:34px;height:34px;border-radius:10px;background:#fff;border:1px solid var(--blue-100);
  color:var(--brand);display:flex;align-items:center;justify-content:center;position:relative;z-index:1}
.fsa-node-ic .ic{width:16px;height:16px}
.fsa-node-tx{font-size:13.5px;font-weight:600;color:var(--fg-1)}
.fsa-trail{display:inline-flex;align-items:center;gap:7px;margin:6px 18px 18px;font-family:var(--font-mono);
  font-size:10.5px;letter-spacing:.06em;text-transform:uppercase;color:var(--success);
  opacity:0;transform:translateY(4px);transition:opacity .5s cubic-bezier(.22,1,.36,1),transform .5s cubic-bezier(.22,1,.36,1)}
.fsa-trail .ic{width:14px;height:14px}
.fsa-trail.show{opacity:1;transform:none}

/* post to ERP — approve here, lands in the ERP, no re-keying */
.fse-pill{display:inline-flex;align-items:center;gap:5px;font-size:11px;font-weight:600;padding:4px 10px;border-radius:999px;
  animation:fse-flip .42s cubic-bezier(.22,1,.36,1)}
.fse-pill .ic{width:12px;height:12px}
.fse-pill--0{background:var(--bg-2);color:var(--fg-2)}
.fse-pill--1{background:var(--blue-50);color:var(--brand)}
.fse-pill--2{background:var(--success-bg);color:var(--success)}
@keyframes fse-flip{from{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:none}}
.fse-flow{display:flex;align-items:center;padding:24px 18px 20px}
.fse-je{flex:none;width:150px;background:var(--bg-1);border:1px solid var(--line-1);border-radius:12px;padding:13px 14px}
.fse-je-id{font-family:var(--font-mono);font-size:11px;color:var(--fg-3)}
.fse-je-meta{font-size:12px;color:var(--fg-3);margin-top:7px}
.fse-je-amt{font-family:var(--font-display);font-weight:700;font-size:22px;color:var(--ink-900);margin-top:2px}
.fse-conn{flex:1;height:2.5px;position:relative;margin:0 8px}
.fse-conn::before{content:"";position:absolute;inset:0;border-radius:2px;
  background:repeating-linear-gradient(90deg,var(--line-2),var(--line-2) 5px,transparent 5px,transparent 10px)}
.fse-conn-line{position:absolute;left:0;top:0;height:100%;width:0;background:var(--brand);border-radius:2px;
  transition:width .6s cubic-bezier(.22,1,.36,1)}
.fse-conn-line.on{width:100%}
.fse-erp{flex:none;width:106px;display:flex;flex-direction:column;align-items:center;gap:6px;position:relative;
  background:#fff;border:1px solid var(--line-1);border-radius:12px;padding:13px 10px;
  transition:border-color .45s cubic-bezier(.22,1,.36,1),box-shadow .45s ease}
.fse-erp-logo{width:32px;height:32px;border-radius:8px;background:var(--ink-900);color:#fff;
  font-family:var(--font-display);font-weight:700;font-size:13px;display:flex;align-items:center;justify-content:center}
.fse-erp-name{font-size:12px;font-weight:600;color:var(--fg-1)}
.fse-erp.done{border-color:#BFE3D0;box-shadow:0 0 0 3px var(--success-bg)}
.fse-erp-check{position:absolute;top:-9px;right:-9px;width:23px;height:23px;border-radius:50%;background:var(--success);
  color:#fff;display:flex;align-items:center;justify-content:center;opacity:0;transform:scale(.4);
  transition:opacity .4s ease,transform .42s cubic-bezier(.22,1,.36,1)}
.fse-erp-check .ic{width:13px;height:13px}
.fse-erp.done .fse-erp-check{opacity:1;transform:scale(1)}
.fse-note{display:inline-flex;align-items:center;gap:7px;margin:0 18px 18px;font-family:var(--font-mono);
  font-size:10.5px;letter-spacing:.05em;text-transform:uppercase;color:var(--success);
  opacity:0;transform:translateY(4px);transition:opacity .5s cubic-bezier(.22,1,.36,1),transform .5s cubic-bezier(.22,1,.36,1)}
.fse-note .ic{width:14px;height:14px}
.fse-note.show{opacity:1;transform:none}

/* variance analysis — a flagged BVA swing, traced to its origin */
.fs-badge.flag{color:var(--danger);background:var(--danger-bg)}
.fsv-plot{position:relative;padding:16px 18px 12px}
.fsv-bars{position:relative;display:flex;align-items:flex-end;justify-content:space-between;gap:14px;height:140px}
.fsv-budget{position:absolute;left:0;right:0;bottom:46%;border-top:1.5px dashed var(--line-2);
  display:flex;justify-content:flex-end;pointer-events:none}
.fsv-budget-tag{font-family:var(--font-mono);font-size:9px;letter-spacing:.04em;color:var(--fg-4);
  background:var(--bg-1);padding:1px 6px;border-radius:4px;transform:translateY(-50%)}
.fsv-bar{flex:1;height:100%;display:flex;flex-direction:column;justify-content:flex-end;align-items:center}
.fsv-bar-fill{width:100%;max-width:30px;height:0;border-radius:6px 6px 0 0;background:var(--blue-200);
  transition:height .7s cubic-bezier(.22,1,.36,1),background .55s cubic-bezier(.22,1,.36,1)}
.fsv-bar-fill.flag{background:var(--danger)}
.fsv-bar-fill.resolved{background:var(--blue-200)}
.fsv-bar-lbl{font-size:9.5px;color:var(--fg-4);margin-top:7px;white-space:nowrap}
.fsv-tip{position:absolute;left:calc(50% + 30px);top:10px;z-index:3;min-width:150px;
  background:#fff;border:1px solid var(--danger);border-radius:11px;padding:9px 12px;box-shadow:var(--shadow-md);
  opacity:0;transform:translateX(-8px) scale(.96);transform-origin:left center;
  transition:opacity .45s cubic-bezier(.22,1,.36,1),transform .45s cubic-bezier(.22,1,.36,1),border-color .55s ease}
.fsv-tip.show{opacity:1;transform:translateX(0) scale(1)}
.fsv-tip.ok{border-color:var(--success)}
.fsv-tip-hd{display:flex;align-items:center;gap:7px;font-size:12px;font-weight:600;color:var(--fg-1)}
.fsv-avatar{display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;border-radius:5px;
  background:var(--ink-900);color:#fff;font-size:8.5px;font-weight:700;letter-spacing:.02em}
.fsv-tip-amt{font-family:var(--font-display);font-weight:700;font-size:21px;line-height:1.1;color:var(--danger);
  margin-top:4px;transition:color .55s ease}
.fsv-tip.ok .fsv-tip-amt{color:var(--success)}
.fsv-tip-sub{display:flex;align-items:center;gap:5px;font-size:11px;color:var(--fg-3);margin-top:2px}
.fsv-tip-sub .ic{width:12px;height:12px;color:var(--success)}
.fsv-tip-caret{position:absolute;left:-6px;top:24px;width:11px;height:11px;background:#fff;
  border-left:1px solid var(--danger);border-bottom:1px solid var(--danger);
  transform:rotate(45deg);transition:border-color .55s ease}
.fsv-tip.ok .fsv-tip-caret{border-color:var(--success)}
.fsv-cursor{position:absolute;left:calc(50% + 13px);top:38px;z-index:4;color:var(--ink-900);
  opacity:0;transform:translate(10px,12px);
  transition:opacity .4s ease,transform .55s cubic-bezier(.22,1,.36,1)}
.fsv-cursor.on{opacity:1;transform:none}
.fsv-cursor .ic{width:19px;height:19px;filter:drop-shadow(0 1px 2px rgba(10,17,36,.3))}
.fsv-trace{display:flex;align-items:center;padding:13px 18px 16px;border-top:1px solid var(--line-1)}
.fsv-tconn{flex:1;min-width:14px;height:2px;margin:0 9px;background:var(--blue-100);border-radius:2px;
  transform:scaleX(0);transform-origin:left;transition:transform .45s cubic-bezier(.22,1,.36,1),background .5s ease}
.fsv-tconn.on{transform:scaleX(1)}
.fsv-tnode{flex:none;display:flex;align-items:center;gap:9px;opacity:0;transform:translateY(6px);
  transition:opacity .5s cubic-bezier(.22,1,.36,1),transform .5s cubic-bezier(.22,1,.36,1)}
.fsv-tnode.show{opacity:1;transform:none}
.fsv-tnode-ic{flex:none;width:30px;height:30px;border-radius:9px;background:#fff;border:1px solid var(--blue-100);
  color:var(--brand);display:flex;align-items:center;justify-content:center;
  transition:border-color .5s ease,color .5s ease,background .5s ease}
.fsv-tnode-ic .ic{width:15px;height:15px}
.fsv-tnode-tx{display:flex;flex-direction:column;line-height:1.25}
.fsv-tnode-k{font-family:var(--font-mono);font-size:9px;letter-spacing:.05em;text-transform:uppercase;color:var(--fg-4)}
.fsv-tnode-v{font-size:12.5px;font-weight:600;color:var(--fg-1)}
.fsv-tnode.ok .fsv-tnode-ic{border-color:#BFE3D0;color:var(--success);background:var(--success-bg)}

.fs-spin{animation:fs-spin 1s linear infinite;transform-origin:center}
@keyframes fs-spin{to{transform:rotate(360deg)}}
@media(prefers-reduced-motion:reduce){
  .fs-row,.fs-total,.fs-badge,.fsa-line,.fsa-node,.fsa-trail,
  .fse-pill,.fse-conn-line,.fse-erp,.fse-erp-check,.fse-note,
  .fsv-bar-fill,.fsv-tip,.fsv-cursor,.fsv-tconn,.fsv-tnode,.fsv-tnode-ic{transition:none;animation:none}
  .fs-spin{animation:none}
}

/* ============================================================
   MOBILE — product-overview feature shots: these window-chrome
   scenes had zero mobile breakpoints; their 3-column grids and
   fixed-height bar chart get cramped below ~560px.
   ============================================================ */
@media(max-width:560px){
  .fs{padding:18px}
  .fsu-cells{grid-template-columns:1fr 1fr;gap:8px}
  .fsp-periods{grid-template-columns:1fr;gap:8px}
  .fsv-bars{height:110px;gap:8px}
  .fsv-tip{min-width:130px;padding:8px 10px}
}
@media(max-width:400px){
  .fsu-cells{grid-template-columns:1fr}
  .fsa-num{font-size:34px}
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pr-hero{padding:128px 0 56px;text-align:center;background:
  radial-gradient(900px 380px at 50% -8%, var(--sky) 0%, transparent 70%)}
.pr-hero .eyebrow{justify-content:center}
.pr-h1{font-family:var(--font-display);font-weight:700;font-size:56px;line-height:1.04;letter-spacing:-.02em;
  color:var(--ink-900);margin-top:18px}
.pr-sub{font-size:19px;line-height:1.6;color:var(--fg-2);margin:18px auto 0;max-width:60ch;text-wrap:pretty}

.pr-plans-sec{padding:0 0 40px}
.pr-billing{display:inline-flex;gap:4px;padding:4px;border-radius:999px;background:var(--bg-2);
  border:1px solid var(--line-1);margin:0 auto 44px;display:flex;width:max-content}
.pr-bill-opt{display:inline-flex;align-items:center;gap:8px;border:0;cursor:pointer;font-family:var(--font-sans);
  font-weight:600;font-size:14px;color:var(--fg-2);background:transparent;padding:9px 20px;border-radius:999px;
  transition:background .2s ease,color .2s ease}
.pr-bill-opt.on{background:#fff;color:var(--ink-900);box-shadow:var(--shadow-sm)}
.pr-save{font-family:var(--font-mono);font-size:10.5px;font-weight:600;letter-spacing:.02em;color:var(--success);
  background:var(--success-bg);padding:2px 7px;border-radius:999px}
.pr-plans{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:start}
.pr-plan{position:relative;background:#fff;border:1px solid var(--line-1);border-radius:22px;padding:30px 28px;
  box-shadow:0 4px 24px rgba(21,27,37,.05)}
.pr-plan--featured{border-color:var(--blue-200);box-shadow:0 16px 44px rgba(27,58,176,.14);transform:translateY(-8px)}
.pr-plan-tag{position:absolute;top:-12px;left:28px;white-space:nowrap;font-family:var(--font-mono);font-size:10.5px;font-weight:600;
  letter-spacing:.04em;text-transform:uppercase;color:#fff;background:var(--brand);padding:4px 11px;border-radius:999px;
  box-shadow:var(--shadow-blue)}
.pr-plan-name{font-family:var(--font-display);font-weight:700;font-size:21px;color:var(--ink-900)}
.pr-plan-blurb{font-size:14px;line-height:1.5;color:var(--fg-3);margin-top:7px;min-height:42px;text-wrap:pretty}
.pr-price{display:flex;align-items:baseline;gap:6px;margin-top:18px}
.pr-price-num{font-family:var(--font-display);font-weight:700;font-size:44px;letter-spacing:-.02em;color:var(--ink-900);line-height:1}
.pr-price-per{font-size:15px;font-weight:600;color:var(--fg-3)}
.pr-price-note{font-family:var(--font-mono);font-size:11px;color:var(--fg-4);margin-top:7px}
.pr-feats{list-style:none;margin:24px 0 0;padding:24px 0 0;border-top:1px solid var(--line-1);
  display:flex;flex-direction:column;gap:13px}
.pr-feats li{display:flex;align-items:flex-start;gap:11px;font-size:14.5px;line-height:1.4;color:var(--fg-1)}
.pr-feat-tick{flex:none;width:20px;height:20px;border-radius:6px;background:var(--blue-50);color:var(--brand);
  display:flex;align-items:center;justify-content:center;margin-top:1px}
.pr-feat-tick .ic{width:12px;height:12px}

/* ROI calculator */
.rc{padding:72px 0 92px;border-top:1px solid var(--line-1);background:var(--bg-1)}
.rc-wrap{display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center}
.rc-h2{font-family:var(--font-display);font-weight:700;font-size:38px;line-height:1.06;letter-spacing:-.01em;
  color:var(--ink-900);margin-top:16px}
.rc-p{font-size:16.5px;line-height:1.6;color:var(--fg-2);margin-top:14px;max-width:46ch;text-wrap:pretty}
.rc-controls{display:flex;flex-direction:column;gap:26px;margin-top:30px}
.rc-control-top{display:flex;align-items:baseline;justify-content:space-between;font-size:14px;font-weight:600;color:var(--fg-2)}
.rc-control-val{font-family:var(--font-mono);font-size:15px;font-weight:600;color:var(--brand)}
.rc-range{-webkit-appearance:none;appearance:none;width:100%;height:6px;margin-top:12px;border-radius:999px;
  background:var(--bg-2);outline:none;cursor:pointer}
.rc-range::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:22px;height:22px;border-radius:50%;
  background:var(--brand);border:3px solid #fff;box-shadow:var(--shadow-sm);cursor:pointer}
.rc-range::-moz-range-thumb{width:22px;height:22px;border-radius:50%;background:var(--brand);border:3px solid #fff;
  box-shadow:var(--shadow-sm);cursor:pointer}
.rc-out{background:linear-gradient(165deg,var(--ink-900),var(--ink-800));border-radius:24px;padding:34px 32px;
  box-shadow:0 24px 56px rgba(10,17,36,.28);color:#fff}
.rc-out-label{font-family:var(--font-mono);font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--blue-300)}
.rc-out-num{font-family:var(--font-display);font-weight:700;font-size:54px;line-height:1.02;letter-spacing:-.02em;
  margin-top:8px;font-variant-numeric:tabular-nums}
.rc-out-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:26px}
.rc-out-cell{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:14px;padding:15px 16px}
.rc-out-k{font-size:12px;color:var(--blue-200)}
.rc-out-v{font-family:var(--font-display);font-weight:700;font-size:24px;margin-top:5px}
.rc-out-fine{font-family:var(--font-mono);font-size:11px;color:rgba(255,255,255,.5);margin-top:16px;text-align:center}
@media(max-width:920px){
  .pr-plans{grid-template-columns:1fr;max-width:460px;margin:0 auto}
  .pr-plan--featured{transform:none}
  .rc-wrap{grid-template-columns:1fr;gap:34px}
  .pr-h1{font-size:42px}
}

/* ============================================================
   THE AGENTIC CLOSE — horizontal-scroll stage rail
   ============================================================ */
/* Blue grid with vignette: top solid mask covers the full text area (eyebrow + title + tabs),
   grid fades in below the tabs, and wider left/right edges frame the animation area */
.ag-sec{padding:88px 0 104px;overflow:hidden;position:relative;background-color:var(--blue-600);
  background-image:
    /* top: stays solid blue through the text area (~40%), then fades grid in */
    linear-gradient(to bottom,var(--blue-600) 0%,var(--blue-600) 40%,transparent 58%),
    /* bottom edge */
    linear-gradient(to top,var(--blue-600) 0%,transparent 20%),
    /* left edge — wider border frame */
    linear-gradient(to right,var(--blue-600) 0%,transparent 16%),
    /* right edge — wider border frame */
    linear-gradient(to left,var(--blue-600) 0%,transparent 16%),
    /* radial vignette centered on the panel zone (lower 76%) to frame the animation */
    radial-gradient(ellipse 68% 52% at 50% 76%,transparent 28%,rgba(0,8,50,.48) 100%),
    /* grid lines */
    linear-gradient(rgba(255,255,255,.10) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.10) 1px,transparent 1px);
  background-size:100% 100%,100% 100%,100% 100%,100% 100%,100% 100%,44px 44px,44px 44px}
.ag-eyebrow{margin-bottom:18px}
.ag-title{font-family:var(--font-display);font-weight:700;font-size:50px;line-height:1.05;letter-spacing:-.02em;color:#fff;max-width:none;white-space:nowrap}
.ag-title .hl{color:var(--blue-200)}
/* stage tabs (clickable, synced to scroll) */
.ag-tabs{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin-top:44px;border-bottom:1px solid rgba(255,255,255,.2)}
.ag-tab{display:flex;flex-direction:column;gap:5px;align-items:flex-start;text-align:left;padding:0 4px 16px;cursor:pointer;
  position:relative;background:none;border:none;font-family:inherit}
.ag-tab-t{font-family:var(--font-display);font-weight:700;font-size:22px;letter-spacing:-.01em;color:rgba(255,255,255,.45);transition:color .25s ease}
.ag-tab-s{font-size:14px;color:rgba(255,255,255,.35);transition:color .25s ease}
.ag-tab:hover .ag-tab-t{color:rgba(255,255,255,.78)}
.ag-tab:hover .ag-tab-s{color:rgba(255,255,255,.55)}
.ag-tab.is-active .ag-tab-t{color:#fff}
.ag-tab.is-active .ag-tab-s{color:rgba(255,255,255,.7)}
.ag-tab::after{content:"";position:absolute;left:0;right:0;bottom:-1px;height:2px;background:var(--brand);border-radius:2px;
  transform:scaleX(0);transform-origin:left;transition:transform .35s cubic-bezier(.2,.7,.2,1)}
.ag-tab.is-active::after{transform:scaleX(1)}
/* autoplay progress fill on the active tab */
.ag-tab-prog{position:absolute;left:0;bottom:-1px;height:2px;width:100%;background:var(--brand);border-radius:2px;
  transform-origin:left;transform:scaleX(0);animation:ag-prog linear forwards;z-index:1}
@keyframes ag-prog{from{transform:scaleX(0)}to{transform:scaleX(1)}}
@media(prefers-reduced-motion:reduce){.ag-tab-prog{display:none}}
/* horizontal rail */
.ag-track{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;margin-top:34px;
  scrollbar-width:none;-ms-overflow-style:none}
.ag-track::-webkit-scrollbar{display:none}
.ag-slide{flex:0 0 100%;width:100%;scroll-snap-align:start}
.ag-slide-in{width:100%}
.ag-dots{display:flex;justify-content:center;gap:9px;margin-top:30px}
.ag-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.25);border:none;cursor:pointer;padding:0;transition:background .2s,width .2s}
.ag-dot.on{background:#fff;width:22px;border-radius:99px}

/* shared panel chrome */
.ag-panel{background:#fff;border:1px solid var(--line-1);border-radius:20px;box-shadow:var(--shadow-md);overflow:hidden}
.ag-panel-bar{display:flex;align-items:center;gap:14px;padding:18px 22px;border-bottom:1px solid var(--line-1)}
.ag-panel-name{font-family:var(--font-display);font-weight:700;font-size:16px;color:var(--ink-900);display:inline-flex;align-items:center;gap:8px}
.ag-spark{color:var(--brand)}
.ag-crumb{display:inline-flex;align-items:center;gap:4px;font-size:13.5px;font-weight:500;color:var(--fg-3);
  border:1px solid var(--line-1);border-radius:9px;padding:6px 12px}
.ag-crumb .ic{width:14px;height:14px}
.ag-conn{margin-left:auto;display:inline-flex;align-items:center;gap:7px;font-size:13.5px;font-weight:600;color:var(--success)}
.ag-conn-dot{width:7px;height:7px;border-radius:50%;background:var(--success)}
.ag-x{margin-left:auto;display:inline-flex;width:20px;height:20px;color:var(--fg-3);cursor:pointer}
.ag-panel-body{padding:24px 22px}
.ag-body-flush{padding:0}

/* 1 · Aggregate */
.ag-erp-mark{width:30px;height:30px;border-radius:8px;background:var(--brand);color:#fff;display:inline-flex;align-items:center;justify-content:center;font-weight:700;font-size:14px;flex:none}
.ag-pref-head{display:flex;align-items:center;gap:11px}
.ag-pref-h{font-family:var(--font-display);font-weight:700;font-size:17px;color:var(--ink-900)}
.ag-pref-sub{font-size:14px;color:var(--fg-2);margin:10px 0 18px;max-width:64ch}
.ag-pref-list{border:1px solid var(--line-1);border-radius:14px;overflow:hidden}
.ag-pref-row{display:flex;align-items:center;gap:16px;padding:16px 18px;border-bottom:1px solid var(--line-1)}
.ag-pref-row:last-child{border-bottom:none}
.ag-pref-row:first-child{background:var(--bg-1)}
.ag-pref-t{font-family:var(--font-display);font-weight:700;font-size:15px;color:var(--ink-900);display:flex;align-items:center;gap:10px}
.ag-pref-s{font-size:13px;color:var(--fg-3);margin-top:3px}
.ag-query{display:inline-flex;align-items:center;gap:5px;font-family:var(--font-sans);font-weight:600;font-size:12px;color:var(--brand);
  background:var(--blue-50);border:1px solid var(--blue-100);border-radius:999px;padding:3px 10px}
.ag-query .ic{width:12px;height:12px}
.ag-seg2{margin-left:auto;display:inline-flex;background:var(--bg-2);border-radius:10px;padding:3px;flex:none}
.ag-seg2-b{display:inline-flex;align-items:center;gap:6px;font-weight:600;font-size:13px;color:var(--fg-3);padding:7px 14px;border-radius:8px;white-space:nowrap}
.ag-seg2-b .ic{width:13px;height:13px}
.ag-seg2-b.on{background:#fff;box-shadow:var(--shadow-xs);color:var(--ink-900)}
.ag-seg2-b.ag-auto.on{color:var(--brand)}
.ag-seg2-b.ag-auto:not(.on){color:var(--fg-4)}

/* 2 · Standardize */
.ag-bar-col{flex-direction:column;align-items:stretch;gap:8px}
.ag-bar-row{display:flex;align-items:center}
.ag-bar-sub{font-size:13.5px;color:var(--fg-2)}
.ag-req{display:flex;gap:11px;align-items:flex-start;margin:18px 22px 0;padding:13px 16px;border-radius:12px;
  background:var(--blue-50);border:1px solid var(--blue-100);font-size:13.5px;color:var(--fg-1);line-height:1.5}
.ag-req-ic{flex:none;display:inline-flex;width:18px;height:18px;color:var(--brand);margin-top:1px}
.ag-stats{display:flex;flex-wrap:wrap;gap:22px;padding:16px 22px 6px;font-size:13px;color:var(--fg-3)}
.ag-stats b{color:var(--ink-900)}
.ag-map{padding:0 22px 4px}
.ag-map-row{display:grid;grid-template-columns:1.1fr 1.4fr .6fr 2fr;gap:18px;align-items:center;padding:13px 0;border-bottom:1px solid var(--line-1)}
.ag-map-head{font-family:var(--font-mono);font-size:11px;letter-spacing:.06em;text-transform:uppercase;color:var(--fg-3);padding:10px 0}
.ag-map-row:last-child{border-bottom:none}
.ag-mono{font-family:var(--font-mono);font-size:13px;color:var(--fg-1)}
.ag-select{display:flex;align-items:center;justify-content:space-between;gap:8px;font-size:13.5px;font-weight:500;color:var(--ink-900);
  border:1px solid var(--line-2);border-radius:9px;padding:8px 12px;background:#fff}
.ag-select .ic{width:15px;height:15px;color:var(--fg-3)}
.ag-type{font-family:var(--font-mono);font-size:12px;font-weight:500;padding:3px 9px;border-radius:6px;justify-self:start}
.ag-type-string{color:var(--brand);background:var(--blue-50)}
.ag-type-money{color:var(--success);background:var(--success-bg)}
.ag-ctx{font-size:13px;color:var(--fg-3);text-wrap:pretty}
.ag-map-foot{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:16px 22px;border-top:1px solid var(--line-1);background:var(--bg-1)}
.ag-foot-note{display:inline-flex;align-items:center;gap:7px;font-size:13px;font-weight:500;color:var(--brand)}
.ag-foot-note .ic{width:15px;height:15px}
.ag-foot-btns{display:flex;gap:10px}
.ag-map-foot .btn{padding:10px 18px;font-size:14px}

/* 3 · Estimate */
.ag-run{display:inline-flex;align-items:center;gap:7px;margin-left:auto;background:var(--brand);color:#fff;border:none;
  border-radius:10px;padding:9px 16px;font-family:var(--font-sans);font-weight:600;font-size:13.5px;cursor:pointer;box-shadow:var(--shadow-blue)}
.ag-run .ic{width:14px;height:14px}
.ag-est{padding:4px 22px 12px}
.ag-est-row{display:grid;grid-template-columns:.7fr .6fr 1fr 2.1fr .8fr .7fr 1fr .8fr;gap:14px;align-items:center;
  padding:15px 0;border-bottom:1px solid var(--line-1);font-size:13.5px;color:var(--fg-1)}
.ag-est-row:last-child{border-bottom:none}
.ag-est-head{font-family:var(--font-mono);font-size:10.5px;letter-spacing:.06em;text-transform:uppercase;color:var(--fg-3);padding:12px 0}
.ag-est-row .r{text-align:right}
.ag-est-po{color:var(--fg-2)}
.ag-health{display:inline-flex;align-items:center;gap:7px;font-variant-numeric:tabular-nums;color:var(--fg-2)}
.ag-ring{flex:none}
.ag-est-amt{font-weight:700;color:var(--ink-900);font-variant-numeric:tabular-nums}
.ag-est-amt.ag-green{color:var(--success)}
.ag-est-exp{font-size:12.5px;color:var(--fg-3);text-wrap:pretty}
.ag-est-exp .ic,.ag-est-row .ag-mesh .ic{width:13px;height:13px;color:var(--brand);vertical-align:-2px}
.ag-mesh{color:var(--brand);font-weight:600;display:inline-flex;align-items:center;gap:5px}
.ag-est-rev{color:var(--fg-2)}
.ag-status{display:inline-flex;font-size:12px;font-weight:600;color:var(--brand);border:1px solid var(--blue-200);border-radius:8px;padding:5px 10px;white-space:nowrap}
.ag-est-line{color:var(--fg-2);font-size:13px}

/* 4 · Audit */
.ag-aud{display:grid;grid-template-columns:1fr 1.25fr;align-items:stretch}
.ag-aud-list{border-right:1px solid var(--line-1);display:flex;flex-direction:column}
.ag-aud-list-bar{font-family:var(--font-display);font-weight:700;font-size:15px;color:var(--ink-900);padding:18px 20px;border-bottom:1px solid var(--line-1)}
.ag-aud-list-head{display:grid;grid-template-columns:90px 1fr;gap:10px;padding:10px 20px;font-family:var(--font-mono);font-size:10.5px;
  letter-spacing:.06em;text-transform:uppercase;color:var(--fg-3);border-bottom:1px solid var(--line-1)}
.ag-aud-list-row{display:grid;grid-template-columns:90px 1fr;gap:10px;padding:15px 20px;align-items:center;border-bottom:1px solid var(--line-1);font-size:13.5px}
.ag-aud-list-row.sel{background:#FCE9EE}
.ag-aud-vn{color:var(--fg-1);font-weight:500}
.ag-aud-detail{display:flex;flex-direction:column}
.ag-aud-d-bar{display:flex;align-items:flex-start;gap:12px;padding:18px 20px;border-bottom:1px solid var(--line-1)}
.ag-aud-d-title{font-family:var(--font-display);font-weight:700;font-size:18px;color:var(--ink-900)}
.ag-aud-d-sub{font-size:13px;color:var(--fg-3);margin-top:3px}
.ag-aud-tabs{display:flex;gap:20px;padding:0 20px;border-bottom:1px solid var(--line-1)}
.ag-aud-tab{font-size:13.5px;font-weight:500;color:var(--fg-3);padding:13px 0;position:relative}
.ag-aud-tab.on{color:var(--brand);font-weight:600}
.ag-aud-tab.on::after{content:"";position:absolute;left:0;right:0;bottom:-1px;height:2px;background:var(--brand)}
.ag-tl{padding:18px 22px;display:flex;flex-direction:column;gap:4px}
.ag-tl-item{display:grid;grid-template-columns:24px 1fr;gap:12px}
.ag-tl-item:not(:last-child) .ag-tl-body{padding-bottom:18px;border-left:2px solid var(--line-1);margin-left:-23px;padding-left:23px}
.ag-tl-dot{z-index:1;width:24px;height:24px;border-radius:50%;background:var(--blue-50);color:var(--brand);display:inline-flex;align-items:center;justify-content:center}
.ag-tl-dot .ic{width:13px;height:13px}
.ag-tl-head{font-weight:700;font-size:13.5px;color:var(--ink-900)}
.ag-tl-by{font-size:12.5px;color:var(--fg-3);margin-top:2px}
.ag-tl-line{font-size:13px;color:var(--fg-1);margin-top:7px}
.ag-tl-line.mut{color:var(--fg-3)}
.ag-tl-card{margin-top:9px;border:1px solid var(--line-1);border-radius:10px;background:var(--bg-1);padding:10px 13px;display:flex;flex-direction:column;gap:7px}
.ag-tl-diff{display:flex;align-items:center;gap:10px;font-size:13px}
.ag-tl-k{color:var(--fg-3);min-width:104px}
.ag-tl-arrow{color:var(--fg-4);font-family:var(--font-mono)}
.ag-tl-old{color:var(--fg-4);text-decoration:line-through}
.ag-tl-v{color:var(--ink-900);font-weight:600}

@media(max-width:920px){
  .ag-title{font-size:34px}
  .ag-tab-t{font-size:18px}
  .ag-tab-s{font-size:12px}
  .ag-aud{grid-template-columns:1fr}
  .ag-aud-list{border-right:none;border-bottom:1px solid var(--line-1)}
}

/* ---------- ask-ai: "Don't take our word for it" ---------- */
.askai.dark-band{background:#fff;border-top:1px solid var(--line-1);border-bottom:1px solid var(--line-1)}
.askai{padding-top:0}
.askai-card{background:var(--brand);border-radius:var(--r-xl);padding:64px 48px;text-align:center;max-width:780px;margin:0 auto}
.askai-h{font-family:var(--font-display);font-weight:700;font-size:44px;line-height:1.08;letter-spacing:-.015em;color:#fff;margin:0;text-align:center}
.askai-sub{font-size:20px;line-height:1.5;color:rgba(255,255,255,.82);margin:18px 0 40px}
.askai-btns{display:flex;flex-direction:column;gap:14px;max-width:460px;margin:0 auto}
.askai-btn{display:flex;align-items:center;justify-content:center;gap:14px;background:var(--blue-50);border-radius:999px;padding:18px 28px;
  font-family:var(--font-display);font-weight:700;font-size:18px;color:var(--ink-900);text-decoration:none;border:1px solid transparent;
  box-shadow:0 0 0 2.5px var(--brand),0 10px 28px rgba(52,93,239,.22);
  transition:transform .16s ease,box-shadow .2s ease,background .15s ease}
.askai-btn:hover{background:var(--blue-100);transform:translateY(-4px);box-shadow:0 0 0 2.5px var(--brand-hover),0 16px 38px rgba(52,93,239,.32)}
.askai-btn:active{transform:translateY(0);box-shadow:0 0 0 2.5px var(--brand),0 10px 28px rgba(52,93,239,.22)}
.askai-logo{display:inline-flex;align-items:center;justify-content:center;flex:none}
@media(max-width:600px){
  .askai-card{padding:40px 24px;border-radius:var(--r-lg)}
  .askai-h{font-size:30px}
  .askai-sub{font-size:17px;margin-bottom:28px}
  .askai-btn{font-size:16px;padding:15px 20px}
}
/* ---------- ask-ai: homepage dark-band layout overrides ---------- */
body.meshv6home .askai.dark-band{padding-top:72px}
body.meshv6home .askai-inner{text-align:center}
body.meshv6home .askai-h{color:var(--ink-900)}
body.meshv6home .askai-sub{color:var(--fg-2)}
body.meshv6home .askai-btns{max-width:460px;margin:0 auto}

/* =============================================================
   RESPONSIVE — Nav: hamburger button & mobile drawer
   ============================================================= */
.nav-hamburger{display:none;flex-direction:column;justify-content:center;align-items:center;
  gap:5px;width:40px;height:40px;background:none;border:none;cursor:pointer;
  padding:8px;border-radius:8px;color:var(--ink-900)}
.nav-hamburger span{display:block;width:22px;height:2px;background:currentColor;
  border-radius:1px;transition:transform .2s ease,opacity .2s ease}
.nav-mobile-open .nav-hamburger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-mobile-open .nav-hamburger span:nth-child(2){opacity:0}
.nav-mobile-open .nav-hamburger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.nav-mobile-backdrop{position:fixed;inset:0;background:rgba(10,17,36,.45);z-index:48}
.nav-mobile-drawer{position:fixed;top:0;right:0;bottom:0;width:min(320px,85vw);
  background:#fff;z-index:49;display:flex;flex-direction:column;
  padding:88px 24px 32px;padding-bottom:calc(32px + env(safe-area-inset-bottom,0px));
  overflow-y:auto;box-shadow:-4px 0 24px rgba(10,17,36,.12);
  transform:translateX(110%);transition:transform .28s cubic-bezier(.4,0,.2,1)}
.nav-mobile-drawer.open{transform:translateX(0)}
.nav-mobile-links{display:flex;flex-direction:column;gap:4px}
.nav-mobile-link{display:block;font-size:17px;font-weight:500;color:var(--fg-1);
  padding:13px 10px;border-radius:8px;text-decoration:none;
  transition:background .15s,color .15s}
.nav-mobile-link:hover,.nav-mobile-link:focus{background:var(--bg-2);color:var(--brand)}
.nav-mobile-cta{margin-top:auto;padding-top:24px}

@media(max-width:880px){
  .nav-hamburger{display:flex}
}

/* =============================================================
   RESPONSIVE — Layout: tighter wrap on phones
   ============================================================= */
@media(max-width:480px){
  .wrap{padding-left:16px;padding-right:16px}
  .nav-scrolled .nav-inner{padding-left:10px;padding-right:10px}
}

/* =============================================================
   RESPONSIVE — Typography: section headings
   ============================================================= */
@media(max-width:640px){
  .section-head h2{font-size:34px}
  .bd .section-head h2{white-space:normal !important}
  .faq-home-head h2{white-space:normal}
}
@media(max-width:480px){
  .section-head h2{font-size:28px;letter-spacing:-.005em}
}

/* CTA block */
@media(max-width:640px){
  .cta{padding:48px 24px;border-radius:20px}
  .cta h2{font-size:36px}
  .cta .row{flex-direction:column;align-items:center}
  .cta .row .btn{width:100%;justify-content:center}
}
@media(max-width:480px){
  .cta{padding:36px 18px}
  .cta h2{font-size:28px}
}

/* =============================================================
   RESPONSIVE — Components
   ============================================================= */

/* ag-sec (trust & governance): 2-column tabs + heading size on phones */
@media(max-width:600px){
  .ag-tabs{grid-template-columns:repeat(2,1fr)}
  .ag-title{font-size:28px !important;white-space:normal !important}
}

/* Footer: single column on phones */
@media(max-width:480px){
  .footer-grid{grid-template-columns:1fr}
}
/* Footer bottom row (badge + copyright + social) needs ~464px of content
   width — stack it before that wraps/overflows, not just under 480px. */
@media(max-width:640px){
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:16px}
}

/* Hero email box: stack vertically on very narrow phones */
@media(max-width:400px){
  .hero h1{font-size:32px}
  .hero-capture{flex-direction:column;align-items:stretch}
  .emailbox{flex-direction:column;height:auto;border-radius:14px;padding:6px}
  .emailbox input{width:auto;padding:10px 12px}
  .emailbox .btn{border-radius:10px;justify-content:center}
}

/* meshv6 hero capture at 400px */
@media(max-width:400px){
  .meshv5 .hero-capture{flex-direction:column}
  .meshv5 .btn-capture{width:100%}
  .meshv5 .hero h1{font-size:clamp(32px,9vw,40px)}
  .meshv5 .hero .sub{font-size:16px}
}

/* Product overview pages */
@media(max-width:400px){
  .ov-h1{font-size:32px !important}
}

/* FAQ page hero */
@media(max-width:480px){
  .faqp-hero h1{font-size:30px !important}
}

/* Signals hub text on very small screens */
@media(max-width:400px){
  .signals-hub{font-size:18px}
}

/* ============================================================
   LAPTOP — scale back for 13-15" retina screens (~1280-1440 CSS px).
   Uses range queries (min + max) to avoid overriding mobile rules.
   ============================================================ */
@media(min-width:1081px) and (max-width:1440px){
  /* Wrap */
  .wrap{max-width:1240px}
  /* Sections */
  .section{padding:64px 0}
  .section-head h2{font-size:36px}
  .section-head .sub{font-size:17px}
  /* Hero (standalone pages) */
  .hero{padding:36px 0 56px}
  .hero h1{font-size:48px}
  .hero .sub{font-size:20px}
  /* Heavy bottom-padding sections */
  .bd{padding:64px 0 140px}
  /* Scatter→unified: fix heading padding + shrink cards */
  .tx-headings{padding-top:88px}
  .tx-h{font-size:36px}
  .tx-head-wrap{height:50px}
  .tx-sub{font-size:15px}
  .tx-sub-wrap{height:28px;margin-top:4px}
  .txc{zoom:1.0}
  /* Close-flow: remove negative margin that clips heading behind nav */
  .cf{height:370vh}
  .cf-stage{padding:80px 0 56px}
  .cf-head{margin-top:0;margin-bottom:52px}
  .cf-head h2{font-size:34px}
  .cf-grid{gap:52px}
  .cf-rail{gap:20px}
  .cf-step h3{font-size:26px}
  .cf-step-desc p{font-size:16px}
  /* Close-flow panel: compact padding so all slide content fits + override overflow:hidden parent */
  .cf-panel{min-height:380px}
  .cf-pbody{min-height:380px}
  .cf-pad{padding:18px 22px 16px}
  .cf-drop{padding:22px 16px;gap:10px}
  .cf-drop-ic{width:38px;height:38px}
  .cf-drop-tx{font-size:13px}
  .cf-src{margin-top:12px}
  .cf-foot{margin-top:14px}
  /* Feature rows (frow) */
  .frow{gap:56px}
  .streamline-lead{font-size:26px}
  /* Page heroes */
  .faqp-hero{padding:88px 0 0}
  .pr-hero{padding:88px 0 40px}
  .ag-sec{padding:64px 0 80px}
  /* ROI stats */
  .roi-num{font-size:40px}
  .roi-card-title{font-size:14px}
  .roi-cards{gap:28px;margin-top:32px}
  /* CTA */
  .cta{padding:56px 44px}
  .cta h2{font-size:40px}
  /* Quote */
  .quote blockquote{font-size:28px}
  /* FAQ */
  .faq-q-text{font-size:17px}
  /* Why Mesh comparison section — compact so full section fits in one viewport */
  .dark-band{padding:76px 0 52px}
  .dark-band .section-head h2{font-size:42px}
  .cmp-cards{gap:18px;margin-top:30px}
  .cmp-card{padding:20px 18px}
  .cmp-title{font-size:18px}
  .cmp-num{font-size:clamp(22px,2.1vw,32px)}
  .cmp-sub{font-size:13px;margin-top:8px}
  .cmp-summary{margin-top:16px;padding:12px 14px;font-size:13px}
  .cmp-cta-row{margin-top:20px}
  .cmp-cta{padding:18px 24px}
  .cmp-cta .roi-cta-h{font-size:20px}
}
@media(min-width:1081px) and (max-width:1280px){
  /* Wrap */
  .wrap{max-width:1100px}
  /* Sections */
  .section{padding:56px 0}
  .section-head h2{font-size:32px}
  .section-head .sub{font-size:16px}
  /* Hero (standalone pages) */
  .hero{padding:32px 0 48px}
  .hero h1{font-size:42px}
  .hero .sub{font-size:18px}
  /* Heavy bottom-padding sections */
  .bd{padding:56px 0 120px}
  /* Scatter→unified */
  .tx-headings{padding-top:100px}
  .tx-h{font-size:32px}
  .tx-head-wrap{height:46px}
  .tx-sub{font-size:14px}
  .tx-sub-wrap{height:26px;margin-top:3px}
  /* Close-flow: same fix for smaller laptops */
  .cf{height:340vh}
  .cf-stage{padding:76px 0 52px}
  .cf-head{margin-top:0;margin-bottom:40px}
  .cf-head h2{font-size:30px}
  .cf-grid{gap:40px}
  .cf-rail{gap:16px}
  .cf-step h3{font-size:23px}
  .cf-step-desc p{font-size:15px}
  .cf-steps{width:260px}
  /* Close-flow panel compact */
  .cf-panel{min-height:360px}
  .cf-pbody{min-height:360px}
  .cf-pad{padding:16px 18px 14px}
  .cf-drop{padding:18px 14px;gap:8px}
  .cf-drop-ic{width:34px;height:34px}
  .cf-drop-tx{font-size:12px}
  .cf-src{margin-top:10px}
  .cf-foot{margin-top:12px}
  /* Feature rows */
  .frow{gap:44px}
  .streamline-lead{font-size:24px}
  /* Page heroes */
  .faqp-hero{padding:76px 0 0}
  .pr-hero{padding:76px 0 36px}
  .ag-sec{padding:56px 0 72px}
  /* ROI stats */
  .roi-num{font-size:36px}
  .roi-card-title{font-size:13px}
  .roi-cards{gap:22px;margin-top:28px}
  /* CTA */
  .cta{padding:48px 36px}
  .cta h2{font-size:36px}
  /* Quote */
  .quote blockquote{font-size:24px}
  /* FAQ */
  .faq-q-text{font-size:16px}
  /* Why Mesh comparison section */
  .dark-band{padding:68px 0 48px}
  .dark-band .section-head h2{font-size:38px}
  .cmp-cards{gap:16px;margin-top:26px}
  .cmp-card{padding:18px 16px}
  .cmp-title{font-size:16px}
  .cmp-num{font-size:clamp(20px,1.9vw,28px)}
  .cmp-sub{font-size:12px;margin-top:6px}
  .cmp-summary{margin-top:13px;padding:10px 12px;font-size:12px}
  .cmp-cta-row{margin-top:18px}
  .cmp-cta{padding:16px 20px}
  .cmp-cta .roi-cta-h{font-size:18px}
}

/* ============================================================
   LARGE MONITOR — layout & type scaling for screens ≥ 1920 px.
   Safe approach: wider max-widths + explicit font overrides.
   Does NOT use css zoom — that property changes what 100vh means
   and breaks the vh-pinned scroll sections (.tx, .cf, .tg5-js).
   ============================================================ */
@media(min-width:1920px){
  /* Content containers */
  .wrap{max-width:1400px}
  .meshv5 .wrap{max-width:1400px}
  body.meshv6home .nav-scrolled .wrap{max-width:1100px}

  /* Nav */
  .nav-inner{height:84px}
  .nav-scrolled .nav-inner{height:70px}
  .nav-logo{height:38px}
  .nav-link{font-size:17px}
  .nav-cta{font-size:17px}

  /* Hero */
  .meshv5 .hero h1{font-size:clamp(52px,5.4vw,84px)}
  .hero h1{font-size:72px}
  .meshv5 .hero .sub{font-size:24px;max-width:480px}
  .hero .sub{font-size:26px}
  .hero-backed .backed-label{font-size:15px}
  .backed-logo{height:72px;width:144px}
  .hero-note{font-size:15px}
  .meshv5 .hero-blue{padding:130px 0 72px}

  /* Buttons */
  .btn{font-size:16px;padding:14px 22px}
  .btn-lg{font-size:17px;padding:18px 30px;border-radius:14px}
  .nav-actions .btn-primary,.nav-actions .btn-demo{padding-left:26px;padding-right:26px}

  /* Section scaffolding */
  .section{padding:112px 0}
  .section-head h2{font-size:52px}
  .section-head .sub{font-size:20px}

  /* Signals marquee hub */
  .signals-hub{font-size:36px}
  .cat-label{font-size:17px}
  .cat-icon{width:70px;height:70px}

  /* Feature rows */
  .frow{gap:80px}
  .fli .ft{font-size:18px}
  .fli .fd{font-size:16px}
  .streamline-lead{font-size:30px}
  .step3-text{font-size:24px}

  /* System breakdown cards */
  .bd-title{font-size:25px}
  .bd-body{font-size:16px}
  .bd-grid-cards{gap:28px}

  /* Close flow steps */
  .cf-step h3{font-size:36px}
  .cf-step.active .cf-step-desc p{font-size:20px}

  /* Scatter→unified transition headings */
  .tx-h{font-size:58px}
  .tx-sub{font-size:20px}

  /* ROI / stats band */
  .roi-num{font-size:56px}
  .roi-card-title{font-size:18px}
  .roi-cap{font-size:15px}
  .roi-cards{gap:48px;margin-top:52px}
  .dark-band .section-head h2{font-size:60px}

  /* Why Mesh compare cards */
  .cmp-title{font-size:24px}
  .cmp-num{font-size:clamp(32px,3.2vw,48px)}

  /* Testimonial / quote */
  .quote blockquote{font-size:42px}

  /* FAQ */
  .faq-q-text{font-size:21px}
  .faq-a p{font-size:17px}

  /* CTA */
  .cta{padding:88px 60px;border-radius:32px}
  .cta h2{font-size:58px}
  .cta .sub{font-size:20px}

  /* Footer */
  .footer-tag{font-size:16px}
  .footer h5{font-size:14px}
  .footer li a{font-size:15px}
}

/* 4K / ultra-wide (≥ 2560 px) — push containers wider */
@media(min-width:2560px){
  .wrap{max-width:1400px}
  .meshv5 .wrap{max-width:1400px}
  .meshv5 .hero h1{font-size:clamp(64px,4.8vw,100px)}
  .section-head h2{font-size:64px}
  .roi-num{font-size:72px}
  .cta h2{font-size:72px}
  .section{padding:140px 0}
}

/* ============================================================
   PHONE — ensure full visibility; complement the layout breakpoints
   above (880 / 760 / 560 / 480 / 400 px) with a baseline reset
   that prevents any accidental browser-zoom bleed.
   ============================================================ */
@media(max-width:767px){
  html{text-size-adjust:100%;-webkit-text-size-adjust:100%}
}
