/* ==========================================================================
   YAYA /ai — component kit
   Built on brand.css tokens. Nothing here invents a colour or a typeface.
   ========================================================================== */

/* --- section shells ------------------------------------------------------ */
.sec {
  position: relative;
  padding-block: var(--sec);
  overflow: hidden;
  isolation: isolate;
}
.sec > .wrap { position: relative; z-index: 2; }
.sec--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }

.bg-paper  { background: var(--paper); }
.bg-lime   { background: var(--lime); }
.bg-purple { background: var(--purple); }
.bg-lilach { background: var(--lilach); }
.bg-aqua   { background: var(--aqua); }
.bg-pink   { background: var(--pink); }
.bg-navy   { background: var(--navy); color: var(--paper); }
.bg-navy .eyebrow { color: var(--lime); }

/* decorative ribbon placements */
.rib-a { inset: -30% -35% auto -20%; height: 150%; z-index: 0; opacity: .9; }
.rib-b { inset: auto -30% -45% auto; width: 85%; height: 130%; z-index: 0; }
.rib-c { inset: -20% auto -20% -25%; width: 70%; z-index: 0; }

/* --- type helpers -------------------------------------------------------- */
.eyebrow {
  font-weight: 900;
  /* floor at 14px: below that the kicker is unreadable on a phone */
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  display: block;
  color: var(--navy);
}
.h-mega { font-size: var(--t-mega); }
.h1     { font-size: var(--t-h1); }
.h2     { font-size: var(--t-h2); }
.h3     { font-size: var(--t-h3); }
.lead {
  font-size: var(--t-lead);
  font-weight: 300;
  line-height: 1.5;
  max-width: 56ch;
  margin-top: 1.5rem;
}
.body { max-width: 62ch; margin-top: 1.1rem; }
.mark { background: var(--lime); box-decoration-break: clone; -webkit-box-decoration-break: clone; padding: 0 .12em; }
.bg-lime .mark, .bg-lilach .mark { background: var(--paper); }

/* --- buttons ------------------------------------------------------------- */
.btn {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: inherit;
  font-weight: 900;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1;
  padding: 1.05rem 1.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  min-height: 52px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--navy); color: var(--paper); }
.btn--primary:hover { background: var(--ink); }

.btn--lime { background: var(--lime); color: var(--navy); }
.btn--lime:hover { background: var(--paper); }

.btn--ghost { background: transparent; color: currentColor; border-color: currentColor; }
.btn--ghost:hover { background: currentColor; }
.btn--ghost:hover .btn__t { color: var(--paper); }
.bg-navy .btn--ghost:hover .btn__t { color: var(--navy); }

.btn--sm { padding: .7rem 1.25rem; font-size: .95rem; min-height: 44px; }

/* ← ◆ ✕ are not in FB Jabutinski, so they were already coming from a system
   font by accident. Naming the stack makes that deliberate and consistent. */
.glyph, .btn__arrow, .sp__b > li > b:first-child, .close__l b, .ov__x {
  font-family: ui-sans-serif, system-ui, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
}
.btn__arrow { display: inline-block; transition: transform .18s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(-4px); }

.cta-pair { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.2rem; align-items: center; }
.cta-note { font-size: var(--t-small); opacity: .7; flex-basis: 100%; margin-top: -.2rem; }

