/* ChairClick™ — site styles v14 "editorial dark"
   Owner-directed reskin modelled on lxlcreative.co.uk: near-black canvas,
   condensed all-caps display type with a script accent word, one vivid
   accent, thick squiggle line-art, bright UI cards floating on the dark.
   Their espresso/orange/cream becomes our ink-navy/blue/porcelain.
   No teal, ever. */

:root {
  --blue: #0057FD;
  --blue-bright: #0057FD;
  --blue-dark: #0046d4;
  --blue-soft: rgba(0, 87, 253, .09);
  --page: #FFFFFF;          /* the canvas — the site is white */
  --page-deep: #F8FAFC;
  --card: #FFFFFF;
  --tint: #F8FAFC;
  --border: #E2E8F0;
  --ink: #000000;           /* display text */
  --ink-2: #0B1220;         /* body text */
  --muted: #475569;
  --growth: #15803D;
  --max: 1200px;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow-sm: 0 1px 2px rgba(2, 6, 23, .05), 0 4px 16px rgba(2, 6, 23, .05);
  --shadow-md: 0 2px 6px rgba(2, 6, 23, .05), 0 16px 40px rgba(2, 6, 23, .09);
  --shadow-lg: 0 4px 10px rgba(2, 6, 23, .05), 0 32px 80px rgba(2, 6, 23, .14);
  --shadow-blue: 0 12px 32px rgba(0, 87, 253, .28);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font-display: "Poppins", -apple-system, "Segoe UI", sans-serif;
  --font-script: "Caveat", cursive;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--page);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--blue-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

