:root {
  --bg: #FFFFFF;
  --panel: #F3F5F8;
  --panel-2: #EBEFF4;
  --card: #FFFFFF;
  --ink: #0B0B0C;
  --muted: #6B6B70;
  --faint: #93939A;
  --line: rgba(11, 11, 12, .10);
  --line-soft: rgba(11, 11, 12, .06);
  --accent: #2981FD;
  --dark: #0E0E10;

  --r-panel: 26px;
  --r-card: 16px;
  --pad: clamp(1.15rem, 4vw, 3.5rem);
  --maxw: 1200px;
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.22, .68, .16, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--bg); -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font); font-weight: 400;
  font-size: 1.0625rem; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: rgba(41, 129, 253, .16); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.skip { position: absolute; left: -9999px; top: 1rem; z-index: 300; background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 8px; }
.skip:focus { left: 1rem; }

/* ---------- type ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 300; letter-spacing: -.022em; }
h1 { font-size: clamp(2.5rem, 4.6vw, 3.9rem); line-height: 1.06; }
h2 { font-size: clamp(1.95rem, 3.1vw, 2.65rem); line-height: 1.12; }
h3 { font-size: 1.12rem; font-weight: 500; letter-spacing: -.012em; line-height: 1.35; }
p { margin: 0; }
.eyebrow { font-size: .9rem; font-weight: 500; color: var(--muted); margin: 0 0 1.1rem; display: flex; align-items: center; gap: .55rem; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }
.lede { color: var(--muted); font-size: 1.0625rem; line-height: 1.65; max-width: 34rem; }
.lede strong { color: var(--ink); font-weight: 500; }
.tiny { font-size: .78rem; color: var(--faint); line-height: 1.6; }

section { padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad); }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.head { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 1.5rem 5vw; align-items: end; margin-bottom: clamp(2rem, 4vw, 3rem); }
.head h2 { max-width: 16ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em; padding: .78em 1.35em; border-radius: 999px; border: 1px solid transparent;
  background: var(--accent); color: #fff; font: 500 .95rem/1 var(--font); text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { background: #1B6EE4; transform: translateY(-1px); }
.btn.dark { background: var(--ink); }
.btn.dark:hover { background: #292930; }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn.ghost:hover { background: rgba(11, 11, 12, .04); }
.btn.light { background: #fff; color: var(--ink); }
.btn.light:hover { background: #ECECEC; }
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.link { color: var(--accent); text-decoration: none; font-weight: 500; font-size: .95rem; display: inline-flex; align-items: center; gap: .35em; }
.link:hover { text-decoration: underline; text-underline-offset: 3px; }
.card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-card); padding: clamp(1.2rem, 2vw, 1.5rem); }
.card p { color: var(--muted); font-size: .95rem; line-height: 1.55; margin-top: .5rem; }
.card .ic { width: 34px; height: 34px; border-radius: 10px; background: var(--panel); display: grid; place-items: center; margin-bottom: 1.1rem; color: var(--ink); }
.card .ic svg { width: 17px; height: 17px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; }

/* ---------- nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: .85rem var(--pad); transition: background .35s var(--ease), border-color .35s var(--ease); border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(255, 255, 255, .86); backdrop-filter: saturate(160%) blur(12px); border-bottom-color: var(--line-soft); }
.nav-in { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; }
.nav-logo { display: block; width: clamp(150px, 16vw, 210px); }
.nav-right { justify-self: end; display: flex; align-items: center; gap: .6rem; }
.in-menu { display: none; }
.nav-links { justify-self: center; display: flex; align-items: center; gap: clamp(.9rem, 2.2vw, 2.1rem); }
.nav-links a:not(.btn) { font-size: .95rem; font-weight: 400; color: var(--muted); text-decoration: none; transition: color .25s; }
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav .btn { padding: .68em 1.15em; font-size: .9rem; }
.menu-btn { display: none; position: relative; z-index: 2; width: 2.6rem; height: 2.6rem; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink); cursor: pointer; }
.menu-btn i { position: absolute; left: .75rem; right: .75rem; height: 1.5px; background: currentColor; transition: transform .35s var(--ease), top .35s var(--ease); }
.menu-btn i:first-child { top: 1.05rem; }
.menu-btn i:last-child { top: 1.45rem; }
html.menu-open .menu-btn i:first-child { top: 1.25rem; transform: rotate(45deg); }
html.menu-open .menu-btn i:last-child { top: 1.25rem; transform: rotate(-45deg); }
@media (max-width: 840px) {
  .menu-btn { display: block; }
  .nav-in { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-cta { display: none; }
  .in-menu { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 0; justify-self: stretch; width: 100vw; max-width: 100vw;
    background: var(--bg); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.2rem;
    padding: 5rem var(--pad) 3rem; transform: translateY(-101%); transition: transform .5s var(--ease); visibility: hidden;
  }
  html.menu-open .nav-links { transform: none; visibility: visible; }
  .nav-links a:not(.btn) { font-size: 1.8rem; font-weight: 300; letter-spacing: -.02em; color: var(--ink); }
  .nav-links .btn { margin-top: .8rem; }
}

/* ---------- hero ---------- */
.hero { padding-top: clamp(7rem, 12vw, 9.5rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.hero h1 { max-width: 13ch; }
.hero h1 em { font-style: normal; color: var(--muted); }
.hero-cta { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 2rem; }
.tab .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--faint); transition: background .3s; }
.tab[aria-selected="true"] .dot { background: var(--accent); }
.pane-copy .link { margin-top: 1.4rem; }
.stat-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-card); padding: 1.3rem 1.4rem; }
.stat-card .n { font-size: clamp(1.9rem, 3.2vw, 2.5rem); font-weight: 300; letter-spacing: -.03em; line-height: 1; }
.stat-card .n span { font-size: .5em; color: var(--accent); margin-left: .1em; }
.stat-card .c { font-size: .88rem; color: var(--muted); margin-top: .6rem; }
.stat-card .was { font-size: .78rem; color: var(--faint); margin-top: .35rem; }
.step .n { font-size: .78rem; color: var(--accent); font-weight: 500; }

