

:root {

  --bg:        #0E0F12;
  --bg-2:      #15171B;
  --bg-3:      #1C1F25;
  --line:      rgba(255,255,255,.10);
  --line-2:    rgba(255,255,255,.18);

  --paper:     #F4F1EC;
  --paper-2:   #EAE6DF;
  --ink:       #121316;
  --ink-2:     #5A5A57;

  --fg:        #F3F1ED;
  --fg-2:      #A9A7A1;

  --fg-3:      #898782;

  --accent:        #E43A6E;
  --accent-deep:   #C42A5A;
  --accent-soft:   rgba(228,58,110,.14);
  --accent-line:   rgba(228,58,110,.45);

  --accent-tx:     #EA4E7A;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;

  --tile-radius: 16px;
  --tile-pad:    clamp(22px, 2.2vw, 30px);
  --tile-pad-b:  clamp(56px, 4.6vw, 68px);
  --tile-chip-b: clamp(20px, 2vw, 26px);
  --shadow-pop: 0 40px 120px rgba(0,0,0,.55);
  --ease: cubic-bezier(.2,.7,.2,1);
  --container: 1280px;
  --content: 1120px;
  --gutter: clamp(20px, 5vw, 72px);

  --t-display:  clamp(46px, 7vw, 108px);
  --t-h1:       clamp(34px, 4.6vw, 64px);
  --t-h2:       clamp(26px, 3vw, 40px);
  --t-h3:       clamp(20px, 1.8vw, 24px);
  --t-body:     clamp(17px, 1.32vw, 19px);
  --t-small:    15px;
  --t-label:    12.5px;
  --t-num:      clamp(52px, 7.5vw, 120px);
  --t-num-s:    clamp(34px, 4vw, 56px);

  --font-ui: Manrope, "Segoe UI", Roboto, system-ui, sans-serif;
  --font-dp: Prata, "Times New Roman", Georgia, serif;

  --copy-max:   min(62%, 880px);

  --chrome-fade: 1;

  --noise-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-ui);
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

p, h1, h2, h3, h4, h5, h6, figure, blockquote, dl, dd { margin: 0; }
h1, h2, h3, h4 { font-weight: 400; }
ul, ol { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; }
a { color: inherit; }

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

.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.blk {
  position: relative;
  padding: clamp(96px, 12vw, 168px)
           max(var(--gutter), env(safe-area-inset-right, 0px))
           clamp(96px, 12vw, 168px)
           max(var(--gutter), env(safe-area-inset-left, 0px));
  background: var(--bg);
  color: var(--fg);
}

.wrap {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.blk--paper {

  isolation: isolate;
  --bg:      var(--paper);
  --bg-2:    var(--paper-2);
  --bg-3:    #E3DED5;
  --fg:      var(--ink);
  --fg-2:    #4A4A47;
  --fg-3:    #66645F;
  --line:    rgba(18,19,22,.12);
  --line-2:  rgba(18,19,22,.22);
  --accent:  var(--accent-deep);

  --accent-tx: #A82049;
  --accent-soft: rgba(196,42,90,.10);
  --accent-line: rgba(196,42,90,.42);
  background: var(--paper);
  color: var(--ink);

  background-image: linear-gradient(178deg, #F6F3EF 0%, var(--paper) 42%, #EFEBE4 100%);
}

.noise--paper {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .03;
  mix-blend-mode: multiply;
  background-image: var(--noise-img);
}
.blk--paper > .wrap { position: relative; z-index: 1; }

.eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--fg-3);
  font-size: var(--t-label);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow .rule {
  flex: 0 0 32px;
  height: 1px;
  background: var(--accent);
  opacity: .9;
}
.eyebrow .dot { margin: 0 .35em; opacity: .6; }

.statement {
  font-family: var(--font-dp);
  font-size: var(--t-h1);

  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--fg);
  max-width: 17ch;
}

