/* ============================================================
   JACQUARD — Homepage (dark "Couture" marketing surface)
   Built on the Jacquard design tokens. Rich-black canvas, maroon
   chrome, cream Relais headlines, the signature generated-text
   pills, brand-yellow as the single CTA pop. Profound-style
   structure: sticky nav, stated hero, logo cloud, value grid,
   alternating deep-dives, stats band, quote, channels, CTA.
   ============================================================ */

:root {
  --page-bg:    #540037;   /* maroon-700 — dark, still warm */
  --page-panel: #61003e;   /* cards lift a half-step ABOVE the page */
  --page-panel-2: #6d0045;
  --maroon-deep: #240016;  /* deepest — bezels, contrast wells */
  --maroon-700: #540037;
  --maroon-600: #670041;
  --maroon-500: #95336f;
  --cream:      #f6efe0;
  --cream-2:    #eed3e2;   /* lifted for the brighter ground */
  --cream-3:    #d9aec7;
  --cream-4:    #c08bab;
  --hair:       rgba(246,239,224,0.16);
  --hair-2:     rgba(246,239,224,0.24);
  --pink:   #ff7ae9;
  --coral:  #ff6051;
  --coral-bright: #ff7d70;  /* coral as small text on --page-panel (4.5:1+) */
  --yellow: #ffe661;
  --ok:     #2eb886;

  --maxw: 1200px;
  --ease: cubic-bezier(0.34, 1.0, 0.4, 1);

  /* section rhythm: one source of gap per boundary — a section
     supplies its own top padding; sections that must sit flush
     against the one before (see the padding-bottom:0 overrides
     below) don't add a second gap on top of it. */
  --sec-gap: 76px;

  /* one display scale for every section heading; hero and the
     closing CTA are the only deliberate exceptions */
  --h-section: clamp(28px, 3.1vw, 40px);
  --t-intro:   16.5px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--cream);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

::selection { background: var(--pink); color: #15020c; }

/* ---- Reusable type helpers (page-scoped) -------------------- */
.eyebrow {
  font-family: var(--f-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cream-3);
  margin: 0;
}
.display {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--cream);
  margin: 0;
  text-wrap: balance;
}
.serif { font-family: var(--f-display); font-weight: 500; }
.brandfont { font-family: var(--f-sans); }
.stop { color: var(--pink); }
.muted { color: var(--cream-3); }
/* Inline links with no class of their own (page copy, imported pages):
   the UA default blue fails contrast on the maroon ground. */
main a:not([class]) { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }
main a:not([class]):hover { color: var(--cream); }
.lead {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--cream-2);
  margin: 0;
}

/* generated-text pills (the signature motif), tuned for dark bg */
.gp {
  display: inline;
  padding: 0.04em 0.36em;
  margin: 0 0.02em;
  border-radius: 999px;
  background: var(--pink);
  color: #15020c;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-style: normal;
  font-weight: 500;
}
.gp.coral  { background: var(--coral); }
.gp.yellow { background: var(--yellow); }
.gp.ghost {
  background: transparent;
  border: 1px dashed var(--pink);
  color: var(--pink);
}

/* ---- Layout shell ------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
section { position: relative; }

/* ---- Buttons ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .16s var(--ease), filter .16s var(--ease), background .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease);
}
.btn-pop {
  background-color: var(--yellow);
  /* fill-up hover: cream rises from the bottom of the pill */
  background-image: linear-gradient(var(--cream), var(--cream));
  background-repeat: no-repeat;
  background-size: 100% 0%;
  background-position: bottom;
  color: #15020c;
  box-shadow: 0 10px 30px -10px rgba(255,230,97,0.5);
  transition: transform .16s var(--ease), background-size .32s var(--ease), box-shadow .32s var(--ease);
}
.btn-pop:hover {
  /* re-assert the full background stack: the design system's
     `.btn:hover { background: var(--bg-elev-3) }` shorthand
     otherwise wipes the yellow + cream fill layer on hover. */
  background-color: var(--yellow);
  background-image: linear-gradient(var(--cream), var(--cream));
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 100%;
  transform: translateY(-1px);
  box-shadow: 0 12px 34px -10px rgba(246,239,224,0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--hair-2);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(246,239,224,0.04); }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ---- Top nav ------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(84,0,55,0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hair);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { color: var(--cream); display: flex; align-items: center; height: 22px; }
.logo {
  display: inline-block;
  color: currentColor;
}
.logo svg, .nav-logo svg, .foot-logo svg { display: block; width: 100%; height: 100%; fill: currentColor; }
.nav-logo .logo { width: 137px; height: 19px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 12px;
}
.nav-link {
  font-family: var(--f-sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--cream-2);
  text-decoration: none;
  white-space: nowrap;
  transition: color .16s var(--ease);
}
.nav-link:hover { color: var(--cream); }
.nav-spacer { flex: 1; }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ---- Mobile nav burger + panel -------------------------------- */
.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex: none;
}
.nav-burger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-burger[aria-expanded="true"] .nav-burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] .nav-burger-bar:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] .nav-burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Open state (set by js/nav-mobile.js): the fixed nav stretches to the
   full viewport and the panel fills everything below the header row,
   so no hard-coded header height is needed. Page scroll is locked via
   .u-scroll-lock on <html> (css/components.css). */
.nav.menu-open {
  bottom: 0;
  background: var(--page-bg);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.nav.menu-open .nav-inner { width: 100%; flex: none; }
.nav-mobile {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--page-bg);
  border-top: 1px solid var(--hair);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile-link {
  font-family: var(--f-sans);
  font-size: 19px;
  font-weight: 500;
  color: var(--cream-2);
  text-decoration: none;
  padding: 17px 32px;
  border-bottom: 1px solid var(--hair);
}
.nav-mobile-link:hover, .nav-mobile-link:focus-visible { color: var(--cream); }
.nav-mobile-cta {
  margin-top: auto;
  display: flex;
  gap: 12px;
  padding: 20px 32px calc(24px + env(safe-area-inset-bottom));
}
.nav-mobile-cta .btn { flex: 1; text-align: center; }
@media (max-width: 640px) {
  /* small screens: header CTAs move into the overlay panel */
  .nav-cta { display: none; }
}

/* ---- Hero shared ------------------------------------------- */
.hero {
  position: relative;
  padding-top: 132px;
  overflow: hidden;
}
.hero[hidden] { display: none; }

/* radial maroon wash */
.wash {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  padding: 6px 8px 6px 14px;
  border: 1px solid var(--hair-2);
  border-radius: 999px;
  background: rgba(246,239,224,0.03);
  font-family: var(--f-sans);
  font-size: 13px;
  color: var(--cream-2);
}
.hero-pill .chip, .eyebrow .chip {
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  background: var(--maroon-500);
  color: var(--cream);
  padding: 3px 8px;
  border-radius: 999px;
}

/* ===== HERO A — centred editorial statement ===== */
/* flat brand surfaces — no decorative gradients */
.wash { display: none !important; }
.heroA { text-align: center; padding-bottom: 0; }
.heroA .wash-1 { width: 900px; height: 620px; top: -180px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(122,0,75,0.55), transparent 70%); }
.heroA .inner { position: relative; z-index: 2; max-width: 980px; margin: 0 auto; }
.heroA h1 { font-size: clamp(48px, 7vw, 92px); margin: 26px 0 0; }
.heroA .sub { max-width: 640px; margin: 26px auto 0; font-size: 19px; color: var(--cream-2); line-height: 1.6; }
.heroA .cta-row { display: flex; gap: 14px; justify-content: center; margin: 34px 0 0; flex-wrap: wrap; }
.heroA .undercta { margin-top: 18px; font-family: var(--f-label); font-size: 11px; letter-spacing: 0.08em; color: var(--cream-3); text-transform: uppercase; }
.heroA .stage { margin-top: 64px; }