::selection { background: var(--blue); color: #fff; }

/* ---------- Grain ---------- */

body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: .55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
main, header, footer { position: relative; z-index: 2; }

/* ---------- Light-UI islands: the mockups stay porcelain ---------- */

.m-card, .tile, .panel, .mock-doc {
  --page: #FFFFFF;
  --tint: #F6F8FC;
  --border: #E2E8F0;
  --ink: #0B1220;
  --ink-2: #101B30;
  --muted: #5B6b83;
  --blue-soft: rgba(0, 87, 253, .09);
  color: var(--ink-2);
}

/* ---------- Header — slim dark bar, LxL style ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  padding: 0;
  transition: background .3s var(--ease);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  height: 84px;
  max-width: 1320px;
  padding: 0 34px;
}
.site-header::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0));
  backdrop-filter: blur(2px);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.site-header.scrolled::before {
  opacity: 1;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { position: relative; }
.logo { display: flex; align-items: center; }
.logo img { height: 40px; width: auto; transition: height .3s var(--ease); }
.site-header.scrolled .logo img { height: 34px; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  color: var(--ink); font-weight: 550; font-size: 15px;
  position: relative;
}
.site-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px; background: var(--blue-bright);
  border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.site-nav a:not(.btn):hover::after, .site-nav a.active:not(.btn)::after { transform: scaleX(1); }
.site-nav a:hover { color: var(--blue-bright); text-decoration: none; }
.site-nav a.active { color: var(--blue-bright); }
.nav-toggle { display: none; }

/* ---------- Buttons — compact pills, LxL style ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 15px;
  font-family: var(--font-body);
  letter-spacing: .01em;
  border: 2px solid var(--blue);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.3) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); box-shadow: 0 18px 44px rgba(0, 87, 253, .55); }
.btn-ink { background: #0B1220; color: #fff; border-color: #0B1220; }
.btn-ink:hover { background: #1e293b; border-color: #1e293b; color: #fff; }
.btn-ghost { background: transparent; color: var(--blue); border-color: rgba(0, 87, 253, .5); }
.btn-ghost:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-white { background: #fff; color: var(--blue); border-color: #fff; }
.btn-white:hover { background: #E9EEFB; border-color: #E9EEFB; color: var(--blue); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn .arrow { font-weight: 800; transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Sections & the type system ---------- */

section { padding: 108px 0; position: relative; }
section.tint { background: var(--tint); }
section.wash {
  background:
    radial-gradient(50% 60% at 12% 6%, rgba(0, 87, 253, .09), transparent 62%),
    radial-gradient(42% 54% at 88% 4%, rgba(0, 87, 253, .06), transparent 60%),
    var(--page);
}

.kicker {
  color: var(--blue-bright); font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; font-size: 12.5px; margin-bottom: 20px;
  font-family: var(--font-body);
  display: flex; align-items: center; gap: 12px;
}
.kicker::before {
  content: ""; width: 26px; height: 2px; background: var(--blue-bright); border-radius: 2px;
  display: inline-block;
}
.center .kicker, .kicker.bare { justify-content: center; }
.center .kicker::before { display: none; }

h1, h2 {
  font-family: var(--font-display); color: var(--ink);
  font-weight: 650;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(42px, 6.4vw, 78px); line-height: 1.04; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.08; margin-bottom: 20px; }
h3 {
  font-family: var(--font-display); color: var(--ink);
  font-size: 19px; font-weight: 650; margin-bottom: 8px; letter-spacing: -0.01em;
}

/* the script accent word — their handwritten flourish, in our blue */
h1 .accent, h2 .accent {
  font-family: var(--font-script);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.18em;
  line-height: .9;
  color: var(--blue-bright);
  background: none; -webkit-background-clip: initial; background-clip: initial;
}

.lede { font-size: clamp(17px, 2vw, 19.5px); color: var(--muted); max-width: 44em; line-height: 1.75; }
.section-head { max-width: 860px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 14.5px; }
.blue { color: var(--blue-bright); }
.growth { color: var(--growth); }

/* ---------- Hero ---------- */

.hero { padding: 120px 0 90px; overflow: visible; }
.hero.center { text-align: center; }
.hero.center .lede { margin-left: auto; margin-right: auto; }
.hero.center .hero-ctas { justify-content: center; }

.hero.bloom {
  background:
    radial-gradient(52% 90% at 0% 0%, rgba(0, 87, 253, .18), rgba(0, 87, 253, .05) 55%, transparent 76%),
    radial-gradient(38% 60% at 100% 10%, rgba(0, 87, 253, .08), transparent 65%),
    var(--page);
}
.hero.wash::before, .hero.wash::after {
  content: ""; position: absolute; z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero.wash::before {
  width: 720px; height: 720px; top: -320px; left: -180px;
  background: radial-gradient(circle at 40% 40%, rgba(0, 87, 253, .15), rgba(0, 87, 253, .05) 55%, transparent 70%);
  animation: drift1 16s ease-in-out infinite alternate;
}
.hero.wash::after {
  width: 620px; height: 620px; top: -220px; right: -220px;
  background: radial-gradient(circle at 60% 40%, rgba(0, 87, 253, .11), rgba(0, 87, 253, .04) 55%, transparent 70%);
  animation: drift2 19s ease-in-out infinite alternate;
}
@keyframes drift1 { from { transform: translate(0, 0) scale(1); } to { transform: translate(70px, 46px) scale(1.08); } }
@keyframes drift2 { from { transform: translate(0, 0) scale(1); } to { transform: translate(-60px, 36px) scale(1.06); } }
.hero .container { position: relative; z-index: 2; }

.trust-line {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 14.5px; margin-bottom: 30px; color: var(--ink);
  letter-spacing: .04em; text-transform: uppercase;
}
.trust-line .dots { color: var(--blue-bright); letter-spacing: 4px; font-size: 11px; }

.proofline {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 550; font-size: 14.5px;
  background: rgba(16, 24, 43, .8);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 10px 22px; margin-bottom: 34px;
  color: var(--ink);
}
.proofline .dot { color: var(--blue-bright); font-size: 11px; letter-spacing: 4px; }

.hero p.sub { margin: 30px 0 42px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 13.5px; color: var(--muted); }

.hero-grid {
  display: grid; grid-template-columns: 1.04fr .96fr;
  gap: 72px; align-items: center; text-align: left;
}
.hero-art { text-align: center; }
.hero-art img { max-width: 300px; margin: 0 auto; filter: drop-shadow(0 28px 44px rgba(0, 87, 253, .35)); }

/* ---------- Under-hero feature row ---------- */

.feat-row {
  display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 44px; align-items: start;
  margin-top: 92px; text-align: left;
}
.feat-lead { display: flex; gap: 18px; align-items: center; }
.feat-lead img { width: 86px; height: auto; flex: none; }
.feat-lead .t {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  line-height: 1.3; color: var(--ink); letter-spacing: -0.01em;
}
.feat-lead .t a { display: inline-block; font-family: var(--font-body); font-size: 14px; font-weight: 600; margin-top: 4px; }
.feat-h { display: grid; grid-template-columns: 48px 1fr; gap: 15px; align-items: start; }
.feat-h .chip { width: 48px; height: 48px; }
.feat-h .chip svg { width: 22px; height: 22px; }
.feat-h h3 { font-size: 16.5px; margin-bottom: 4px; }
.feat-h p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.chip {
  width: 52px; height: 52px; border-radius: 999px; flex: none;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  box-shadow: var(--shadow-blue);
}
.chip svg { width: 24px; height: 24px; }

/* ---------- Platform strip (the logo marquee) ----------
   The track holds the pill set TWICE and travels to -50%, so the seam is
   invisible. Spacing is margin-right on the pill, never `gap` on the track —
   a gap adds one extra step that -50% does not account for, and the loop
   visibly drifts. */

.logostrip {
  padding: 34px 0 26px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--page-deep) 100%);
  position: relative; z-index: 2;
  overflow: hidden;
}
.logostrip .strip-label {
  text-align: center; margin: 0 auto 22px; padding: 0 28px;
  font-family: var(--font-body); font-size: 12.5px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: var(--muted);
}
.logostrip .strip-label strong { color: var(--ink); font-weight: 800; letter-spacing: .16em; }
.logostrip .strip-note {
  max-width: 720px; margin: 22px auto 0; padding: 0 28px;
  text-align: center; font-size: 11.5px; line-height: 1.6; color: #94A3B8;
}

