/* ===========================================================
   b2b.html — the joke page. SELF-CONTAINED.

   Loaded on its own, WITHOUT /styles.css or /site.css.
   Nothing here shares a token, class name or selector with the
   real site, and nothing on the real site reads this file, so
   the two can't leak into each other. Delete b2b.html, b2b.css
   and _layouts/b2b.html and it's gone without a trace.

   Its own mini token set, deliberately the opposite of the
   brand: Inter, indigo/violet gradients, soft blurred shadows,
   rounded corners. Slate/indigo scale lifted from the Design
   screen's inline hex values.
   =========================================================== */

:root {
  --ink:        #0f172a;
  --slate-600:  #475569;
  --slate-500:  #64748b;
  --slate-400:  #94a3b8;
  --slate-300:  #cbd5e1;
  --slate-200:  #e2e8f0;
  --slate-100:  #f1f5f9;
  --slate-50:   #f8fafc;
  --indigo:     #4f46e5;
  --indigo-600: #4338ca;
  --indigo-50:  #eef2ff;
  --violet:     #a855f7;
  --brand-grad: linear-gradient(135deg, #6366f1, #a855f7);
  --green-700:  #15803d;
  --green-100:  #dcfce7;
  --amber-100:  #fef3c7;
  --amber-700:  #b45309;
  --radius:     10px;
}

* , *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;   /* not hidden — that would break position:sticky */
}
h1, h2, h3 { letter-spacing: -.03em; margin: 0; }
p { margin: 0; }
a { color: var(--indigo); text-decoration: none; }
a:hover { color: var(--indigo-600); }
img { max-width: 100%; }

.mso {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  white-space: nowrap;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
}

/* the "!" in a gradient ring — the one brand element that survives */
.dot {
  border-radius: 50%;
  background: var(--brand-grad);
  display: inline-grid;
  place-items: center;
  flex: none;
}
/* NB: no background-clip here — that belongs on the <b> only. Setting it on
   this span clips its white fill to the glyph and the inner circle vanishes. */
.dot > span {
  border-radius: 50%;
  background: #fff;
  display: inline-grid;
  place-items: center;
  line-height: 1;
}
.dot b {
  font-weight: 800;
  line-height: 1;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad-text {
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- buttons --------------------------------------------- */
.b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
}
.b-primary {
  background: var(--indigo);
  color: #fff;
  box-shadow: 0 4px 14px rgba(79, 70, 229, .35);
}
.b-primary:hover { color: #fff; }
.b-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--slate-300);
}
.b-ghost:hover { color: var(--ink); }
.b-sm { padding: 9px 18px; font-size: 14px; border-radius: 8px; }