/* photos */
.photo-pair { display: grid; grid-template-columns: 1.25fr .75fr; gap: .75rem; }
.photo-pair figure { margin: 0; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line-soft); background: var(--card); }
.photo-pair img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.photo-cap { margin-top: .8rem; }

/* together */
.tracks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.track { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-card); padding: 1.5rem; }
.track .who { font-size: .88rem; font-weight: 500; margin-bottom: 1.2rem; display: flex; align-items: center; gap: .5rem; }
.track .who .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.track ol { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.track li { display: grid; grid-template-columns: 1.6rem 1fr; gap: .6rem; font-size: .95rem; }
.track li i { font-style: normal; font-size: .78rem; color: var(--faint); padding-top: .2em; }
.track li span { display: block; font-size: .87rem; color: var(--muted); margin-top: .15rem; }

/* ---------- contact ---------- */
.contact-panel { background: var(--dark); color: #fff; border-radius: var(--r-panel); padding: clamp(1.6rem, 4vw, 3.2rem); }
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 2.5rem 4vw; align-items: start; }
.contact-panel h2 { max-width: 12ch; }
.contact-panel .lede { color: rgba(255, 255, 255, .62); margin-top: 1.2rem; }
.contact-panel .lede strong { color: #fff; }
.contact-panel .eyebrow { color: rgba(255, 255, 255, .55); }
form.lead { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.field { display: grid; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .78rem; color: rgba(255, 255, 255, .6); }
.field input, .field select {
  font: 400 .98rem/1.3 var(--font); color: #fff; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .16);
  padding: .78rem .9rem; border-radius: 10px; width: 100%; -webkit-appearance: none; appearance: none;
}
.field select { background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%); background-position: calc(100% - 17px) 55%, calc(100% - 12px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.field select option { color: #111; }
.field input::placeholder { color: rgba(255, 255, 255, .34); }
.field input:focus, .field select:focus { outline: none; border-color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .08); }
.consent { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1rem 1fr; gap: .7rem; font-size: .74rem; line-height: 1.5; color: rgba(255, 255, 255, .5); }
.consent b { display: block; margin-bottom: .25rem; font-weight: 400; font-size: .9rem; color: #fff; }
.consent a { color: inherit; text-decoration: underline; }
.consent input { width: 1rem; height: 1rem; margin: .15rem 0 0; accent-color: var(--accent); }
form.lead .btn { justify-self: start; }
.form-note { grid-column: 1 / -1; font-size: .85rem; min-height: 1.2em; color: rgba(255, 255, 255, .8); }

/* ---------- legal pages ---------- */
.legal-page { padding-top: clamp(7rem, 12vw, 9.5rem); }
.legal-page h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.legal-page .date { margin-top: .9rem; color: var(--faint); font-size: .9rem; }
.legal-body { max-width: 46rem; margin-top: clamp(2rem, 4vw, 3rem); }
.legal-body h2 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 400; margin-top: 2.8rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.02rem; font-weight: 500; margin-top: 1.8rem; }
.legal-body p { color: var(--muted); margin-top: .9rem; }
.legal-body ul { color: var(--muted); margin: .9rem 0 0; padding-left: 1.15rem; }
.legal-body li { margin-top: .45rem; }
.legal-body a { color: var(--accent); }
.legal-body .callout { margin-top: 1.4rem; padding: 1.2rem 1.4rem; background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--r-card); }
.legal-body .callout p { margin-top: .3rem; }
.legal-body .callout p:first-child { margin-top: 0; color: var(--ink); font-weight: 500; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
form.lead .btn[disabled] { opacity: .6; cursor: default; transform: none; }

/* ---------- footer ---------- */
footer { padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 2rem; border-top: 1px solid var(--line-soft); }
.foot-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: 2rem 3vw; }
.foot-grid img { width: 170px; }
.foot-grid > div > p { margin-top: 1.1rem; font-size: .9rem; color: var(--muted); max-width: 20rem; }
.foot-grid h4 { font-size: .8rem; font-weight: 500; color: var(--faint); margin-bottom: .9rem; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.foot-grid a { font-size: .92rem; color: var(--muted); text-decoration: none; }
.foot-grid a:hover { color: var(--ink); }
.legal { max-width: var(--maxw); margin: 3rem auto 0; padding-top: 1.4rem; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; font-size: .8rem; color: var(--faint); }
.legal a { color: var(--faint); text-decoration: none; }
.legal a:hover { color: var(--muted); }

/* ---------- motion (kept light) ---------- */
/* Only hide content for the fade-in if JavaScript is running (the <html class="js"> flag is
   set by an inline script in the page head). If the script fails for any reason, the page
   shows in full instead of going blank. */
html.js [data-r] { opacity: 0; transform: translateY(14px); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .head, .split, .pane-in, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .split .sticky { position: static; }
  .grid-4, .steps, .steps.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
  .flow::before { display: none; }
  .foot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .foot-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .grid-3, .grid-2, .grid-4, .steps, .steps.four, .tracks, .photo-pair, form.lead { grid-template-columns: minmax(0, 1fr); }
  .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { padding-top: 6.5rem; }
}
/* ============================================================
   THEME CONCEPTS — switch with the pill at the bottom of the page
   ============================================================ */
:root { --contact-bg: var(--dark); --glow: transparent; --logo-dark-op: 0; --logo-light-op: 1; }
.logo-dark { display: none; }
html[data-theme] .logo-dark { display: block; }
html[data-theme] .logo-light { display: none; }

/* glow wash behind the hero, so dark never reads as heavy */
.hero { position: relative; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% 30%; z-index: -1; pointer-events: none; background: var(--glow);
}

/* F — SPOTLIGHT: white page, black hero block, black close */
html[data-theme="spotlight"] {
  --bg: #FFFFFF; --panel: #F3F5F8; --panel-2: #EBEFF4; --card: #FFFFFF;
  --ink: #0B0B0C; --muted: #6B6B70; --faint: #93939A;
  --line: rgba(11, 11, 12, .10); --line-soft: rgba(11, 11, 12, .06);
  --accent: #2981FD; --contact-bg: #0B0B0D; --glow: transparent;
}
html[data-theme="spotlight"] .logo-dark { display: none; }
html[data-theme="spotlight"] .logo-light { display: block; }
html[data-theme="spotlight"] .hero { padding-top: 6rem; padding-bottom: 0; }
html[data-theme="spotlight"] .hero .wrap {
  --bg: #0B0B0D; --panel: #141418; --panel-2: #1D1D23; --card: #15151A;
  --ink: #F6F6F7; --muted: #A0A0A9; --faint: #7C7C86;
  --line: rgba(255, 255, 255, .12); --line-soft: rgba(255, 255, 255, .08); --accent: #4A90FF;
  background: var(--bg); color: var(--ink); border-radius: 28px; padding: clamp(1.6rem, 4vw, 3.4rem);
  max-width: calc(var(--maxw) + 2 * clamp(1.6rem, 4vw, 3.4rem));
}
html[data-theme="spotlight"] .hero .wrap .btn.ghost { border-color: rgba(255, 255, 255, .2); color: #fff; }
html[data-theme="spotlight"] .hero .wrap .tab[aria-selected="true"] { background: var(--card); }
html[data-theme="spotlight"] .hero .wrap .bubble.us { background: var(--accent); color: #06121F; }
html[data-theme="spotlight"] .hero .wrap .bubble.them { background: var(--panel-2); }
html[data-theme="spotlight"] .hero .wrap .pill { background: rgba(74, 144, 255, .18); color: #9CC4FF; }
html[data-theme="spotlight"] .hero .wrap .pill.grey { background: rgba(255, 255, 255, .08); color: var(--muted); }
html[data-theme="spotlight"] .hero .wrap .logo-light { display: none; }
html[data-theme="spotlight"] .hero .wrap .logo-dark { display: block; }

/* F — more black: whole sections marked data-dark become black blocks, plus a black footer */
html[data-theme="spotlight"] [data-dark] { padding-top: clamp(1rem, 2vw, 1.6rem); padding-bottom: clamp(1rem, 2vw, 1.6rem); }
html[data-theme="spotlight"] [data-dark] > .wrap {
  --bg: #0B0B0D; --panel: #141418; --panel-2: #1D1D23; --card: #15151A;
  --ink: #F6F6F7; --muted: #A0A0A9; --faint: #7C7C86;
  --line: rgba(255, 255, 255, .12); --line-soft: rgba(255, 255, 255, .08); --accent: #4A90FF;
  background: var(--bg); color: var(--ink); border-radius: 28px; padding: clamp(1.6rem, 4vw, 3.4rem);
  max-width: calc(var(--maxw) + 2 * clamp(1.6rem, 4vw, 3.4rem));
}
html[data-theme="spotlight"] [data-dark] .btn.ghost { border-color: rgba(255, 255, 255, .2); color: #fff; }
html[data-theme="spotlight"] [data-dark] .logo-light { display: none; }
html[data-theme="spotlight"] [data-dark] .logo-dark { display: block; }
html[data-theme="spotlight"] footer {
  --bg: #0B0B0D; --ink: #F6F6F7; --muted: #A0A0A9; --faint: #7C7C86; --line-soft: rgba(255, 255, 255, .08);
  background: var(--bg); color: var(--ink); border-top: 0; margin-top: clamp(1rem, 2vw, 1.6rem);
}
html[data-theme="spotlight"] footer .logo-light { display: none; }
html[data-theme="spotlight"] footer .logo-dark { display: block; }
html[data-theme="spotlight"] #contact { padding-top: clamp(1rem, 2vw, 1.6rem); }

/* shared dark-theme adjustments */
html[data-theme] body { background: var(--bg); color: var(--ink); }
html[data-theme] .nav.scrolled { background: color-mix(in srgb, var(--bg) 86%, transparent); }
html[data-theme] .btn.ghost { border-color: var(--line); color: var(--ink); }
html[data-theme] .btn.ghost:hover { background: rgba(255, 255, 255, .06); }
html[data-theme] .contact-panel { background: var(--contact-bg); }
html[data-theme] ::selection { background: rgba(74, 144, 255, .3); }
html[data-theme] .card:hover { border-color: var(--line); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-r] { opacity: 1; transform: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- 2026-09-18 rebuild: one idea per section ---------- */

/* hero: headline, one sentence, one button */
.hero-solo { padding: clamp(1rem, 3vw, 2.5rem) 0 clamp(1.5rem, 4vw, 3rem); }
.hero-solo h1 { max-width: 15ch; }
.hero-solo h1 em { font-style: normal; color: var(--muted); }
.hero-lede { color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.2rem); line-height: 1.6; max-width: 48ch; margin-top: 1.6rem; }
.hero-solo .hero-cta { margin-top: 2.2rem; }

/* the three product lines */
.card.product { display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: border-color .2s, transform .2s; }
.card.product:hover { border-color: var(--line); transform: translateY(-2px); }
.card.product h3 { margin-top: .2rem; }
.card.product > p { flex: 0 0 auto; }
.plogo { display: block; height: 20px; width: auto; max-width: 140px; object-fit: contain; object-position: left center; margin-bottom: 1.1rem; }
.pname { font-size: 1.05rem; font-weight: 500; letter-spacing: -.01em; line-height: 20px; height: 20px; color: var(--ink); }
.who-for { margin-top: auto; padding-top: 1.1rem; font-size: .8rem; color: var(--faint); }
.card.product .link { margin-top: .9rem; font-size: .9rem; }

/* one short note, then one call to action, per section */
.section-note { margin-top: 1.6rem; max-width: 60ch; font-size: .92rem; line-height: 1.6; color: var(--muted); }
.section-note strong { color: var(--ink); font-weight: 500; }
.section-cta { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; margin-top: 2rem; }
.stat-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; }

@media (max-width: 780px) {
  .stat-row { grid-template-columns: minmax(0, 1fr); }
  .hero-solo h1 { max-width: 100%; }
  .section-cta { gap: 1rem; }
  .section-cta .btn { width: 100%; text-align: center; justify-content: center; }
}

/* anchor links shouldn't hide the heading behind the sticky header */
section[id] { scroll-margin-top: 92px; }

/* Pipeline lockup: its own mark, same visual weight as the Thynk.ai and RBP logos.
   Colours come from the section, so it works on the white and the black blocks. */
.plock { display: flex; align-items: center; gap: 7px; height: 20px; max-width: none; }
.plock .pmark { flex: 0 0 auto; }
.plock .pmark .c1 { stroke: currentColor; opacity: .38; }
.plock .pmark .c2 { stroke: currentColor; }
.plock .pmark .c3 { stroke: var(--accent); }
.plock .pword { font-size: 1.05rem; font-weight: 600; letter-spacing: -.02em; line-height: 1; color: var(--ink); }

/* Restored 2026-09-18: these classes are added by site.js at runtime, so they were not
   visible to the stylesheet prune and got removed by mistake. Without .is-in the whole
   page stays invisible; without .menu-open the phone menu will not open. */
@media (max-width: 840px) { html.menu-open, html.menu-open body { overflow: hidden; } }
html.static [data-r], .is-in[data-r], [data-r].is-in { opacity: 1 !important; transform: none !important; }


/* ---------- 2026-09-18b: hero with form, section logos ---------- */

/* hero: message left, booking form right */
.hero-grid2 { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: 2.5rem 4vw; align-items: center;
              padding: clamp(.5rem, 2vw, 1.5rem) 0 clamp(1rem, 3vw, 2rem); }
.hero-copy h1 { max-width: 14ch; }
.hero-copy h1 em { font-style: normal; color: var(--muted); }
.hero-list { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: .75rem; }
.hero-list li { position: relative; padding-left: 1.5rem; color: var(--muted); font-size: 1rem; line-height: 1.5; }
.hero-list li::before { content: ""; position: absolute; left: 0; top: .52em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero-list b { color: var(--ink); font-weight: 500; }

/* the form panel sitting in the hero */
.hero-form { background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--r-card);
             padding: clamp(1.3rem, 2.4vw, 1.9rem); }
.hf-title { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 400; letter-spacing: -.02em; line-height: 1.2; }
.hf-sub { margin: .6rem 0 1.4rem; font-size: .9rem; line-height: 1.5; color: var(--muted); }
form.lead.compact { gap: .85rem 1rem; }
form.lead.compact .btn { justify-self: stretch; text-align: center; justify-content: center; }
form.lead.compact .consent { font-size: .7rem; }
form.lead.compact .consent b { font-size: .82rem; }

/* section logos replace the little blue-dot labels */
.seclogo { margin: 0 0 1.2rem; display: flex; align-items: center; min-height: 26px; }
.seclogo img { height: 26px; width: auto; max-width: 190px; object-fit: contain; object-position: left center; }
.plock.lockup-lg { height: 26px; gap: 9px; }
.plock.lockup-lg .pword { font-size: 1.35rem; }

/* numbered cards in "Seen. Booked. Handled." */
.step-card .n { font-size: .8rem; font-weight: 500; color: var(--accent); margin-bottom: .9rem; }
.step-card h3 { font-size: 1.15rem; font-weight: 400; letter-spacing: -.01em; }

@media (max-width: 900px) {
  .hero-grid2 { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .hero-copy h1 { max-width: 100%; }
}
@media (max-width: 560px) {
  .seclogo img { height: 22px; }
  .plock.lockup-lg .pword { font-size: 1.2rem; }
}

/* the hero form is narrower than the one at the bottom: give email its own row
   so the address placeholder is not clipped */
form.lead.compact .field:nth-of-type(4) { grid-column: 1 / -1; }

/* ---------- Pipeline page (pipeline.html), follows the sales deck ---------- */

.plain-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; max-width: 34rem; }
.plain-list li { position: relative; padding-left: 1.4rem; color: var(--muted); line-height: 1.6; font-size: 1.0625rem; }
.plain-list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.stat-card.wide { max-width: 46rem; }
.stat-card.wide .c { font-size: .95rem; line-height: 1.6; }

/* the "never clocks out" cadence */
.cadence { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-soft); }
.cadence li { display: grid; grid-template-columns: 8rem 7rem minmax(0, 1fr); gap: 1rem 1.5rem; align-items: baseline;
              padding: 1.1rem .2rem; border-bottom: 1px solid var(--line-soft); }
.cadence b { font-weight: 500; font-size: 1.05rem; }
.cadence .when { font-size: .78rem; color: var(--accent); }
.cadence span:last-child { color: var(--muted); font-size: .95rem; line-height: 1.55; }

/* tick lists */
.check { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; max-width: 44rem; }
.check li { position: relative; padding-left: 2rem; color: var(--muted); line-height: 1.6; font-size: 1.0625rem; }
.check li::before { content: ""; position: absolute; left: .25rem; top: .42em; width: .62rem; height: .34rem;
                    border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }

/* the revenue maths */
.math-row { display: flex; flex-wrap: wrap; align-items: stretch; gap: .75rem; }
.mterm { flex: 1 1 11rem; background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-card); padding: 1.2rem 1.3rem; }
.mterm b { display: block; font-weight: 500; font-size: 1.05rem; margin-bottom: .35rem; }
.mterm span { font-size: .85rem; color: var(--muted); }
.mterm.result { border-color: var(--accent); }
.mterm.result b { color: var(--accent); }
.mop { display: grid; place-items: center; font-size: 1.2rem; color: var(--faint); min-width: 1.2rem; }

/* comparison table */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.compare { width: 100%; border-collapse: collapse; min-width: 42rem; font-size: .92rem; }
table.compare th, table.compare td { text-align: left; padding: .95rem 1rem; vertical-align: top; line-height: 1.5;
                                     border-bottom: 1px solid var(--line-soft); }
table.compare thead th { font-weight: 500; font-size: .8rem; color: var(--muted); background: var(--panel); }
table.compare tbody th { font-weight: 400; color: var(--ink); width: 11rem; }
table.compare td { color: var(--muted); }
table.compare .mine { color: var(--ink); background: color-mix(in srgb, var(--accent) 8%, transparent); }
table.compare thead th.mine { color: var(--accent); }

@media (max-width: 780px) {
  .cadence li { grid-template-columns: minmax(0, 1fr) 6rem; row-gap: .35rem; }
  .cadence span:last-child { grid-column: 1 / -1; }
  .cadence .when { text-align: right; }
  .math-row { display: grid; grid-template-columns: minmax(0, 1fr); }
  .mop { min-height: 1.4rem; }
}

/* visible only to screen readers (was pruned with the unused styles; the compare
   table needs it for its empty top-left header cell) */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
           clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