.statement--intro {
  font-size: clamp(25px, 2.7vw, 40px);
  line-height: 1.16;
  letter-spacing: -.004em;
  max-width: 26ch;
}

.lead {
  max-width: 62ch;
  color: var(--fg-2);
  font-size: var(--t-body);
  line-height: 1.55;
}
.lead strong { color: var(--fg); font-weight: 600; }

.blk p:not([class]),
.b4-item p,
.b9-text p { max-width: 54ch; }

.small {
  color: var(--fg-3);
  font-size: var(--t-small);
  line-height: 1.5;
  max-width: 62ch;
}

.label {
  color: var(--fg-3);
  font-size: var(--t-label);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.acc { color: var(--accent); font-style: normal; }

.nb { white-space: nowrap; }

.tok { color: var(--fg); white-space: nowrap; }
.tok::before { content: "[\00a0"; color: var(--fg-3); }
.tok::after  { content: "\00a0]"; color: var(--fg-3); }

.grid { display: grid; gap: clamp(20px, 2.4vw, 32px); }
.grid--7-5 {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 899px) {
  .grid--7-5 { grid-template-columns: minmax(0, 1fr); }
}

.noise {
  position: fixed; inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .016;
  background-image: var(--noise-img);
}

.progress {
  position: fixed; inset: 0 0 auto 0;
  height: 2px; z-index: 70;
  pointer-events: none;
  opacity: var(--chrome-fade, 1);
}
.progress i {
  display: block; height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.counter {
  position: fixed;

  left: calc(var(--gutter) - 12px + env(safe-area-inset-left, 0px));
  bottom: calc(26px + env(safe-area-inset-bottom, 0px));
  z-index: 65;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(14,15,18,.72);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: var(--fg-3);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .5s var(--ease), transform .5s var(--ease),

              color .12s linear, background-color .12s linear;
}
.counter.is-on { opacity: var(--chrome-fade, 1); transform: none; }

.counter.is-paper { color: var(--ink-2); background: rgba(244,241,236,.8); }
@media (max-width: 899px) { .counter { display: none; } }

.pill {
  position: fixed;

  right: calc(var(--gutter) + env(safe-area-inset-right, 0px));
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  z-index: 66;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px 0 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(14,15,18,.72);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: var(--fg);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;

  max-width: 320px;
  transform: translateY(10px);
  transition: opacity .45s var(--ease), transform .45s var(--ease),
              visibility .45s var(--ease), border-color .3s var(--ease),
              background-color .3s var(--ease),
              max-width .3s var(--ease), padding .3s var(--ease);
}
.pill.is-on { opacity: var(--chrome-fade, 1); visibility: visible; transform: none; }

.pill .pill-t {
  white-space: nowrap;
  transition: opacity .3s var(--ease), width .3s var(--ease);
}
@media (min-width: 900px) and (max-width: 1659px) {
  .pill.is-tight { max-width: 44px; width: 44px; padding: 0; gap: 0; justify-content: center; }

  .pill.is-tight .pill-t { flex: 0 0 0; width: 0; opacity: 0; }
}
.pill:hover, .pill:focus-visible { border-color: var(--accent); background: rgba(30,12,20,.82); }
.pill:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.pill svg { flex: none; color: var(--accent); }

@media (max-width: 760px) {
  .pill {
    right: calc(14px + env(safe-area-inset-right, 0px));
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    min-height: 44px;
    font-size: 11px;

    width: 44px;
    max-width: 44px;
    padding: 0;
    gap: 0;
    justify-content: center;
  }
  .pill .pill-t { flex: 0 0 0; width: 0; opacity: 0; }
}

@media (max-width: 340px) {
  .pill { padding: 0; width: 44px; justify-content: center; }
  .pill .pill-t { display: none; }
}

.totop {
  position: fixed;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 66;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  background: rgba(14,15,18,.78);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: var(--accent-tx);
  box-shadow: 0 0 20px rgba(228,58,110,.32);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: opacity .45s var(--ease), transform .45s var(--ease),
              visibility .45s var(--ease), border-color .3s var(--ease),
              background-color .3s var(--ease), color .3s var(--ease),
              box-shadow .3s var(--ease);
}
.totop.is-on { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.totop::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(228,58,110,.55);
  opacity: 0;
  pointer-events: none;
}

.totop::after {
  content: attr(aria-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translate(-50%, 4px);
  white-space: nowrap;
  color: var(--accent-tx);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.totop:hover::after, .totop:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }
.totop:hover, .totop:focus-visible {
  border-color: var(--accent); color: #fff; background: rgba(30,12,20,.86);
  box-shadow: 0 0 30px 4px rgba(228,58,110,.6);
}
.totop:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.totop svg { flex: none; transition: transform .3s var(--ease); }
.totop:hover svg, .totop:focus-visible svg { transform: translateY(-3px); }
html:not(.rm) .totop.is-on         { animation: totop-breathe 2.6s ease-in-out infinite; }
html:not(.rm) .totop.is-on::before { animation: totop-pulse 2.6s ease-out infinite; }
html:not(.rm) .totop.is-go::before { animation: totop-burst .6s ease-out both; }
html:not(.rm) .totop.is-go svg     { animation: totop-go .7s var(--ease) both; }
@keyframes totop-breathe {
  0%, 100% { box-shadow: 0 0 18px rgba(228,58,110,.30); border-color: var(--accent-line); }
  50%      { box-shadow: 0 0 30px 4px rgba(228,58,110,.62); border-color: var(--accent); }
}
@keyframes totop-pulse {
  0%        { box-shadow: 0 0 0 0 rgba(228,58,110,.55); opacity: 1; }
  70%, 100% { box-shadow: 0 0 0 18px rgba(228,58,110,0); opacity: 0; }
}
@keyframes totop-burst {
  0%   { box-shadow: 0 0 0 0 rgba(228,58,110,.7); opacity: 1; }
  100% { box-shadow: 0 0 0 28px rgba(228,58,110,0); opacity: 0; }
}
@keyframes totop-go {
  0%   { transform: translateY(0);     opacity: 1; }
  40%  { transform: translateY(-170%); opacity: 0; }
  50%  { transform: translateY(170%);  opacity: 0; }
  100% { transform: translateY(0);     opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .totop, .totop::before, .totop svg { animation: none !important; }
}
@media (max-width: 760px) {
  .totop { width: 52px; height: 52px; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); }
}

.why {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 20px 0 22px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: transparent;
  color: var(--fg);
  font-family: inherit;
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;

  text-align: center;
  cursor: pointer;
  transition: border-color .35s var(--ease), background-color .35s var(--ease),
              color .35s var(--ease);
}

.why-label { line-height: 1.15; padding-top: 1px; }
.why-plus { display: inline-flex; color: var(--fg-2); transition: color .35s var(--ease); }

.why-plus svg { display: block; overflow: visible; }
.why-plus circle {
  transform-box: view-box;
  transform-origin: 10px 10px;
  transition: transform .35s var(--ease);
}
.why-cross { transform-origin: 10px 10px; transition: transform .35s var(--ease); }

.why:hover, .why:focus-visible { border-color: var(--accent); background: var(--accent-soft); }
.why:hover .why-plus, .why:focus-visible .why-plus { color: var(--accent); }
.why:hover .why-plus circle, .why:focus-visible .why-plus circle { transform: scale(1.14); }
.why[aria-expanded="true"] .why-cross { transform: rotate(45deg); }
.why[aria-expanded="true"] { border-color: var(--accent); background: var(--accent-soft); }
.why:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.why--sm { min-height: 44px; padding: 0 16px 0 18px; gap: 11px; font-size: 11.5px; }

.why-inline {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: text-decoration-thickness .3s var(--ease);
}
.why-inline .why-sup {
  display: inline-block;
  vertical-align: .42em;
  margin-left: 3px;
  color: var(--accent);
}
.why-inline .why-sup svg { display: inline-block; }
.why-inline .why-cross { transform-origin: 6px 6px; }
.why-inline:hover { text-decoration-thickness: 2px; }
.why-inline:hover .why-cross,
.why-inline:focus-visible .why-cross { transform: rotate(90deg); }
.why-inline[aria-expanded="true"] .why-cross { transform: rotate(45deg); }
.why-inline:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: var(--tile-pad) var(--tile-pad) var(--tile-pad-b);
  border: 1px solid var(--line-2);
  border-radius: var(--tile-radius);
  background: var(--bg-3);
  color: var(--fg);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .4s var(--ease), background-color .4s var(--ease);
}

.tile > * { transition: transform .4s var(--ease); }
.tile:hover, .tile:focus-visible { border-color: var(--accent-line); }
.tile:hover > *, .tile:focus-visible > * { transform: translateY(-2px); }
.tile:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.tile[aria-expanded="true"] { border-color: var(--accent-line); }

.tile-w {
  font-size: var(--t-h2);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--fg);
}
.tile-t {
  color: var(--fg-2);
  font-size: var(--t-small);
  line-height: 1.5;
  max-width: 34ch;
}

.tile-chip {
  position: absolute;
  left: var(--tile-pad);
  bottom: var(--tile-chip-b);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg-3);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .35s var(--ease);
}
.tile-chip svg { display: block; }
.tile-chip .why-cross { transform-origin: 10px 10px; transition: transform .35s var(--ease); }
.tile:hover .tile-chip, .tile:focus-visible .tile-chip { color: var(--accent-tx); }
.tile:hover .tile-chip .why-cross,
.tile:focus-visible .tile-chip .why-cross { transform: rotate(90deg); }
.tile[aria-expanded="true"] .tile-chip .why-cross { transform: rotate(45deg); }