/* --- header -------------------------------------------------------------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: box-shadow .2s var(--ease);
}
.hdr.is-stuck { box-shadow: 0 6px 24px rgba(0,0,0,.07); }
.hdr__in {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: .85rem;
}
.hdr__logo {
  display: flex; align-items: center; gap: .75rem;
  color: var(--navy); text-decoration: none;
  min-height: 44px;
}
.hdr__logo .logo { width: 104px; }
.hdr__tag {
  font-weight: 900; font-size: .95rem; letter-spacing: .1em;
  padding: .3rem .6rem; border-radius: 6px; background: var(--lime); color: var(--navy);
}
.hdr__cta { display: flex; gap: .6rem; align-items: center; }
@media (max-width: 640px) { .hdr__cta .btn--ghost { display: none; } .hdr__tag { display: none; } }

/* --- cards (brand-book pattern: media block + colour caption bar) --------- */
.cards { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
/* capped explicitly: auto-fit on a wide desktop produces four columns and
   leaves a two-card orphan row whenever the copy has six items */
.cards--3 { grid-template-columns: 1fr; }
.cards--2 { grid-template-columns: 1fr; }
@media (min-width: 620px) {
  .cards--3, .cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
/* exactly three cards: two columns would strand the third on its own row, so
   they stay stacked until all three fit side by side */
@media (min-width: 620px) and (max-width: 859px) {
  .cards--3.is-triple { grid-template-columns: 1fr; }
}
@media (min-width: 860px) {
  .cards--3.is-triple { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.card {
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--paper);
}
.card__media { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.card__cap { padding: 1.15rem 1.3rem 1.4rem; flex: 1; }
.card__en { font-weight: 900; font-size: .9rem; letter-spacing: .12em; opacity: .75; }
.card__t { font-weight: 900; font-size: var(--t-h3); line-height: 1.05; margin-top: .15rem; }
.card__x { font-weight: 300; margin-top: .55rem; line-height: 1.5; }

/* plain content tile */
.tile {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  padding: clamp(1.3rem, 2.4vw, 1.9rem);
  display: flex; flex-direction: column; gap: .6rem;
}
.bg-paper .tile { border-color: rgba(0,0,0,.14); }
.tile__n { font-weight: 900; font-size: 2.4rem; line-height: 1; color: var(--navy); }
.tile__t { font-weight: 900; font-size: var(--t-h3); line-height: 1.1; margin: 0; }
.tile__x { font-weight: 300; line-height: 1.55; }

/* --- stat / pain rows ---------------------------------------------------- */
.rows { display: grid; gap: 0; margin-top: 2.5rem; border-top: 2px solid currentColor; }
.row {
  display: grid; gap: .4rem 2rem; align-items: start;
  grid-template-columns: 1fr; padding-block: 1.5rem;
  border-bottom: 2px solid currentColor;
}
@media (min-width: 820px) { .row { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); } }
.row__t { font-weight: 900; font-size: var(--t-h3); line-height: 1.1; margin: 0; }
.row__x { font-weight: 300; line-height: 1.6; }

/* --- logo strip ---------------------------------------------------------- */
.logos {
  display: flex; flex-wrap: wrap; gap: .7rem 1.6rem;
  align-items: center; justify-content: center;
  margin-top: 1.6rem;
}
.logos span {
  font-weight: 900; font-size: clamp(1rem, 2vw, 1.5rem);
  opacity: .85; letter-spacing: -.01em;
}

/* --- marquee ------------------------------------------------------------- */
.marq { overflow: hidden; padding-block: 1rem; border-block: 2px solid currentColor; }
.marq__t {
  display: flex; gap: 2.5rem; width: max-content;
  animation: marq 34s linear infinite;
  font-weight: 900; font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  white-space: nowrap;
}
.marq:hover .marq__t { animation-play-state: paused; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(50%); } }

/* --- FAQ ----------------------------------------------------------------- */
.faq { margin-top: 2.2rem; border-top: 2px solid currentColor; }
.faq details { border-bottom: 2px solid currentColor; }
.faq summary {
  cursor: pointer; list-style: none;
  padding-block: 1.25rem; padding-inline-start: 2.4rem;
  font-weight: 900; font-size: var(--t-h3); line-height: 1.2;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: '+'; position: absolute; inset-inline-start: 0; top: 50%; translate: 0 -50%;
  font-size: 1.7rem; line-height: 1; transition: rotate .2s var(--ease);
}
.faq details[open] summary::before { rotate: 45deg; }
.faq__a { padding-inline-start: 2.4rem; padding-bottom: 1.4rem; font-weight: 300; line-height: 1.65; max-width: 70ch; }

/* --- sticky mobile CTA bar ----------------------------------------------- */
.dock {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 55;
  background: var(--navy); color: var(--paper);
  padding: .6rem max(var(--gut), env(safe-area-inset-right)) calc(.6rem + env(safe-area-inset-bottom)) max(var(--gut), env(safe-area-inset-left));
  display: flex; gap: .5rem; align-items: center;
  transform: translateY(110%);
  /* moving it off-screen is not enough: without this its buttons stay in the
     tab order and focus lands on something nobody can see */
  visibility: hidden;
  transition: transform .28s var(--ease), visibility .28s;
}
.dock.is-on { transform: translateY(0); visibility: visible; }
.dock .btn { flex: 1; padding-inline: 1rem; }
@media (min-width: 900px) { .dock { display: none; } }
@media (max-width: 899px) { body.has-dock { padding-bottom: var(--dock-h, 84px); } }

/* --- footer -------------------------------------------------------------- */
.ftr { background: var(--ink); color: var(--paper); padding-block: 2.5rem; }
.ftr__in { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; justify-content: space-between; }
.ftr .logo { width: 92px; color: var(--paper); }
.ftr a[href] { display: flex; align-items: center; min-height: 44px; }
.ftr a { text-decoration: none; opacity: .75; }
.ftr a:hover { opacity: 1; text-decoration: underline; }
.ftr small { opacity: .7; font-size: .875rem; }

/* --- hero ---------------------------------------------------------------- */
.hero { padding-block: clamp(3.5rem, 9vw, 7.5rem) clamp(3.5rem, 8vw, 6.5rem); }
/* a little more room so the clip is visible around the content, not just behind it */
.hero--video { padding-block: clamp(4rem, 10vw, 8.5rem) clamp(4rem, 9vw, 7.5rem); }
.hero--video .hero__b { max-width: 27rem; }
.hero .h-mega { max-width: 15ch; }
.hero .lead { font-size: clamp(1.15rem, 2.1vw, 1.55rem); }

/* --- client logo strip (auto-scrolling, purely decorative) ---------------- */
.lgs__lab {
  /* a heading for the tree, sized like a label */
  margin: 0;
  font-weight: 900; font-size: clamp(1rem, 1.75vw, 1.2rem);
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-55);
  text-align: center;
}
.lgs {
  display: flex; gap: 0; overflow: hidden; margin-top: 1.5rem;
  -webkit-mask-image: linear-gradient(to left, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to left, transparent, #000 8%, #000 92%, transparent);
}
.lgs__t {
  display: flex; align-items: center; gap: clamp(2rem, 5vw, 4.2rem);
  list-style: none; margin: 0; padding: 0 clamp(1rem, 2.5vw, 2.1rem);
  flex: none; animation: lgs 42s linear infinite;
}
.lgs:hover .lgs__t { animation-play-state: paused; }
@keyframes lgs { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.lgs img {
  height: clamp(30px, 4.5vw, 46px); width: auto; max-width: 150px;
  object-fit: contain; filter: grayscale(1); opacity: .62;
  transition: filter .2s var(--ease), opacity .2s var(--ease);
}
.lgs:hover img { filter: grayscale(0); opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .lgs__t, .marq__t { animation: none; }
  .lgs { overflow-x: auto; }
  .marq { overflow-x: auto; }
}

/* --- split (copy on one side, list on the other) ------------------------- */
.sp { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 900px) { .sp { grid-template-columns: 1fr 1fr; } }
.sp__b { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.15rem; }
.sp__b li { display: flex; gap: .9rem; align-items: flex-start; }
.sp__b > li > b:first-child { color: var(--lime); font-size: .95rem; margin-top: .4rem; flex: none; }
.bg-paper .sp__b > li > b:first-child, .bg-lime .sp__b > li > b:first-child,
.bg-aqua .sp__b > li > b:first-child { color: var(--navy); }
.sp__t { display: block; font-weight: 900; font-size: var(--t-h3); line-height: 1.15; margin: 0; }
.sp__x { display: block; font-weight: 300; line-height: 1.6; margin-top: .25rem; opacity: .88; }

/* --- numbered steps ------------------------------------------------------ */
.sts {
  list-style: none; margin: 2.6rem 0 0; padding: 0;
  display: grid; gap: 1.1rem;
  counter-reset: st;
}
/* columns follow the number of steps, so the last one never sits alone */
@media (min-width: 820px) { .sts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1060px) {
  .sts { grid-template-columns: repeat(var(--sts-cols, 4), minmax(0, 1fr)); gap: .85rem; }
  .st { padding: clamp(1.1rem, 1.8vw, 1.5rem); }
  .st__n { font-size: 1.8rem; }
}
.st {
  background: var(--paper); border-radius: var(--r-md);
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  display: flex; flex-direction: column; gap: .5rem;
}
.st__n {
  font-weight: 900; font-size: 2.6rem; line-height: 1; color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.st__t { font-weight: 900; font-size: var(--t-h3); line-height: 1.12; margin: 0; }
.st__x { font-weight: 300; line-height: 1.55; }
.st__m { font-weight: 700; font-size: var(--t-small); color: var(--navy); margin-top: auto; padding-top: .5rem; }

/* --- chips (systems we plug into) ---------------------------------------- */
.chips { list-style: none; margin: 2.2rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.chips li {
  border: 2px solid currentColor; border-radius: 999px;
  padding: .6rem 1.15rem; font-weight: 700; font-size: clamp(.95rem, 1.5vw, 1.05rem);
}

/* --- comparison ---------------------------------------------------------- */
.cmp { display: grid; gap: 1rem; margin-top: 2.6rem; }
@media (min-width: 820px) { .cmp { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .cmp { grid-template-columns: repeat(var(--cmp-cols, 4), minmax(0, 1fr)); } }
.cmp__c {
  background: rgba(255,255,255,.62); border-radius: var(--r-md);
  padding: clamp(1.3rem, 2.4vw, 1.8rem); display: flex; flex-direction: column; gap: .6rem;
}
.cmp__c.is-us { background: var(--navy); color: var(--paper); }
.cmp__h { font-weight: 900; font-size: var(--t-h3); line-height: 1.12; text-wrap: balance; margin: 0; }
.cmp__x { font-weight: 300; line-height: 1.6; }

/* --- closing block ------------------------------------------------------- */
.close .h2 { max-width: 20ch; margin-inline: auto; }
.close .lead { margin-inline: auto; }
.close__l {
  list-style: none; margin: 2.2rem auto 0; padding: 0;
  display: grid; gap: .8rem; max-width: 44rem; text-align: start;
}
.close__l li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 300; line-height: 1.55; }
.close__l b { color: var(--lime); flex: none; }

/* --- section header: headline right, intro left on wide screens ---------- */
.hd { display: grid; gap: 1.2rem clamp(2rem, 5vw, 4rem); align-items: end; }
@media (min-width: 940px) {
  .hd { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
  .hd__x { padding-bottom: .35rem; }
  .hd .lead, .hd .body { margin-top: 0; max-width: none; }
  .hd .body + .lead, .hd .lead + .body { margin-top: 1rem; }
}

/* a full-sentence kicker reads at body size, not as micro-caps */
.kicker {
  text-wrap: pretty;
  font-weight: 700;
  font-size: clamp(1.15rem, 1.95vw, 1.4rem);
  line-height: 1.45;
  max-width: 46ch;
  margin-bottom: 1.1rem;
  color: var(--navy);
}
/* navy on purple is 4.35:1 and on lilach 4.20:1, both under AA for text this
   size. Black clears 9.5:1 on both. */
.bg-navy .kicker { color: var(--lime); }
.bg-lime .kicker { color: var(--navy); }
.bg-lilach .kicker, .bg-purple .kicker, .bg-lilach .eyebrow, .bg-purple .eyebrow { color: var(--ink); }

/* footer line inside a tile / step / comparison column */
.tile__m, .cmp__m {
  font-weight: 700; font-size: var(--t-small); line-height: 1.45;
  margin-top: auto; padding-top: .9rem;
  border-top: 1px solid rgba(0,0,0,.12);
  color: var(--navy);
}
.bg-lilach .cmp__m, .bg-purple .cmp__m { color: var(--ink); }
.cmp__c.is-us .cmp__m { color: var(--lime); border-top-color: rgba(255,255,255,.24); }
.st__n {
  font-weight: 900; font-size: 2.2rem; line-height: 1;
  color: var(--navy); opacity: .55; font-variant-numeric: tabular-nums;
}

/* WhatsApp button: hidden until a number is set in config.js */
.btn--wa[hidden] { display: none; }
@media (max-width: 860px) { .hdr__cta .btn--wa { display: none; } }

/* --- inline conversion band --------------------------------------------- */
.band { border-block: 2px solid var(--navy); }
.band__in { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; }
.band__t { font-weight: 900; font-size: var(--t-h3); line-height: 1.15; max-width: 30ch; }
.band .cta-pair { margin-top: 0; }

/* leading label inside a before/after block */
.lbl {
  /* uppercase and wide tracking do nothing for Hebrew, and .78rem computed to
     12.5px, under the readable floor */
  display: block; font-weight: 900; font-size: .875rem;
  letter-spacing: .02em;
  color: var(--navy); margin-bottom: .3rem;
}
.tile__m .lbl { color: inherit; opacity: .8; }
.seg { display: block; }
.seg + .seg { margin-top: .9rem; padding-top: .9rem; border-top: 1px dashed rgba(0,0,0,.18); }

/* --- single-stat argument block ----------------------------------------- */
.stat__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 960px) { .stat__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); } }
.stat__col { display: grid; gap: 1.2rem; }
.stat {
  margin: 0; padding: clamp(1.4rem, 2.6vw, 2rem);
  border: 2px solid currentColor; border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: .5rem;
}
.stat__n { font-weight: 900; font-size: clamp(2.6rem, 6.5vw, 4.2rem); line-height: .95; letter-spacing: -.02em; }
.bg-navy .stat__n { color: var(--lime); }
.stat__x { font-weight: 300; line-height: 1.55; }
.stat__s {
  font-weight: 700; font-size: var(--t-small); letter-spacing: .08em;
  text-transform: uppercase; opacity: .72; padding-top: .5rem;
}

/* --- system groups ------------------------------------------------------- */
.cgs { display: grid; gap: clamp(1.6rem, 3vw, 2.4rem); margin-top: 2.6rem; }
@media (min-width: 760px) { .cgs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.cg__t { font-size: 1.05rem; font-weight: 900; letter-spacing: .04em; color: var(--navy); }
.cg .chips { margin-top: .9rem; }
.cg .chips li { border-width: 1px; border-color: rgba(0,0,0,.22); font-weight: 700; font-size: .95rem; padding: .45rem .95rem; }

/* --- hero, two columns --------------------------------------------------- */
.hero__in { display: grid; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 980px) { .hero__in { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); } }
.hero .h-mega {
  /* capped below the global mega scale: three lines of 120px type push both
     CTAs off a 13 inch screen */
  font-size: clamp(2.9rem, 6.4vw, 5.4rem);
  max-width: 14ch;
}
.hero .lead { font-size: clamp(1.2rem, 2.05vw, 1.55rem); margin-top: 1.4rem; max-width: 46ch; }
.hero__b {
  background: rgba(255, 255, 255, .72);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  backdrop-filter: blur(2px);
}
.hero__note { font-weight: 300; line-height: 1.6; }
.hero__b .cta-pair { margin-top: 1.5rem; flex-direction: column; align-items: stretch; }
.hero__b .cta-pair .btn { width: 100%; }
.hero__b .cta-note { margin-top: .2rem; }

/* label / value rows inside a comparison column */
.dl { margin: .4rem 0 0; display: grid; gap: .75rem; }
.dl dt {
  /* uppercase does nothing to Hebrew and .74rem computed to 11.8px, which is
     too small for a table people are meant to compare across */
  font-weight: 900; font-size: .875rem; letter-spacing: .02em;
  color: var(--navy); opacity: .85;
}
.dl dd { margin: .15rem 0 0; font-weight: 300; line-height: 1.5; }
.cmp__c.is-us .dl dt { color: var(--lime); opacity: 1; }
.dl dt + dd { border-bottom: 1px solid rgba(0,0,0,.10); padding-bottom: .75rem; }
.dl dt:last-of-type + dd { border-bottom: 0; padding-bottom: 0; }
.cmp__c.is-us .dl dt + dd { border-bottom-color: rgba(255,255,255,.18); }

/* a one-letter Hebrew prefix stays glued to the Latin word it introduces */
.nb { white-space: nowrap; }

/* --- video hero ---------------------------------------------------------- */
.hero--video { background: var(--navy); color: var(--paper); isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__poster, .hero__vid {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
/* the video fades in over the poster, so there is never an empty frame */
.hero__vid { opacity: 0; transition: opacity .6s var(--ease); }
.hero__vid.is-on { opacity: 1; }
/* Measured, not guessed: the brightest pixels in the clip are the white "AI"
   mark and the lime wordmark. White text needs ~.78 navy over those to clear
   4.5:1, so the scrim is heavy only under the text column and lets the rest of
   the frame stay vivid. */
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(
    to left,
    rgba(42, 67, 140, .86) 0%,
    rgba(42, 67, 140, .80) 30%,
    rgba(42, 67, 140, .52) 58%,
    rgba(42, 67, 140, .26) 100%
  );
}
@media (max-width: 979px) {
  /* one column, text over the whole frame, so the floor applies everywhere */
  .hero__scrim { background: rgba(42, 67, 140, .82); }
}

.hero--video .kicker { color: var(--lime); }
.hero--video .h-mega, .hero--video .lead { color: var(--paper); }
.hero--video .lead { opacity: .95; }

/* the CTA card sits on moving artwork, so it stays opaque rather than tinted */
.hero--video .hero__b {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}
.hero--video .hero__note { color: var(--ink-70); }
.hero--video .btn--ghost { color: var(--navy); border-color: var(--navy); }
.hero--video .btn--ghost:hover .btn__t { color: var(--paper); }