/* ===== HERO B — split asymmetric ===== */
/* hero right column — the game capsule with the G2 awards beneath */
/* bottom-anchored so the capsule sits level with the CTA row and
   the badges hang beneath it. Anchoring to the column's end keeps
   that alignment when the rotating headline changes height — the
   old top offset (a tuned 476px) drifted whenever it did. */
.hero-side { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; min-width: 0; align-self: end; }
.hero-side .game.is-mini { margin-top: 0; }
.g2wall { display: flex; align-items: flex-end; gap: 18px; flex-wrap: wrap; }
.g2b { display: block; line-height: 0; transition: transform .18s var(--ease); }
.g2b img { height: 96px; width: auto; display: block; }
.g2b:hover { transform: translateY(-2px); }
@media (max-width: 980px) {
  .hero-side { align-items: center; gap: 22px; }
  .g2wall { justify-content: center; gap: 14px; }
  .g2b img { height: 84px; }
}
@media (max-width: 420px) {
  .g2wall { gap: 10px; }
  .g2b img { height: 72px; }
}

.heroB .grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-bottom: 96px;
}
.heroB .wash-1 { width: 760px; height: 560px; top: -60px; right: -160px;
  background: radial-gradient(closest-side, rgba(122,0,75,0.5), transparent 70%); }
.heroB h1 { font-size: clamp(44px, 5.4vw, 76px); margin: 24px 0 0; }
/* rotating headline */
#heroHeadline { min-height: 2.95em; display: grid; align-items: end; }
#heroHeadline .hl-line { grid-area: 1 / 1; display: inline-block; opacity: 1; transform: none; transition: opacity .48s var(--ease), transform .48s var(--ease); }
#heroHeadline .hl-line.hl-fade-out { opacity: 0; transform: translateY(-12px); }
#heroHeadline .hl-line.hl-pending { opacity: 0; transform: translateY(14px); transition: none; }
@media (prefers-reduced-motion: reduce) { #heroHeadline .hl-line { transition: none; } }
.heroB .sub { margin: 26px 0 0; font-size: 18px; color: var(--cream-2); max-width: 520px; }
.heroB .sub-2 { margin-top: 12px; font-size: 14.5px; color: var(--cream-3); }
.heroB .cta-row { display: flex; gap: 14px; margin: 32px 0 0; flex-wrap: wrap; }
.heroB .metrics { display: flex; gap: 36px; margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--hair); }
.heroB .metric .n { font-family: var(--f-display); font-size: 34px; letter-spacing: -0.03em; color: var(--cream); display:block; line-height: 1; }
.heroB .metric .l { font-family:var(--f-label); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--cream-3); margin-top: 8px; display:block; white-space: nowrap; }

/* ---- hero conversion hierarchy: analyser first, CTAs demoted ---- */
/* the hero teaser is the primary action here — scale it up ~6% */
.heroB .copy .hero-try { margin-top: 22px; }
.heroB .copy .hero-try input { font-size: 14px; padding: 15px 9px 15px 22px; }
.heroB .copy .hero-try button { font-size: 14px; padding: 0 20px; gap: 8px; }
.heroB .copy .hero-try button svg { width: 14px; height: 14px; }
.heroB .copy .hero-try-fine { margin-top: 11px; }
/* the two hero CTAs are secondary now: ghost, smaller */
.heroB .copy .cta-row { margin: 22px 0 0; }
.heroB .copy .cta-row .btn { font-size: 14px; padding: 11px 20px; }

/* ===== HERO C — immersive live demo ===== */
.heroC { text-align: center; }
.heroC .wash-1 { width: 1100px; height: 700px; top: -220px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(122,0,75,0.6), transparent 72%); }
.heroC .wash-2 { width: 520px; height: 380px; bottom: -120px; left: 6%;
  background: radial-gradient(closest-side, rgba(255,122,233,0.16), transparent 70%); }
.heroC .inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; }
.heroC h1 { font-size: clamp(46px, 6.6vw, 88px); margin: 26px 0 0; }
.heroC .ticker-line {
  margin: 30px auto 0;
  max-width: 720px;
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.7;
  color: var(--cream-2);
  min-height: 2.4em;
}
.heroC .cta-row { display: flex; gap: 14px; justify-content: center; margin: 32px 0 0; flex-wrap: wrap; }
.heroC .stage { margin-top: 56px; }

/* caret for the typing line */
.caret { display: inline-block; width: 2px; height: 1.05em; background: var(--pink); vertical-align: -0.16em; margin-left: 2px; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* variant marquee (hero C bg) */
.marquee {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.5;
}
.marquee-row { display: flex; gap: 14px; white-space: nowrap; width: max-content; }
.marquee-row + .marquee-row { margin-top: 14px; }
.marquee-chip {
  font-family: var(--f-data); font-size: 12px;
  padding: 6px 12px; border: 1px solid var(--hair); border-radius: 999px;
  color: var(--cream-3); background: rgba(246,239,224,0.02);
}
.mq-a { animation: mq 46s linear infinite; }
.mq-b { animation: mq 60s linear infinite reverse; }
@keyframes mq { to { transform: translateX(-50%); } }

/* ============================================================
   PRODUCT MINI-SCREENS — dark, on-brand, interactive mocks.
   A .win frame wraps a .dpm interior. Follows the design guide's
   dark mode: rich-black surfaces, hairline rules, square data,
   round actions, mono eyebrows, Relais headers, gen-pills.
   ============================================================ */
.win {
  border-radius: 14px;
  overflow: hidden;
  background: var(--page-panel);
  border: 1px solid var(--hair-2);
  box-shadow:
    0 40px 120px -30px rgba(122,0,75,0.5),
    0 30px 80px -42px rgba(0,0,0,0.85);
}
.win-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--maroon-deep);
  border-bottom: 1px solid var(--hair);
}
.win-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(246,239,224,0.18); }
.win-dot:nth-child(2){ background: rgba(246,239,224,0.13); }
.win-dot:nth-child(3){ background: rgba(246,239,224,0.09); }
.win-url {
  margin-left: 12px; font-family:var(--f-data); font-size: 11px;
  color: var(--cream-3); letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 7px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* ---- hero live experience screen ---- */
.exp-head { display: flex; align-items: center; justify-content: space-between; }
.exp-tag { font-family:var(--f-label); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-3); display: flex; align-items: center; gap: 7px; }
.exp-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 0; margin-top: 18px; border: 1px solid var(--hair); }
.exp-mail { border-right: 1px solid var(--hair); }
.exp-line { padding: 13px 16px; border-bottom: 1px solid var(--hair); transition: background .3s var(--ease); }
.exp-line:last-child { border-bottom: 0; }
.exp-line.lit { background: rgba(255,122,233,0.08); }
.exp-k { font-family:var(--f-label); font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-3); }
.exp-v { font-size: 13.5px; color: var(--cream); margin-top: 5px; line-height: 1.4; }
.exp-v.cta { display: inline-block; background: var(--yellow); color: #15020c; font-weight: 600; padding: 6px 13px; border-radius: 999px; font-size: 12.5px; font-family:var(--f-sans); }
.exp-side { padding: 14px 16px; display: flex; flex-direction: column; gap: 0; }
.exp-side-h { font-family:var(--f-label); font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-3); margin-bottom: 12px; }
.exp-frag { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--hair); font-size: 11.5px; color: var(--cream-2); transition: color .3s var(--ease); }
.exp-frag:last-child { border-bottom: 0; }
.exp-frag.lit { color: var(--cream); }
.exp-frag .ef-s { font-family:var(--f-data); font-size: 10.5px; color: var(--ok); }
.exp-frag .ef-d { width: 6px; height: 6px; border-radius: 50%; background: var(--cream-4); transition: background .3s var(--ease); margin-right: 8px; flex-shrink: 0; }
.exp-frag.lit .ef-d { background: var(--pink); }
.exp-name { display: flex; align-items: center; gap: 0; }