.tile:hover .tile-chip .why-plus,   .tile:focus-visible .tile-chip .why-plus,
.b3-num:hover .tile-chip .why-plus, .b3-num:focus-visible .tile-chip .why-plus,
.b4-fig:hover .tile-chip .why-plus, .b4-fig:focus-visible .tile-chip .why-plus {
  color: var(--accent-tx);
}

.b5-btn { transition: transform .16s var(--ease); }

.tile:active,
.why:active,
.b3-num:active,
.b4-fig:active,
.b6-tile:active,
.b5-btn:active,
.pill:active {
  transform: scale(.99) !important;
  transition-duration: .12s;
}

html.rm .tile:active,
html.rm .why:active,
html.rm .b3-num:active,
html.rm .b4-fig:active,
html.rm .b6-tile:active,
html.rm .b5-btn:active,
html.rm .pill:active,
html.rm .src-a:active,
html.rm .pop-act:active,
html.rm .pop-close:active,
html.rm .drawer-close:active { transform: none !important; }

.src-a:active,
.pop-act:active,
.pop-close:active,
.drawer-close:active {
  transform: scale(.985) !important;
  transition-duration: .12s;
}

@media (hover: hover) and (pointer: fine) {
  html:not(.rm) .is-tilt {
    transform: perspective(760px)
               rotateX(var(--ty, 0deg))
               rotateY(var(--tx, 0deg))
               scale(1.015) !important;
    transition: transform .13s linear !important;
  }

  html:not(.rm) .is-tilt.is-tilt-out {
    transition: transform .45s var(--ease) !important;
  }
}

