/* ============================================================================
   Latent · homepage + platform page
   Built from Figma "website-for-claude" (P3TpoHqKoiynhdfppu43N2, 9 Sep 2026)
   and the Basement explorations build (mined in brand/mine-2026-09-09/).
   Loads after brand-v2/assets/fonts.css (licensed FK Grotesk + Berkeley Mono). Consumes the brand faces, declares its own
   page tokens because this page has its own measured palette from the Figma.
   No em dashes anywhere. Values are px at the 1920 design frame unless noted.
   ========================================================================= */

:root {
  /* Figma variables (verbatim) */
  --off-white: #FAFAFA;
  --white-smoke: #F5F5F5;
  --platinum: #EBEBEB;
  --taupe: #57505C;
  --warm-taupe: #A8A298;
  --shadow: #342F37;
  --onyx: #131215;
  --deep-black: #0A0A0A;
  --black: #000000;
  --ink: #121212;
  --mauve: #C0A1FF;
  --pale: #D6C2FF;
  --slate: #7262B7;
  --haze: #7783A6;
  --dusk: #BCBFD3;
  --lavender: #CAC2F2;
  --light-lavender: #E2DFFF;
  --muted-purple: #3A3360;
  --approval: #665C6D;
  --grey-80: #808080;
  --grey-9a: #9A9A9A;
  --grey-8c: #8C8C8C;
  --border: #333333;
  --chip: #1F1F1F;
  --f-head: #585858;
  --f-link: #E1E1E1;
  --f-copy: #636363;
  --f-legal: #CACACA;
  --f-badge: #B8B8B8;
  --eyebrow-dark: #D9D9D9;
  --card-border: #C6C6C6;
  --zoom-tag: #3D3A39;

  --grad: linear-gradient(90deg, #7262B7 0%, #D6C2FF 100%);

  /* faces (from brand-v2/assets/fonts.css, one weight: FK Grotesk Regular) */
  --sans: "FK Grotesk", "Host Grotesk", "Helvetica Neue", Arial, sans-serif;
  --mono: "Berkeley Mono", "FK Grotesk Mono", ui-monospace, Menlo, monospace;

  /* the 1920 frame: Figma content field is 1741 wide (89.5 margins). Sections lay out at Figma
     size and are zoomed by --k so the field lands on the shared 1300 column (js sets --k). */
  --field: 1741px;
  --k: 0.7467;
  --m: var(--v2-space-24);                        /* inset from the field edge, same as the shared nav and footer */
  --wrap-max: var(--v2-field-max);                /* the shared 1300 field the nav and footer sit on */
  --col-edge: calc((100% - var(--field)) / 2);    /* gutter outside the column, in zoomed space */
  --px: 1px;
  --vw: calc(100vw / var(--k));                   /* viewport units inside the zoomed sections */
  --vh: calc(100vh / var(--k));

  /* type scale, Figma text styles (scaled by --k) */
  --h1: 61px;                                     /* Hero, lh 1, tr -2.1 */
  --h2: 48px;                                     /* H1 style, lh 48, tr -1.44 */
  --s1: 36px;                                     /* S1 36/40 */
  --s2: 28px;                                     /* S2 28/31 */
  --s3: 24px;                                     /* S3 24/26 */
  --up: calc(1 / var(--k));                       /* undo the zoom: secondary type and buttons read at the site's size */
  --hair: calc(1px * var(--up));                  /* 1px on the page after the section zoom */
  --p1: calc(var(--v2-p1) * var(--up));           /* P1, at the shared site size */
  --p2: calc(var(--v2-p2) * var(--up));           /* P2 */
  --l1: calc(var(--v2-mono-l1) * var(--up));      /* L1 mono */
  --l2: calc(12px * var(--up));                   /* L2 mono */
  --display: 120px;                               /* Display 120/100 */
  --quote: 62px;                                  /* 62/1 */
  --video-h: 72px;                                /* 72/75 */

  --ease: cubic-bezier(.25, 1, .5, 1);            /* the house ease */
  --ease-flip: cubic-bezier(.76, 0, .24, 1);
  --ease-fold: cubic-bezier(.4, 0, .22, 1);
  --ease-out: cubic-bezier(.23, 1, .32, 1);

  --grain-160: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23g)'/%3E%3C/svg%3E");
  --grain-page: 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.5' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Custom properties skip the invalid-value fallback, so the small-viewport unit needs a feature query.
   It keeps the pinned sections inside the visible area while iOS Safari shows its toolbars. */
@supports (height: 100svh) {
  :root { --vh: calc(100svh / var(--k)); }
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--deep-black);
  background: var(--onyx);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  font-synthesis-weight: none;
}
h1, h2, h3, h4, p, ul, figure, blockquote { margin: 0; }
h1, h2, h3, h4, h5, h6, b, strong { font-weight: 400; }
ul { padding: 0; list-style: none; }
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid #8E83F3; outline-offset: 3px; }
::selection { background: var(--mauve); color: var(--onyx); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* the left margin hairline that runs the whole page (Figma "Vector 3072") */
.rails { pointer-events: none; position: fixed; inset: 0; z-index: 15; mix-blend-mode: difference; --edge: calc((100% - min(100% - 2 * var(--v2-grid-margin), var(--v2-field-max))) / 2); }
.rails::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: var(--edge); width: 1px;
  background: rgba(255, 255, 255, .13);
}

/* page grain plate, the light-ground version */
.grain-page { position: relative; isolation: isolate; }
.grain-page::after {
  content: ""; pointer-events: none; position: absolute; inset: 0; z-index: 1;
  background-image: var(--grain-page); background-size: 160px 160px;
  mix-blend-mode: overlay; opacity: .4;
}
.grain-dark { position: relative; isolation: isolate; }
.grain-dark::after {
  content: ""; pointer-events: none; position: absolute; inset: 0; z-index: 1;
  background-image: var(--grain-160); background-size: 160px 160px;
  mix-blend-mode: overlay; opacity: .55;
}
.grain-page > *, .grain-dark > * { position: relative; z-index: 2; }

/* --------------------------------------------------------------- type kit */
/* eyebrow = the shared .ltv2-eyebrow (mono XS, 0.06em tracking, Taupe on light / Pale on dark, Mauve dot), undoing the section zoom */
.eyebrow {
  display: inline-flex; align-items: center; gap: calc(var(--v2-space-8) * var(--up));
  font-family: var(--v2-font-mono); font-size: calc(var(--v2-text-xs) * var(--up)); line-height: var(--v2-mono-l2-lh);
  text-transform: uppercase; letter-spacing: var(--v2-tracking-mono); color: var(--v2-text-secondary);
}
.eyebrow::before { content: ""; width: calc(var(--v2-dot-size) * var(--up)); height: calc(var(--v2-dot-size) * var(--up)); border-radius: 50%; background: var(--v2-accent); flex: none; }
.on-dark .eyebrow { color: var(--v2-accent-soft); }

.h2 { font-size: var(--h2); line-height: 1; letter-spacing: -.03em; color: var(--black); }
.on-dark .h2 { color: var(--off-white); }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.s1 { font-size: var(--s1); line-height: 1.11; letter-spacing: -.02em; }
.s2 { font-size: var(--s2); line-height: 1.107; letter-spacing: -.02em; }
.s3 { font-size: var(--s3); line-height: 1.0833; letter-spacing: -.02em; }
.p1 { font-size: var(--p1); line-height: 1.222; letter-spacing: -.02em; }
.p2 { font-size: var(--p2); line-height: 1.125; letter-spacing: -.02em; }
.mono { font-family: var(--mono); letter-spacing: 0; }
.l1 { font-family: var(--mono); font-size: var(--l1); line-height: 1.1875; text-transform: uppercase; }
.l2 { font-family: var(--mono); font-size: var(--l2); line-height: 1.1667; text-transform: uppercase; }
.num { font-variant-numeric: tabular-nums; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: calc(var(--v2-cta-height) * var(--up)); padding: 0 calc(var(--v2-cta-pad) * var(--up)); border-radius: 4px;
  font-family: var(--mono); font-size: calc(var(--v2-mono-l2) * var(--up)); line-height: 1; text-transform: uppercase;
  white-space: nowrap; border: var(--hair) solid var(--shadow);
  transition: transform .16s var(--ease-out), background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: scale(.97); }
.btn svg { width: calc(9px * var(--up)); height: calc(9px * var(--up)); flex: none; }
.btn--light { background: var(--off-white); color: var(--deep-black); }
.btn--dark { background: var(--deep-black); color: var(--off-white); }
.btn--ghost { background: transparent; color: var(--off-white); border-color: var(--platinum); }
.btn--white { background: var(--off-white); color: var(--deep-black); }
@media (hover: hover) and (pointer: fine) {
  .btn--light:hover { background: var(--white-smoke); }
  .btn--dark:hover { background: var(--onyx); border-color: var(--taupe); }
  .btn--ghost:hover { background: rgba(255,255,255,.06); }
  .btn--white:hover { background: var(--white-smoke); }
}
/* label roller (Basement flip-host) */
.btn .roll { display: grid; overflow: hidden; perspective: 140px; }
.btn .roll > span { grid-area: 1 / 1; transition: transform .35s var(--ease-flip), opacity .35s var(--ease-flip); }
.btn .roll > span:nth-child(2) { transform: translateY(100%); opacity: 0; }
@media (hover: hover) and (pointer: fine) {
  .btn:hover .roll > span:first-child { transform: translateY(-100%); opacity: 0; }
  .btn:hover .roll > span:nth-child(2) { transform: translateY(0); opacity: 1; }
}