/* ---- generic dark surface card ----------------------------- */
.card-d {
  background: var(--page-panel);
  border: 1px solid var(--hair);
  border-radius: 0;
  padding: 28px;
  transition: border-color .2s var(--ease), transform .2s var(--ease), background .2s var(--ease);
}

/* ---- Logo grid (big, bordered — jacquard.com style) -------- */
.cloud { padding: 48px 0 0; }
.cloud .cap { text-align: center; color: var(--cream-3); }
.logogrid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px 40px;
  background: transparent;
  border: 0;
}
.logogrid .lg {
  background: transparent;
  border: 0;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.01em;
  color: var(--cream-2);
  opacity: 0.88;
  position: relative;
  transition: opacity .25s var(--ease), color .25s var(--ease);
}
.logogrid .lg:hover { opacity: 1; color: var(--cream); }
.logogrid .lg em { font-style: italic; font-weight: 500; }
.logogrid .lg img {
  max-height: 52px;
  max-width: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
/* round badge marks (Astros, Confused, CAA, Currys) read heavier
   than the wordmarks at the same box height — cap them a touch
   smaller so the optical weight across the wall matches. */
.logogrid .lg.badge img { max-height: 44px; }
/* closing text tile — evens the grid out where the caption used to be */
.logogrid .lg.lg-more { color: var(--cream-3); font-weight: 500; font-style: italic; }

/* ---- Integrations wall (compact, above the final CTA) -------- */
.intgrid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px 30px; margin-top: 26px; }
.intgrid .ig { min-height: 84px; display: flex; align-items: center; justify-content: center; opacity: 0.72; transition: opacity .25s var(--ease); }
.intgrid .ig:hover { opacity: 1; }
.intgrid .ig img { max-height: 44px; max-width: 92%; width: auto; height: auto; object-fit: contain; }
@media (max-width: 980px) { .intgrid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) {
  .intgrid { grid-template-columns: repeat(3, 1fr); gap: 2px 18px; }
  .intgrid .ig { min-height: 54px; }
  .intgrid .ig img { max-height: 34px; }
}

/* ---- Section headers --------------------------------------- */
.sec { padding: var(--sec-gap) 0; }
.sec-head { max-width: 760px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { font-size: var(--h-section); margin: 16px 0 0; }
.sec-head p { font-size: var(--t-intro); color: var(--cream-2); margin: 18px 0 0; line-height: 1.6; }
/* scroll-typed paragraph — set large; words light as they are read.
   Scoped to beat `.sec-head p`, which sets the normal intro size.
   At this size the 3:1 large-text contrast floor applies, so unread
   words can rest at 0.46 (measures 3.5:1 on the maroon ground). */
.sec-head p.scrolltype, .scrolltype {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(25px, 3.4vw, 46px);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-wrap: pretty;
}
/* generous space either side so the statement stands alone and has
   room to travel high in the viewport before the rings follow */
.sec-head.compact p.scrolltype { max-width: none; margin: 0 0 128px; }
#neural .sec-head, #neural .sec-head.compact { max-width: none; }
@media (max-width: 760px) { .scrolltype { line-height: 1.32; } }
.st-w { transition: opacity .18s linear; }
.st-on .st-w { opacity: 0.46; }
@media (prefers-reduced-motion: reduce) {
  .st-w { transition: none; opacity: 1 !important; }
}

.sec-head p a { color: var(--pink); text-decoration: underline; text-underline-offset: 2px; }
.sec-head p a:hover { color: var(--cream); }

/* ---- Section headers: compact variant -----------------------
   Only hero, #platform and the final CTA keep the big centered
   two-tone stack; every other .sec-head uses this instead. ---- */
.sec-head.compact { max-width: 600px; margin: 0; text-align: left; }
.sec-head.compact h2 { font-size: var(--h-section); margin: 12px 0 0; letter-spacing: -0.025em; }
.sec-head.compact p { margin: 14px 0 0; max-width: 560px; }

/* ---- Value props grid ------------------------------------- */
.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.vcard { background: var(--page-panel); border: 1px solid var(--hair); padding: 22px 24px; position: relative; overflow: hidden; transition: border-color .25s var(--ease), transform .25s var(--ease); }
.vcard::before { content:""; position:absolute; top:0; left:0; right:0; height: 3px; background: var(--maroon-500); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.vcard:hover { border-color: var(--hair-2); transform: translateY(-4px); }
.vcard:hover::before { transform: scaleX(1); }
/* icon and heading share one row — no more stacked dead space */
.vcard-head { display: flex; align-items: center; gap: 12px; }
.vcard .vic { width: 36px; height: 36px; flex: none; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(122,0,75,0.28); color: var(--pink); margin: 0; }
.vcard .vic svg { width: 18px; height: 18px; }
.vcard h3 { font-family:var(--f-sans); font-size: 18px; font-weight: 600; margin: 0; color: var(--cream); letter-spacing: -0.01em; }
.vcard p { font-size: 14.5px; color: var(--cream-3); margin: 12px 0 0; line-height: 1.6; }

/* accent variety — each card/icon carries a different brand accent */
.vcard.a-pink::before   { background: var(--pink); }
.vcard.a-pink .vic      { background: rgba(255,122,233,0.16); color: var(--pink); }
.vcard.a-coral::before  { background: var(--coral); }
.vcard.a-coral .vic     { background: rgba(255,96,81,0.16); color: var(--coral); }
.vcard.a-green::before  { background: var(--ok); }
.vcard.a-green .vic     { background: rgba(46,184,134,0.16); color: var(--ok); }

/* ============================================================
   INTERACTIVE LOOP — the platform, clickable + auto-advancing.
   Four stages (Generate · Predict · Serve · Learn); each lights
   its own brand accent (--acc) and swaps copy + a live visual.
   ============================================================ */
.loop {
  margin-top: 52px;
  border: 1px solid var(--hair);
  background: var(--page-panel);
  --acc: var(--pink);
  position: relative;
  overflow: hidden;
}
.loop::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 320px;
  background: none;
  pointer-events: none; transition: background .5s var(--ease);
}
.loop-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--hair); position: relative; z-index: 1; }
.loop-tab {
  position: relative; text-align: left; cursor: pointer;
  background: transparent; border: 0; border-right: 1px solid var(--hair);
  padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 8px;
  font-family: var(--f-sans); color: var(--cream-3);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.loop-tab:last-child { border-right: 0; }
.loop-tab:hover { background: rgba(246,239,224,0.03); color: var(--cream-2); }
/* dimmed via a compliant token, not opacity (contrast) */
.loop-tab .lt-n { font-family: var(--f-data); font-size: 11px; letter-spacing: 0.14em; color: var(--cream-3); }
.loop-tab .lt-t { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.loop-tab.on { color: var(--cream); background: rgba(246,239,224,0.04); }
.loop-tab.on .lt-n { color: var(--acc); }
.loop-tab .lt-bar { position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; background: transparent; overflow: hidden; }
.loop-tab .lt-bar i { display: block; height: 100%; width: 100%; background: var(--acc); transform: scaleX(0); transform-origin: left; }
.loop-tab.on .lt-bar i { animation: lt-fill var(--loopdur, 6s) linear forwards; }
.loop-tab.on.paused .lt-bar i { animation-play-state: paused; }
@keyframes lt-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.loop-panel { display: grid; grid-template-columns: 0.92fr 1.08fr; position: relative; z-index: 1; }
.loop-copy { padding: 44px 40px; border-right: 1px solid var(--hair); display: flex; flex-direction: column; }
.loop-copy .lc-eyebrow { font-family: var(--f-label); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--acc); }
.loop-copy h3 { font-family: var(--f-display); font-weight: 500; letter-spacing: -0.03em; font-size: clamp(28px, 3vw, 40px); color: var(--cream); margin: 14px 0 0; line-height: 1.02; }
.loop-copy p { font-size: 16px; color: var(--cream-2); margin: 18px 0 0; line-height: 1.6; max-width: 420px; }
.loop-copy .lc-foot { margin-top: auto; padding-top: 26px; font-family: var(--f-data); font-size: 11px; letter-spacing: 0.06em; color: var(--cream-3); display: flex; align-items: center; gap: 10px; }
.loop-copy .lc-foot b { color: var(--acc); font-weight: 500; }
.loop-stage { display: none; flex-direction: column; }
.loop-stage.on { display: flex; animation: lc-in .45s var(--ease); }
@keyframes lc-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.loop-visual { padding: 40px; position: relative; min-height: 380px; }
.lv { position: absolute; inset: 40px; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); display: flex; flex-direction: column; }
.lv.on { opacity: 1; pointer-events: auto; }
.lv-card { background: var(--page-bg); border: 1px solid var(--hair); padding: 20px; flex: 1; display: flex; flex-direction: column; }
.lv-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.lv-title { font-family: var(--f-label); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-3); }
.lv-count { font-family: var(--f-data); font-size: 10px; color: var(--acc); }