/* ---- header ---------------------------------------------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, .72);
  border-bottom: 1px solid var(--slate-200);
}
.hdr-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.logo .dot { width: 30px; height: 30px; }
.logo .dot > span { width: 25px; height: 25px; }
.logo .dot b { font-size: 16px; }

.hdr nav { display: flex; gap: 26px; font-size: 14px; font-weight: 500; }
.hdr nav a, .hdr-cta a.plain { color: var(--slate-600); }
.hdr-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
}

/* ---- hero ------------------------------------------------ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--indigo-50) 55%, #fff 100%);
  padding: 96px 24px 88px;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, .22), transparent 70%);
  pointer-events: none;
}
.hero-in { position: relative; max-width: 860px; margin: 0 auto; }
.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 6vw, 60px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.035em;
}
.hero .sub { margin: 0 auto 32px; font-size: 19px; color: var(--slate-600); max-width: 640px; }
.hero .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.fine  { font-size: 13px; color: var(--slate-400); }
.finer { margin-top: 6px; font-size: 12px; color: var(--slate-300); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 6px 14px 6px 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-600);
  box-shadow: 0 1px 2px rgba(15, 23, 42, .05);
  margin-bottom: 28px;
}
.tag {
  background: var(--indigo-50);
  color: var(--indigo);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
}

/* ---- the fake product screenshot -------------------------- */
.shot {
  position: relative;
  max-width: 1040px;
  margin: 56px auto 0;
  border-radius: 16px;
  border: 1px solid var(--slate-200);
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
  overflow: hidden;
  text-align: left;
}
.chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--slate-200);
  background: var(--slate-50);
}
.chrome i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.chrome i:nth-child(1) { background: #f87171; }
.chrome i:nth-child(2) { background: #fbbf24; }
.chrome i:nth-child(3) { background: #34d399; }

.app {
  aspect-ratio: 16 / 10;
  display: grid;
  grid-template-columns: 168px 1fr;
  background: var(--slate-50);
  font-size: 12px;
  overflow: hidden;
}
.side {
  border-right: 1px solid var(--slate-200);
  background: #fff;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.side .logo { padding: 0 6px 12px; font-size: 13px; }
.side .logo .dot { width: 20px; height: 20px; }
.side .logo .dot > span { width: 16px; height: 16px; }
.side .logo .dot b { font-size: 11px; }
.nav-i {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 9px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-500);
}
.nav-i .mso { font-size: 16px; }
.nav-i.on { font-weight: 600; color: var(--indigo); background: var(--indigo-50); }

.app-main { display: flex; flex-direction: column; min-width: 0; }
.app-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--slate-200);
  background: #fff;
}
.app-bar .t { font-weight: 600; font-size: 13px; letter-spacing: -.01em; }
.chip-live { background: var(--indigo-50); color: var(--indigo); border-radius: 999px; padding: 2px 8px; font-size: 10px; font-weight: 600; }
.app-bar .right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.chip-q { border: 1px solid var(--slate-200); border-radius: 7px; padding: 4px 10px; font-size: 11px; color: var(--slate-500); }
.avatar { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, #c7d2fe, #e9d5ff); display: block; }

.app-body { padding: 11px 14px; display: flex; flex-direction: column; gap: 10px; min-height: 0; }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: #fff;
}
.k-lbl { font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 4px; }
.k-val { font-size: 24px; font-weight: 700; letter-spacing: -.02em; line-height: 1.1; }
.k-up  { margin-top: 2px; font-size: 11px; font-weight: 600; color: var(--green-700); }
.k-est { margin-top: 2px; font-size: 11px; font-weight: 600; color: var(--slate-400); }

.charts { display: grid; grid-template-columns: 1.7fr 1fr; gap: 10px; }
.c-h { font-size: 11px; font-weight: 600; color: #334155; margin-bottom: 8px; }
.donut {
  width: 74px; height: 74px; border-radius: 50%; flex: none;
  background: conic-gradient(var(--indigo) 0 78%, var(--violet) 78% 93%, #fbbf24 93% 100%);
  display: grid; place-items: center;
}
.donut > span { width: 48px; height: 48px; border-radius: 50%; background: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 700; }
.legend { display: flex; flex-direction: column; gap: 5px; font-size: 10px; color: var(--slate-500); }
.legend i { display: inline-block; width: 7px; height: 7px; border-radius: 2px; margin-right: 5px; }

.tbl { width: 100%; border-collapse: collapse; font-size: 11px; text-align: left; }
.tbl thead tr { background: var(--slate-50); color: var(--slate-400); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.tbl th, .tbl td { padding: 7px 10px; }
.tbl th { font-weight: 600; }
.tbl td { color: var(--slate-500); }
.tbl td.rack { font-weight: 600; color: var(--ink); }
.st { display: inline-flex; align-items: center; border-radius: 999px; padding: 2px 8px; font-size: 10px; font-weight: 600; }
.st-ok { background: var(--green-100); color: var(--green-700); }
.st-esc { background: var(--amber-100); color: var(--amber-700); }

/* ---- logo wall ------------------------------------------- */
.wall { padding: 44px 24px; border-bottom: 1px solid var(--slate-100); }
.wall .eyebrow { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 22px; }
.wall .names {
  max-width: 900px; margin: 0 auto;
  display: flex; justify-content: center; gap: 56px; flex-wrap: wrap;
  font-size: 20px; font-weight: 700; color: var(--slate-300); letter-spacing: -.02em;
}

/* ---- generic sections ------------------------------------ */
.sec { max-width: 1200px; margin: 0 auto; padding: 88px 24px; }
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.eyebrow-i { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--indigo); margin-bottom: 12px; }
.sec-head h2 { margin-bottom: 14px; font-size: clamp(1.9rem, 4.5vw, 40px); line-height: 1.15; font-weight: 700; }
.sec-head p { font-size: 17px; color: var(--slate-600); }

.feats { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feat {
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .06);
}
.feat .ic { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 18px; }
.feat .ic .mso { font-size: 24px; }
.ic-indigo { background: var(--indigo-50); color: var(--indigo); }
.ic-green  { background: #f0fdf4; color: #16a34a; }
.ic-amber  { background: var(--amber-100); color: #d97706; }
.ic-sky    { background: #e0f2fe; color: #0284c7; }
.ic-violet { background: #f3e8ff; color: #7c3aed; }
.ic-rose   { background: #ffe4e6; color: #e11d48; }
.feat h3 { margin-bottom: 8px; font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
.feat p { font-size: 15px; color: var(--slate-600); }

/* ---- stat band ------------------------------------------- */
.band { background: var(--ink); color: #fff; padding: 72px 24px; }
.band-in { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; text-align: center; }
.band .n {
  font-size: 44px; font-weight: 800; letter-spacing: -.03em;
  background: linear-gradient(90deg, #818cf8, #c084fc);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.band .l { margin-top: 6px; font-size: 14px; color: var(--slate-400); }

/* ---- why / photo ----------------------------------------- */
.why { max-width: 1200px; margin: 0 auto; padding: 88px 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 56px; align-items: center; }
.why h2 { margin-bottom: 16px; font-size: clamp(1.8rem, 4vw, 36px); line-height: 1.18; font-weight: 700; }
.why .lede { margin-bottom: 24px; font-size: 16px; color: var(--slate-600); }
.checks { display: flex; flex-direction: column; gap: 12px; }
.checks div { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: #334155; }
.checks .mso { font-size: 20px; color: #16a34a; flex: none; }

.shotwrap { position: relative; }
.shotwrap::before {
  content: "";
  position: absolute;
  inset: -24px -18px;
  border-radius: 28px;
  background: radial-gradient(ellipse at 60% 40%, rgba(168, 85, 247, .28), transparent 70%);
  pointer-events: none;
}
.photo { position: relative; border-radius: 16px; border: 1px solid var(--slate-200); overflow: hidden; box-shadow: 0 24px 60px rgba(15, 23, 42, .16); }
.photo img { display: block; width: 100%; height: auto; }
.float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .12);
}
.float-bl { left: -14px; bottom: -16px; padding: 10px 14px; display: flex; align-items: center; gap: 10px; }
.float-bl .ic { width: 32px; height: 32px; border-radius: 9px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; flex: none; }
.float-bl .ic .mso { font-size: 18px; }
.float-tr { right: -12px; top: -14px; padding: 8px 13px; }
.float .t { font-size: 12px; font-weight: 600; letter-spacing: -.01em; }
.float .s { font-size: 11px; color: var(--slate-400); }
.float .big { font-size: 18px; font-weight: 700; letter-spacing: -.02em; }
.float .cap { font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-400); }

/* ---- FAQ accordion --------------------------------------- */
/* <details>/<summary>, so the open/close is the browser's job, not a script's. */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--slate-200);
}
.faq-list details { border-bottom: 1px solid var(--slate-200); }
.faq-list summary {
  list-style: none;                 /* kill the default disclosure triangle */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--indigo); }
.faq-list summary:focus-visible { outline: 2px solid var(--indigo); outline-offset: 2px; }
.chev {
  font-size: 22px;
  color: var(--slate-400);
  flex: none;
  transition: transform .15s ease;
}
details[open] > summary .chev { transform: rotate(180deg); }
.faq-list details > p {
  padding: 0 4px 22px;
  font-size: 15px;
  color: var(--slate-600);
  max-width: 62ch;
}

/* ---- testimonial ----------------------------------------- */
.quote { background: var(--slate-50); padding: 80px 24px; border-top: 1px solid var(--slate-100); }
.quote-in { max-width: 760px; margin: 0 auto; text-align: center; }
.quote blockquote { margin: 0 0 24px; font-size: 24px; line-height: 1.5; font-weight: 500; letter-spacing: -.02em; }
.who { display: flex; align-items: center; justify-content: center; gap: 12px; }
.who .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #c7d2fe, #e9d5ff); flex: none; }
.who .txt { text-align: left; }
.who .n { font-size: 14px; font-weight: 600; }
.who .r { font-size: 13px; color: var(--slate-400); }

/* ---- final CTA ------------------------------------------- */
.final { padding: 24px 24px 88px; }
.final-in {
  max-width: 1000px; margin: 0 auto;
  border-radius: 20px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed 55%, #db2777);
  padding: 64px 32px;
  text-align: center;
  color: #fff;
  box-shadow: 0 24px 60px rgba(79, 70, 229, .28);
}
.final-in h2 { margin-bottom: 14px; font-size: clamp(1.9rem, 4.5vw, 38px); line-height: 1.15; font-weight: 700; }
.final-in p { margin: 0 auto 28px; font-size: 17px; opacity: .9; max-width: 520px; }
.final-in .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.b-white { background: #fff; color: var(--indigo); padding: 13px 28px; }
.b-white:hover { color: var(--indigo); }
.b-glass { background: rgba(255, 255, 255, .12); color: #fff; padding: 13px 28px; border: 1px solid rgba(255, 255, 255, .35); }
.b-glass:hover { color: #fff; }

/* ---- footer ---------------------------------------------- */
.ftr { border-top: 1px solid var(--slate-200); padding: 56px 24px 40px; }
.ftr-in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; }
.ftr .logo { margin-bottom: 10px; }
.ftr .logo .dot { width: 26px; height: 26px; }
.ftr .logo .dot > span { width: 21.5px; height: 21.5px; }
.ftr .logo .dot b { font-size: 14px; }
.ftr-col { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.ftr-col .h { font-weight: 600; font-size: 13px; margin-bottom: 4px; }
.ftr-col a { color: var(--slate-500); }
.ftr .tiny { max-width: 1200px; margin: 40px auto 0; font-size: 13px; color: var(--slate-400); }

/* ---- the escape hatch ------------------------------------ */
/* The one place the real brand shows through: Patrick Hand, flat ink border,
   hard unblurred shadow. It should look like it wandered in from another site,
   because it did. */
.escape {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99;
  font-family: "Patrick Hand", cursive;
  font-size: 1.05rem;
  background: #fff;
  color: #1a1a1a;
  border: 3px solid #1a1a1a;
  border-radius: 999px;
  padding: .4rem 1.1rem;
  box-shadow: 4px 5px 0 rgba(0, 0, 0, .32);
}
.escape:hover {
  color: #1a1a1a;
  background: #ffd9b8;
  transform: translate(1px, 1px);
  box-shadow: 3px 4px 0 rgba(0, 0, 0, .3);
}

/* ---- responsive ------------------------------------------ */
@media (max-width: 900px) {
  .hdr nav { display: none; }          /* the nav is set dressing */
  .hero { padding: 56px 20px 64px; }
  .sec, .why { padding: 56px 20px; }
}
@media (max-width: 640px) {
  /* The dashboard mock is a picture of software, not software. Let it scroll
     sideways in its own box rather than collapse into nonsense. */
  .shot { overflow-x: auto; }
  .app { width: 900px; }
  .band { padding: 48px 20px; }
  .quote blockquote { font-size: 19px; }
  .final-in { padding: 40px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .escape:hover { transform: none; }
  .chev { transition: none; }
}

/* ===========================================================
   Joke-signal furniture + the extra SaaS surface area.
   Everything below is still self-contained to this page.
   =========================================================== */

/* ---- announcement bar ------------------------------------ */
.announce {
  display: block;
  background: linear-gradient(90deg, #4f46e5, #7c3aed 55%, #db2777);
  color: #fff;
  text-align: center;
  padding: 9px 24px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -.01em;
}
.announce:hover { color: #fff; text-decoration: underline; }

/* ---- compliance badges ----------------------------------- */
.trust { padding: 40px 24px 30px; }
.trust-in {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 10px 14px;
  flex-wrap: wrap;
}
.badge {
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-500);
  background: #fff;
}
.trust-note {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--slate-300);
}

/* ---- stat band footnote ---------------------------------- */
.band-note {
  max-width: 1000px;
  margin: 30px auto 0;
  text-align: center;
  font-size: 12px;
  color: var(--slate-500);
}

/* ---- the "it's a render" note under the photo ------------- */
.photo-note {
  position: relative;
  margin-top: 26px;
  text-align: right;
  font-size: 12px;
  color: var(--slate-400);
}

/* ---- pricing --------------------------------------------- */
.sec-tight { padding-top: 40px; padding-bottom: 40px; }
/* one centred card — the single "Most popular" tier with no price is the whole
   joke, and it lands better without an aside explaining it */
.price-wrap { max-width: 380px; margin: 0 auto; }
.price {
  position: relative;
  border: 2px solid var(--indigo);
  border-radius: 16px;
  padding: 32px 28px 26px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(79, 70, 229, .13);
}
.price-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--indigo);
  color: #fff;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-tier { font-size: 15px; font-weight: 700; letter-spacing: -.01em; }
.price-amt  { font-size: 46px; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin-top: 6px; }
.price-per  { font-size: 13px; color: var(--slate-400); margin-bottom: 22px; }
.price-list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.price-list li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: #334155; }
.price-list .mso { font-size: 18px; color: #16a34a; flex: none; }
.price-fine { margin-top: 14px; text-align: center; font-size: 11.5px; color: var(--slate-300); }
.price-aside { font-size: 15px; color: var(--slate-500); max-width: 34ch; }

/* ---- integrations ---------------------------------------- */
.stack {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 12px 16px;
  flex-wrap: wrap;
}
.stack span {
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 14px 22px;
  background: #fff;
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-500);
  box-shadow: 0 1px 3px rgba(15, 23, 42, .05);
}

/* ---- testimonials (three-up) ----------------------------- */
.quote-grid { max-width: 620px; margin: 0 auto; }
.q-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.q-card blockquote { margin: 0; font-size: 16px; line-height: 1.55; font-weight: 500; letter-spacing: -.01em; }
.q-card .who { margin-top: auto; }
.who .txt { display: flex; flex-direction: column; }
.quote-note { text-align: center; margin-top: 30px; font-size: 12.5px; color: var(--slate-400); }

/* ---- footer newsletter + bottom bar ---------------------- */
.news-h { font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.news { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.news-in {
  flex: 1 1 150px;
  min-width: 0;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--slate-300);
  background: #fff;
}
.ftr-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.lang { font-size: 13px; color: var(--slate-400); }

/* ---- chat widget ----------------------------------------- */
.chat {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 140;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 11px 18px 11px 14px;
  box-shadow: 0 8px 26px rgba(15, 23, 42, .14);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: #334155;
}
.chat-dot { width: 9px; height: 9px; border-radius: 50%; background: #34d399; flex: none; }

/* the escape hatch must sit above the consent bar */
.escape { z-index: 200; }

@media (max-width: 900px) {
  .chat { display: none; }
}

/* ---- roadmap --------------------------------------------- */
/* Escalating timeline. Played entirely straight so the last two entries do
   the work without any change of register. */
.road {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 0 0 4px;
}
.road li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 16px 0 16px 26px;
  border-left: 2px solid var(--slate-200);
  position: relative;
}
.road li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--indigo);
  border: 2px solid #fff;
}
.road li:last-child { border-left-color: transparent; }
.road-y { font-size: 15px; font-weight: 700; color: var(--indigo); letter-spacing: -.01em; }
.road-t { font-size: 16px; color: #334155; }

/* ---- orbital band ---------------------------------------- */
.orbital {
  background: radial-gradient(ellipse at 30% 0%, #1e1b4b 0%, var(--ink) 55%);
  color: #fff;
  padding: 92px 24px;
}
.orbital-in { max-width: 860px; margin: 0 auto; text-align: center; }
.orbital h2 {
  margin: 12px 0 18px;
  font-size: clamp(1.9rem, 4.4vw, 38px);
  line-height: 1.15;
  font-weight: 700;
}
.orbital-lede { font-size: 17px; color: var(--slate-400); max-width: 62ch; margin: 0 auto; }
.orbital-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 28px;
}
.orbital-grid .n {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.03em;
  background: linear-gradient(90deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.orbital-grid .l { margin-top: 4px; font-size: 13px; color: var(--slate-400); }
.orbital-note { margin-top: 40px; font-size: 12.5px; color: var(--slate-500); }

/* ===========================================================
   Motion. Driven by /b2b.js — every rule below is gated
   on .js so the page is fully readable if the script never
   runs, and every one is disabled under prefers-reduced-motion.
   =========================================================== */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1),
              transform .7s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}
.js [data-reveal].in { opacity: 1; transform: none; }

/* ---- scroll progress bar --------------------------------- */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 210;
  pointer-events: none;
}
.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
}

/* ---- chat widget ----------------------------------------- */
.chat {
  opacity: 0;
  transform: translateY(14px) scale(.96);
  transition: opacity .45s ease, transform .45s cubic-bezier(.16, 1, .3, 1);
}
.chat.in { opacity: 1; transform: none; }
.chat-badge {
  background: #ef4444;
  color: #fff;
  border-radius: 999px;
  min-width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  padding: 0 5px;
}

/* ---- social-proof toast ---------------------------------- */
.toast {
  position: fixed;
  left: 20px;
  bottom: 88px;
  z-index: 140;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 11px 16px;
  box-shadow: 0 8px 26px rgba(15, 23, 42, .14);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #334155;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s cubic-bezier(.16, 1, .3, 1);
}
.toast.in { opacity: 1; transform: none; }
.toast b { font-weight: 700; }
.toast-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ef4444; flex: none;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, .55);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* ---- exit-intent modal ----------------------------------- */
.exit {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(3px);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.exit.in { opacity: 1; visibility: visible; }
.exit-card {
  position: relative;
  width: min(520px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 40px 36px 30px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(15, 23, 42, .32);
  transform: translateY(14px) scale(.97);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}
.exit.in .exit-card { transform: none; }
.exit-x {
  position: absolute;
  top: 12px; right: 14px;
  border: 0; background: none;
  font-size: 26px; line-height: 1;
  color: var(--slate-300);
  cursor: pointer;
}
.exit-x:hover { color: var(--slate-500); }
.exit-kicker {
  font-size: 12px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--indigo); margin-bottom: 10px;
}
.exit-card h2 { font-size: 26px; line-height: 1.2; font-weight: 700; margin-bottom: 12px; }
.exit-sub { font-size: 15px; color: var(--slate-600); margin-bottom: 22px; }
.exit-form { display: flex; gap: 8px; flex-wrap: wrap; }
.exit-in {
  flex: 1 1 200px; min-width: 0;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--slate-300);
  text-align: left;
}
.exit-no {
  margin-top: 16px;
  border: 0; background: none;
  font-size: 12.5px;
  color: var(--slate-300);
  text-decoration: underline;
  cursor: pointer;
}
.exit-no:hover { color: var(--slate-500); }

@media (max-width: 900px) {
  .toast { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .chat, .toast { transition: none; }
  .toast-live { animation: none; }
  .exit, .exit-card { transition: none; }
}

/* ---- manifesto slide ------------------------------------- */
/* Two viewports of scroll, one sticky screen. Words light as you go. */
.manifesto { position: relative; height: 200vh; background: #fff; }
.manifesto-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  padding: 0 24px;
}
.manifesto-line {
  max-width: 1100px;
  text-align: center;
  font-size: clamp(2.2rem, 7vw, 5.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.045em;
}
.manifesto-line span {
  color: var(--slate-200);
  transition: color .35s ease;
}
.manifesto-line span.on { color: var(--ink); }
.manifesto-line span:last-child.on {
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (prefers-reduced-motion: reduce) {
  .manifesto { height: auto; }
  .manifesto-sticky { position: static; height: auto; padding: 96px 24px; }
  .manifesto-line span { color: var(--ink); transition: none; }
}