@media (hover: hover) {
  .tile:hover, .b4-fig:hover {
    box-shadow: var(--shx, 0px) calc(16px + var(--shy, 0px)) 30px -14px rgba(228,58,110,.26),
                0 0 0 1px rgba(228,58,110,.26);
  }

  .b3-num:hover, .b6-tile:hover {
    box-shadow: var(--shx, 0px) calc(15px + var(--shy, 0px)) 26px -12px rgba(228,58,110,.24),
                0 0 0 1px rgba(228,58,110,.20);
  }
}

.tile:focus-visible, .b4-fig:focus-visible {
  box-shadow: var(--shx, 0px) calc(16px + var(--shy, 0px)) 30px -14px rgba(228,58,110,.26),
              0 0 0 1px rgba(228,58,110,.26);
}
.b3-num:focus-visible, .b6-tile:focus-visible {
  box-shadow: var(--shx, 0px) calc(15px + var(--shy, 0px)) 26px -12px rgba(228,58,110,.24),
              0 0 0 1px rgba(228,58,110,.20);
}

@media (pointer: coarse) {
  .tile, .b4-fig     { box-shadow: 0 10px 22px -18px rgba(228,58,110,.18); }
  .b3-num, .b6-tile  { box-shadow: 0 9px 20px -16px rgba(228,58,110,.15); }
}