/* Generate — streaming variant lines */
.lv-var { font-size: 13.5px; color: var(--cream-2); line-height: 1.5; padding: 9px 0; border-bottom: 1px solid var(--hair); opacity: 0; transform: translateY(6px); }
.lv.on .lv-var { animation: var-in .5s var(--ease) forwards; }
.lv.on .lv-var:nth-child(2){ animation-delay: .05s } .lv.on .lv-var:nth-child(3){ animation-delay: .18s }
.lv.on .lv-var:nth-child(4){ animation-delay: .31s } .lv.on .lv-var:nth-child(5){ animation-delay: .44s }
.lv.on .lv-var:nth-child(6){ animation-delay: .57s }
@keyframes var-in { to { opacity: 1; transform: none; } }

/* Predict / Serve — score & allocation rows */
.lv-row { display: grid; grid-template-columns: 1fr 116px 46px; gap: 12px; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--hair); }
.lv-row .lr-t { font-size: 13px; color: var(--cream-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lv-row.lead .lr-t { color: var(--cream); font-weight: 500; }
.lv-track { height: 8px; background: rgba(246,239,224,0.08); position: relative; overflow: hidden; border-radius: 999px; }
.lv-fill { position: absolute; inset: 0; right: auto; width: 0; background: var(--acc); border-radius: 999px; transition: width .9s var(--ease); }
.lv.on .lv-fill { width: var(--w, 50%); }
.lv-pct { font-family: var(--f-data); font-size: 12px; color: var(--acc); text-align: right; }
.lv-row .lv-pct.dim { color: var(--cream-3); }

/* Learn — big uplift + theme chips */
.lv-big { display: flex; align-items: baseline; gap: 12px; }
.lv-big .n { font-family: var(--f-display); font-size: 52px; letter-spacing: -0.03em; color: var(--cream); line-height: 1; }
.lv-big .d { font-family: var(--f-data); font-size: 12px; color: var(--ok); }
.lv-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.lv-chip { font-size: 12px; padding: 6px 12px; border: 1px solid var(--hair-2); border-radius: 999px; color: var(--cream-2); display: inline-flex; gap: 8px; align-items: center; }
.lv-chip b { font-family: var(--f-data); color: var(--ok); font-weight: 500; }
.lv-spark { margin-top: auto; }

/* slim "also includes" row */
.also { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }

/* ---- Deep-dive feature rows ------------------------------- */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feat + .feat { margin-top: 120px; }
.feat.flip .feat-copy { order: 2; }
.feat.flip .feat-media { order: 1; }
.feat-copy h2 { font-size: var(--h-section); margin: 18px 0 0; letter-spacing: -0.025em; }
.feat-copy .lead { margin-top: 22px; }
.feat-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 14px; }
.feat-list li { display: flex; gap: 12px; font-size: 15px; color: var(--cream-2); align-items: flex-start; }
.feat-list .tick { flex-shrink: 0; margin-top: 2px; width: 20px; height: 20px; border-radius: 999px; background: rgba(46,184,134,0.16); color: var(--ok); display: flex; align-items: center; justify-content: center; }
.feat-list .tick svg { width: 12px; height: 12px; }
.feat-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 30px; color: var(--yellow); font-family:var(--f-sans); font-weight: 500; font-size: 15px; text-decoration: none; }
.feat-link:hover { gap: 11px; }
.feat-media { position: relative; }
/* plain sentence replacing a duplicated quote — no italic, no lead styling */
.feat-copy > p { font-size: var(--t-intro); line-height: 1.6; color: var(--cream-2); margin-top: 18px; max-width: 560px; }

/* showcase closing line — a quiet, pattern-breaking sentence, not
   another eyebrow/headline stack (absorbs the old #channels copy) */
.showcase-close { margin: 48px 0 0; text-align: center; font-family: var(--f-display); font-size: clamp(17px, 1.7vw, 20px); color: var(--cream-2); }

/* ---- Stats band ------------------------------------------- */
.stats { background: var(--maroon-deep); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); padding: 88px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { text-align: center; }
.stat .n { font-family:var(--f-display); font-size: clamp(44px, 5vw, 68px); letter-spacing: -0.04em; line-height: 1; color: var(--cream); }
.stat .n .stop { color: var(--pink); }
.stat .l { font-family:var(--f-label); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-3); margin-top: 14px; }
.stat .d { font-size: 13px; color: var(--cream-4); margin-top: 6px; }

/* ---- Quote ------------------------------------------------- */
.quote { padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.quote .wash-1 { width: 760px; height: 480px; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: radial-gradient(closest-side, rgba(122,0,75,0.4), transparent 70%); }
.quote blockquote {
  position: relative; z-index: 2; max-width: 940px; margin: 0 auto;
  font-family: var(--f-display); font-weight: 500; letter-spacing: -0.03em;
  font-size: clamp(28px, 3.6vw, 46px); line-height: 1.2; color: var(--cream);
}
.quote .qby { position: relative; z-index: 2; margin-top: 34px; display: inline-flex; align-items: center; gap: 14px; }
.quote .qav { width: 46px; height: 46px; border-radius: 999px; background: var(--maroon-500); color: var(--cream); display: flex; align-items: center; justify-content: center; font-family:var(--f-display); font-size: 18px; }
.quote .qmeta { text-align: left; }
.quote .qn { font-family:var(--f-sans); font-weight: 600; font-size: 15px; color: var(--cream); }
.quote .qr { font-size: 13px; color: var(--cream-3); }

/* Book a demo is a <button> (it opens the Cal modal, no link behind it) */
button.btn { font: inherit; cursor: pointer; appearance: none; -webkit-appearance: none; }

/* ---- Channels / integrations ------------------------------ */
.chips-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 52px; }
.chan {
  background: var(--page-panel); border: 1px solid var(--hair); padding: 22px;
  display: flex; align-items: center; gap: 14px; transition: border-color .2s var(--ease), background .2s var(--ease);
}
.chan:hover { border-color: var(--hair-2); background: var(--page-panel-2); }
.chan .ci { width: 38px; height: 38px; border-radius: 10px; background: rgba(246,239,224,0.06); color: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chan .ci svg { width: 19px; height: 19px; }
.chan .cn { font-family:var(--f-sans); font-weight: 500; font-size: 15px; color: var(--cream); display: block; }
.chan .cs { font-family:var(--f-label); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream-3); margin-top: 3px; display: block; }