/* ---------------------------------------------------------------- reveal */
/* One-shot, gated by data-reveal (IntersectionObserver adds .is-in on the host). */
[data-reveal] { --rp: paused; }
[data-reveal].is-in { --rp: running; }
.rv {
  animation: reveal-blur var(--rd, .5s) var(--ease) var(--rdl, 0s) both;
  animation-play-state: var(--rp, running);
}
@keyframes reveal-blur {
  0% { filter: blur(var(--rb, .25em)); opacity: 0; transform: translateY(var(--ry, 0)); }
  100% { filter: blur(0); opacity: var(--rto, 1); transform: translateY(0); }
}
/* ink bleed line (goo) */
@property --goo-blur { syntax: "<length>"; inherits: false; initial-value: 50px; }
@keyframes goo-in { 0% { --goo-blur: var(--goo-from, .78em); } 100% { --goo-blur: 0px; } }
@keyframes goo-settle { 100% { filter: none; } }
.goo {
  display: block;
  filter: blur(var(--goo-blur)) url(#goo);
  animation: goo-in 1.2s var(--ease) var(--gd, 0s) both, goo-settle 0s linear calc(var(--gd, 0s) + 1.2s) forwards;
  animation-play-state: var(--rp, running);
}
/* phones: the reveal rises without the blur, which is a full-layer filter per element on mobile GPUs;
   the headline takes the same rise instead of the ink bleed, so it is readable before the copy under it */
@media (max-width: 720px) {
  @keyframes reveal-blur {
    0% { opacity: 0; transform: translateY(var(--ry, 10px)); }
    100% { opacity: var(--rto, 1); transform: translateY(0); }
  }
  .goo { filter: none; animation: reveal-blur .5s var(--ease) var(--gd, 0s) both; animation-play-state: var(--rp, running); }
}
@media (prefers-reduced-motion: reduce) {
  .rv { animation: reveal-fade .3s ease both; }
  @keyframes reveal-fade { from { opacity: 0; } to { opacity: var(--rto, 1); } }
  .goo { filter: none; animation: none; }
}

/* ============================================================== SECTIONS */
.section { position: relative; width: 100%; overflow: clip; }
/* every Figma section carries the same inner edge: a 2px white lip and a 40px vignette */
.section::before { content: ""; pointer-events: none; position: absolute; inset: 0; z-index: 3; box-shadow: inset 0 0 2px rgba(255,255,255,.7), inset 0 0 40px rgba(0,0,0,.15); }
.section { zoom: var(--k); }
/* iOS and iPadOS Safari undo CSS zoom on font-size unless text-size-adjust is none */
.section { -webkit-text-size-adjust: none; }
.wrap { position: relative; box-sizing: border-box; width: var(--field); margin-inline: auto; padding-inline: var(--m); }
@media (max-width: 1100px) {
  :root {
    --col-edge: calc((100% - min(100% - 2 * var(--v2-grid-margin), var(--wrap-max))) / 2);
    --h1: clamp(38px, 5.5vw, 48px); --h2: clamp(30px, 4.4vw, 48px); --s1: clamp(26px, 3.3vw, 36px); --s2: clamp(22px, 2.6vw, 28px);
    --up: 1; --s3: clamp(18px, 2.2vw, 24px); --p1: clamp(16px, 1.7vw, 18px); --display: clamp(64px, 11vw, 120px); --quote: clamp(36px, 5.7vw, 62px); --video-h: clamp(36px, 6.6vw, 72px);
  }
  .section { zoom: 1; }
  .wrap { width: min(100% - 2 * var(--v2-grid-margin), var(--wrap-max)); }
}

/* ============================================================== HERO */
.hero { background: var(--black); color: var(--off-white); min-height: 1000px; height: max(var(--vh), 800px); max-height: 1100px; }
.hero .wrap { height: 100%; }
.hero__copy { position: absolute; left: var(--m); top: 130.76px; width: min(906px, calc(52 * var(--vw) / 100)); display: flex; flex-direction: column; gap: 24px; z-index: 5; }
.hero__h1 { font-size: var(--h1); line-height: 1; letter-spacing: -.0344em; color: var(--off-white); }
.hero__h1 .grad { display: inline-block; }
.hero__sub { font-size: var(--p2); line-height: 1.125; letter-spacing: -.02em; opacity: .7; max-width: 594px; }
.hero__actions { display: flex; gap: 8.36px; }

/* bokeh discs: absolute, sized from Figma, gently drifting */
.hero__disc { position: absolute; pointer-events: none; will-change: transform; opacity: .9; }
.hero__disc img { width: 100%; height: 100%; }

/* the collage stage: 745 x 712 at (50% + 12px, 121px) */
.hero__stage {
  position: absolute; left: calc(50% + 12px); top: 121px;
  width: min(745px, calc(42 * var(--vw) / 100)); aspect-ratio: 745 / 712;
  container-type: inline-size;
  z-index: 4;
}
.card { position: absolute; will-change: transform; transform-origin: 50% 60%; }
.card > img { width: 100%; height: 100%; object-fit: cover; }
.card--in { animation: card-land 1.1s var(--ease) var(--cd, 0s) both; }
@keyframes card-land {
  0% { opacity: 0; transform: translate3d(0, 6cqw, 0) rotate(calc(var(--rot, 0deg) - 4deg)) scale(.96); filter: blur(6px); }
  60% { filter: blur(0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(var(--rot, 0deg)) scale(1); filter: blur(0); }
}
.card--brain { left: 36.68cqw; top: 8.18cqw; width: 55.39cqw; aspect-ratio: 412.627 / 351.87; border: var(--hair) solid #303030; overflow: hidden; }
.card--brain img { object-position: bottom; }
.card--brain::after { content: ""; position: absolute; inset: 0; background: var(--dusk); mix-blend-mode: hue; }
.card--polaroid { left: 14.37cqw; top: 13.43cqw; width: 30.5cqw; aspect-ratio: 227.259 / 311.83; border-radius: 4.8px; overflow: hidden; --rot: 0deg; }
.card--form { left: 28.6cqw; top: 16.97cqw; width: 60.65cqw; aspect-ratio: 451.862 / 528.944; --rot: 0deg; }
.card--form img { object-fit: contain; filter: drop-shadow(0 6px 18px rgba(0,0,0,.35)); }
.card--scan {
  left: 19.46cqw; top: 38.55cqw; width: 25.61cqw; aspect-ratio: 190.81 / 286.706;
  background: var(--haze); color: rgba(0,0,0,.85); --rot: 0deg;
  container-type: inline-size; overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.25), inset 0 0 2px 1px rgba(255,255,255,.35);
}
.card--scan .scan__label { position: absolute; font-family: var(--mono); font-size: 2.75cqw; line-height: 1; white-space: nowrap; text-shadow: 0 0 .94px rgba(0,0,0,.6); }
.card--scan .scan__grid { position: absolute; left: 16.8cqw; top: 45.1cqw; width: 65.05cqw; aspect-ratio: 1; }
.card--scan .scan__dots { position: absolute; left: 21.05cqw; top: 49cqw; width: 57.8cqw; aspect-ratio: 110.297 / 116.515; }
.card--scan .scan__axis { position: absolute; left: 16.8cqw; top: 116.7cqw; display: flex; gap: 8.35cqw; font-family: var(--mono); font-size: 3.7cqw; line-height: 1; }
.card--scan .scan__hex { position: absolute; left: 46.2cqw; top: 8.2cqw; width: 12.8cqw; aspect-ratio: 24.377 / 29.546; }
.card--scan .scan__blob { position: absolute; left: 17.4cqw; top: 25.1cqw; width: 5.35cqw; aspect-ratio: 1; }
.card--recovery { left: 56.78cqw; top: 47.37cqw; width: 33.79cqw; aspect-ratio: 251.745 / 331.501; --rot: 0deg; container-type: inline-size; }
.card--recovery img { border-radius: 4.87px; }
.card--recovery .rec__name { position: absolute; left: 6.33cqw; bottom: 16.7cqw; font-family: var(--mono); font-size: 4.77cqw; line-height: 1.17; text-transform: uppercase; color: var(--shadow); }
.card--recovery .rec__script { position: absolute; left: 45.8cqw; bottom: 3.6cqw; width: 48.7cqw; font-family: "League Script", "Snell Roundhand", "Apple Chancery", cursive; font-size: 5.7cqw; line-height: 1.167; color: var(--onyx); transform: rotate(-3.02deg); white-space: nowrap; }
.card--dots {
  left: 82.55cqw; top: 41.6cqw; width: 15.86cqw; aspect-ratio: 1; --rot: .7deg;
  background: rgba(188, 191, 211, .74); -webkit-backdrop-filter: blur(.72px); backdrop-filter: blur(.72px);
  border-radius: 1px; box-shadow: 0 .887px 2.66px rgba(0,0,0,.2);
  container-type: inline-size; overflow: hidden;
}
.card--dots .dots__mark { position: absolute; left: 4.1cqw; bottom: 4.6cqw; width: 24.6cqw; }
.card--dots .dots__url { position: absolute; right: 4cqw; bottom: 4.4cqw; font-size: 2.63cqw; line-height: 1.1; color: var(--onyx); }
.card--dots .dots__art { position: absolute; left: 50%; top: 55%; width: 78.8cqw; transform: translate(-45%, -50%) scaleY(-1) rotate(134.33deg); }
.card--cluster { left: 12.9cqw; top: 41.5cqw; width: 22.02cqw; aspect-ratio: 164.057 / 132.503; --rot: 0deg; pointer-events: none; }
.card--cluster img { object-fit: contain; }

/* partner marquee: four copies of the set, one set per cycle; --marquee-start (set by site.js)
   places the lead logo at the centre on land */
.marquee {
  position: absolute; left: calc(50% - calc(50 * var(--vw) / 100)); right: calc(50% - calc(50 * var(--vw) / 100)); bottom: 13px; height: 70px; z-index: 3;
  overflow: hidden; opacity: .5;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.marquee__track { display: flex; height: 100%; width: max-content; transform: translate3d(var(--marquee-start, 0px), 0, 0); animation: marquee 48s linear infinite; }
.marquee__set { display: flex; align-items: center; height: 100%; }
.marquee__set > * { flex: none; padding: 0 30px; height: 53.79px; display: grid; place-items: center; }
.marquee__track img { width: auto; }
.marquee__track img.marquee__raster { filter: brightness(0) invert(1); }
@keyframes marquee { to { transform: translate3d(calc(var(--marquee-start, 0px) - 25%), 0, 0); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================== MISSION */
.mission { background: var(--off-white); color: var(--black); }
.mission__scroll { position: relative; height: calc(640 * var(--vh) / 100); }
.mission__sticky { position: sticky; top: 0; height: var(--vh); overflow: clip; }
.mission__frame { position: relative; height: 100%; max-width: 1920px; margin-inline: auto; padding: 0 var(--m); }
.mission__copy { position: absolute; left: var(--m); top: max(48px, calc(6.5 * var(--vh) / 100)); width: min(595px, calc(34 * var(--vw) / 100)); display: flex; flex-direction: column; gap: 24px; z-index: 3; }
.mission__copy .h2 { white-space: normal; }
.mission__lede { font-size: var(--s3); line-height: 1.0833; letter-spacing: -.02em; color: var(--taupe); opacity: .7; max-width: 595px; }

.mission__stage {
  position: absolute; right: var(--m); top: max(48px, calc(6.5 * var(--vh) / 100));
  width: min(908px, calc(47.3 * var(--vw) / 100), calc((var(--vh) - calc(13 * var(--vh) / 100)) * 908 / 795));
  aspect-ratio: 908 / 795; container-type: inline-size;
  background: var(--platinum); border-radius: 1.888px;
  box-shadow: 0 .796px 3.183px rgba(0,0,0,.25), inset 0 0 1.592px .796px rgba(255,255,255,.2);
  overflow: clip;
}
.mission__stage::after { content: ""; position: absolute; inset: 0; background-image: var(--grain-160); background-size: 160px; mix-blend-mode: difference; opacity: .05; pointer-events: none; }
.plate { position: absolute; left: 2.79cqw; right: 2.79cqw; top: 3.3cqw; height: 75.3cqw; }
.plate__lines { position: absolute; left: 50%; top: 50%; width: 90.3cqw; transform: translate(-50%, -46%) rotate(180deg); opacity: .2; pointer-events: none; }
.plate__circle { position: absolute; left: 19.12cqw; top: 7.03cqw; width: 61cqw; aspect-ratio: 1; border-radius: 50%; background: rgba(250,250,250,.9); box-shadow: 0 0 0 .75px rgba(19,18,21,.08); }
.plate__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.plate__axis-x { position: absolute; left: 5.9cqw; top: 69.7cqw; display: flex; gap: 10.35cqw; font-family: var(--mono); font-size: 1.515cqw; letter-spacing: -.02em; color: var(--grey-80); text-transform: uppercase; }
.plate__axis-y { position: absolute; left: 3.85cqw; top: 6.6cqw; display: flex; flex-direction: column; gap: 8.9cqw; font-family: var(--mono); font-size: 1.515cqw; letter-spacing: -.02em; color: var(--grey-80); }
.plate__risk { position: absolute; top: 36.4cqw; font-family: var(--mono); font-size: 1.318cqw; letter-spacing: -.02em; text-transform: uppercase; color: var(--onyx); white-space: nowrap; }
.plate__risk--l { left: -1.6cqw; transform: rotate(-90deg); }
.plate__risk--r { right: -1.6cqw; transform: rotate(90deg); }
.plate__ghost { position: absolute; left: 19.8cqw; top: 7.4cqw; font-family: var(--mono); font-size: .88cqw; line-height: 1.6; color: #AEAEAE; white-space: pre; }
.legend {
  position: absolute; left: 6.95cqw; top: 55.4cqw; width: 15.97cqw; padding: 1.65cqw 1.2cqw 1.4cqw 1.1cqw;
  background: rgba(255,255,255,.61); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); border-radius: 1.888px;
  box-shadow: 0 .796px 3.183px rgba(0,0,0,.25), inset 0 0 1.592px rgba(255,255,255,.2);
  display: flex; flex-direction: column; gap: .98cqw;
}
.legend div { display: flex; align-items: center; gap: .77cqw; font-family: var(--mono); font-size: 1.32cqw; line-height: 1.17; text-transform: uppercase; color: var(--grey-80); white-space: nowrap; }
.legend i { flex: none; width: 1.43cqw; height: 1.43cqw; border-radius: 50%; background: #6b6b6b; }
.legend i.s2 { transform: scale(.7); }
.legend i.s3 { transform: scale(.48); }
.legend i.flag { background: var(--mauve); transform: scale(.6); }
.plate__foot { position: absolute; left: 2.79cqw; right: 2.79cqw; bottom: 3.9cqw; display: flex; align-items: flex-end; justify-content: space-between; }
.plate__mark { width: 2.92cqw; }
.plate__fig { position: absolute; left: 50%; transform: translateX(-50%); bottom: .2cqw; font-family: var(--mono); font-size: 1.1cqw; letter-spacing: .06em; color: var(--grey-80); text-transform: uppercase; }
.pager { display: flex; gap: .88cqw; }
.pager i { width: 1.9cqw; height: 1.9cqw; border-radius: 50%; border: var(--hair) solid #1e1e1e; background: transparent; transition: background .35s var(--ease), border-color .35s var(--ease); }
.pager i.on { background: var(--slate); border-color: var(--slate); }

/* the step card, riding the stage's bottom-left */
.stepcard {
  position: absolute; left: calc(var(--m) + 46.6cqw); top: 0; /* set by JS to stage coords */
  width: 441px; height: 311px; z-index: 4;
  background: var(--white-smoke); border-radius: 1.888px;
  box-shadow: 0 .796px 3.183px rgba(0,0,0,.29), inset 0 0 1.592px .796px rgba(255,255,255,.2);
  padding: 24px; overflow: hidden;
}
.stepcard::after { content: ""; position: absolute; inset: 0; background-image: var(--grain-160); background-size: 160px; mix-blend-mode: difference; opacity: .05; pointer-events: none; }
.stepcard__title { font-size: 28px; line-height: 31px; letter-spacing: -.02em; color: var(--black); display: flex; align-items: baseline; gap: .3em; }
.stepcard__title .arrow { display: inline-block; transition: transform .35s var(--ease); }
.stepcard__line { margin-top: 16px; font-size: 24px; line-height: 26px; letter-spacing: -.02em; color: var(--taupe); opacity: .7; max-width: 366px; min-height: 52px; }
.stepcard__list { position: absolute; left: 24px; right: 24px; bottom: 24px; display: flex; flex-direction: column; gap: 24px; }
.stepcard__list li { display: flex; align-items: center; justify-content: space-between; font-size: 24px; line-height: 26px; letter-spacing: -.02em; color: var(--grey-9a); }
.stepcard__list li span:last-child { font-family: var(--mono); font-size: 16px; line-height: 19px; color: var(--grey-8c); }
.stepcard__list li.on { color: var(--black); }
.stepcard .sw { display: inline-block; transition: opacity .3s var(--ease), transform .3s var(--ease), filter .3s var(--ease); }
.stepcard .sw.out { opacity: 0; transform: translateY(6px); filter: blur(3px); }

@media (max-width: 1100px) {
  .mission__scroll { height: auto; }
  .mission__sticky { position: relative; height: auto; }
  .mission__frame { display: flex; flex-direction: column; gap: 32px; padding-block: 64px; }
  .mission__copy, .mission__stage { position: relative; left: auto; right: auto; top: auto; width: 100%; }
  .stepcard { position: relative; left: auto; top: auto !important; width: 100%; height: auto; }
  .stepcard__list { position: relative; left: 0; right: 0; bottom: 0; margin-top: 32px; }
}

/* ============================================================== OUTCOMES */
.outcomes { background: var(--black); color: var(--off-white); padding: 60px 0 100px; }
.outcomes .wrap { display: grid; grid-template-columns: minmax(0, 754fr) minmax(0, 940fr); gap: 153px; align-items: start; }
.outcomes__lead { display: flex; flex-direction: column; gap: 24px; }
.outcomes__lead .h2 { max-width: 754px; }
.outcomes__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 24px; padding-left: 26px; }
.ocard {
  position: relative; container-type: inline-size; aspect-ratio: 442.01 / 500; border-radius: 2px; overflow: hidden;
  transition: background-color .5s cubic-bezier(0,0,.2,1);
}
.ocard::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background-image: var(--grain-160); background-size: 160px; mix-blend-mode: screen; opacity: 0; transition: opacity .5s cubic-bezier(0,0,.2,1); pointer-events: none; }
.ocard::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 .796px 3.183px rgba(0,0,0,.29), inset 0 0 1.592px .796px rgba(255,255,255,.2); opacity: 0; transition: opacity .5s cubic-bezier(0,0,.2,1); pointer-events: none; }
.ocard__in { position: absolute; inset: 0; display: flex; flex-direction: column; padding: 5.43cqw; gap: 5.43cqw; }
.ocard__top { display: flex; flex-direction: column; gap: 16.289cqw; }
.ocard .eyebrow { font-size: 3.62cqw; line-height: 1.1875; color: var(--white-smoke); gap: 2.715cqw; }
.ocard .eyebrow::before { width: 1.584cqw; height: 1.584cqw; }
.ocard__num { font-size: 27.149cqw; line-height: 1; letter-spacing: -.03em; color: var(--mauve); white-space: nowrap; }
.ocard__bottom { display: flex; flex: 1; flex-direction: column; justify-content: space-between; }
.ocard__copy { font-size: 5.43cqw; line-height: 1.0833; letter-spacing: -.02em; color: var(--white-smoke); opacity: .8; }
.ocard__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 3.62cqw; }
.ocard__logo { height: 11.764cqw; width: auto; }
.ocard__arrow { width: 3.62cqw; height: 3.62cqw; opacity: 0; transform: translateX(-8%); transition: opacity .5s cubic-bezier(0,0,.2,1), transform .5s cubic-bezier(0,0,.2,1); }
@media (hover: hover) and (pointer: fine) {
  .ocard:hover { background: var(--onyx); }
  .ocard:hover::before { opacity: .16; }
  .ocard:hover::after { opacity: 1; }
  .ocard:hover .ocard__arrow { opacity: 1; transform: none; }
}
/* the violet halftone eye, hue-mapped, radially masked, drifting under the pointer */
.veil { position: absolute; pointer-events: none; opacity: .63; will-change: transform; }
.veil__img { position: relative; width: 100%; height: 100%; overflow: hidden;
  -webkit-mask-image: radial-gradient(closest-side, #000 0%, rgba(0,0,0,.9) 30%, transparent 100%);
          mask-image: radial-gradient(closest-side, #000 0%, rgba(0,0,0,.9) 30%, transparent 100%); }
.veil__img img { position: absolute; left: -14%; top: 0; width: 128%; height: 100%; object-fit: cover; }
.veil__img::after { content: ""; position: absolute; inset: 0; background: var(--mauve); mix-blend-mode: hue; }
.outcomes .veil { left: 7.5%; top: 47%; width: 329px; aspect-ratio: 329.34 / 412.388; }
.outcomes .constant { position: absolute; left: 68.3%; top: 46.7%; width: 1.1%; opacity: .55; pointer-events: none; }
@media (max-width: 1100px) {
  .outcomes .wrap { grid-template-columns: 1fr; gap: 48px; }
  .outcomes__grid { padding-left: 0; }
}
@media (max-width: 640px) { .outcomes__grid { grid-template-columns: 1fr; } }

/* odometer */
.odo { display: inline-flex; align-items: flex-start; filter: blur(0); }
.odo .w { display: inline-block; height: 1em; overflow: hidden; line-height: 1; white-space: pre;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 var(--rf, 0%), #000 calc(100% - var(--rf, 0%)), transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 var(--rf, 0%), #000 calc(100% - var(--rf, 0%)), transparent 100%); }
.odo .strip { display: block; font-variant-numeric: tabular-nums; will-change: transform; }
.odo .strip span { display: block; height: 1em; line-height: 1; text-align: center; }

/* ============================================================== VIDEO */
.videosec { background: var(--off-white); padding: 52px 0 50px; }
.film { position: relative; margin-inline: var(--m); aspect-ratio: 1840 / 1035; border-radius: 2px; overflow: hidden; background: #111; cursor: pointer; }
.film__still { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 1.2s var(--ease); }
.film::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(19,18,21,0) 0%, rgba(19,18,21,.92) 100%); z-index: 1; }
.film__corners { position: absolute; left: 1.54%; top: 2.3%; width: 96.87%; z-index: 2; pointer-events: none; }
.film__corners i { position: absolute; width: 1.4%; aspect-ratio: 1; border: var(--hair) solid rgba(255,255,255,.9); transform-origin: center; opacity: .95; }
.film__corners i:nth-child(1) { left: 0; top: 0; border-right: 0; border-bottom: 0; }
.film__corners i:nth-child(2) { right: 0; top: 0; border-left: 0; border-bottom: 0; }
.film__corners i:nth-child(3) { left: 0; bottom: 0; border-right: 0; border-top: 0; }
.film__corners i:nth-child(4) { right: 0; bottom: 0; border-left: 0; border-top: 0; }
.film__h { position: absolute; left: 0; right: 0; margin-inline: auto; top: 38.6%; width: min(1130px, 80%); text-align: center; z-index: 3; font-size: var(--video-h); line-height: 1.042; letter-spacing: -.03em; color: #fff; }
.film__play { position: absolute; left: 31.1%; top: 66.2%; width: 5.77%; aspect-ratio: 106.16 / 102.406; z-index: 3; }
.film__play svg { width: 100%; height: 100%; }
.film__tag { position: absolute; left: 37.05%; top: 77.3%; z-index: 3; background: var(--off-white); color: var(--deep-black); padding: 0 2px; font-family: var(--mono); font-size: 12px; line-height: 14px; text-transform: uppercase; white-space: nowrap; }
@media (hover: hover) and (pointer: fine) { .film:hover .film__still { transform: scale(1.0); } }
.film__player { position: absolute; inset: 0; z-index: 5; display: none; background: #000; }
.film.is-playing .film__player { display: block; }
.film.is-playing .film__h, .film.is-playing .film__play, .film.is-playing .film__tag, .film.is-playing::before { display: none; }

/* ============================================================== QUOTE */
.quote { background: var(--platinum); color: var(--black); padding: 60px 0; }
.quote .wrap { display: grid; grid-template-columns: minmax(0, 1242fr) minmax(0, 525fr); gap: 96px; align-items: start; }
.quote__text { padding: 40px; display: flex; flex-direction: column; gap: 48px; }
.quote__q { font-size: var(--quote); line-height: 1; letter-spacing: -.03em; max-width: 1068px; }
.quote__attr { font-size: var(--s3); line-height: 1.0833; letter-spacing: -.02em; color: var(--warm-taupe); opacity: .8; white-space: pre-line; }
.qfig { position: relative; container-type: inline-size; aspect-ratio: 525.429 / 657.854; border-radius: 2px; overflow: hidden; isolation: isolate; }
.qfig img { width: 100%; height: 100%; object-fit: cover; }
.qfig::after { content: ""; position: absolute; inset: 0; background-image: var(--grain-160); background-size: 120px; mix-blend-mode: overlay; opacity: .22; pointer-events: none; }
.qfig__v { position: absolute; left: 17.814cqw; top: 2.348cqw; width: .322cqw; height: 122.567cqw; transform-origin: top; background-image: repeating-linear-gradient(to bottom, var(--white-smoke) 0 .619cqw, transparent .619cqw 1.237cqw); }
.qfig__h { position: absolute; left: 0; right: 0; top: 94.778cqw; height: .322cqw; transform-origin: left; background-image: repeating-linear-gradient(to right, var(--white-smoke) 0 .619cqw, transparent .619cqw 1.237cqw); }
.qfig__tag { position: absolute; left: 17.64cqw; top: 49.22cqw; height: 3.2cqw; padding: 0 1.19cqw; display: flex; align-items: center; background: var(--white-smoke); color: var(--shadow); font-family: var(--mono); font-size: 2.97cqw; line-height: 1.3; text-transform: uppercase; white-space: nowrap; }
.qfig__box { position: absolute; left: 17.64cqw; top: 52.26cqw; width: 32.54cqw; height: 29.5cqw; border: .322cqw solid var(--white-smoke); }
.qfig__coord { position: absolute; right: 5.628cqw; top: 3.199cqw; font-family: var(--mono); font-size: 3.133cqw; line-height: 1.3; color: var(--white-smoke); opacity: .7; white-space: pre; text-align: right; }
.qfig__sq { position: absolute; left: 87.481cqw; top: 7.586cqw; width: 6.893cqw; height: 6.893cqw; border: .313cqw solid var(--white-smoke); opacity: .7; }
.qfig__hex { position: absolute; left: 88.596cqw; top: 11.284cqw; width: 1.803cqw; opacity: .7; }
@media (max-width: 1100px) { .quote .wrap { grid-template-columns: 1fr; gap: 40px; } .quote__text { padding: 0; } }

/* ============================================================== MANIFESTO */
.manifesto { background: linear-gradient(180deg, var(--off-white) 48.535%, var(--platinum) 100%); color: var(--black); }
.manifesto__stage { position: relative; height: clamp(520px, calc(42.76 * var(--vw) / 100), 821px); container-type: inline-size; overflow: clip; }
.manifesto__head { position: absolute; left: var(--m); top: 5.85cqw; width: 41.7cqw; display: flex; flex-direction: column; gap: 24px; z-index: 12; }
.fan { position: absolute; will-change: transform; transform-origin: 50% 50%; }
.fan__in { position: absolute; inset: 0; transform: rotate(var(--rot)); }
.paper { position: relative; width: 100%; height: 100%; overflow: hidden; background: var(--stock, var(--off-white)); border-radius: 1.725px; container-type: inline-size;
  box-shadow: inset 0 0 1.454px .727px rgba(255,255,255,.2), inset 0 0 29px rgba(0,0,0,.15); }
.paper::before { content: ""; position: absolute; inset: 0; background-image: url(../assets/tex/paper-basement.jpg); background-size: cover; mix-blend-mode: multiply; opacity: .45; pointer-events: none; }
.paper::after { content: ""; position: absolute; inset: 0; background-image: var(--grain-160); background-size: 140px; mix-blend-mode: multiply; opacity: .3; pointer-events: none; }
.paper > * { position: absolute; }
.paper--bordered { border: var(--hair) solid var(--card-border); }
.paper__title { color: var(--ink); line-height: 1; letter-spacing: -.03em; white-space: pre-line; }
.paper__sub { color: var(--grey-80); line-height: 1.1; text-transform: capitalize; }
.paper__lbl { font-family: var(--mono); line-height: 1.1; text-transform: uppercase; white-space: nowrap; }
.paper__chart { max-width: none; }
.fan--sticker .paper { background: rgba(177,177,177,.8); -webkit-backdrop-filter: blur(1.1px); backdrop-filter: blur(1.1px); box-shadow: 0 1.4px 4.2px rgba(0,0,0,.2); }
.fan--sticker .paper::before, .fan--sticker .paper::after { display: none; }
.fan--sticker2 .paper { background: rgba(188,191,211,.51); -webkit-backdrop-filter: blur(1px); backdrop-filter: blur(1px); box-shadow: 0 1.28px 3.85px rgba(0,0,0,.2); }
.fan--sticker2 .paper::before, .fan--sticker2 .paper::after { display: none; }
.fan--approval .paper { box-shadow: 4px 1.28px 5.84px rgba(0,0,0,.24); }
.fan--clip img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.fan.rise { animation: fan-rise .85s var(--ease) var(--fd, .1s) both; animation-play-state: var(--rp, running); }
@keyframes fan-rise { 0% { opacity: 0; transform: translateY(26px); } 100% { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .fan.rise { animation: fan-fade .3s ease both; } @keyframes fan-fade { from { opacity: 0; } to { opacity: 1; } } }

/* the founders' letter, a hinged flap */
.letter { position: absolute; z-index: 11; perspective: 820px; perspective-origin: 50% 30%; }
.letter__rot { position: absolute; inset: 0; transform: rotate(2.13deg); }
.letter__body { position: absolute; left: 0; right: 0; top: 0; }
.letter__top { position: absolute; left: 0; right: 0; top: 0; overflow: hidden; border-radius: 1.6px; box-shadow: 6px 4px 13px rgba(0,0,0,.1); }
.letter .paper { --stock: #F1EFEC; border-radius: 1.6px; }
.letter .paper::before { opacity: .5; } .letter .paper::after { opacity: .22; }
.letter__h { color: #1c1c1c; line-height: 1.1; letter-spacing: -.02em; white-space: pre-line; }
.letter__mark { object-fit: contain; }
.letter__dear, .letter__p { color: #1c1c1c; line-height: 1.4; }
.letter__p p { margin: 0 0 1em; } .letter__p p:last-child { margin: 0; }
.letter__crease { left: 0; right: 0; pointer-events: none; }
.letter__flap { position: absolute; left: 0; right: 0; transform-style: preserve-3d; transform-origin: 50% 0; will-change: transform; }
.letter__face { position: absolute; inset: 0; overflow: hidden; backface-visibility: hidden; border-radius: 1.6px; box-shadow: 6px 4px 13px rgba(0,0,0,.1); }
.letter__face--back { transform: rotateX(180deg); }
.letter__face--back .letter__mirror { position: absolute; inset: 0; transform: scaleY(-1); filter: blur(1.2px); color: rgba(30,28,32,.22); }
.letter__attr { color: #909090; line-height: 1.45; white-space: pre-line; text-transform: capitalize; }
.letter__shade { position: absolute; inset: 0; background: #000; opacity: 0; pointer-events: none; }
.letter__btn { position: absolute; left: 0; right: 0; top: 0; z-index: 3; cursor: pointer; border-radius: 1.6px; }
.letter__btn:focus-visible { outline-offset: 2px; }

/* ============================================================== PREFOOTER */
.prefooter { background: var(--onyx); color: var(--off-white); min-height: 628px; display: grid; place-items: center; padding: 120px 0; }
/* the dither veil: a WebGL halftone plate over the black, uncovered by the cursor's wake (js/veil.js) */
.dveil { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.dveil canvas { display: block; width: 100%; height: 100%; }
.dveil--off { display: none; }
.prefooter__in { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 40px; text-align: center; }
.prefooter__mark { width: 77.3px; height: 84.8px; }
.prefooter__mark svg { width: 100%; height: 100%; overflow: visible; fill: var(--slate); }
@media (hover: hover) and (pointer: fine) {
  .prefooter__mark { animation: mark-spin 16s linear infinite paused; }
  .prefooter__mark:hover { animation-play-state: running; }
}
@media (prefers-reduced-motion: reduce) { .prefooter__mark { animation: none; } }
@keyframes mark-spin { to { transform: rotate(360deg); } }
.prefooter__mark svg circle { transform-box: fill-box; }
.prefooter__copy { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.prefooter .h2 { max-width: 702px; color: var(--off-white); }

/* ============================================================== RESPONSIVE (home) */
@media (max-width: 1100px) {
  .hero { height: auto; min-height: 0; padding-bottom: 120px; }
  .hero__copy { position: relative; left: auto; top: auto; width: auto; padding-top: 120px; }
  .hero__stage { position: relative; left: auto; top: auto; width: 100%; margin-top: 40px; }
  .outcomes .veil, .prefooter .veil { display: none; }
}
@media (max-width: 720px) {
  .hero__actions { flex-wrap: wrap; }
  .quote__q { font-size: clamp(28px, calc(8 * var(--vw) / 100), 36px); }
  .film__h { font-size: clamp(22px, calc(6 * var(--vw) / 100), 36px); }
}

/* ============================================================== PLATFORM PAGE */
.phero { background: var(--onyx); color: var(--off-white); height: auto; min-height: 0; max-height: none; }
.phero .wrap { height: auto; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 9fr); column-gap: 64px; align-items: center; padding-top: 112px; padding-bottom: 24px; }
.phero__copy { display: flex; flex-direction: column; gap: 32px; z-index: 5; }
.phero__copy .hero__h1 { letter-spacing: -.03em; }
.phero .marquee { position: relative; left: auto; right: auto; bottom: auto; grid-column: 1 / -1; margin-top: 88px; }

/* the product window: a light application inside the dark frame */
.ui {
  --ui-ink: var(--onyx); --ui-mute: var(--taupe); --ui-line: var(--platinum); --ui-fs: 16px; --ui-mono: 12px;
  position: relative; display: flex; flex-direction: column; width: 100%; max-width: 908px; justify-self: end;
  color: var(--ui-ink); background: var(--off-white); border: var(--hair) solid rgba(250,250,250,.18); border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(192,161,255,.12); overflow: hidden;
  font-size: var(--ui-fs); line-height: 1.3; letter-spacing: -.01em; text-align: left;
}
.ui__top { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: var(--hair) solid var(--ui-line); background: var(--off-white); }
.ui__brand { width: 74px; height: auto; filter: brightness(0); }
.ui__engine, .ui__mono, .ui__th, .ui__foot, .ui__tags span, .ui__pill, .ui__tag { font-family: var(--mono); font-size: var(--ui-mono); line-height: 1.2; text-transform: uppercase; letter-spacing: .02em; }
.ui__engine { color: var(--ui-mute); }
.ui__body { display: grid; grid-template-columns: 214px minmax(0, 1fr); }
.ui__side { display: flex; flex-direction: column; gap: 2px; padding: 12px; border-right: var(--hair) solid var(--ui-line); background: var(--white-smoke); }
.ui__side button { position: relative; display: flex; flex-direction: column; gap: 3px; min-height: 44px; padding: 10px 12px; border: 0; border-radius: 3px; background: transparent; color: var(--ui-ink); text-align: left; cursor: pointer; font: inherit; letter-spacing: inherit; overflow: hidden; transition: background-color .3s var(--ease); }
.ui__side button b { font-weight: 400; }
.ui__side button small { font-size: calc(var(--ui-fs) - 2px); color: var(--ui-mute); }
.ui__side button:hover { background: rgba(19,18,21,.05); }
.ui__side button.on { background: var(--off-white); box-shadow: 0 0 0 var(--hair) var(--ui-line); }
.ui__side button:focus-visible { outline: 2px solid var(--slate); outline-offset: -2px; }
.ui__prog { position: absolute; left: 0; right: 0; bottom: 0; height: var(--hair); background: var(--mauve); transform-origin: left; transform: scaleX(var(--p, 0)); opacity: 0; }
.ui__side button.on .ui__prog { opacity: 1; }
.ui__panel { display: grid; padding: 20px 24px 24px; background: var(--off-white); min-height: 380px; }
.ui__view { grid-area: 1 / 1; display: flex; flex-direction: column; gap: 16px; transition: opacity .45s var(--ease); }
.ui__view[hidden] { display: flex; visibility: hidden; opacity: 0; pointer-events: none; }
.ui__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 22px; padding-bottom: 12px; border-bottom: var(--hair) solid var(--ui-line); font-family: var(--mono); font-size: var(--ui-mono); text-transform: uppercase; letter-spacing: .02em; color: var(--ui-mute); }
.ui__pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px; border: var(--hair) solid var(--slate); color: var(--slate); background: rgba(192,161,255,.14); white-space: nowrap; }
.ui__pill--ok { border-color: var(--slate); color: var(--slate); background: rgba(114,98,183,.12); }
.ui__pill--ok::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.ui__big { display: flex; align-items: baseline; gap: 8px; font-size: 36px; line-height: 1; letter-spacing: -.03em; }
.ui__big b { font-weight: 400; font-variant-numeric: tabular-nums; }
.ui__big span { font-size: var(--ui-fs); letter-spacing: -.01em; color: var(--ui-mute); }
.ui__table { position: relative; display: flex; flex-direction: column; }
.ui__th, .ui__tr { display: grid; gap: 12px; padding: 7px 0; border-bottom: var(--hair) solid var(--ui-line); }
.ui__table--3 .ui__th, .ui__table--3 .ui__tr { grid-template-columns: 56px minmax(0, 1fr) 56px; }
.ui__table--2 .ui__th, .ui__table--2 .ui__tr { grid-template-columns: minmax(0, 1fr) 72px; }
.ui__th { color: var(--ui-mute); border-bottom-color: var(--ui-ink); }
.ui__tr span:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.ui__tr span:first-child:not(:only-child) { color: var(--ui-mute); }
.ui__table--3 .ui__tr span:first-child { font-family: var(--mono); font-size: var(--ui-mono); align-self: center; }
.ui__scan { position: absolute; left: 0; right: 0; top: 30px; height: 1px; background: var(--mauve); box-shadow: 0 0 12px var(--mauve); opacity: 0; pointer-events: none; }
.ui__view.on .ui__scan { animation: ui-scan 2.8s var(--ease) both; }
@keyframes ui-scan { 0% { transform: translateY(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(150px); opacity: 0; } }
.ui__checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px 16px; padding: 0; margin: 0; list-style: none; }
.ui__checks li { display: flex; align-items: center; gap: 10px; }
.ui__checks li::before { content: ""; flex: none; width: 14px; height: 14px; border: var(--hair) solid var(--ui-mute); border-radius: 50%; background: transparent center / 8px no-repeat; transition: background-color .3s var(--ease), border-color .3s var(--ease); }
.ui__checks li.is-on::before { border-color: var(--slate); background-color: var(--slate); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8'%3E%3Cpath d='M1 4.2 3.7 6.8 9 1.4' fill='none' stroke='%23fff' stroke-width='1.6'/%3E%3C/svg%3E"); }
.ui__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.ui__tags span, .ui__tag { padding: 5px 8px; border: var(--hair) solid var(--ui-line); color: var(--ui-mute); background: var(--white-smoke); }
.ui__case { display: flex; flex-direction: column; gap: 8px; padding: 14px 16px; border: var(--hair) solid var(--ui-line); background: var(--white-smoke); }
.ui__case .ui__mono { color: var(--ui-mute); }
.ui__field { display: grid; grid-template-columns: 72px 1fr; gap: 12px; align-items: baseline; }
.ui__tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.ui__tile { display: flex; flex-direction: column; gap: 10px; padding: 12px 14px; border: var(--hair) solid var(--ui-line); background: var(--white-smoke); }
.ui__tile .ui__mono { color: var(--ui-mute); }
.ui__tile b { font-weight: 400; font-size: 26px; line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.ui__meter { display: flex; align-items: center; gap: 12px; }
.ui__meter i { flex: 1; height: 8px; background: var(--ui-line); position: relative; overflow: hidden; }
.ui__meter i::after { content: ""; position: absolute; inset: 0; width: var(--w); background: var(--mauve); transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--ease); }
.ui__meter.is-on i::after { transform: scaleX(1); }
.ui__meter .ui__mono { color: var(--ui-mute); }
.ui__chat { display: flex; flex-direction: column; gap: 10px; }
.ui__msg { display: flex; flex-direction: column; gap: 4px; max-width: 78%; padding: 10px 12px; border: var(--hair) solid var(--ui-line); background: var(--white-smoke); }
.ui__msg .ui__mono { color: var(--ui-mute); }
.ui__msg--them { align-self: flex-end; background: var(--off-white); }
.ui__typing { display: flex; gap: 4px; padding: 6px 12px; }
.ui__typing i { width: 5px; height: 5px; border-radius: 50%; background: var(--ui-mute); animation: ui-typing 1s ease-in-out infinite; }
.ui__typing i:nth-child(2) { animation-delay: .15s; } .ui__typing i:nth-child(3) { animation-delay: .3s; }
@keyframes ui-typing { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }
.ui__typing.is-past { display: none; }
.ui__turn { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; }
.ui__foot { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 10px 20px; border-top: var(--hair) solid var(--ui-line); color: var(--ui-mute); background: var(--white-smoke); white-space: nowrap; }
.ui__note { font-size: calc(var(--ui-mono) * .8); }
/* each object lands when the story reaches its step */
.ui__at { opacity: 0; transform: translateY(6px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.ui__at.is-on { opacity: 1; transform: none; }
.ui__at.ui__pill { transform: translateY(0) scale(.96); }
.ui__at.ui__pill.is-on { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .ui__at, .ui__view, .ui__checks li::before, .ui__meter i::after { transition: none; }
  .ui__view.on .ui__scan, .ui__typing i { animation: none; }
  .ui__typing { display: none; }
}
@media (max-width: 1100px) {
  /* the strip sits the same distance below the product window as above it: row-gap + margin-top above, wrap padding below */
  .phero { padding-bottom: 0; }
  .phero .wrap { grid-template-columns: 1fr; row-gap: 40px; padding-top: 48px; padding-bottom: 80px; }
  .phero__copy .hero__h1 { font-size: clamp(34px, 9vw, 61px); }
  .ui { justify-self: stretch; max-width: none; --ui-fs: 14px; --ui-mono: 11px; }
  .ui__big { font-size: 32px; }
  .phero .marquee { margin-top: 40px; }
}
@media (max-width: 720px) {
  .phero .hero__actions .btn--ghost { display: none; }
  .ui__body { grid-template-columns: 1fr; }
  .ui__side { flex-direction: row; gap: 4px; padding: 8px; border-right: 0; border-bottom: var(--hair) solid var(--ui-line); overflow-x: auto; scrollbar-width: none; }
  .ui__side::-webkit-scrollbar { display: none; }
  .ui__side button { flex: 1 0 auto; min-width: 44px; padding: 10px 6px; font-size: 13px; }
  .ui__side button small { display: none; }
  .ui__panel { padding: 16px; min-height: 0; }
  .ui__tiles { grid-template-columns: 1fr 1fr; }
  .ui__tile:last-child { grid-column: 1 / -1; }
  .ui__msg { max-width: 92%; }
  .ui__head, .ui__foot { flex-wrap: wrap; }
  .ui__top { flex-wrap: wrap; gap: 6px 16px; padding: 12px 16px; }
  .ui__engine { white-space: nowrap; }
}

.klas { background: var(--platinum); padding: 65px 0; min-height: 628px; }
.klas .wrap { display: grid; grid-template-columns: 565px 1fr; gap: 60px; align-items: start; }
.klas__copy { display: flex; flex-direction: column; justify-content: space-between; min-height: 506px; }
.klas__copy .top { display: flex; flex-direction: column; gap: 24px; }
.klas__copy .p2 { color: var(--shadow); opacity: .7; }
.klas__logo { width: 120px; height: 38px; }
.klas__chart { position: relative; padding-top: 57px; }
.klas__row { position: relative; margin-bottom: 72px; }
.klas__row .lbl { font-family: var(--mono); font-size: 13px; line-height: 1; text-transform: uppercase; color: var(--deep-black); margin-bottom: 23px; }
.klas__row .bar { display: flex; align-items: flex-start; gap: 16px; }
.klas__track { position: relative; height: 109px; background: var(--off-white); flex: 1; }
.klas__fill { position: absolute; left: 0; top: 0; bottom: 0; transform-origin: left; width: calc(var(--v) * 1%); }
.klas__fill--a { background: var(--mauve); } .klas__fill--b { background: var(--dusk); }
.klas__fill { transform: scaleX(0); }
.klas__fill.grow { animation: bar-grow 1.4s var(--ease) var(--bd, 0s) both; }
@keyframes bar-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) { .klas__fill, .klas__fill.grow { transform: none; animation: none; } }
.klas { --klas-val: clamp(150px, calc(15 * var(--vw) / 100), 288px); }
.klas__val { flex: none; width: var(--klas-val); margin-top: -10px; font-size: var(--display); line-height: .833; letter-spacing: -.03em; color: #101014; text-align: right; font-variant-numeric: tabular-nums; }
.klas__val--b { color: var(--haze); font-size: calc(var(--display) * .56); margin-top: 0; opacity: .8; }
.klas__ticks { position: relative; height: 16px; border-top: var(--hair) solid rgba(19,18,21,.2); margin-top: -12px; }
.klas__nums { display: flex; justify-content: space-between; margin-top: 4px; font-family: var(--mono); font-size: 13.76px; letter-spacing: -.02em; color: var(--grey-80); }
/* guides run from the top of the first track (label 13px + 23px gap) down to the axis line (ticks 16px + 4px + 17.5px numerals) */
.klas__ref { position: absolute; top: 36px; bottom: 37.5px; width: 0; border-left: var(--hair) dashed rgba(19,18,21,.35); }
.klas__refs { position: absolute; left: 0; right: calc(var(--klas-val) + 16px); top: 0; bottom: 0; pointer-events: none; }
.klas__wrap { position: relative; width: min(932px, 100%); }
@media (max-width: 1100px) { .klas { min-height: 0; } .klas .wrap { grid-template-columns: 1fr; } .klas__copy { min-height: 0; gap: 40px; } .klas__chart { padding-top: 0; } }
@media (max-width: 720px) {
  .klas { --klas-val: 124px; }
  .klas__val { font-size: 64px; }
  .klas__val--b { font-size: 36px; }
  .klas__track { height: 72px; }
  .klas__row { margin-bottom: 48px; }
  .klas__nums span:nth-child(even) { display: none; }
}

.poutcomes { background: var(--off-white); padding: 109px 0; }
.poutcomes .wrap { display: flex; flex-direction: column; align-items: center; gap: 64px; }
.poutcomes .h2 { text-align: center; max-width: 753px; }
.cards3 { display: grid; grid-template-columns: repeat(3, minmax(0, 440px)); gap: 24px; justify-content: center; }
.bcard { position: relative; height: 500px; padding: 24px; border-radius: 2px; background: var(--white-smoke); border: var(--hair) solid var(--platinum); overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; transition: translate .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
@media (hover: hover) and (pointer: fine) {
  .bcard:hover { translate: 0 -4px; border-color: var(--dusk); box-shadow: 0 12px 32px -18px rgba(19,18,21,.35); }
  .bcard--paper:hover { box-shadow: 0 12px 32px -18px rgba(19,18,21,.35), 0 .796px 3.183px rgba(0,0,0,.29), inset 0 0 1.592px .796px rgba(255,255,255,.2); }
  .bcard:hover .bcard__logo { opacity: 1; }
}
.bcard--paper { border: 0; box-shadow: 0 .796px 3.183px rgba(0,0,0,.29), inset 0 0 1.592px .796px rgba(255,255,255,.2); }
.bcard--paper::after { content: ""; position: absolute; inset: 0; background-image: var(--grain-160); background-size: 160px; mix-blend-mode: difference; opacity: .13; pointer-events: none; }
.bcard__head { display: flex; flex-direction: column; gap: 12px; }
.bcard__head .p2 { color: var(--shadow); max-width: 303px; }
.bcard__num { color: var(--slate); }
.bcard__num .big { font-size: var(--display); line-height: .833; letter-spacing: -.03em; white-space: nowrap; }
.bcard__num .small { font-size: 12px; line-height: 13px; letter-spacing: -.02em; max-width: 220px; }
.bcard__logo { height: 52px; width: auto; align-self: flex-start; opacity: .8; transition: opacity .25s var(--ease); }
.poutcomes__dots { display: none; }
@media (max-width: 1400px) { .cards3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 900px) { .cards3 { grid-template-columns: 1fr; } .bcard { height: auto; gap: 40px; } }

.features { background: var(--onyx); color: var(--off-white); padding: 91px 0 120px; }
.features__head { display: flex; flex-direction: column; gap: 24px; max-width: 674px; margin-left: calc(8.33% - 1.3px); margin-bottom: 64px; }
.features__head .hero__h1 { letter-spacing: -.03em; }
.features__head .p1 { opacity: .7; }
.features__body { display: flex; gap: 54px; margin-left: calc(8.33% - 1.3px); }
.rail { position: sticky; top: calc(45 * var(--vh) / 100); height: 100px; width: 17.5px; flex: none; display: flex; flex-direction: column; justify-content: space-between; align-items: center; }
.rail i, .poutcomes__dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--taupe); transition: background .35s var(--ease), transform .35s var(--ease); }
.rail i.on, .poutcomes__dots i.on { background: var(--mauve); transform: scale(1.3); }
.fstack { flex: 1; display: flex; flex-direction: column; gap: 24px; max-width: 1376px; }
.fcard { position: sticky; top: calc(calc(10 * var(--vh) / 100) + var(--i) * 12px); min-height: 465px; padding: 24px; border-radius: 2px; background: var(--deep-black); box-shadow: 0 .796px 3.183px rgba(0,0,0,.29), inset 0 0 1.592px .796px rgba(255,255,255,.2); display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.fcard__copy { width: 479px; height: 417px; display: flex; flex-direction: column; justify-content: space-between; }
.fcard__top { display: flex; flex-direction: column; gap: 24px; }
.fcard__brow { display: inline-flex; align-self: flex-start; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12px; line-height: 1.2; letter-spacing: .06em; text-transform: uppercase; color: var(--eyebrow-dark); }
.fcard__brow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--mauve); }
.fcard__n { color: var(--taupe); }
.fcard__beta { position: absolute; right: 24px; top: 24px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10px; line-height: 1.2; letter-spacing: .12em; text-transform: uppercase; color: var(--taupe); }
.fcard__beta::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--mauve); box-shadow: 0 0 0 3px rgba(192,161,255,.18); }
.fcard__title { font-size: var(--s1); line-height: 1.11; letter-spacing: -.02em; max-width: 342px; }
.fcard__copy .p2 { opacity: .7; max-width: 400px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { padding: 8px; border-radius: 2px; border: var(--hair) solid var(--mauve); background: rgba(192,161,255,.17); font-family: var(--mono); font-size: 12px; line-height: 1.2; text-transform: uppercase; color: var(--pale); white-space: nowrap; }
.mock { position: relative; width: 512.37px; height: 328.83px; border-radius: 6.27px; background: var(--platinum); color: var(--shadow); padding: 20px; container-type: inline-size; overflow: hidden; }
.mock__title { display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: 10.97px; line-height: 1.2; text-transform: uppercase; margin-bottom: 22px; }
.mock__title .dot { display: inline-flex; align-items: center; gap: 7px; }
.mock__title .dot::before { content: ""; width: 8.3px; height: 9.2px; background: var(--slate); clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.mock__title .hi { color: var(--slate); }
.mock__bars { display: flex; flex-direction: column; gap: 16px; }
.mock__bar { display: flex; gap: 9px; align-items: flex-start; }
.mock__bar i { display: flex; height: 48px; padding: 4px 8px; background: var(--dusk); font-family: var(--mono); font-size: 10.97px; line-height: 1.2; font-style: normal; width: calc(var(--w) * 1%); transform-origin: left; }
.mock__bar i.on { background: var(--pale); }
.mock__bar b { flex: 1; font-weight: 400; font-size: 24px; line-height: 26px; letter-spacing: -.02em; text-align: right; }
.mock__list li { display: flex; align-items: center; gap: 16px; padding: 8px 0; border-bottom: var(--hair) solid rgba(119,131,166,.4); font-size: 18px; line-height: 22px; letter-spacing: -.02em; }
.mock__list li span { flex: 1; }
.mock__list li .mono { flex: none; font-family: var(--mono); font-size: 11px; color: var(--taupe); }
.mock__list li b { flex: none; font-weight: 400; font-variant-numeric: tabular-nums; }
.mock__list--scan li { font-size: 16px; }
.mock__list li .ck { width: 16px; height: 16px; border-radius: 50%; border: var(--hair) solid var(--shadow); position: relative; transition: background .3s var(--ease), border-color .3s var(--ease); }
.mock__list li .ck::after { content: ""; position: absolute; left: 4px; top: 4px; width: 6px; height: 6px; border-radius: 50%; background: #fff; opacity: 0; transition: opacity .3s var(--ease); }
.mock__list li.done .ck { background: var(--slate); border-color: var(--slate); }
.mock__list li.done .ck::after { opacity: 1; }
.mock__approved { position: absolute; right: 20px; bottom: 20px; display: inline-flex; align-items: center; gap: 8px; padding: 8px; border-radius: 2px; border: var(--hair) solid var(--slate); background: rgba(192,161,255,.17); font-family: var(--mono); font-size: 12px; line-height: 1.2; text-transform: uppercase; color: var(--slate); opacity: 0; transform: translateY(6px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.mock__approved.on { opacity: 1; transform: none; }
.mock__kpis { display: flex; gap: 16px; margin-bottom: 20px; }
.mock__kpi { flex: 1; padding: 8px 16px; border: var(--hair) solid rgba(119,131,166,.4); border-radius: 4px; display: flex; flex-direction: column; gap: 16px; }
.mock__kpi small { font-family: var(--mono); font-size: 11px; line-height: 1.2; text-transform: uppercase; white-space: pre-line; }
.mock__kpi b { font-weight: 400; font-size: 18px; line-height: 22px; letter-spacing: -.02em; }
.mock__chat { display: flex; flex-direction: column; gap: 8px; }
.bubble { padding: 12px 8px; border-radius: 4px; border: var(--hair) solid var(--dusk); background: var(--white-smoke); font-size: 14px; line-height: 15px; letter-spacing: -.02em; opacity: 0; transform: translateY(6px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.bubble.me { align-self: flex-end; background: var(--light-lavender); }
.bubble.routed { border-color: var(--shadow); font-weight: 400; }
.bubble.on { opacity: 1; transform: none; }
@media (max-width: 1200px) {
  .fcard { position: relative; top: auto; flex-direction: column; align-items: flex-start; min-height: 0; }
  .fcard__copy { width: auto; height: auto; gap: 32px; }
  .mock { width: 100%; max-width: 512px; height: auto; min-height: 300px; }
  .mock__approved { position: static; display: flex; width: fit-content; margin: 16px 0 0 auto; }
  .rail { display: none; }
  .features__body, .features__head { margin-left: 0; }
}
@media (max-width: 720px) {
  .mock__kpis { flex-wrap: wrap; }
  .mock__kpi { flex: 1 1 40%; }
  .mock__list li { font-size: 16px; gap: 12px; }
}

.diagram { position: relative; z-index: 41; background: var(--deep-black); color: var(--off-white); height: 816px; max-height: var(--vh); } /* sits over the margin rails */
.diagram__grid { position: absolute; left: calc(var(--col-edge) + var(--m)); width: calc(100% - 2 * (var(--col-edge) + var(--m))); top: -52px; height: 926px; opacity: .55; pointer-events: none; }
.diagram__head { position: absolute; left: calc(var(--col-edge) + 60px); right: calc(var(--col-edge) + 60px); top: 72px; display: flex; gap: 24px; align-items: center; justify-content: space-between; }
.diagram__head .p2 { width: 421px; opacity: .7; }
.net { position: absolute; left: calc(var(--col-edge) + var(--m)); right: calc(var(--col-edge) + var(--m)); top: 0; bottom: 0; }
.net svg.lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.node { position: absolute; left: var(--x); top: var(--y); display: flex; gap: 1px; align-items: flex-start; }
.node__tag { padding: 2.55px 5.1px; background: var(--taupe); font-family: var(--mono); font-size: 12px; line-height: 14px; text-transform: uppercase; color: #fff; white-space: nowrap; }
.node__tile { box-sizing: border-box; width: 78px; height: 73.75px; overflow: hidden; border: var(--hair) solid var(--taupe); background: var(--deep-black); }
.node__tile img { display: block; width: 100%; height: 100%; scale: 1.3; }
.globe { position: absolute; left: 50%; top: 248px; width: 399px; margin-left: -199.5px; }
.globe__svg { display: block; width: 100%; overflow: visible; }
.globe__mark { transform-box: fill-box; transform-origin: center; }
@media (hover: hover) and (pointer: fine) {
  .globe__mark { animation: mark-spin 14s linear infinite paused; }
  .globe:hover .globe__mark { animation-play-state: running; }
}
@media (prefers-reduced-motion: reduce) { .globe__mark { animation: none; } }
.rra { position: absolute; left: 50%; top: 578px; translate: -50% 0; display: flex; gap: 16px; align-items: center; }
.rra .tag { color: var(--pale); }
.rra .hexi { width: 8.3px; height: 9.2px; background: var(--mauve); clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
@media (max-width: 1200px) {
  .diagram { height: auto; max-height: none; padding: 72px 0 0; }
  .diagram__grid { display: none; }
  .diagram__head { position: relative; left: 0; right: 0; top: 0; flex-direction: column; align-items: flex-start; padding-inline: var(--m); }
  .diagram__head .p2 { width: auto; max-width: 560px; }
  .net { position: relative; left: 0; right: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px 12px; align-items: start; margin-top: 64px; padding: 0 var(--m) 72px; }
  .net svg.lines { z-index: 0; }
  .node { position: relative; left: auto; top: auto; z-index: 1; flex-direction: column; align-items: center; gap: 6px; }
  .node:nth-child(n + 6) { order: 2; }
  .node .node__tile { order: 0; width: 100%; max-width: 78px; height: auto; aspect-ratio: 78 / 73.75; }
  .node .node__tag { order: 1; white-space: normal; text-align: center; font-size: 11px; line-height: 1.2; }
  .globe { position: relative; left: auto; top: auto; order: 1; grid-column: 1 / -1; width: min(240px, 60%); margin: 8px auto; z-index: 1; }
  .rra { position: relative; left: auto; top: auto; translate: none; order: 3; grid-column: 1 / -1; justify-content: center; }
}

.wp { background: var(--platinum); padding: 72px 0; min-height: 760px; position: relative; overflow: clip; }
.wp__copy { display: flex; flex-direction: column; gap: 24px; width: min(750px, 46%); }
.wp__copy .p2 { color: #1e1e1e; opacity: .7; }
/* covers are authored at 597px and drawn at .6 through the fan's scale, so their offsets are in cover units (CSS zoom is out:
   iOS Safari lays zoomed text out at its unzoomed size); the fan's layout box is its on-screen size and js/platform.js sets --fit
   when the column is narrower than 1230. The reveal keyframes own transform, so covers rotate and lift via rotate and translate. */
.wp__reports { --fit: 1; position: absolute; left: calc(50% - 50px); top: 40px; width: calc(1230px * var(--fit)); height: calc(690px * var(--fit)); scale: calc(.6 * var(--fit)); transform-origin: 0 0; }
.wp__slot { display: contents; }
.wp__slot--a { --ch: 901px; }
.wp__slot--b { --ch: 850px; }
.wp__slot--c { --ch: 880px; }
.report { position: absolute; width: 597px; height: var(--ch); --hair: calc(1px * var(--up) / .6); border-radius: 1.888px; overflow: hidden; transform-origin: 50% 130%; rotate: var(--tilt, 0deg); transition: translate .4s var(--ease), rotate .4s var(--ease), box-shadow .4s var(--ease); }
.report--a { --tilt: -7deg; left: 60px; top: 130px; background: var(--white-smoke); border: var(--hair) solid rgba(19,18,21,.03); box-shadow: inset 0 0 1.592px .796px rgba(255,255,255,.2), inset 0 0 31.8px rgba(0,0,0,.15); }
.report--b { --tilt: -1.5deg; left: 470px; top: 30px; background: var(--onyx); box-shadow: inset 0 0 1.595px .798px rgba(255,255,255,.2), inset 0 0 31.9px rgba(0,0,0,.15); z-index: 1; }
.report--c { --tilt: 5deg; left: 870px; top: 110px; z-index: 2; background: var(--slate); color: var(--onyx); box-shadow: inset 0 0 1.595px .798px rgba(255,255,255,.2), inset 0 0 31.9px rgba(0,0,0,.15); }
.report::before { content: ""; position: absolute; inset: 0; background-image: url(../assets/tex/paper-basement.jpg); background-size: cover; mix-blend-mode: multiply; opacity: .4; pointer-events: none; }
.report::after { content: ""; position: absolute; inset: 0; background-image: var(--grain-160); background-size: 160px; mix-blend-mode: difference; opacity: .05; pointer-events: none; }
.report--c::before { opacity: .25; }
.report--c::after { mix-blend-mode: overlay; opacity: .35; }
.report > * { position: absolute; z-index: 1; }
.report__title { font-size: 50.9px; line-height: 1; letter-spacing: -.03em; color: var(--ink); }
.report__title--c { font-size: 58px; line-height: .98; letter-spacing: -.035em; color: var(--onyx); }
.report__sub { font-size: 22.3px; line-height: 1.1; letter-spacing: -.03em; }
.report__lbl { font-family: var(--mono); font-size: 11.14px; line-height: 1.1; text-transform: uppercase; }
.report__pin { width: 14px; height: 14px; border-radius: 50%; background: var(--onyx); }
.report__net { overflow: visible; }
.report__list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px; list-style: none; padding: 0; margin: 0; border-top: var(--hair) solid var(--onyx); }
.report__list li { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: var(--hair) solid var(--onyx); font-size: 22px; line-height: 1.1; letter-spacing: -.02em; }
.report__list li::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--onyx); }
.report__cta { left: 50%; transform: translateX(-50%); top: 58.3%; opacity: 0; transition: opacity .35s var(--ease), transform .35s var(--ease); }
.report:focus-visible { outline: 2px solid var(--slate); outline-offset: 4px; z-index: 3; }
.report:focus-visible .report__cta { opacity: 1; }
@media (hover: hover) and (pointer: fine) {
  .report:hover { translate: 0 -24px; rotate: 0deg; z-index: 3; box-shadow: 0 40px 80px -40px rgba(19,18,21,.5); }
  .report:hover .report__cta { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .report { transition: box-shadow .4s var(--ease); } .report:hover { rotate: var(--tilt, 0deg); } }
@media (max-width: 1400px) {
  .wp { min-height: 0; padding-bottom: 24px; }
  .wp__copy { width: auto; max-width: 750px; }
  .wp .wrap { display: flex; flex-direction: column; gap: 72px; }
  .wp__reports { position: relative; left: auto; top: auto; margin: 0 auto; }
}
@media (max-width: 720px) {
  .wp .wrap { gap: 40px; --bleed: calc(var(--v2-grid-margin) + var(--m)); }
  .wp__copy .h2 br { display: none; }
  .wp__reports {
    width: auto; height: auto; scale: none; margin: 0 calc(-1 * var(--bleed));
    display: flex; align-items: flex-start; gap: 16px;
    padding: 16px var(--bleed) 32px;
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--bleed);
    scrollbar-width: none;
  }
  .wp__reports::-webkit-scrollbar { display: none; }
  /* each slot is the cover's on-screen size (597 x --ch at .46) so the row and the snap points lay out in page px */
  .wp__slot { display: block; position: relative; flex: none; width: calc(597px * .46); height: calc(var(--ch) * .46); scroll-snap-align: center; }
  .wp__slot .report { left: 0; top: 0; scale: .46; transform-origin: 0 0; --hair: calc(1px / .46); rotate: 0deg; box-shadow: 0 32px 64px -40px rgba(19,18,21,.45); }
  /* one cover height for the row: the two shorter covers grow to the tallest, and their footer lines
     (positioned from the top in the markup) move down by the same amount so the bottom margin holds */
  .wp__slot--b, .wp__slot--c { --ch: 901px; }
  .wp__slot--b .report__lbl { translate: 0 51px; }
  .wp__slot--c .report__list ~ .report__lbl { translate: 0 21px; }
}

.words { background: var(--white-smoke); padding: 109px 0; }
.words .wrap { display: flex; flex-direction: column; gap: 64px; }
.words__head { display: flex; flex-direction: column; gap: 16px; }
.words__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 64px; }
.tcard { position: relative; min-height: 450px; padding: 32px; background: var(--off-white); display: flex; flex-direction: column; justify-content: space-between; gap: 52px; transition: translate .25s var(--ease), box-shadow .25s var(--ease); }
@media (hover: hover) and (pointer: fine) {
  .tcard:hover { translate: 0 -4px; box-shadow: 0 12px 32px -18px rgba(19,18,21,.35); }
}
.tcard--paper { background: var(--platinum); padding: 32px 24px; border-radius: 1.888px; filter: drop-shadow(0 .796px 1.592px rgba(0,0,0,.29)); box-shadow: inset 0 0 1.592px rgba(255,255,255,.2); }
.tcard__q { flex: 1 0 auto; font-size: 28px; line-height: 31px; letter-spacing: -.02em; color: var(--deep-black); }
.tcard__who { display: flex; gap: 22px; align-items: flex-end; }
/* cut-out headshot over a purple field: the gradient is the backdrop, the face stays untouched */
.portrait { position: relative; width: 142.6px; height: 180.75px; border: var(--hair) solid var(--pale); overflow: hidden; background: linear-gradient(180deg, var(--white-smoke) 0%, var(--light-lavender) 55%, rgba(192,161,255,.55) 100%); flex: none; }
.portrait::before { content: ""; position: absolute; inset: 0; background-image: var(--grain-160); background-size: 140px; mix-blend-mode: overlay; opacity: .3; }
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; filter: saturate(.94); transition: transform .6s var(--ease); transform-origin: 50% 100%; }
@media (hover: hover) and (pointer: fine) { .tcard:hover .portrait img { transform: scale(1.03); } }
@media (prefers-reduced-motion: reduce) { .tcard:hover .portrait img { transform: none; } }
.tcard__meta { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.tcard__name { font-size: 24px; line-height: 26px; letter-spacing: -.02em; color: #101014; opacity: .8; }
.tcard__name b { font-weight: 400; }
.tcard__logo { display: block; height: 16px; width: auto; }
.tcard__logo--tall { height: 32px; }
.tcard__logo--stack { height: 40px; }
.tcard__logo--flip { transform: scaleY(-1); }
.klas__nums { padding-right: calc(var(--klas-val) + 16px); }
.klas__ticks { margin-right: calc(var(--klas-val) + 16px); }
@media (max-width: 1100px) { .words__grid { grid-template-columns: minmax(0, 1fr); gap: 24px; } }
@media (max-width: 720px) {
  .tcard { min-height: 0; }
  .tcard__q { font-size: 24px; line-height: 27px; }
  .tcard__who { flex-wrap: wrap; }
}

/* touch: every control clears 44px, including inside the zoomed sections */
@media (pointer: coarse) {
  .btn { height: calc(44px * var(--up)); }
  .faq__q { min-height: 44px; }
  .ui__side button { min-height: calc(44px * var(--up)); }
  .report__cta { opacity: 1; }
}

.strict { background: var(--platinum); padding: 109px 0; }
.strict .wrap { display: flex; flex-direction: column; align-items: center; gap: 64px; }
.strict .h2 { text-align: center; max-width: 753px; }
/* strict cards share one figure: a ruled mono ledger, label left, one dot right. The dot is the story: all fill, one fills, they fill in order */
.ledger { min-height: 220px; display: flex; flex-direction: column; font-family: var(--mono); font-size: 11px; line-height: 12px; text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
.ledger__head, .ledger__row { height: 44px; display: flex; align-items: center; border-bottom: var(--hair) solid var(--haze); }
.ledger__head { color: var(--shadow); }
.ledger__row { justify-content: space-between; color: var(--haze); }
.ledger__row::after { content: ""; width: 6px; height: 6px; border-radius: 50%; border: var(--hair) solid var(--haze); flex: none; }
.ledger__row--on { color: var(--onyx); }
.ledger__row--on::after { border-color: var(--slate); background: var(--slate); animation: dot-fill .4s var(--ease) var(--dd, 1.1s) both; animation-play-state: var(--rp, running); }
@keyframes dot-fill { from { background: transparent; } }
@media (prefers-reduced-motion: reduce) { .ledger__row--on::after { animation: none; } }
@media (max-width: 900px) { .ledger { min-height: 0; } }
@media (max-width: 720px) {
  .poutcomes, .features, .words, .strict, .prefooter { padding: 72px 0; }
  .prefooter { min-height: 0; }
}

.faq { background: var(--onyx); color: var(--off-white); padding: 72px 0; }
.faq .wrap { display: grid; grid-template-columns: minmax(0, 908fr) minmax(0, 908fr); gap: 24px; align-items: start; }
.faq__head { display: flex; flex-direction: column; gap: 24px; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: var(--hair) dashed var(--pale); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 16px; text-align: left; }
.faq__q > span { display: flex; align-items: center; gap: 16px; }
.faq__n { font-family: var(--mono); font-size: 16px; line-height: 19px; text-transform: uppercase; color: var(--mauve); }
.faq__t { font-size: var(--s3); line-height: 1.0833; letter-spacing: -.02em; color: var(--off-white); transition: color .15s var(--ease); }
@media (hover: hover) and (pointer: fine) { .faq__q:hover .faq__t { color: var(--pale); } }
.faq__ic { width: 16px; height: 16px; flex: none; transition: transform .35s var(--ease); }
.faq__item[open] .faq__ic, .faq__item.is-open .faq__ic { transform: rotate(90deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.faq__a > div { overflow: hidden; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a p { padding: 0 16px 32px 54px; font-size: 16px; line-height: 1.3; letter-spacing: -.02em; color: var(--warm-taupe); }
@media (max-width: 1100px) { .faq .wrap { grid-template-columns: 1fr; } }


/* ============================================================== ADDENDA */
/* hero discs: centred on their Figma point, rotation carried as --r */
.hero__discs { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.hero__disc { left: var(--x); top: var(--y); transform: translate(-50%, -50%) rotate(var(--r, 123.86deg)); }
.hero__disc img { width: 100%; height: auto; }

/* odometer mask fade, registered so WAAPI can interpolate it */
@property --rf { syntax: "<percentage>"; inherits: false; initial-value: 0%; }

/* mission: the right-hand composition is one container (stage + step card) */
.mission__right {
  position: absolute; right: var(--m); top: max(48px, calc(6.5 * var(--vh) / 100));
  width: min(908px, calc(47.3 * var(--vw) / 100), calc((var(--vh) - calc(13 * var(--vh) / 100)) * 908 / 795));
  aspect-ratio: 908 / 795; container-type: inline-size;
}
.mission__stage { position: absolute; inset: 0; right: auto; top: auto; width: 100%; height: 100%; }
.stepcard { left: -51.32cqw; top: 60.88cqw; width: 48.57cqw; height: 34.25cqw; padding: 2.64cqw; }
.stepcard__title { font-size: 3.08cqw; line-height: 1.107; }
.stepcard__line { margin-top: 1.76cqw; font-size: 2.64cqw; line-height: 1.083; max-width: 40.3cqw; min-height: 5.7cqw; }
.stepcard__list { left: 2.64cqw; right: 2.64cqw; bottom: 2.64cqw; gap: 2.64cqw; }
.stepcard__list li { font-size: 2.64cqw; line-height: 1.083; }
.stepcard__list li span:last-child { font-size: 1.76cqw; line-height: 1.19; }
@media (max-width: 1100px) {
  .mission__right { position: relative; right: auto; top: auto; width: 100%; aspect-ratio: auto; }
  .mission__stage { position: relative; aspect-ratio: 908 / 795; }
  .stepcard { position: relative; left: auto; top: auto; width: 100%; height: auto; margin-top: 24px; padding: 24px; }
  .stepcard__title { font-size: 28px; } .stepcard__line { font-size: 24px; margin-top: 16px; max-width: none; }
  .stepcard__list { position: relative; left: 0; right: 0; bottom: 0; margin-top: 32px; gap: 24px; }
  .stepcard__list li { font-size: 24px; } .stepcard__list li span:last-child { font-size: 16px; }
}


/* ============================================================== PHONE PASS */
/* The demo dock: a fixed bar at the thumb on phones. platform.js shows it once the hero's demo button has scrolled off
   and hides it again while the prefooter's is on screen. It sits under the shared nav (z 20) and the demo drawer (z 30). */
.mdock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 15;
  display: none;
  padding: 10px var(--v2-grid-margin) max(10px, env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--v2-onyx) 90%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--v2-border-on-dark);
  transform: translateY(110%); visibility: hidden;
  transition: transform .5s var(--v2-ease-out), visibility 0s .5s;
}
.mdock.is-visible { transform: none; visibility: visible; transition: transform .5s var(--v2-ease-out), visibility 0s; }
.mdock .ltv2-btn { width: 100%; justify-content: center; min-height: 48px; }
.mdock .ltv2-btn:active { transform: scale(.97); }
@media (prefers-reduced-motion: reduce) { .mdock, .mdock.is-visible { transition: none; } }

/* press feedback for the controls that only had a hover state */
.faq__q:active .faq__t { color: var(--pale); }
.ui__side button:active { background: rgba(19,18,21,.08); }
@media (prefers-reduced-motion: no-preference) { .report:active { translate: 0 -8px; rotate: 0deg; } }
.ltv2-drawer__home { min-height: 44px; align-items: center; }
/* the shared footer only grows its link rows under 640px; a phone held sideways or a tablet still taps */
@media (min-width: 641px) and (max-width: 1024px) and (pointer: coarse) {
  .ltv2-footer__links { gap: var(--v2-space-4, 0.25rem); }
  .ltv2-footer__col a { display: flex; align-items: center; min-height: 44px; }
}

/* ============================================================== PHONE RHYTHM
   One gutter (the shared page margin) and everything starts on it. Product proof is a rounded light card on dark, the same
   card in the hero and in every feature block. Surfaces are flat: no vignette, no drop shadows, a hairline where two
   sections meet. Space is spent between chapters (88px) and between blocks (56px), not inside a group (8 to 16px).
   Type on a phone: 36 to 38 hero, 34 section, 26 block, 22 card, 15 body, 11 mono. */
@media (max-width: 720px) {
  :root { --h2: 34px; --s1: 26px; --s2: 22px; --s3: 19px; --p1: 17px; --p2: 15px; }
  .h2 { line-height: 1.04; }
  .s2 { line-height: 1.15; }
  .p1 { line-height: 1.35; }
  .p2, .hero__sub { line-height: 1.4; }
  .eyebrow, .fcard__brow { font-size: 11px; letter-spacing: .08em; }
  .fcard__brow::before { width: 6px; height: 6px; }
  .section::before { box-shadow: none; }
  .klas, .poutcomes, .wp, .words, .strict { border-top: var(--hair) solid rgba(19,18,21,.08); }
  .features, .diagram, .prefooter, .faq { border-top: var(--hair) solid rgba(250,250,250,.1); }

  .wrap { padding-inline: 0; }
  /* hide the line only; WebKit needs the .rails blend layer to paint the hero during the ink reveal */
  .rails::before { display: none; }
  .wp .wrap { --bleed: var(--v2-grid-margin); }
  .diagram__head, .net { padding-inline: var(--v2-grid-margin); }

  .phero .wrap { padding-top: 40px; row-gap: 32px; padding-bottom: 32px; }
  .phero__copy { gap: 20px; }
  .phero__copy .hero__h1 { font-size: clamp(34px, 9.6vw, 38px); }
  .phero .hero__actions .btn--ghost { display: inline-flex; }
  .phero .marquee { margin-top: 0; height: 56px; }
  .phero .marquee__set > * { padding: 0 14px; height: auto; }
  .ui__view { gap: 14px; }
  /* the stacked views size the panel to the tallest story; trimming tags and the fifth Identify row keeps that near one story */
  .ui__tags { display: none; }
  #ui-view-0 .ui__tr:last-child { display: none; }
  .ui__checks { grid-template-columns: 1fr; }
  .ui__panel { padding: 16px 16px 20px; }
  .ui__side button { min-height: 40px; padding: 8px 6px; }
  .ui__side button b { font-size: 13px; }
  .ui__foot { padding: 10px 16px; }

  .klas { padding: 88px 0; }
  .klas .wrap { gap: 40px; }
  .klas__copy { gap: 32px; }
  .klas__copy .top { gap: 16px; }

  .poutcomes, .strict { padding: 88px 0; }
  .poutcomes .wrap, .strict .wrap { align-items: stretch; gap: 32px; }
  .poutcomes .h2, .strict .h2 { text-align: left; max-width: none; }
  .cards3 {
    display: flex; gap: 12px; justify-content: flex-start;
    align-self: stretch; width: auto; margin-inline: calc(-1 * var(--v2-grid-margin));
    padding: 0 var(--v2-grid-margin) 8px;
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--v2-grid-margin); scrollbar-width: none;
  }
  .cards3::-webkit-scrollbar { display: none; }
  .bcard { flex: none; width: 84vw; max-width: 330px; min-height: 0; padding: 20px; gap: 28px; border-radius: 4px; scroll-snap-align: start; }
  .bcard--paper { background: var(--white-smoke); border: var(--hair) solid var(--platinum); box-shadow: none; }
  .bcard--paper::after { display: none; }
  .bcard__head { gap: 8px; }
  .bcard__num .big { font-size: 64px; }
  .bcard__logo { height: 40px; }
  .poutcomes__dots { display: flex; justify-content: center; gap: 12px; margin-top: -8px; }

  .features { padding: 88px 0; }
  .features__head { gap: 16px; margin-bottom: 48px; }
  .features__head .hero__h1 { font-size: var(--h2); }
  .fstack { gap: 0; }
  /* each block reads brow, mock, then copy; the copy wrappers are flattened so the grid can place the pieces */
  .fcard { display: grid; grid-template-columns: 1fr auto; gap: 12px 0; padding: 0; background: transparent; box-shadow: none; }
  .fcard + .fcard { margin-top: 56px; padding-top: 56px; border-top: var(--hair) solid rgba(250,250,250,.1); }
  .fcard__copy, .fcard__top { display: contents; }
  .fcard__brow { grid-area: 1 / 1; }
  .fcard__beta { grid-area: 1 / 2; position: static; align-self: center; }
  .fcard .mock { grid-area: 2 / 1 / 3 / -1; width: auto; max-width: none; min-height: 0; margin: 4px 0 8px; padding: 16px; border-radius: 4px; }
  .fcard__title { grid-area: 3 / 1 / 4 / -1; }
  .fcard__copy .p2 { grid-area: 4 / 1 / 5 / -1; }
  .fcard .tags { grid-area: 5 / 1 / 6 / -1; gap: 8px; }
  .tag { padding: 6px 8px; font-size: 11px; background: rgba(192,161,255,.08); border-color: rgba(192,161,255,.5); }

  .diagram { padding-top: 88px; }
  .diagram__head { gap: 16px; }
  .net { margin-top: 48px; padding-bottom: 88px; }

  .wp { padding: 88px 0; min-height: 0; }
  .wp__copy { gap: 16px; }

  .words { padding: 88px 0; }
  .words .wrap { gap: 24px; }
  .words__head { gap: 12px; }
  .words__grid { gap: 12px; }
  .tcard, .tcard--paper { padding: 20px; gap: 28px; background: var(--off-white); border: var(--hair) solid var(--platinum); border-radius: 4px; filter: none; box-shadow: none; }
  .tcard__q { font-size: 24px; line-height: 1.2; }
  .tcard__who { gap: 16px; }
  .portrait { width: 72px; height: 91px; }
  .tcard__meta { gap: 12px; }
  .tcard__name { font-size: 15px; line-height: 1.3; }
  .tcard__logo--tall { height: 24px; }
  .tcard__logo--stack { height: 30px; }

  .prefooter { padding: 96px 0; }
  .prefooter .h2 { text-wrap: balance; }
  .prefooter__in { gap: 32px; }
  .prefooter__copy { gap: 24px; }

  .faq { padding: 88px 0; }
  .faq .wrap { gap: 40px; }
  .faq__head { gap: 12px; }
  .faq__item { border-bottom-style: solid; border-bottom-color: rgba(214,194,255,.25); }
  .faq__q { padding: 18px 0; }
  .faq__q > span { gap: 12px; }
  .faq__n { font-size: 12px; }
  .faq__a p { padding: 0 0 24px 26px; font-size: 15px; line-height: 1.4; }
}

@media (max-width: 720px) {
  /* the design's forced line breaks were set for the wide column; on a phone the headline balances on its own */
  .diagram__head .h2 br, .wp__copy .h2 br, .faq__head .h2 br { content: ""; }
  .diagram__head .h2 br::after, .wp__copy .h2 br::after, .faq__head .h2 br::after { content: " "; }
  .diagram__head .h2, .faq__head .h2, .wp__copy .h2, .strict .h2 { text-wrap: balance; }
}
@media (max-width: 640px) {
  .mdock { display: block; }
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
}