html:not(.rm) .is-press {
  transform: scale(.985) !important;
  transition: transform .12s var(--ease) !important;
}

.afx {
  position: absolute;
  inset: -1px;
  z-index: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;

  transform: none !important;
  transition: none !important;
}

.afx > i {
  position: absolute;
  top: -60%; bottom: -60%;
  left: 0;
  width: 34%;
  min-width: 96px;
  background: linear-gradient(90deg,
    rgba(228,58,110,0)                    0%,
    rgba(228,58,110, var(--afx-a, .11))  50%,
    rgba(228,58,110,0)                  100%);
  transform: translate3d(-180%, 0, 0) rotate(8deg);
  opacity: 0;
}

@keyframes afx-sweep {
  0%     { transform: translate3d(-180%, 0, 0) rotate(8deg); opacity: 0 }
  1.4%   { opacity: 1 }
  11%    { opacity: 1 }
  12.9%  { transform: translate3d(430%, 0, 0)  rotate(8deg); opacity: 0 }
  100%   { transform: translate3d(430%, 0, 0)  rotate(8deg); opacity: 0 }
}

html:not(.rm) .is-afx > .afx > i {
  animation: afx-sweep 7s linear infinite;
  animation-delay: calc(var(--afx-i, 0) * 1.15s);
  will-change: transform, opacity;
}

html:not(.rm) .pill.is-on > .afx > i {
  animation: afx-sweep 7s linear infinite;
  animation-delay: 2.4s;
  will-change: transform, opacity;
}

@media (hover: hover) {
  .tile:hover, .b3-num:hover, .b4-fig:hover, .b6-tile:hover,
  .why:hover, .pill:hover { --afx-a: .14; }
}
.tile:focus-visible, .b3-num:focus-visible, .b4-fig:focus-visible,
.b6-tile:focus-visible, .why:focus-visible,
.pill:focus-visible { --afx-a: .14; }

.why { position: relative; }

@media (prefers-reduced-motion: reduce) {
  .afx > i { animation: none !important; will-change: auto; opacity: 0 }

  html:not(.rm) .is-tilt,
  html:not(.rm) .is-press { transform: none !important }
}

.ic-sprite { display: none; }

.ic {
  width: var(--ic, 24px);
  height: var(--ic, 24px);
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: var(--icw, 1.5);
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ic--l  { --ic: 28px; --icw: 1.35; }
.ic--m  { --ic: 22px; }
.ic--s  { --ic: 16px; --icw: 1.75; }
.ic--xs { --ic: 14px; --icw: 1.75; }

.tile > .ic,
.b3-num > .ic,
.b3-task > .ic,
.b4-item-n > .ic,
.b4-cell > .ic,
.b6-tile > .ic,
.b8-row-l > .ic { color: var(--fg-3); }

.pop {
  position: fixed; inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vh, 56px) var(--gutter);
}
.pop[hidden] { display: none; }