/* ---- Final CTA -------------------------------------------- */
.cta {
  margin: 0 auto; max-width: var(--maxw);
  position: relative; overflow: hidden;
  background: var(--maroon-600);
  border: 1px solid var(--hair-2);
  padding: 84px 56px; text-align: center;
}
.cta .wash-1 { width: 600px; height: 360px; top: -120px; right: -60px;
  background: radial-gradient(closest-side, rgba(255,122,233,0.22), transparent 70%); }
.cta h2 { position: relative; z-index: 2; font-size: clamp(36px, 4.6vw, 60px); margin: 14px 0 0; }
.cta p { position: relative; z-index: 2; font-size: 18px; color: var(--cream-2); margin: 20px auto 0; max-width: 520px; }
.cta .cta-row { position: relative; z-index: 2; display: flex; gap: 14px; justify-content: center; margin: 22px 0 0; flex-wrap: wrap; }
.cta .cta-try { position: relative; z-index: 2; margin: 34px auto 0; }
.cta-sec { padding: var(--sec-gap) 0; }
@media (max-width: 480px) {
  .cta .cta-try { flex-direction: column; border-radius: 22px; padding: 6px; }
  .cta .cta-try input { padding: 12px 16px; text-align: center; }
  .cta .cta-try button { margin: 0; padding: 12px 20px; justify-content: center; }
}