.logo-marquee {
  overflow: hidden;
  /* The track is exactly one pill tall, and overflow clips at the padding box —
     so with no padding the hover lift ate the pill's top border and the shadow
     was clipped on every side. The padding is the headroom; the negative margin
     gives it back so the strip's spacing is unchanged. Keep them equal. */
  padding: 16px 0;
  margin: -16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee .track {
  display: flex; align-items: stretch; width: max-content;
  animation: logoscroll 46s linear infinite;
}
.logo-marquee:hover .track { animation-play-state: paused; }
@keyframes logoscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.logo-pill {
  flex: none; margin-right: 14px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 24px 11px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.logo-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 87, 253, .35);
}
.logo-pill .mark {
  width: 38px; height: 38px; border-radius: 999px; flex: none;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.logo-pill .mark svg { width: 21px; height: 21px; display: block; }
.logo-pill .name {
  font-family: var(--font-display); font-weight: 650;
  font-size: 14.5px; line-height: 1.25; color: var(--ink);
}
.logo-pill .name small {
  display: block; margin-top: 2px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 10px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Product cards ---------- */

.product-card {
  background: linear-gradient(180deg, #FBFCFE 0%, #EFF3FA 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px 28px 34px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(77, 132, 254, .35); }
.product-card .mockslot {
  min-height: 310px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.product-card h3 { font-size: 22px; }
.product-card .oneliner { color: var(--muted); font-size: 15px; margin: 6px 0 22px; }
.product-card .btn { margin: auto auto 0; }

/* ---------- Mockups (light islands) ---------- */

.gmark { display: inline-flex; line-height: 1; flex: none; }
.gmark svg { width: 1em; height: 1em; display: block; }
.stars.gold { color: #FABB05; letter-spacing: 3px; font-size: 15px; }
.up { color: #15803D; font-weight: 700; font-size: 11px; white-space: nowrap; }

.m-card {
  background: #fff; border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 20px; box-shadow: var(--shadow-md);
  padding: 20px; width: 100%; max-width: 300px; text-align: left;
}
.sk { display: block; height: 9px; border-radius: 6px; background: #E6EBF2; }
.sk + .sk { margin-top: 8px; }

.m-gbp .head { display: grid; grid-template-columns: 34px 1fr; gap: 11px; align-items: center; margin-bottom: 12px; }
.m-gbp .head .gmark { font-size: 26px; }
.gbp-panel { border: 1px solid var(--border); border-radius: 14px; padding: 13px; margin-top: 12px; }
.gbp-panel .biz { display: grid; grid-template-columns: 30px 1fr; gap: 9px; align-items: center; margin-bottom: 8px; }
.gbp-panel .biz img { width: 30px; height: 30px; }
.gbp-panel .biz .biz-mark { font-size: 24px; justify-content: center; }
.gbp-actions { display: flex; gap: 9px; margin: 10px 0; }
.gbp-actions span {
  width: 27px; height: 27px; border-radius: 999px; flex: none;
  border: 1.5px solid rgba(0, 87, 253, .5); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.gbp-actions svg { width: 13px; height: 13px; }
.gbp-map {
  height: 64px; border-radius: 10px; position: relative; overflow: hidden;
  background:
    linear-gradient(105deg, transparent 12%, #fff 12.5%, #fff 15%, transparent 15.5%),
    linear-gradient(15deg, transparent 45%, #fff 45.5%, #fff 49%, transparent 49.5%),
    radial-gradient(40% 70% at 85% 80%, #CDE7D2, transparent 70%),
    radial-gradient(30% 60% at 10% 20%, #CDE7D2, transparent 70%),
    #ECEFF3;
}
.gbp-map svg {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -58%);
  width: 22px; height: 22px; color: var(--blue);
  filter: drop-shadow(0 2px 3px rgba(2, 6, 23, .25));
}

.m-search .field {
  display: flex; gap: 8px; align-items: center;
  border: 1.5px solid var(--border); border-radius: 999px;
  padding: 9px 14px; font-size: 11.5px; color: var(--ink-2);
  margin-bottom: 14px; font-weight: 550; white-space: nowrap;
}
.m-search .field .gmark { font-size: 18px; }
.m-search .field .lens { margin-left: auto; color: var(--blue); font-weight: 800; font-size: 14px; }
.m-ad { border: 1px solid var(--border); border-radius: 14px; padding: 13px 14px; position: relative; }
.m-ad + .m-ad { margin-top: 10px; }
.m-ad .tag { display: block; font-size: 10.5px; font-weight: 650; color: var(--ink-2); margin-bottom: 7px; }
.m-ad .ttl { font-size: 15px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.m-ad.you { border: 1.5px solid rgba(0, 87, 253, .5); background: rgba(0, 87, 253, .045); box-shadow: 0 6px 18px rgba(0, 87, 253, .12); }
.m-ad.you .stars.gold { font-size: 12px; margin-top: 8px; display: inline-block; }
.m-ad.ghost > * { opacity: .55; }
.m-ad .callbtn {
  position: absolute; right: 12px; bottom: 12px;
  width: 34px; height: 34px; border-radius: 999px;
  background: rgba(0, 87, 253, .12); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.m-ad .callbtn svg { width: 16px; height: 16px; }

.m-review .head { display: grid; grid-template-columns: 34px 1fr; gap: 11px; align-items: center; margin-bottom: 12px; }
.m-review .head .gmark { font-size: 26px; }
.m-review .stars.gold { margin-bottom: 10px; display: block; }
.m-review .reply {
  border-left: 3px solid var(--blue); background: var(--tint);
  border-radius: 0 12px 12px 0; padding: 12px 13px; margin-top: 12px;
  position: relative;
}
.m-review .reply .pen { position: absolute; right: 12px; top: 12px; color: var(--blue); }
.m-review .reply .pen svg { width: 14px; height: 14px; }
.m-review .reply .sk { background: #DCE4EF; }

.m-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 650;
  color: var(--blue); background: rgba(0, 87, 253, .09);
  border-radius: 999px; padding: 5px 12px; margin-top: 12px;
}
.m-chip::before { content: "✓"; font-size: 10px; font-weight: 800; }

/* Watchdog + report tiles */
.live-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em;
  color: #15803D; background: #E8F5EC;
  border-radius: 999px; padding: 4px 11px; flex: none;
}
.live-chip::before { content: "●"; font-size: 8px; }
.wd-row {
  display: grid; grid-template-columns: 22px 1fr auto; gap: 11px;
  align-items: center; padding: 12px 0; border-bottom: 1px solid var(--tint);
  font-size: 13px; font-weight: 550; color: var(--ink-2);
}
.wd-row:last-of-type { border-bottom: none; }
.wd-row .ic { color: var(--blue); display: flex; }
.wd-row .ic svg { width: 17px; height: 17px; }
.wd-row .state { display: flex; align-items: center; gap: 8px; }
.wd-row .state i { width: 6px; height: 6px; border-radius: 999px; background: #15803D; }
.wd-row .state .ck {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--blue); color: #fff; font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 87, 253, .3);
}

.rep-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.rep-head small { font-size: 11px; color: var(--ink-2); font-weight: 600; }
.rep-head .sel {
  font-size: 10.5px; color: var(--ink-2); border: 1px solid var(--border);
  border-radius: 8px; padding: 4px 9px; white-space: nowrap;
}
.rep-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 12px; align-items: stretch; }
.rep-chart { position: relative; }
.rep-chart svg { width: 100%; height: auto; display: block; }
.rep-chart .xlab { display: flex; justify-content: space-between; margin-top: 6px; }
.rep-stats { display: flex; flex-direction: column; gap: 8px; }
.rep-stat {
  border: 1px solid var(--border); border-radius: 10px; padding: 7px 10px;
  display: flex; flex-direction: column; line-height: 1.3;
}
.rep-stat small { font-size: 9.5px; color: var(--muted); }
.rep-stat .row2 { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 6px; }
.rep-stat .row2 .sk { height: 11px; }

/* ---------- Background line-art ---------- */

.deco {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; overflow: visible;
}
.deco path {
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: drawline 3s var(--ease) forwards;
}
.deco path:nth-child(2) { animation-delay: .25s; }
.deco path:nth-child(3) { animation-delay: .5s; }
.deco path:nth-child(4) { animation-delay: .75s; }
.deco path:nth-child(5) { animation-delay: 1s; }
.deco path:nth-child(6) { animation-delay: 1.25s; }
.deco path:nth-child(7) { animation-delay: 1.5s; }
@keyframes drawline { to { stroke-dashoffset: 0; } }

/* line-art: thick, soft light-blue strokes, LxL-squiggle weight */
.deco path.fat { stroke: #B7CDFF; stroke-width: 14; }
.cta-band .deco path.fat { stroke: rgba(255, 255, 255, .8); stroke-width: 12; }
/* static motifs (transformed groups skip the draw animation — it miscounts through transforms) */
.deco path.nodraw { stroke-dasharray: none; stroke-dashoffset: 0; animation: none; }

.cta-band .inner > *:not(.deco) { position: relative; z-index: 1; }

/* ---------- Split + floating panel ---------- */

.split {
  display: grid; grid-template-columns: .92fr 1.08fr;
  gap: 64px; align-items: center;
}
.panel {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 18% 0%, rgba(0, 87, 253, .06), transparent 55%),
    #fff;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  padding: 46px 42px;
}
.panel .cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.pstep h3 { font-size: 17px; margin: 18px 0 6px; color: #0B1220; }
.pstep p { font-size: 14px; color: #5B6B83; line-height: 1.65; }

/* ---------- Cards & grids ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* ---------- Card carousel ----------
   Native scroll-snap, so touch drag and trackpad swipe come free and the
   JS only has to drive the arrows, the dots and the disabled states. */

.carousel { position: relative; }
.carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;   /* explicit — overflow-x:auto alone computes y to auto */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Same trap as .logo-marquee: the card lifts 6px and grows a shadow on hover,
     and a scroll container clips both. Padding is the headroom, the negative
     margin gives the space back. Keep the two equal. */
  padding: 16px 0 20px;
  margin: -16px 0 -20px;
}
.carousel-viewport::-webkit-scrollbar { display: none; }
.carousel-viewport:focus-visible { outline: 2px solid var(--blue); outline-offset: 6px; border-radius: 28px; }
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  /* 2 full cards + a peek of the third — the peek is what tells you the row
     scrolls. Tablet and below only; desktop is the plain grid further down. */
  grid-auto-columns: calc((100% - 52px) / 2.3);
  gap: 26px;
  align-items: stretch;
}
.carousel-track > * { scroll-snap-align: start; }

.carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 34px;
}
/* All the cards fit — a control that cannot do anything should not be there */
.carousel[data-static] .carousel-controls { display: none; }

.carousel-btn {
  width: 46px; height: 46px; border-radius: 999px; flex: none;
  border: 1px solid var(--border); background: var(--card); color: var(--ink);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              border-color .3s, color .3s, opacity .3s;
}
.carousel-btn:hover:not(:disabled) {
  transform: translateY(-2px); color: var(--blue-bright);
  border-color: rgba(0, 87, 253, .35); box-shadow: var(--shadow-md);
}
.carousel-btn:disabled { opacity: .3; cursor: default; box-shadow: none; }
.carousel-btn svg { width: 18px; height: 18px; }

.carousel-dots { display: flex; align-items: center; gap: 9px; }
.carousel-dot {
  width: 9px; height: 9px; padding: 0; border: none; border-radius: 999px;
  background: #CBD5E1; cursor: pointer;
  transition: background .3s, width .35s var(--ease);
}
.carousel-dot:hover { background: #94A3B8; }
.carousel-dot[aria-current="true"] { background: var(--blue); width: 28px; }

/* ⛔ Desktop is NOT a carousel — owner call. Three cards across, nothing
   scrolls, no arrows, no dots. overflow goes back to visible so the hover
   lift needs no padding trick here. The carousel starts at tablet. */
@media (min-width: 1061px) {
  .carousel-viewport {
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
    margin: 0;
  }
  .carousel-track {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-columns: auto;
    /* four shared rows: mockup, heading, one-liner, button */
    grid-template-rows: auto auto auto auto;
    /* gap applies to BOTH axes — a row gap here would open 26px holes inside
       every card. The cards space themselves with their own margins. */
    column-gap: 26px;
    row-gap: 0;
  }
  /* The three mockups have different natural heights (336 / 385 / 310), so a
     per-card layout put the headings at three different heights. subgrid makes
     the four row heights shared across the cards instead of computed per card,
     which aligns the one-liners too and needs no magic number to re-measure
     when a mockup changes. Without subgrid support this degrades to the old
     per-card grid — misaligned, but not broken. */
  .carousel-track > .product-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
  }
  .carousel-controls { display: none; }
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: rgba(77, 132, 254, .3); }
.card .icon {
  width: 52px; height: 52px; border-radius: 999px;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; font-weight: 800; margin-bottom: 20px;
  box-shadow: var(--shadow-blue);
}
.card p { color: var(--muted); font-size: 15px; }
.card .learn { display: inline-block; margin-top: 16px; font-weight: 650; font-size: 15px; }

/* ---------- Lists ---------- */

ul.checks, ul.crosses { list-style: none; }
ul.checks li, ul.crosses li {
  padding-left: 36px; position: relative; margin-bottom: 14px; color: var(--ink-2);
}
ul.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 2px;
  width: 23px; height: 23px; border-radius: 999px;
  background: var(--blue-soft); color: var(--blue-bright);
  font-size: 12.5px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
ul.crosses li::before {
  content: "✕"; position: absolute; left: 0; top: 2px;
  width: 23px; height: 23px; border-radius: 999px;
  background: rgba(148, 163, 184, .14); color: var(--muted);
  font-size: 11.5px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
ul.checks li strong { font-weight: 650; color: var(--ink); }
ul.crosses li strong { color: var(--ink); }

/* ---------- Steps ---------- */

.steps { counter-reset: step; }
.steps .card { position: relative; padding-top: 40px; }
.steps .card::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -25px; left: 30px;
  width: 50px; height: 50px; border-radius: 999px;
  background: var(--blue); color: #fff; font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--page);
  box-shadow: var(--shadow-blue);
}

/* ---------- Pricing ---------- */

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.tier {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 38px 34px; background: var(--card);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier.featured {
  border: 2px solid var(--blue); position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px) scale(1.01);
  background: linear-gradient(180deg, rgba(0, 87, 253, .04), transparent 35%), var(--card);
}
.tier.featured:hover { transform: translateY(-12px) scale(1.01); }
.tier.featured .flag {
  position: absolute; top: -17px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 12px; font-weight: 700;
  padding: 7px 20px; border-radius: 999px; white-space: nowrap;
  letter-spacing: .07em; text-transform: uppercase;
  box-shadow: var(--shadow-blue);
}
.tier h3 { font-size: 24px; }
.tier .who { color: var(--muted); font-size: 15px; min-height: 44px; margin-top: 2px; }
.tier .price { margin: 22px 0 8px; }
.tier .price .num {
  font-size: 50px; font-weight: 650; letter-spacing: -0.035em;
  font-family: var(--font-display); color: var(--ink);
}
.tier .price .per { color: var(--muted); font-weight: 550; }
.tier ul { margin: 18px 0 30px; flex: 1; }
.tier .btn { width: 100%; }
.tier .footnote { font-size: 13.5px; color: var(--muted); margin-top: 16px; }

/* ---------- Tables ---------- */

.table-wrap {
  overflow-x: auto; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  background: var(--card);
}
table { width: 100%; border-collapse: collapse; background: transparent; font-size: 15px; color: var(--ink-2); }
th, td { text-align: left; padding: 16px 22px; border-bottom: 1px solid var(--border); vertical-align: top; }
th {
  background: var(--tint); font-size: 12.5px; letter-spacing: .09em;
  text-transform: uppercase; font-weight: 700; color: var(--ink);
}
tr:last-child td { border-bottom: none; }
tbody tr { transition: background .2s; }
tbody tr:hover { background: rgba(77, 132, 254, .05); }
td strong { color: var(--ink); }
td.yes { color: var(--blue-bright); font-weight: 800; }
td.no { color: var(--muted); }

/* ---------- Callouts ---------- */

.callout {
  border-left: 4px solid var(--blue);
  background: var(--tint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 26px 30px; margin: 30px 0;
  color: var(--ink-2);
}
.callout.plain { border-left-color: var(--border); }

/* ---------- FAQ ---------- */

details.faq {
  border: 1px solid var(--border); border-radius: 20px;
  padding: 0 28px; margin-bottom: 14px; background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease), border-color .3s;
}
details.faq:hover { border-color: rgba(77, 132, 254, .3); }
details.faq[open] { box-shadow: var(--shadow-md); border-color: rgba(77, 132, 254, .5); }
details.faq summary {
  cursor: pointer; font-weight: 650; font-size: 16.5px;
  color: var(--ink);
  padding: 23px 0; list-style: none; position: relative; padding-right: 48px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; position: absolute; right: 2px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--blue-soft); color: var(--blue-bright);
  font-size: 20px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), background .3s, color .3s;
}
details.faq[open] summary::after {
  content: "+"; transform: translateY(-50%) rotate(45deg);
  background: var(--blue); color: #fff;
}
details.faq .answer { padding: 0 0 24px; color: var(--muted); }
details.faq .answer p + p { margin-top: 12px; }

/* ---------- Forms ---------- */

.form-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 44px;
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 14px; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; padding: 14px 18px; border: 1px solid var(--border);
  border-radius: 14px; background: var(--tint); color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:hover, .field textarea:hover { border-color: rgba(148, 163, 184, .35); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 87, 253, .12);
}
.form-note { font-size: 14px; color: var(--muted); margin-top: 18px; }

/* ---------- CTA band ---------- */

.cta-band { padding: 60px 0 120px; background: var(--page); }
.cta-band .inner {
  position: relative; overflow: hidden;
  background:
    radial-gradient(70% 120% at 12% 0%, rgba(255, 255, 255, .16), transparent 55%),
    radial-gradient(60% 100% at 88% 100%, rgba(0, 20, 70, .4), transparent 60%),
    linear-gradient(135deg, var(--blue) 0%, #0041c2 100%);
  background-size: 170% 170%;
  animation: ctapan 16s ease-in-out infinite alternate;
  color: #fff;
  border-radius: 32px;
  padding: 92px 52px;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 87, 253, .35);
}
@keyframes ctapan {
  from { background-position: 0% 30%; }
  to { background-position: 100% 70%; }
}
.cta-band .inner::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-band h2 { color: #fff; font-size: clamp(34px, 4.6vw, 60px); }
.cta-band p { color: rgba(255, 255, 255, .85); margin: 18px auto 36px; max-width: 620px; }
.cta-band .btn-primary { background: #fff; color: var(--blue); border-color: #fff; box-shadow: 0 16px 36px rgba(0, 0, 0, .25); }
.cta-band .btn-primary:hover { background: #E9EEFB; border-color: #E9EEFB; }

/* ---------- Why split: blue panel + collage ---------- */

.why-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 26px; align-items: stretch; }
.panel-blue {
  background:
    radial-gradient(70% 120% at 12% 0%, rgba(255, 255, 255, .15), transparent 55%),
    radial-gradient(60% 100% at 88% 100%, rgba(0, 20, 70, .4), transparent 60%),
    linear-gradient(135deg, var(--blue) 0%, #0041c2 100%);
  background-size: 170% 170%;
  animation: ctapan 18s ease-in-out infinite alternate;
  border-radius: 32px;
  padding: 60px 50px;
  color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: 0 30px 70px rgba(0, 87, 253, .3);
}
.panel-blue h2 { color: #fff; }
.panel-blue p { color: rgba(255, 255, 255, .88); margin-bottom: 16px; }
.panel-blue p strong { color: #fff; }
.panel-blue .btn { align-self: flex-start; margin-top: 14px; }

.collage { display: flex; flex-direction: column; gap: 22px; }
.collage .tile { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.tile {
  background: #fff; border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 24px; box-shadow: var(--shadow-md);
  padding: 24px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tile .t-head {
  font-weight: 700; font-size: 15.5px;
  color: #0B1220; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.tile .t-head .doc-tag {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); background: rgba(0, 87, 253, .09);
  padding: 4px 10px; border-radius: 999px; flex: none;
}

/* ---------- Floating action pill ---------- */

.fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--blue);
  color: #fff;
  border-radius: 999px; padding: 15px 26px;
  font-weight: 650; font-size: 14.5px;
  box-shadow: 0 20px 50px rgba(0, 87, 253, .5);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.fab:hover { transform: translateY(-3px); color: #fff; text-decoration: none; background: var(--blue-dark); }
.fab .pulse {
  width: 9px; height: 9px; border-radius: 999px; background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .5);
  animation: fabpulse 2.2s infinite;
}
@keyframes fabpulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .45); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border); padding: 72px 0 44px;
  font-size: 15px; color: var(--muted);
  background: var(--page-deep);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; margin-bottom: 44px; }
.site-footer h4 {
  color: var(--ink); font-size: 12.5px; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 16px; font-weight: 700;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: var(--muted); transition: color .2s; }
.site-footer a:hover { color: var(--blue-bright); text-decoration: none; }
.footer-logo img { height: 34px; width: auto; margin-bottom: 16px; }
/* Fine print, set as fine print — 13.5px read as body copy and pushed the
   trademark notice onto three lines. */
.footer-legal {
  border-top: 1px solid var(--border); padding-top: 26px;
  font-size: 12.5px; line-height: 1.65; color: var(--muted);
}
.footer-legal p + p { margin-top: 6px; }
.footer-legal .tm { max-width: 96ch; }

/* ---------- Scroll reveals ---------- */

.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .hero.wash::before, .hero.wash::after, .logo-marquee .track,
  .cta-band .inner, .panel-blue { animation: none !important; }
  .deco path { animation: none; stroke-dashoffset: 0; }
  .btn::after { display: none; }
  /* the track is frozen at x=0, so drop the edge fade and let it be swiped */
  .logo-marquee { -webkit-mask-image: none; mask-image: none; overflow-x: auto; }
  .carousel-viewport { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1060px) {
  .feat-row { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Below tablet, one full card plus the peek — two of these cards side by side
   at phone width would leave neither of them readable. */
@media (max-width: 768px) {
  .carousel-track { grid-auto-columns: calc((100% - 26px) / 1.15); }
  .carousel-controls { gap: 14px; margin-top: 28px; }
  .carousel-btn { width: 42px; height: 42px; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-art { order: -1; }
  .hero-art img { max-width: 170px; }
  .grid-3, .tiers { grid-template-columns: 1fr; }
  /* .grid-3 collapses to one column here; the carousel has its own breakpoints */
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tier .who { min-height: 0; }
  .tier.featured { transform: none; }
  .tier.featured:hover { transform: translateY(-4px); }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .panel .cols { grid-template-columns: 1fr; gap: 30px; }
  .why-grid { grid-template-columns: 1fr; }
  .product-card .mockslot { min-height: 0; padding: 10px 0; }

  .site-header .container { height: 72px; padding: 0 22px; }
  .site-header::before { opacity: 1; background: rgba(255, 255, 255, .92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
  .nav-toggle {
    display: block; background: var(--card); border: 1px solid var(--border);
    border-radius: 999px; padding: 9px 15px; font-size: 17px; cursor: pointer;
    color: var(--ink);
  }
  .site-nav {
    display: none;
    position: absolute; top: 80px; left: 12px; right: 12px;
    background: rgba(255, 255, 255, .97); backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 24px; box-shadow: var(--shadow-lg);
    flex-direction: column; padding: 26px 30px; gap: 20px; align-items: flex-start;
  }
  .site-nav.open { display: flex; }
}

@media (max-width: 640px) {
  section { padding: 72px 0; }
  .hero { padding: 84px 0 64px; }
  .feat-row { grid-template-columns: 1fr; margin-top: 56px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band .inner { padding: 60px 28px; border-radius: 26px; }
  .fab { right: 14px; bottom: 14px; padding: 13px 20px; font-size: 13.5px; }
  .panel-blue { padding: 44px 30px; }

  .logostrip { padding: 26px 0 20px; }
  .logostrip .strip-label { font-size: 11px; letter-spacing: .1em; margin-bottom: 18px; }
  .logostrip .strip-note { font-size: 10.5px; }
  .logo-pill { margin-right: 10px; padding: 9px 18px 9px 10px; gap: 10px; }
  .logo-pill .mark { width: 32px; height: 32px; }
  .logo-pill .mark svg { width: 18px; height: 18px; }
  .logo-pill .name { font-size: 13px; }
  .logo-pill .name small { font-size: 9px; }
}