.pop-ov {
  position: absolute; inset: 0;
  background: rgba(8,9,11,.74);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  opacity: 0;
}

.pop-card {
  position: relative;
  width: min(78vw, 1100px);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--bg-2);
  box-shadow: var(--shadow-pop);
  opacity: 0;
  overflow: hidden;
}

.pop-card::after {
  content: "";
  position: absolute;
  left: 1px; right: 1px; bottom: 0;
  height: 56px;
  pointer-events: none;
  background: linear-gradient(to top, var(--bg-2), rgba(21,23,27,0));
}

.pop-scroll {

  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.pop-scroll::-webkit-scrollbar { width: 8px; }
.pop-scroll::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 999px; }
.pop-scroll::-webkit-scrollbar-track { background: transparent; }

.pop-inner {
  padding: 56px;
  padding-right: clamp(56px, 6vw, 92px);
}
@media (max-width: 1100px) { .pop-inner { padding: 40px; } }

.pop-eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--accent-tx);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.pop-eyebrow .pop-ref { color: var(--fg-3); }
.pop-eyebrow .pop-ref::before { content: "· "; }

.pop-eyebrow > .ic { color: var(--fg-3); }

.pop-q {
  margin-top: 22px;
  color: var(--fg-2);
  font-size: var(--t-h3);
  font-weight: 500;
  line-height: 1.3;
  max-width: 46ch;
}
.pop-a {
  margin-top: 16px;
  font-family: var(--font-dp);
  font-size: var(--t-h1);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--fg);
  max-width: 22ch;
}
.pop-a--wide {
  max-width: 30ch;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.16;
  letter-spacing: -.004em;
}

.pop-a--caps {
  max-width: 30ch;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.16;
  letter-spacing: .012em;
}

.pop-body { margin-top: clamp(34px, 4vw, 52px); }