/* ---- mid-page analyser catcher: a slim, pattern-breaking band ---- */
.ana-catcher { background: var(--maroon-600); padding: 48px 0; }
.ana-catcher-inner { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.ana-catcher-line { font-family: var(--f-display); font-size: clamp(19px, 2.2vw, 25px); letter-spacing: -.01em; color: var(--cream); margin: 0; }
.ana-catcher .hero-try { margin-top: 0; }
@media (max-width: 620px) { .ana-catcher-inner { flex-direction: column; text-align: center; gap: 20px; } .ana-catcher .hero-try { width: 100%; max-width: 100%; } }

/* ---- Footer ------------------------------------------------ */
.foot { border-top: 1px solid var(--hair); padding: 64px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.foot-logo { color: var(--cream); display: block; }
.foot-logo .logo { width: 144px; height: 20px; }
.foot-tag { color: var(--cream-3); font-size: 14px; margin: 18px 0 0; max-width: 280px; }
.foot-col h5, .foot-col .foot-h { font-family:var(--f-label); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-3); margin: 0 0 16px; }
.foot-col a { display: block; color: var(--cream-2); text-decoration: none; font-size: 14.5px; margin-bottom: 11px; transition: color .16s var(--ease); }
.foot-col a:hover { color: var(--cream); }
.foot-bot { display: flex; justify-content: space-between; align-items: center; margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--hair); }
.foot-bot .cp { font-family:var(--f-data); font-size: 11px; color: var(--cream-3); letter-spacing: 0.04em; }
.foot-bot .soc { display: flex; gap: 10px; }
.foot-bot .soc a { width: 34px; height: 34px; border: 1px solid var(--hair); border-radius: 999px; display: flex; align-items: center; justify-content: center; color: var(--cream-2); transition: border-color .16s var(--ease), color .16s var(--ease); }
.foot-bot .soc a:hover { border-color: var(--cream); color: var(--cream); }
.foot-policies { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.foot-policies a, .foot-link-btn { font-family: var(--f-data); font-size: 11px; letter-spacing: 0.04em; color: var(--cream-3); text-decoration: none; transition: color .16s var(--ease); }
.foot-link-btn { background: none; border: 0; padding: 0; cursor: pointer; }
.foot-link-btn:hover, .foot-link-btn:focus-visible { color: var(--cream); }
.foot-policies a:hover { color: var(--cream); }
@media (max-width: 720px) {
  .foot-bot { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---- Hero switcher (compare 3 treatments) ----------------- */
.switcher {
  position: fixed;
  bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 200;
  display: flex; align-items: center; gap: 4px;
  padding: 6px;
  background: rgba(42,0,28,0.86);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hair-2);
  border-radius: 999px;
  box-shadow: 0 16px 50px -16px rgba(0,0,0,0.7);
}
.switcher .lab { font-family:var(--f-label); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-3); padding: 0 10px 0 12px; }
.switcher button {
  font-family:var(--f-sans); font-size: 13px; font-weight: 500;
  padding: 8px 16px; border-radius: 999px; border: 0; cursor: pointer;
  background: transparent; color: var(--cream-2); transition: background .16s var(--ease), color .16s var(--ease);
}
.switcher button:hover { color: var(--cream); }
.switcher button.on { background: var(--yellow); color: #15020c; }

/* ---- Scroll reveal ---------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  .mq-a, .mq-b, .caret { animation: none !important; }
}

/* ---- Performance: skip rendering below-fold sections until near view.
   (Sections keep an intrinsic size estimate so the scrollbar stays stable;
   in-page anchors still work — browsers render on demand.) ---- */
#platform, #model, #ai, #analyser, #resources, .cases, .cta-sec, .foot {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}
/* While an anchor jump is in flight, render everything so the target
   position is exact (home.js toggles this; real sizes are kept after). */
html.jq-anchoring #platform, html.jq-anchoring #model, html.jq-anchoring #ai,
html.jq-anchoring #analyser, html.jq-anchoring #resources,
html.jq-anchoring .cases, html.jq-anchoring .cta-sec,
html.jq-anchoring .foot {
  content-visibility: visible;
}
/* anchored jumps land with breathing room */
section[id] { scroll-margin-top: 72px; }

/* ---- case studies ------------------------------------------ */
.case-tabs { display: flex; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.ctab { font-family: var(--f-sans); font-weight: 600; font-size: 13.5px; padding: 10px 22px; border-radius: 999px; border: 1px solid var(--hair-2); background: transparent; color: var(--cream-2); cursor: pointer; transition: all .16s var(--ease); }
.ctab:hover { border-color: var(--cream-3); color: var(--cream); }
.ctab.on { background: var(--cream); border-color: var(--cream); color: #15020c; }
.case-stage { margin-top: 26px; }
.case { display: none; }
.case.on { display: grid; grid-template-columns: 1.3fr .7fr; gap: 14px; animation: case-in .45s var(--ease); }
@keyframes case-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .case.on { animation: none; } }
.case-q { background: var(--page-panel); border: 1px solid var(--hair); padding: 38px 40px 32px; display: flex; flex-direction: column; min-width: 0; }
.case-q blockquote { margin: 0; font-family: var(--f-display); font-size: clamp(20px, 2.1vw, 27px); line-height: 1.32; letter-spacing: -.015em; color: var(--cream); text-wrap: pretty; }
.case-q blockquote.case-plain { font-size: clamp(19px, 1.9vw, 24px); color: var(--cream-2); }
.case-by { margin-top: 24px; display: flex; flex-direction: column; gap: 3px; }
.case-by b { font-family: var(--f-sans); font-weight: 600; font-size: 14.5px; color: var(--cream); }
.case-by span { font-size: 12.5px; color: var(--cream-3); }
/* unified inline-link style: yellow text + › (matches .feat-link) */
.case-link { margin-top: auto; padding-top: 22px; align-self: flex-start; display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-sans); font-weight: 500; font-size: 15px; color: var(--yellow); text-decoration: none; transition: gap .16s var(--ease); }
.case-link:hover { gap: 11px; }
.case-stats { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.cstat { flex: 1; background: var(--page-panel-2); border: 1px solid var(--hair); padding: 20px 24px; display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.cv { display: flex; align-items: baseline; gap: 2px; font-family: var(--f-display); font-size: 42px; line-height: 1; letter-spacing: -.03em; color: var(--cream); }
.cv i { font-style: normal; font-size: 20px; color: var(--cream-3); }
.cv svg { width: 18px; height: 18px; margin-left: auto; color: var(--coral, #ff7a59); align-self: center; }
.cl { font-size: 13px; color: var(--cream-2); }

/* featured-in press strip */
.featured { margin-top: 58px; display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.feat-eyb { font-family: var(--f-label); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-4); margin-right: 4px; }
/* real press logos, cut to cream at build time; heights tuned so the
   wordmarks read at one optical size */
.fl { display: block; width: auto; height: 22px; opacity: 0.72; transition: opacity .25s var(--ease); }
.fl:hover { opacity: 1; }
.fl-campaign { height: 24px; }
.fl-drum { height: 20px; }
.fl-forbes { height: 21px; }
.fl-techradar { height: 20px; }

/* ---- Jacq — agent in Slack -------------------------------- */
.jacq-caps { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }
.jacq-cap {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: 999px;
  border: 1px solid var(--hair-2); background: var(--page-panel);
  font-family: var(--f-sans); font-weight: 500; font-size: 13.5px;
  color: var(--cream-2);
}
.jacq-cap .lc-ic { display: inline-flex; color: var(--pink); }
.jacq-cap .lc-ic svg { width: 15px; height: 15px; }

.jacq-win { max-width: 760px; margin: 22px auto 0; }
.slack { background: var(--maroon-deep); }

/* provider tabs — Slack / Claude (ChatGPT & Copilot noted) */
.jacq-tabs { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 38px; }
.jacq-tab {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: var(--f-sans); font-weight: 600; font-size: 13.5px; color: var(--cream-2);
  background: rgba(246,239,224,0.05); border: 1px solid var(--hair-2); border-radius: 999px;
  padding: 9px 18px; transition: border-color .16s var(--ease), background .16s var(--ease), color .16s var(--ease);
}
.jacq-tab svg { width: 15px; height: 15px; flex: none; }
.jacq-tab:hover { border-color: var(--cream-3); color: var(--cream); }
.jacq-tab.on { border-color: var(--pink); color: var(--cream); background: rgba(255,122,233,0.08); }
.jacq-tabs-note { font-family: var(--f-label); font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--cream-4); margin-left: 6px; }

/* Assistant chat mocks — one skeleton, themed per product */
.chat { background: var(--ch-bg); padding: 24px 22px 0; }
.chat.claude { --ch-bg: #faf9f5; --ch-bubble: #f0eee6; --ch-ink: #3d3929; --ch-strong: #211d12; --ch-line: #e7e2d4; --ch-acc: #D97757; --ch-mut: #635b47; --ch-comp: #746c57; }
.chat.gpt { --ch-bg: #ffffff; --ch-bubble: #f4f4f4; --ch-ink: #383a42; --ch-strong: #0d0e10; --ch-line: #e5e5e5; --ch-acc: #10a37f; --ch-mut: #565869; --ch-comp: #666a72; }
.chat.copilot { --ch-bg: #f8f9fc; --ch-bubble: #e8eefb; --ch-ink: #242a33; --ch-strong: #14181f; --ch-line: #e0e4ee; --ch-acc: #0078d4; --ch-mut: #545e78; --ch-comp: #5f6880; }
.cl-msg { margin-bottom: 18px; }
.cl-msg.user { display: flex; justify-content: flex-end; }
.cl-bubble {
  max-width: 78%; background: var(--ch-bubble); color: var(--ch-ink);
  border-radius: 14px 14px 4px 14px; padding: 11px 16px;
  font-family: var(--f-sans); font-size: 14px; line-height: 1.55;
}
.cl-msg.bot { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; }
.cl-av { width: 30px; height: 30px; flex: none; display: flex; align-items: center; justify-content: center; }
.cl-av svg { width: 100%; height: 100%; display: block; }
.chat.gpt .cl-av { background: #fff; border: 1px solid var(--ch-line); border-radius: 50%; }
.chat.gpt .cl-av svg { width: 18px; height: 18px; color: #0d0d0d; }
.chat.copilot .cl-av { background: #fff; border: 1px solid var(--ch-line); border-radius: 8px; }
.chat.copilot .cl-av svg { width: 15px; height: 15px; }
.cl-content { min-width: 0; padding-top: 3px; }
.cl-p { font-family: var(--f-sans); font-size: 14.5px; line-height: 1.6; color: var(--ch-ink); margin: 0 0 10px; }
.cl-p strong { font-weight: 600; color: var(--ch-strong); }
.cl-tools { display: flex; flex-wrap: wrap; gap: 7px; margin: 1px 0 11px; }
.cl-tool {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-data); font-size: 11px; color: var(--ch-mut);
  background: #fff; border: 1px solid var(--ch-line); border-radius: 999px; padding: 4px 11px;
}
.cl-tool svg { width: 11px; height: 11px; color: #1a754d; flex: none; }
.cl-card {
  border: 1px solid var(--ch-line); border-left: 3px solid var(--ch-acc); border-radius: 8px;
  background: #fff; padding: 10px 14px; margin: 0 0 10px;
  font-family: var(--f-sans); font-size: 14px; line-height: 1.55; color: var(--ch-strong);
}
.cl-composer {
  display: flex; align-items: center; gap: 10px;
  margin: 6px -22px 0; padding: 13px 22px; border-top: 1px solid var(--ch-line);
  font-family: var(--f-sans); font-size: 13.5px; color: var(--ch-comp);
}
.cl-composer svg { width: 16px; height: 16px; margin-left: auto; color: var(--ch-comp); opacity: .7; }

/* channel header */
.sl-chan {
  padding: 15px 22px; border-bottom: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sl-chan-name { font-family: var(--f-sans); font-weight: 700; font-size: 16px; color: var(--cream); letter-spacing: -0.01em; }
.sl-chan-topic { font-size: 12.5px; color: var(--cream-3); margin-top: 2px; }
.sl-members {
  flex: none; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-data); font-size: 11px; color: var(--cream-3);
  border: 1px solid var(--hair); border-radius: 7px; padding: 5px 10px;
}
.sl-members svg { width: 13px; height: 13px; }

/* date divider */
.sl-day { display: flex; align-items: center; gap: 14px; margin: 2px 0 -2px; }
.sl-day::before, .sl-day::after { content: ""; flex: 1; height: 1px; background: var(--hair); }
.sl-day span {
  font-family: var(--f-label); font-size: 9.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cream-4);
  border: 1px solid var(--hair); border-radius: 999px; padding: 3px 12px;
}

/* thread */
.sl-scroll { position: relative; overflow: hidden; max-height: 1200px; transition: max-height .55s var(--ease); }
.sl-thread { padding: 16px 22px 8px; display: flex; flex-direction: column; gap: 18px; }
.sl-msg { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start; }
.sl-av {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--page-panel-2); border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-sans); font-weight: 700; font-size: 12.5px;
  color: var(--cream-2); flex: none;
}
.sl-av.bot {
  background: linear-gradient(135deg, var(--pink), var(--coral));
  border: 0; color: #15020c;
  box-shadow: 0 4px 14px -4px rgba(255,122,233,0.45);
}
.sl-av.bot svg { width: 19px; height: 19px; }
.sl-content { min-width: 0; }
.sl-head { display: flex; align-items: baseline; gap: 8px; margin-bottom: 3px; }
.sl-name { font-family: var(--f-sans); font-weight: 700; font-size: 14.5px; color: var(--cream); }
.sl-badge {
  font-family: var(--f-label); font-size: 8.5px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--hair-2); color: var(--cream-2);
  padding: 1px 5px; border-radius: 3px; transform: translateY(-1px);
}
.sl-time { font-family: var(--f-data); font-size: 10.5px; color: var(--cream-4); }
.sl-body { font-size: 14.5px; line-height: 1.5; color: var(--cream-2); }
.sl-body strong { color: var(--cream); font-weight: 600; }
.sl-at { color: var(--pink); font-weight: 500; }
.sl-ask { margin-top: 8px; }

/* draft-for-approval card */
.sl-card {
  margin-top: 10px; border: 1px solid var(--hair-2); border-left: 3px solid var(--pink);
  border-radius: 8px; background: var(--page-panel); overflow: hidden;
}
.sl-card-tag {
  font-family: var(--f-label); font-size: 9.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cream-3); padding: 11px 15px 0;
}
.sl-card-body { font-size: 14.5px; line-height: 1.55; color: var(--cream); padding: 7px 15px 12px; }
.sl-card-foot {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 15px; border-top: 1px solid var(--hair);
  font-size: 12.5px; color: var(--cream-3);
}
.sl-card-foot strong { color: var(--ok); font-weight: 600; }
.sl-card-foot svg { width: 12px; height: 12px; color: var(--ok); flex: none; }

.sl-actions { display: flex; gap: 9px; margin-top: 11px; }
.sl-btn {
  font-family: var(--f-sans); font-weight: 600; font-size: 13px;
  padding: 8px 15px; border-radius: 8px; border: 1px solid transparent; cursor: pointer;
  transition: filter .16s var(--ease), background .16s var(--ease), border-color .16s var(--ease);
}
.sl-btn.approve { background: var(--ok); color: #062018; }
.sl-btn.approve:hover { filter: brightness(1.08); }
.sl-btn.ghost { background: transparent; border-color: var(--hair-2); color: var(--cream-2); }
.sl-btn.ghost:hover { border-color: var(--cream); background: rgba(246,239,224,0.04); }

/* live confirmation */
.sl-note { font-size: 13.5px; line-height: 1.6; color: var(--cream-3); }
.sl-live {
  display: inline-flex; align-items: center; gap: 6px; margin-right: 8px;
  font-family: var(--f-label); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ok);
  background: rgba(46,184,134,0.12); border: 1px solid rgba(46,184,134,0.3);
  border-radius: 999px; padding: 2px 9px; transform: translateY(-1px);
}
.dotlive { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); animation: sl-pulse 2s infinite; }
@keyframes sl-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ranked variants */
.sl-vars { list-style: none; padding: 0; margin: 10px 0 0; display: flex; flex-direction: column; gap: 7px; }
.sl-vars li {
  display: flex; align-items: center; gap: 11px;
  background: var(--page-panel); border: 1px solid var(--hair);
  border-radius: 9px; padding: 9px 13px 9px 11px;
}
.sl-rank {
  flex: none; width: 19px; height: 19px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-data); font-size: 10px; color: var(--cream-3);
  border: 1px solid var(--hair);
}
.sl-var-t { font-size: 14px; color: var(--cream); flex: 1; min-width: 0; }
.sl-lift {
  flex: none; font-family: var(--f-data); font-size: 11px; font-weight: 500;
  color: var(--ok); background: rgba(46,184,134,0.14); border: 1px solid rgba(46,184,134,0.3);
  padding: 2px 8px; border-radius: 999px;
}

.sl-reacts { display: flex; gap: 7px; margin-top: 10px; }
.sl-react {
  font-size: 12px; color: var(--cream-2);
  background: var(--page-panel); border: 1px solid var(--hair);
  padding: 2px 9px; border-radius: 999px;
}

/* typing indicator */
.sl-typing {
  display: flex; align-items: center; gap: 9px; padding-left: 48px;
  font-size: 12.5px; font-style: italic; color: var(--cream-4);
}
.sl-tdots { display: inline-flex; gap: 3px; }
.sl-tdots i { width: 5px; height: 5px; border-radius: 50%; background: var(--cream-3); animation: sl-blink 1.2s infinite; }
.sl-tdots i:nth-child(2) { animation-delay: .2s; }
.sl-tdots i:nth-child(3) { animation-delay: .4s; }
@keyframes sl-blink { 0%, 80%, 100% { opacity: 0.25; } 40% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .sl-tdots i, .dotlive { animation: none; }
}

/* collapse / expand — pure CSS via hidden checkbox, no JS dependency */
.sl-toggle:not(:checked) ~ .sl-scroll { max-height: 328px; }
.sl-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 96px;
  background: linear-gradient(to bottom, rgba(36,0,22,0), var(--maroon-deep));
  pointer-events: none; opacity: 1; transition: opacity .35s var(--ease);
}
.sl-toggle:checked ~ .sl-scroll .sl-fade { opacity: 0; }
.sl-expand {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; padding: 12px; border: 0; border-top: 1px solid var(--hair);
  background: var(--page-panel); color: var(--cream); cursor: pointer;
  font-family: var(--f-sans); font-weight: 600; font-size: 13px;
  user-select: none; transition: background .16s var(--ease);
}
.sl-expand:hover { background: var(--page-panel-2); }
.sl-expand-ic { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.sl-toggle:checked ~ .sl-expand .sl-expand-ic { transform: rotate(180deg); }
.sl-expand .e-less { display: none; }
.sl-toggle:checked ~ .sl-expand .e-more { display: none; }
.sl-toggle:checked ~ .sl-expand .e-less { display: inline; }
.sl-toggle:focus-visible ~ .sl-expand { outline: 2px solid var(--pink); outline-offset: -2px; }

.sl-composer {
  margin: 12px 22px 18px; display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--hair-2); border-radius: 10px; padding: 11px 14px;
}
.sl-composer-plus { color: var(--cream-3); font-size: 18px; line-height: 1; }
.sl-composer-ph { flex: 1; font-size: 13.5px; color: var(--cream-4); }
.sl-composer-send { color: var(--cream-3); display: inline-flex; }
.sl-composer-send svg { width: 17px; height: 17px; }

@media (max-width: 620px) {
  .sl-thread, .sl-chan { padding-left: 16px; padding-right: 16px; }
  .sl-composer { margin-left: 16px; margin-right: 16px; }
  .sl-members { display: none; }
  .sl-vars li { flex-wrap: wrap; gap: 6px; }
  .sl-actions { flex-wrap: wrap; }
  .sl-typing { padding-left: 0; }
  .sl-toggle:not(:checked) ~ .sl-scroll { max-height: 392px; }
}
@media (max-width: 860px) {
  .case.on { grid-template-columns: 1fr; }
  .case-q { padding: 26px 22px 24px; }
  .case-stats { flex-direction: row; flex-wrap: wrap; }
  .cstat { min-width: 130px; padding: 16px 18px; }
  .featured { gap: 22px; }
  .fl { height: 18px; } .fl-campaign { height: 20px; } .fl-drum, .fl-techradar { height: 16px; } .fl-forbes { height: 17px; }
}

/* ---- resources ---------------------------------------------- */
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 44px; }
.res-card { display: flex; flex-direction: column; gap: 14px; min-width: 0; padding: 26px 26px 24px; background: var(--page-panel); border: 1px solid var(--hair); text-decoration: none; transition: border-color .16s var(--ease), background .16s var(--ease); }
.res-card:hover { border-color: var(--hair-2); background: var(--page-panel-2); }
.res-thumb { display: block; margin: -26px -26px 0; aspect-ratio: 1.9; overflow: hidden; border-bottom: 1px solid var(--hair); }
.res-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.res-tag { font-family: var(--f-label); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-3); }
.res-t { font-family: var(--f-display); font-size: 21px; line-height: 1.22; letter-spacing: -.015em; color: var(--cream); text-wrap: pretty; }
.res-m { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; font-family: var(--f-label); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--cream-4); }
.res-m svg { width: 15px; height: 15px; color: var(--cream-3); transition: transform .16s var(--ease), color .16s var(--ease); }
.res-card:hover .res-m svg { transform: translateX(4px); color: var(--pink); }
.res-foot { display: flex; justify-content: center; margin-top: 30px; }
@media (max-width: 980px) { .res-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .res-grid { grid-template-columns: 1fr; } }

/* ---- Responsive ------------------------------------------- */
/* seven nav links + CTAs genuinely fit only from ~1200px up;
   below that the links wrapped/overflowed, so the burger takes
   over earlier than the rest of the mobile layout */
@media (max-width: 1199px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
}
@media (max-width: 980px) {
  /* hero right column — the game capsule with the G2 awards beneath */
/* bottom-anchored so the capsule sits level with the CTA row and
   the badges hang beneath it. Anchoring to the column's end keeps
   that alignment when the rotating headline changes height — the
   old top offset (a tuned 476px) drifted whenever it did. */
.hero-side { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; min-width: 0; align-self: end; }
.hero-side .game.is-mini { margin-top: 0; }
.g2wall { display: flex; align-items: flex-end; gap: 18px; flex-wrap: wrap; }
.g2b { display: block; line-height: 0; transition: transform .18s var(--ease); }
.g2b img { height: 96px; width: auto; display: block; }
.g2b:hover { transform: translateY(-2px); }
@media (max-width: 980px) {
  .hero-side { align-items: center; gap: 22px; }
  .g2wall { justify-content: center; gap: 14px; }
  .g2b img { height: 84px; }
}
@media (max-width: 420px) {
  .g2wall { gap: 10px; }
  .g2b img { height: 72px; }
}

.heroB .grid { grid-template-columns: 1fr; gap: 40px; }
  .heroB .metrics { flex-wrap: wrap; gap: 22px 32px; }
  :root { --sec-gap: 64px; }
  .vgrid { grid-template-columns: 1fr 1fr; }
  .also { grid-template-columns: 1fr; }
  .logogrid { grid-template-columns: repeat(3, 1fr); }
  .loop-tabs { grid-template-columns: 1fr 1fr; }
  .loop-tab:nth-child(2) { border-right: 0; }
  .loop-panel { grid-template-columns: 1fr; }
  .loop-copy { border-right: 0; border-bottom: 1px solid var(--hair); }
  .feat, .feat.flip .feat-copy, .feat.flip .feat-media { grid-template-columns: 1fr; order: 0; }
  .feat-media { order: 2 !important; }
  .feat-copy { order: 1 !important; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .chips-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  .wrap { padding: 0 20px; }
  .vgrid { grid-template-columns: 1fr; }
  .logogrid { grid-template-columns: repeat(3, 1fr); }
  .logogrid .lg { min-height: 92px; font-size: 14px; }
  .logogrid .lg img { max-height: 38px; }
  .logogrid .lg.badge img { max-height: 44px; }
  .loop-visual { min-height: 320px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .cta { padding: 56px 26px; }

  /* tighter vertical rhythm */
  :root { --sec-gap: 64px; }
  .cloud { padding: 64px 0 0; }
  .quote { padding: 80px 0; }
  .stats { padding: 64px 0; }
  .lead { font-size: 19px; }
  .heroB .sub { font-size: 16.5px; }
  .heroB .metrics { gap: 20px 26px; margin-top: 32px; }
  .heroB .metric .n { font-size: 29px; }
  .feat { gap: 36px; }

  /* comfortable tap targets */
  .btn { min-height: 44px; }
  .nav .btn { min-height: 40px; }
  .gsr { min-height: 44px; }

  /* nav: logo + one CTA only */
  .nav-inner { gap: 16px; }
  .nav-cta .nav-signin { display: none; }
  .nav-logo .logo { width: 118px; height: 16px; }

  /* hero pill: let it wrap instead of forcing width */
  .hero-pill { white-space: normal; line-height: 1.45; border-radius: 22px; max-width: 100%; }

  /* channel chips: allow shrink + wrap inside the cell */
  .chips-grid { gap: 10px; margin-top: 36px; }
  .chips-grid > .chan { min-width: 0; padding: 16px 14px; font-size: 14px; }
}


/* ============================================================
   THE ARRAY — brand-motif background (array.js)
   ============================================================ */
.hero-array {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; display: block; opacity: .85;
  mask-image: linear-gradient(105deg, #000 0%, #000 34%, transparent 58%);
  -webkit-mask-image: linear-gradient(105deg, #000 0%, #000 34%, transparent 58%);
}

/* ---- hero backdrop: the Array ------------------------------- */
.hero-array-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; display: block; opacity: .9; pointer-events: none;
  /* much quieter over the copy column, full strength right of it */
  mask-image: linear-gradient(105deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.2) 38%, #000 64%);
  -webkit-mask-image: linear-gradient(105deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.2) 38%, #000 64%);
}
/* mobile: the fan's dense base sits behind the metrics — fade the
   array out before it reaches them */
@media (max-width: 980px) {
  .hero-array-canvas {
    mask-image: linear-gradient(to bottom, #000 0%, #000 34%, rgba(0,0,0,0.35) 58%, rgba(0,0,0,0.3) 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 34%, rgba(0,0,0,0.35) 58%, rgba(0,0,0,0.3) 100%);
  }
}
/* legibility scrim — settles the rays behind the copy column */
.heroB::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(102deg, rgba(60,0,39,0.85) 0%, rgba(60,0,39,0.55) 30%, rgba(60,0,39,0.16) 50%, transparent 64%);
}
/* mobile: the copy spans the full width, so the desktop scrim's
   left-to-right fade reads as an odd dark edge — a gentle top-down
   wash protects the headline instead */
@media (max-width: 980px) {
  .heroB::before {
    background: linear-gradient(to bottom, rgba(60,0,39,0.55) 0%, rgba(60,0,39,0.28) 40%, transparent 72%);
  }
}
.heroB h1, .heroB .sub, .heroB .metric { text-shadow: 0 1px 22px rgba(21,2,12,0.6); }
.cloud-array {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; display: block; opacity: .9;
  mask-image: linear-gradient(to bottom, transparent 0, #000 26%, #000 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 26%, #000 80%, transparent 100%);
}
#showcase { position: relative; overflow: hidden; }
#showcase .wrap { position: relative; z-index: 1; }
.showcase-array {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; display: block; opacity: .9;
  mask-image: linear-gradient(to bottom, transparent 0, #000 14%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 14%);
}
.cloud { position: relative; overflow: hidden; }
.cloud .wrap { position: relative; z-index: 1; }
.cta-sec { position: relative; overflow: hidden; }
.cta-array {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; display: block; opacity: .75;
  mask-image: linear-gradient(to bottom, transparent 0, #000 30%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 30%);
}
.hero-cloud { position: relative; }

.cta-sec .wrap { position: relative; z-index: 2; }


/* ---- logo wall: cells with a customer story are links ------- */
a.lg { text-decoration: none; cursor: pointer; }
a.lg::before {
  content: "Customer story →";
  position: absolute;
  left: 0; right: 0; bottom: 10px;
  text-align: center;
  font-family: var(--f-label);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
a.lg:hover::before { opacity: 1; }

/* hero/logo-wall content paints above the spanning array canvas */
.cloud .wrap { position: relative; z-index: 1; }