.pop-mean {
  margin-top: clamp(34px, 4vw, 52px);
  padding-left: clamp(20px, 2vw, 28px);
  border-left: 3px solid var(--accent);
}
.pop-mean-l {
  color: var(--fg-3);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.pop-mean-t {
  margin-top: 12px;
  color: var(--fg);
  font-size: var(--t-body);
  line-height: 1.55;
  max-width: 58ch;
}

.pop-actions {
  margin-top: clamp(30px, 3.4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pop-act {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 20px 0 22px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: transparent;
  color: var(--fg);
  font-family: inherit;
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .35s var(--ease), background-color .35s var(--ease);
}
.pop-act svg { transition: transform .35s var(--ease); }
.pop-act:hover, .pop-act:focus-visible { border-color: var(--accent); background: var(--accent-soft); }

.pop-act:hover svg, .pop-act:focus-visible svg { transform: translateX(4px); color: var(--accent-tx); }
.pop-act:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.pop-sources {
  margin-top: clamp(34px, 4vw, 52px);
  padding-top: clamp(24px, 2.6vw, 34px);
  border-top: 1px solid var(--line);
}
.pop-sources-l {
  color: var(--fg-3);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.src-list { margin-top: 20px; display: grid; gap: 4px; }
.src {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 12px 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.src:last-child { border-bottom: 0; }
.src-n { color: var(--fg); font-size: var(--t-small); line-height: 1.45; }
.src-m { display: block; margin-top: 6px; color: var(--fg-3); font-size: 13px; letter-spacing: .04em; }
.src-a {

  flex: none;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  background: none;
  color: var(--fg-3);
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.src-a:hover, .src-a:focus-visible { color: var(--accent-tx); border-bottom-color: var(--accent); }
.src-a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.src-group + .src-group { margin-top: clamp(30px, 3.4vw, 44px); }

.src-group-l {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--fg-3);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.src-group-l::before {
  content: "";
  flex: 0 0 32px;
  height: 1px;
  background: var(--accent);
  opacity: .9;
}
.src-group .src-list { margin-top: 10px; }

.case-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 20px;
  padding-bottom: clamp(26px, 3vw, 38px);
  border-bottom: 1px solid var(--line);
}
.case-n {
  color: var(--fg);
  font-size: var(--t-num-s);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
}
.case-u {
  color: var(--accent);
  font-size: .46em;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: .12em;
}

.case-f--tbd { padding: 12px 0; }
.case-f--tbd .case-fv { color: var(--fg-3); }
.case-l { color: var(--fg-2); font-size: var(--t-small); line-height: 1.5; max-width: 46ch; }

.case-fields { margin-top: clamp(26px, 3vw, 38px); display: grid; gap: 0; }
.case-f {
  display: grid;
  grid-template-columns: minmax(150px, 200px) minmax(0, 1fr);
  gap: 8px 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.case-f:last-child { border-bottom: 0; }
.case-fk {
  color: var(--fg-3);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.5;
}
.case-fv { color: var(--fg); font-size: var(--t-small); line-height: 1.5; max-width: 54ch; }

.case-proof { margin-top: clamp(34px, 4vw, 52px); }
.case-proof-l {
  color: var(--fg-3);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.case-proof .proof-slot { margin-top: 18px; }
.case-proof figure { margin-top: 18px; }
.case-proof figcaption { margin-top: 12px; color: var(--fg-3); font-size: 13px; line-height: 1.5; }
.case-proof .note { margin-top: 14px; }

@media (max-width: 760px) {
  .case-f { grid-template-columns: minmax(0, 1fr); gap: 6px; }
}

.pop-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: rgba(21,23,27,.86);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  color: var(--fg-2);
  cursor: pointer;
  transition: border-color .3s var(--ease), color .3s var(--ease), background-color .3s var(--ease);
}
.pop-close:hover, .pop-close:focus-visible {
  border-color: var(--accent); color: var(--accent); background: var(--accent-soft);
}
.pop-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.pop-handle { display: none; }

@media (max-width: 760px) {
  .pop { padding: 0; align-items: flex-end; }
  .pop-card {
    width: 100%;
    height: min(94vh, 100%);
    height: min(94dvh, 100%);
    max-height: none;
    border-radius: 22px 22px 0 0;
    border-bottom: 0;

    padding-bottom: max(0px, env(safe-area-inset-bottom, 0px));
  }
  .pop-handle {
    display: block;
    position: relative;
    z-index: 3;
    flex: none;
    width: 36px; height: 4px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: var(--line-2);
    touch-action: none;
  }
  .pop-grab {
    position: absolute;
    inset: 0 0 auto 0;
    height: 64px;
    z-index: 2;
    touch-action: none;
  }
  .pop-inner { padding: 26px 20px 40px; }

  .pop-close { top: 8px; right: 8px; width: 44px; height: 44px; }
  .pop-eyebrow { padding-right: 46px; }
  .pop-q { margin-top: 18px; font-size: 18px; }
  .pop-a { font-size: clamp(26px, 7vw, 34px); max-width: none; }
  .pop-a--wide { font-size: clamp(24px, 6.4vw, 32px); }
  .pop-a--caps { font-size: clamp(22px, 5.8vw, 30px); max-width: none; }
  .src { grid-template-columns: minmax(0, 1fr); gap: 12px; }

  .src-a {
    display: inline-flex; align-items: center; min-height: 44px;
    border-bottom: 0;
    text-decoration: underline;
    text-decoration-color: var(--line-2);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }
  .src-a:hover, .src-a:focus-visible { text-decoration-color: var(--accent); }
  .case-hero { gap: 6px 14px; }
}

.drawer {
  position: fixed; inset: 0;
  z-index: 88;
}
.drawer[hidden] { display: none; }

.drawer-ov {
  position: absolute; inset: 0;
  background: rgba(8,9,11,.66);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  opacity: 0;
}

.drawer-card {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(480px, 100%);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  background: var(--bg-2);
  box-shadow: var(--shadow-pop);
  transform: translateX(100%);
  padding-top: max(0px, env(safe-area-inset-top, 0px));
  padding-right: max(0px, env(safe-area-inset-right, 0px));
  padding-bottom: max(0px, env(safe-area-inset-bottom, 0px));
}
.drawer-scroll {
  overflow: auto;
  overscroll-behavior: contain;
  padding: clamp(30px, 4vw, 52px) clamp(24px, 3vw, 44px) clamp(44px, 5vw, 64px);
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}

.drawer-close {
  position: absolute;
  top: calc(14px + env(safe-area-inset-top, 0px));
  right: calc(14px + env(safe-area-inset-right, 0px));
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: rgba(21,23,27,.86);
  color: var(--fg-2);
  cursor: pointer;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.drawer-close:hover, .drawer-close:focus-visible { border-color: var(--accent); color: var(--accent); }
.drawer-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.drawer-t {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 46px;
  color: var(--fg);
  font-size: var(--t-h3);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.25;
}

.drawer-t > .ic { color: var(--fg-3); }
.drawer-s { margin-top: 10px; color: var(--fg-3); font-size: var(--t-small); line-height: 1.5; }
.drawer-i {
  margin-top: clamp(26px, 3vw, 36px);
  color: var(--fg-2);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.drawer-list { margin-top: 18px; display: grid; }
.drawer-list li {
  position: relative;
  padding: 11px 0 11px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
  font-size: var(--t-small);
  line-height: 1.45;
}
.drawer-list li:last-child { border-bottom: 0; }
.drawer-list li::before {
  content: "";
  position: absolute; top: 1.32em; left: 0;
  width: 8px; height: 2px;
  background: var(--fg-3);
}
.drawer-o { margin-top: clamp(24px, 2.8vw, 34px); }
.drawer-o p { color: var(--fg-2); font-size: var(--t-small); line-height: 1.55; }
.drawer-o .principle {
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  color: var(--fg);
}
.drawer-o .note { color: var(--fg-3); }

@media (max-width: 760px) {
  .drawer-card { width: 100%; border-left: 0; }
}

.js:not(.rm):not(.nogsap) .rv,
.js:not(.rm):not(.nogsap) .rv-i,
.js:not(.rm):not(.nogsap) .rv-cell,
.js:not(.rm):not(.nogsap) .rv-chain,
.js:not(.rm):not(.nogsap) .fx { opacity: 0; }

.js:not(.rm):not(.nogsap) .b0-title .ln-i { transform: translateY(126%); }

.js:not(.rm):not(.nogsap) .b4-arm   { --b4-draw: 0; --b4-dot: 0; }
.js:not(.rm):not(.nogsap) .b6-scheme{ --b6-draw: 0; }
.js:not(.rm):not(.nogsap) .b8-cell  { clip-path: inset(0 100% 0 0); }

@media (min-width: 1024px) {
  :root { --t-label: 13.5px; }

  .counter, .pill { font-size: 12.5px; }

  .pop-eyebrow, .pop-mean-l, .pop-act, .pop-sources-l,
  .src-group-l, .case-fk, .case-proof-l { font-size: 12.5px; }

  .why--sm   { font-size: 12.5px; }
  .tile-chip { font-size: 12.5px; }
}

@media (min-width: 1600px) {
  :root { --t-h1: clamp(34px, 4.6vw, 78px); }
}

@media (prefers-reduced-motion: reduce) {
  .rv, .rv-i, .rv-cell, .rv-chain, .fx { opacity: 1 !important; transform: none !important; }

  .b8-cell { clip-path: none !important; }
  .tile:active, .why:active, .b3-num:active, .b4-fig:active,
  .b6-tile:active, .b5-btn:active, .pill:active { transform: none !important; }
  .tile::before { transition: none; }
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
