/* ============================================================
   Venti Eighty · foundations
   One accent on the whole page. It marks the human, nothing else.
   Gold and ink are lifted straight off the logo.
   ============================================================ */
:root {
  --void: #08090c;
  --void-1: #0b0d11;
  --void-2: #101319;
  --void-3: #1a1d22; /* the logo ground */

  --chalk: #f4f5f6;
  --chalk-d: rgba(244, 245, 246, 0.86);
  --chalk-f: rgba(244, 245, 246, 0.72);
  --chalk-g: rgba(244, 245, 246, 0.54);
  --rule: rgba(244, 245, 246, 0.12);
  --rule-2: rgba(244, 245, 246, 0.24);

  /* the machine is colourless on purpose */
  --machine: #98a2ae;
  --machine-l: #c3cad3;

  /* the only colour on the page */
  --human: #bc9039;
  --human-l: #e0b662;
  --human-d: #8c6a26;

  --alarm: #c7563f; /* used once, on the incident in the growth chart */

  --display: 'Cabinet Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --text:
    'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial,
    sans-serif;
  --mono:
    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease: cubic-bezier(0.33, 1, 0.68, 1);

  --wrap: 1280px;
  --gut: clamp(22px, 5vw, 72px);
}

*,
*::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(--void);
  color: var(--chalk);
  font-family: var(--text);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: -0.004em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
@media (min-width: 1200px) {
  body {
    font-size: 18px;
  }
}

img,
svg {
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
}
::selection {
  background: var(--human);
  color: #12140f;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.human {
  color: var(--human-l);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--chalk);
  color: var(--void);
  padding: 12px 18px;
  font-size: 14px;
}
.skip:focus {
  left: 12px;
  top: 12px;
}
:focus-visible {
  outline: 2px solid var(--human);
  outline-offset: 3px;
}

/* ============================================================
   Scroll motion primitives
   ============================================================ */
[data-lines] .ln {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}
[data-lines] .ln > i {
  display: block;
  font-style: normal;
}
.js [data-lines] .ln > i {
  transform: translate3d(0, 110%, 0);
  transition: transform 1.05s var(--expo);
  transition-delay: calc(var(--i, 0) * 85ms);
}
[data-lines].in .ln > i {
  transform: translate3d(0, 0, 0);
}

.js [data-rise] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 0.9s var(--ease),
    transform 1.05s var(--expo);
  transition-delay: calc(var(--d, 0) * 110ms);
}
[data-rise].in {
  opacity: 1;
  transform: none;
}

.js [data-bar] {
  --grow: 0;
}
.js .ratio__machine,
.js .ratio__human {
  transform: scaleX(0);
}
.js [data-draw] .c1__b {
  transform: scaleY(0);
}
.js [data-draw] .c2__l {
  stroke-dashoffset: 1600;
}
.js [data-draw] .c2__event,
.js [data-draw] .c2__cross,
.js [data-draw] .c2__exit,
.js [data-draw] .c2__end,
.js [data-draw] .c1__val,
.js [data-draw] .who-arc {
  opacity: 0;
}
[data-bar].in {
  --grow: 1;
}

[data-draw].in .c1__b {
  transform: scaleY(1);
}
[data-draw].in .c2__l {
  stroke-dashoffset: 0;
}
[data-draw].in .c2__event,
[data-draw].in .c2__cross,
[data-draw].in .c2__exit,
[data-draw].in .c2__end,
[data-draw].in .c1__val,
[data-draw].in .who-arc {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  [data-lines] .ln > i,
  [data-rise] {
    transition-duration: 1ms !important;
  }
  [data-rise] {
    opacity: 1;
    transform: none;
  }
}

.prog {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  z-index: 120;
  background: var(--human);
  transform-origin: 0 50%;
  transform: scaleX(var(--sp, 0));
  pointer-events: none;
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition:
    background 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  background: rgba(8, 9, 12, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--rule);
}
.nav__in {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 16px var(--gut);
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.brand__slot {
  display: block;
  flex: none;
  width: 0;
  overflow: hidden;
  transition:
    width 0.65s var(--expo),
    margin-right 0.65s var(--expo);
}
.nav.stuck .brand__slot {
  width: 52px;
  margin-right: 14px;
}
.brand__mark {
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 9px;
  opacity: 0;
  transform: translateX(-14px) scale(0.86);
  transition:
    opacity 0.5s var(--ease) 0.1s,
    transform 0.65s var(--expo) 0.1s;
}
.nav.stuck .brand__mark {
  opacity: 1;
  transform: none;
}
.brand:hover .brand__mark {
  transform: scale(1.05) rotate(-1.5deg);
}
.brand__type {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .nav.stuck .brand__slot {
    width: 42px;
    margin-right: 11px;
  }
  .brand__mark {
    width: 42px;
    height: 42px;
  }
  .brand__type {
    font-size: 21px;
  }
}
.nav__links {
  display: flex;
  gap: 30px;
  font-size: 15.5px;
  color: var(--chalk-f);
}
.nav__links a {
  position: relative;
  padding-block: 4px;
  transition: color 0.25s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--human);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.5s var(--expo);
}
.nav__links a:hover {
  color: var(--chalk);
}
.nav__links a:hover::after {
  transform: scaleX(1);
}
@media (max-width: 1020px) {
  .nav__links {
    display: none;
  }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 2px;
  font-size: 15.5px;
  font-weight: 500;
  border: 1px solid var(--rule-2);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--human);
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition: transform 0.5s var(--expo);
}
.btn > span {
  position: relative;
  z-index: 1;
}
.btn--ghost:hover {
  border-color: var(--chalk);
}
.btn--solid {
  background: var(--chalk);
  color: var(--void);
  border-color: var(--chalk);
  font-weight: 600;
}
.btn--solid:hover {
  color: #0e0f0b;
  border-color: var(--human);
}
.btn--solid:hover::before {
  transform: scaleY(1);
}
.btn--lg {
  padding: 19px 36px;
  font-size: 18px;
  font-family: var(--mono);
  letter-spacing: -0.01em;
}
@media (max-width: 620px) {
  .nav__in .nav__cta {
    display: none;
  }
}

/* ============================================================
   Type scale
   ============================================================ */
.display {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.65rem, 7.6vw, 7.4rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
}
.display--sm {
  font-size: clamp(2.15rem, 5.4vw, 5rem);
}
.h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.15rem, 5.4vw, 4.9rem);
  line-height: 1;
  letter-spacing: -0.032em;
  margin: 0;
}
.fig {
  color: var(--machine);
  font-weight: 900;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chalk-g);
  margin: 0 0 26px;
}
.lede {
  font-size: clamp(1.14rem, 1.55vw, 1.42rem);
  line-height: 1.52;
  color: var(--chalk-d);
  margin: 0;
  max-width: 34ch;
}
.body {
  font-size: 1.06rem;
  line-height: 1.68;
  color: var(--chalk-d);
  margin: 0 0 1.2em;
  max-width: 58ch;
}
@media (min-width: 1200px) {
  .body {
    font-size: 1.13rem;
  }
}
.body--lead {
  font-size: 1.16rem;
  color: var(--chalk);
}
@media (min-width: 1200px) {
  .body--lead {
    font-size: 1.26rem;
  }
}
.body b,
.body strong {
  color: var(--chalk);
  font-weight: 600;
}
.body em {
  font-style: normal;
  color: var(--chalk);
}

/* ============================================================
   Sections
   ============================================================ */
.sec {
  padding-block: clamp(104px, 14vh, 180px);
  position: relative;
}
.sec--dark {
  background: var(--void-1);
}
.sec--dark::before,
.sec--dark::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rule);
}
.sec--dark::before {
  top: 0;
}
.sec--dark::after {
  bottom: 0;
}

.sechead {
  max-width: none;
  margin-bottom: clamp(52px, 6vw, 88px);
}
.sechead__note {
  margin: 32px 0 0;
  max-width: 56ch;
  font-size: 1.08rem;
  line-height: 1.62;
  color: var(--chalk-f);
}

.pull {
  margin: clamp(58px, 7vw, 96px) 0 0;
  padding: 0 0 0 clamp(22px, 3vw, 40px);
  border-left: 3px solid var(--human);
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.34;
  letter-spacing: -0.02em;
  color: var(--chalk-f);
  max-width: 36ch;
}
.pull em {
  font-style: normal;
  color: var(--chalk);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 112px 56px;
}
.hero__in {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.hero__copy {
  min-width: 0;
}
/* the headline lives in a column now, so it cannot use the full-bleed scale */
.hero .display {
  font-size: clamp(2.4rem, 4.5vw, 4.7rem);
  margin-bottom: clamp(24px, 3vw, 36px);
}
@media (max-width: 1020px) {
  .hero .display {
    font-size: clamp(2.5rem, 7.2vw, 5.4rem);
  }
}
.hero .lede {
  max-width: 40ch;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: clamp(28px, 3.4vw, 42px);
}

.hero__film {
  margin: 0;
  min-width: 0;
}
.hero__video {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 0;
  border-radius: 4px;
  background: var(--void);
}
.hero__filmcap {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chalk-g);
  text-align: right;
}
@media (max-width: 1020px) {
  .hero {
    min-height: 0;
    padding-block: 132px 72px;
  }
  .hero__in {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero__film {
    max-width: 520px;
  }
  .hero .lede {
    max-width: 52ch;
  }
}

/* ---- the 80/20, one square per item ---- */
.split {
  padding-block: clamp(76px, 9vw, 124px);
  border-top: 1px solid var(--rule);
}
.split__h {
  margin: 0 0 30px;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chalk-g);
}
.grid100 {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: clamp(4px, 0.7vw, 9px);
  margin-bottom: 34px;
}
.grid100 span {
  display: block;
  aspect-ratio: 1;
  border-radius: 2px;
  background: var(--machine);
  opacity: 0;
  transform: scale(0.4);
  transition:
    opacity 0.5s var(--ease),
    transform 0.7s var(--expo);
  transition-delay: calc(var(--i) * 11ms);
}
.grid100 span.is-h {
  background: var(--human);
}
.grid100.in span {
  opacity: 0.5;
  transform: none;
}
.grid100.in span.is-h {
  opacity: 1;
}
@media (max-width: 720px) {
  .grid100 {
    grid-template-columns: repeat(10, 1fr);
  }
}

.split__legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 72px);
}
@media (max-width: 820px) {
  .split__legend {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
.split__side {
  border-top: 2px solid var(--machine);
  padding-top: 22px;
}
.split__side--h {
  border-top-color: var(--human);
}
.split__n {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.6rem, 4.4vw, 3.9rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--machine-l);
  margin-bottom: 14px;
}
.split__side--h .split__n {
  color: var(--human-l);
}
.split__side p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.62;
  color: var(--chalk-f);
  max-width: 46ch;
}
.split__side b {
  color: var(--chalk);
  font-weight: 600;
}

/* ============================================================
   Chart frame, shared
   ============================================================ */
.fig-block {
  margin: 0 0 clamp(58px, 7vw, 96px);
  border: 1px solid var(--rule);
  background: var(--void-2);
  padding: clamp(22px, 2.6vw, 34px);
}
.sec--dark .fig-block {
  background: var(--void);
}
.fig-block__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.fig-block__k {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--chalk-d);
}
.fig-block__u {
  margin: 0;
  font-size: 0.94rem;
  color: var(--chalk-g);
}
.fig-block__key {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.k {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--chalk-f);
}
.k::before {
  content: '';
  width: 20px;
  height: 3px;
  border-radius: 2px;
}
.k--human::before {
  background: var(--machine);
  opacity: 0.7;
}
.k--agent::before {
  background: var(--alarm);
}
.k--us::before {
  background: var(--human);
}
.fig-block__src {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--chalk-g);
  max-width: 88ch;
}
.fig-block__src b {
  color: var(--chalk-f);
  font-weight: 600;
}
.fig-block__src a {
  color: var(--chalk-f);
  border-bottom: 1px solid var(--rule-2);
}
.fig-block__src a:hover {
  color: var(--human-l);
  border-color: var(--human);
}

/* a chart shrunk to phone width is a chart nobody can read */
.scroller {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.scroller__hint {
  display: none;
}
@media (max-width: 860px) {
  .scroller {
    margin-inline: calc(clamp(22px, 2.6vw, 34px) * -1);
    padding-inline: clamp(22px, 2.6vw, 34px);
  }
  .scroller > svg {
    min-width: 760px;
  }
  .scroller__hint {
    display: block;
    margin: 12px 0 0;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--chalk-g);
  }
}
/* ---- chart 1 : the ceiling ---- */
.c1 {
  width: 100%;
  height: auto;
  display: block;
}
.c1__grid line {
  stroke: var(--rule);
  stroke-width: 1;
}
.c1__ax text {
  fill: var(--chalk-g);
  font-family: var(--mono);
  font-size: 15px;
  text-anchor: end;
}
.c1__b {
  transform-origin: 50% 100%;
  transition: transform 1.15s var(--expo);
}
.c1__b--m {
  fill: var(--machine);
  opacity: 0.65;
}
.c1__b--h {
  fill: var(--machine-l);
  transition-delay: 0.2s;
}
.c1__val text {
  fill: var(--chalk);
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  text-anchor: middle;
  transition: opacity 0.6s var(--ease) 0.9s;
}
.c1__val .c1__val--h {
  fill: var(--chalk);
  font-size: 34px;
}
.c1__lab text {
  fill: var(--chalk-f);
  font-size: 17px;
  text-anchor: middle;
}
.c1__lab .c1__lab--h {
  fill: var(--chalk);
}
.c1__lab .c1__lab--h {
  fill: var(--chalk);
  font-weight: 600;
}
.c1__sub {
  fill: var(--chalk-g) !important;
  font-family: var(--mono);
  font-size: 13px !important;
}
.c1__sub--h {
  fill: var(--chalk-f) !important;
}
@media (max-width: 720px) {
  .c1__lab text {
    font-size: 20px;
  }
  .c1__sub {
    font-size: 16px !important;
  }
  .c1__ax text {
    font-size: 18px;
  }
  .c1__val text {
    font-size: 30px;
  }
}

/* ---- chart 2 : three futures ---- */
.c2 {
  width: 100%;
  height: auto;
  display: block;
}
.c2__grid line {
  stroke: var(--rule);
  stroke-width: 1;
}
.c2__axis path {
  stroke: var(--rule-2);
  stroke-width: 1.5;
  fill: none;
}
.c2__axis .c2__arrowhead {
  stroke: var(--rule-2);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.c2__axlab {
  fill: var(--chalk-f);
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-anchor: middle;
}
.c2__l {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1600;
  transition: stroke-dashoffset 2.4s var(--expo);
}
.c2__l--human {
  stroke: var(--machine);
  opacity: 0.75;
}
.c2__l--agent {
  stroke: var(--alarm);
  transition-delay: 0.15s;
}
.c2__l--us {
  stroke: var(--human);
  stroke-width: 3.6;
  transition-delay: 0.3s;
}
.c2__event {
  transition: opacity 0.6s var(--ease) 1.5s;
}
.c2__event line {
  stroke: var(--alarm);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
}
.c2__event circle {
  fill: var(--alarm);
}
.c2__event text {
  fill: var(--alarm);
  font-family: var(--mono);
  font-size: 14px;
  text-anchor: end;
}
.c2__event .c2__event-s {
  fill: var(--chalk-g);
  font-size: 12.5px;
}
.c2__cross {
  transition: opacity 0.6s var(--ease) 1.8s;
}
.c2__cross circle {
  fill: var(--human);
}
.c2__cross path {
  stroke: var(--human);
  stroke-width: 1.4;
  fill: none;
  opacity: 0.7;
}
.c2__cross text {
  fill: var(--human-l);
  font-family: var(--mono);
  font-size: 15px;
}
.c2__end {
  transition: opacity 0.6s var(--ease) 2.1s;
}
.c2__end text {
  font-family: var(--mono);
  font-size: 15px;
}
.c2__end .c2__end--sub {
  font-size: 12.5px;
  opacity: 0.7;
}
.c2__lead {
  stroke: var(--alarm);
  stroke-width: 1.2;
  fill: none;
  opacity: 0.65;
}
.c2__lead--h {
  stroke: var(--machine);
}
.c2__end .c2__end--human {
  fill: var(--machine);
}
.c2__end .c2__end--agent {
  fill: var(--alarm);
}
@media (max-width: 860px) {
  .c2__axlab {
    font-size: 17px;
  }
  .c2__event text {
    font-size: 16px;
  }
  .c2__event .c2__event-s {
    font-size: 14px;
  }
  .c2__cross text {
    font-size: 16px;
  }
  .c2__end text {
    font-size: 16px;
  }
  .c2__end .c2__end--sub {
    font-size: 14px;
  }
}

/* headcount, shown rather than stated */
.heads {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
}
.heads__k {
  margin: 0 0 20px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chalk-g);
}
.heads__row {
  display: grid;
  grid-template-columns: clamp(104px, 11vw, 150px) minmax(120px, 1fr) auto;
  gap: 8px clamp(14px, 2vw, 26px);
  align-items: center;
  padding-block: 11px;
  border-top: 1px solid var(--rule);
}
.heads__lab {
  font-size: 0.98rem;
  color: var(--chalk-f);
}
.heads__row.is-ours .heads__lab {
  color: var(--chalk);
}
.heads__dots {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}
.heads__dots i {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--machine);
  opacity: 0;
  transform: scale(0.3);
  transition:
    opacity 0.45s var(--ease),
    transform 0.6s var(--expo);
  transition-delay: calc(var(--i) * 26ms);
}
.heads__row.in .heads__dots i {
  opacity: 0.62;
  transform: none;
}
.heads__dots i.is-gone {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--rule-2);
}
.heads__row.in .heads__dots i.is-gone {
  opacity: 1;
}
.heads__dots i.is-new {
  background: var(--machine-l);
}
.heads__row.is-ours .heads__dots i {
  background: var(--human);
}
.heads__row.in .heads__dots--us i {
  opacity: 1;
}
.heads__note {
  font-size: 0.9rem;
  color: var(--chalk-g);
  text-align: right;
}
@media (max-width: 720px) {
  .heads__row {
    grid-template-columns: 1fr;
  }
  .heads__note {
    text-align: left;
  }
}

/* ============================================================
   What the index says
   ============================================================ */
.problem {
  max-width: 62ch;
}
.problem__p {
  margin: 0 0 1.1em;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.28rem, 2.1vw, 1.78rem);
  line-height: 1.36;
  letter-spacing: -0.022em;
  color: var(--chalk-f);
}
.problem__p--k {
  color: var(--chalk);
  margin-bottom: 0;
}

/* ============================================================
   The thesis
   ============================================================ */
.thesis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 88px);
}
@media (max-width: 940px) {
  .thesis {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.thesis__close {
  margin-top: clamp(52px, 6vw, 84px);
  max-width: 70ch;
}

.ladder {
  margin-top: clamp(52px, 6vw, 84px);
  border-top: 1px solid var(--rule);
  padding-top: 34px;
}
.ladder__k {
  margin: 0 0 30px;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chalk-g);
}
.ladder__rows {
  display: grid;
  gap: 22px;
}
.ladder__row {
  display: grid;
  grid-template-columns: clamp(88px, 9vw, 120px) minmax(120px, 1fr) auto;
  grid-template-areas: 't track v' '. s s';
  gap: 6px clamp(16px, 2.2vw, 28px);
  align-items: center;
}
.ladder__t {
  grid-area: t;
  font-family: var(--mono);
  font-size: 0.86rem;
  color: var(--chalk-f);
}
.ladder__track {
  grid-area: track;
  display: block;
  height: 16px;
  background: rgba(244, 245, 246, 0.07);
  position: relative;
}
.ladder__track > i {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  height: 100%;
  width: calc(var(--v) * 1%);
  background: var(--machine);
  opacity: 0.62;
  transform: scaleX(var(--grow, 1));
  transform-origin: 0 50%;
  transition: transform 1.2s var(--expo) 0.1s;
}
.ladder__row.is-grad .ladder__track > i {
  background: var(--human);
  opacity: 1;
}
.ladder__v {
  grid-area: v;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  min-width: 4.6ch;
  text-align: right;
  color: var(--chalk);
}
.ladder__row.is-grad .ladder__v {
  color: var(--human-l);
}
.ladder__s {
  grid-area: s;
  font-size: 0.98rem;
  color: var(--chalk-g);
}
.ladder__foot {
  margin: 30px 0 0;
  max-width: 62ch;
  font-size: 1.04rem;
  line-height: 1.62;
  color: var(--chalk-f);
}
@media (max-width: 620px) {
  .ladder__row {
    grid-template-columns: 1fr auto;
    grid-template-areas: 't v' 'track track' 's s';
  }
}

/* the three providers */
.stack {
  margin-top: clamp(56px, 7vw, 96px);
  border: 1px solid var(--rule-2);
  padding: clamp(30px, 4vw, 52px);
  background: linear-gradient(
    160deg,
    rgba(188, 144, 57, 0.07),
    transparent 62%
  );
}
.stack__k {
  margin: 0 0 26px;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chalk-g);
}
.stack__line {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--display);
  font-weight: 500;
  color: var(--chalk-f);
  font-size: clamp(1.35rem, 2.8vw, 2.3rem);
  line-height: 1.22;
  letter-spacing: -0.024em;
}
.stack__line b {
  color: var(--chalk);
  font-weight: 800;
}
.stack__line--us {
  border-bottom: none;
  padding-bottom: 0;
}
.stack__line--us b {
  color: var(--human-l);
}
.stack__arch {
  font-style: italic;
  font-weight: 800;
  color: var(--human-l);
  letter-spacing: -0.02em;
}

/* ============================================================
   Three futures
   ============================================================ */
.futures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
@media (max-width: 940px) {
  .futures {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}
.future {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.future--us {
  border-top-color: var(--human);
}
.future__dot {
  display: block;
  width: 26px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.future__dot--human {
  background: var(--machine);
  opacity: 0.7;
}
.future__dot--agent {
  background: var(--alarm);
}
.future__dot--us {
  background: var(--human);
}
.future__h {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.35rem, 1.9vw, 1.65rem);
  letter-spacing: -0.022em;
}
.future--us .future__h {
  color: var(--human-l);
}
.future__p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.64;
  color: var(--chalk-f);
}

/* ============================================================
   Any scale
   ============================================================ */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 1000px) {
  .tiers {
    grid-template-columns: 1fr;
  }
}
.tier {
  background: var(--void);
  padding: clamp(26px, 2.8vw, 38px);
  display: flex;
  flex-direction: column;
}
.sec--dark .tier {
  background: var(--void-1);
}
.tier--mid {
  background:
    linear-gradient(180deg, rgba(188, 144, 57, 0.06), transparent 55%),
    var(--void);
}
.tier__k {
  margin: 0 0 22px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chalk-g);
}
.tier--mid .tier__k {
  color: var(--human-l);
}

/* the work grows, the number of gold squares barely does */
.tier__viz {
  margin-bottom: 26px;
  min-height: 196px;
  display: flex;
  align-items: flex-end;
}
.tier__cells {
  display: grid;
  gap: 4px;
  width: 100%;
  grid-template-columns: repeat(12, 1fr);
}
.tier__cells i {
  display: block;
  aspect-ratio: 1;
  border-radius: 1.5px;
  background: var(--machine);
  opacity: 0;
  transform: scale(0.4);
  transition:
    opacity 0.45s var(--ease),
    transform 0.6s var(--expo);
  transition-delay: calc(var(--i) * 12ms);
}
.tier__cells i.is-h {
  background: var(--human);
}
[data-bar].in .tier__cells i {
  opacity: 0.42;
  transform: none;
}
[data-bar].in .tier__cells i.is-h {
  opacity: 1;
}

.tier__h {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.28rem, 1.8vw, 1.55rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
}
.tier__name {
  color: var(--human-l);
}
.tier__p {
  margin: 0 0 22px;
  font-size: 1.01rem;
  line-height: 1.6;
  color: var(--chalk-f);
}
.tier__m {
  margin: auto 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--chalk-g);
}
.tier__m b {
  color: var(--chalk);
  font-weight: 500;
}
.tier--mid .tier__m b {
  color: var(--human-l);
}
.tiers__note {
  margin: 30px 0 0;
  max-width: 72ch;
  font-size: 1.02rem;
  line-height: 1.62;
  color: var(--chalk-g);
}

/* what belongs to whom */
.owned {
  margin-top: clamp(52px, 6vw, 84px);
  border: 1px solid var(--rule-2);
  padding: clamp(28px, 3.4vw, 46px);
  background: linear-gradient(
    160deg,
    rgba(188, 144, 57, 0.06),
    transparent 60%
  );
}
.owned__k {
  margin: 0 0 24px;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chalk-g);
}
.owned__rows {
  display: grid;
  gap: 0;
}
.owned__line {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 1.08rem;
  line-height: 1.56;
  color: var(--chalk-f);
}
.owned__line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.owned__line b {
  color: var(--chalk);
  font-weight: 600;
}
.owned__line--us b {
  color: var(--human-l);
}
@media (min-width: 1200px) {
  .owned__line {
    font-size: 1.16rem;
  }
}

/* ============================================================
   The five pillars
   ============================================================ */
.five {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 1100px) {
  .five {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .five {
    grid-template-columns: 1fr;
  }
}
.pil {
  background: var(--void);
  padding: clamp(26px, 2.6vw, 34px);
  transition: background 0.5s var(--ease);
}
.sec--dark .pil {
  background: var(--void-1);
}
.pil:hover {
  background: var(--void-2);
}
.pil__art {
  margin-bottom: 26px;
}
.pil__art svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.pil-rule {
  stroke: var(--rule-2);
  stroke-width: 1.5;
}
.pil-line {
  stroke: var(--machine);
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pil-thin {
  stroke: var(--human);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pil-dot {
  fill: var(--human);
}
.pil-fill {
  fill: var(--human);
}
.pil-thin-fill {
  fill: var(--machine);
  opacity: 0.5;
}
.pil-fill-soft {
  fill: var(--human);
  opacity: 0.14;
}
.pil-arrow {
  stroke: var(--machine);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  opacity: 0.6;
}
.pil-pupil {
  fill: var(--void);
}
.pil__h {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.02em;
}
.pil__p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--chalk-f);
}

/* ============================================================
   The standard
   ============================================================ */
.laws {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.law {
  background: var(--void);
  display: flex;
  flex-direction: column;
  transition: background 0.5s var(--ease);
}
.sec--dark .law {
  background: var(--void-1);
}
.law:hover {
  background: var(--void-2);
}
.law__hit {
  display: grid;
  grid-template-columns: auto 52px 1fr auto;
  align-items: center;
  gap: clamp(12px, 1.6vw, 20px);
  width: 100%;
  text-align: left;
  padding: clamp(22px, 2.4vw, 30px) clamp(20px, 2.4vw, 30px) 14px;
  background: none;
  border: 0;
  cursor: default;
  font: inherit;
}
.law__n {
  font-family: var(--mono);
  font-size: 0.84rem;
  color: var(--chalk-g);
  letter-spacing: 0.05em;
  align-self: start;
  padding-top: 0.5em;
}
.law__art {
  display: block;
}
.law__art svg {
  width: 100%;
  height: auto;
  display: block;
}
.law__h {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.14rem;
  line-height: 1.24;
  letter-spacing: -0.018em;
  color: var(--chalk);
}
.law__more {
  display: none;
}
.lw {
  stroke: var(--machine);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lw-d {
  fill: var(--human);
}
.lw-d2 {
  stroke: var(--human);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lw-fill {
  fill: var(--human);
}
.law__p {
  margin: 0;
  padding: 0 clamp(20px, 2.4vw, 30px) clamp(24px, 2.6vw, 32px)
    calc(clamp(20px, 2.4vw, 30px) + 52px + clamp(12px, 1.6vw, 20px) + 2.4ch);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--chalk-f);
}
@media (min-width: 1200px) {
  .law__h {
    font-size: 1.22rem;
  }
  .law__p {
    font-size: 1.07rem;
  }
}
@media (max-width: 1020px) {
  .law__hit {
    grid-template-columns: auto 40px 1fr auto;
    padding: 20px 18px 12px;
  }
  .law__h {
    font-size: 1rem;
  }
  .law__p {
    padding: 0 18px 22px 18px;
    font-size: 0.96rem;
  }
}

/* phones: title only, tap to open, and the row never resizes */
@media (max-width: 760px) {
  .laws {
    grid-template-columns: 1fr 1fr;
  }
  .law {
    position: relative;
  }
  .law__hit {
    grid-template-columns: auto 1fr;
    grid-template-areas: 'n more' 'art art' 'h h';
    align-items: start;
    gap: 10px;
    padding: 16px 14px 10px;
    cursor: pointer;
  }
  .law__n {
    grid-area: n;
    padding-top: 0;
  }
  .law__art {
    grid-area: art;
    width: 34px;
    margin-top: 4px;
  }
  .law__h {
    grid-area: h;
    font-size: 0.94rem;
    margin-top: 8px;
  }
  .law__more {
    grid-area: more;
    display: block;
    justify-self: end;
    width: 16px;
    height: 16px;
    position: relative;
    opacity: 0.6;
  }
  .law__more::before,
  .law__more::after {
    content: '';
    position: absolute;
    inset: 50% 0 auto 0;
    height: 1.5px;
    background: var(--human);
    transition: transform 0.35s var(--expo);
  }
  .law__more::after {
    transform: rotate(90deg);
  }
  .law__hit[aria-expanded='true'] .law__more::after {
    transform: rotate(0deg);
  }
  /* the copy stays in flow so its space is always reserved and nothing shifts on tap */
  .law__p {
    padding: 0 14px 16px;
    margin-top: 10px;
    font-size: 0.86rem;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition:
      opacity 0.35s var(--ease),
      transform 0.45s var(--expo),
      visibility 0.35s;
  }
  .law.is-open .law__p {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .law.is-open {
    background: var(--void-2);
  }
}

/* ============================================================
   About the entrepreneur
   ============================================================ */
.who {
  display: grid;
  grid-template-columns: clamp(240px, 26vw, 340px) 1fr;
  gap: clamp(38px, 6vw, 90px);
  align-items: start;
}
@media (max-width: 900px) {
  .who {
    grid-template-columns: 1fr;
  }
}
.who__port {
  margin: 0;
  position: relative;
}
.who__ring {
  position: absolute;
  top: -14px;
  left: -14px;
  width: calc(100% + 28px);
  aspect-ratio: 1;
  pointer-events: none;
}
.who__ring svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(-90deg);
}
.who-arc {
  fill: none;
  stroke-width: 6;
  stroke-linecap: butt;
  transition: opacity 0.8s var(--ease) 0.4s;
}
.who-arc--m {
  stroke: var(--machine);
  opacity: 0.55;
}
.who-arc--h {
  stroke: var(--human);
}
.who__img {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: var(--void-3);
  border: 1px solid var(--rule-2);
  padding: 22px;
}
.who__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 118%,
    rgba(188, 144, 57, 0.3),
    transparent 58%
  );
  opacity: 0.55;
  transition: opacity 0.6s var(--ease);
}
.who__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 24%;
  display: block;
  transform: scale(1.16);
  filter: grayscale(0.42) contrast(1.04) brightness(0.92);
  transition:
    transform 1.1s var(--expo),
    filter 0.7s var(--ease);
}
.who__port:hover .who__img img {
  transform: scale(1.24);
  filter: none;
}
.who__port:hover .who__img::after {
  opacity: 0.85;
}
.who__port:hover .who-arc--h {
  stroke-dashoffset: -640;
}
.who-arc--h {
  transition:
    stroke-dashoffset 1.6s var(--expo),
    opacity 0.8s var(--ease) 0.4s;
}

.who__cap {
  margin-top: 42px;
  text-align: center;
  display: grid;
  gap: 7px;
}
.who__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.62rem;
  letter-spacing: -0.024em;
  line-height: 1.1;
  color: var(--chalk);
}
.who__role {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.018em;
  color: var(--chalk-f);
}
.who__co {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--human-l);
}
.who__facts {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 60ch;
}
@media (max-width: 900px) {
  .who__port {
    margin-bottom: 14px;
  }
}
.who__facts li {
  display: grid;
  grid-template-columns: clamp(88px, 9vw, 116px) 1fr;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--rule);
  font-size: 1rem;
  color: var(--chalk-f);
}
.who__facts li:last-child {
  border-bottom: 1px solid var(--rule);
}
.who__facts span {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--chalk-g);
  padding-top: 0.28em;
}

/* ============================================================
   Close + foot
   ============================================================ */
.close {
  padding-block: clamp(110px, 15vh, 200px);
  border-top: 1px solid var(--rule);
  background: var(--void-1);
  position: relative;
  overflow: hidden;
}
.close::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -40%;
  width: min(900px, 110vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(188, 144, 57, 0.11),
    transparent 62%
  );
  pointer-events: none;
}
.close__in {
  position: relative;
  z-index: 1;
}
.close__lead {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.4vw, 52px);
}
.close__mark {
  display: block;
  flex: none;
  width: clamp(96px, 11vw, 168px);
  height: auto;
  aspect-ratio: 1;
  border-radius: clamp(16px, 1.8vw, 28px);
}
@media (max-width: 760px) {
  .close__lead {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .close__mark {
    width: 104px;
  }
}
.close__body {
  margin: 38px 0 0;
  max-width: 56ch;
  font-size: 1.14rem;
  line-height: 1.6;
  color: var(--chalk-d);
}
.close__actions {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.close__seal {
  margin: clamp(52px, 7vw, 84px) 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  line-height: 1.48;
  color: var(--chalk-f);
  letter-spacing: -0.01em;
}

.foot {
  border-top: 1px solid var(--rule);
  padding-block: 28px;
}
.foot__in {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 6vw, 88px);
}
@media (max-width: 900px) {
  .foot__in {
    flex-direction: column;
    gap: 22px;
    text-align: center;
  }
  .foot__brand {
    justify-content: center;
  }
}
.foot__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand__mark--sm {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  /* .brand__mark hides itself until the nav sticks; the footer has no such cue */
  opacity: 1;
  transform: none;
}
.foot__id {
  display: grid;
  gap: 4px;
  text-align: left;
}
.foot__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.022em;
  line-height: 1.1;
}
.foot__tag {
  font-size: 0.82rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--chalk-g);
}
.foot__meta {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--chalk-f);
  text-align: right;
}
@media (max-width: 900px) {
  .foot__meta {
    text-align: center;
  }
}
.foot__meta a {
  color: var(--human-l);
  border-bottom: 1px solid var(--rule-2);
}
.foot__meta a:hover {
  border-color: var(--human);
}

/* ============================================================
   THE LOOP
   ============================================================ */
.loop__frame {
  margin-block: 0 clamp(38px, 5vw, 60px);
}

.tele {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  padding: 16px clamp(18px, 2.4vw, 28px);
  border: 1px solid var(--rule);
  border-bottom: none;
  background: var(--void-2);
  transition: border-color 0.5s var(--ease);
}
.tele.is-human {
  border-color: rgba(188, 144, 57, 0.5);
}
.tele.is-done {
  border-color: var(--rule-2);
}
.tele__item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tele__k {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chalk-g);
}
.tele__v {
  font-family: var(--mono);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--chalk);
  font-variant-numeric: tabular-nums;
}
.tele.is-human .tele__item--state .tele__v {
  color: var(--human-l);
}
.tele__btn {
  margin-left: auto;
  background: none;
  border: 1px solid var(--rule-2);
  border-radius: 2px;
  padding: 10px 18px;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--chalk-f);
  transition:
    color 0.3s,
    border-color 0.3s;
}
.tele__btn:hover {
  color: var(--chalk);
  border-color: var(--chalk);
}

.loop__body {
  display: grid;
  grid-template-columns: clamp(180px, 17vw, 240px) 1fr;
  border: 1px solid var(--rule);
  background: var(--void);
  min-height: 520px;
}
.sec--dark .loop__body {
  background: var(--void);
}
@media (max-width: 860px) {
  .loop__body {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

.rail {
  list-style: none;
  margin: 0;
  padding: 24px 0;
  border-right: 1px solid var(--rule);
}
@media (max-width: 860px) {
  .rail {
    display: flex;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 14px 12px;
    gap: 6px;
  }
}
.rnode {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 22px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}
.rnode:hover {
  background: rgba(244, 245, 246, 0.04);
}
.rnode__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
  border: 1.5px solid var(--chalk-g);
  background: transparent;
  transition:
    border-color 0.4s,
    background 0.4s,
    box-shadow 0.4s,
    transform 0.4s var(--expo);
}
.rnode.human .rnode__dot {
  border-color: var(--human);
}
.rnode.done .rnode__dot {
  background: var(--machine);
  border-color: var(--machine);
}
.rnode.done.human .rnode__dot {
  background: var(--human);
  border-color: var(--human);
}
.rnode.active .rnode__dot {
  background: var(--chalk);
  border-color: var(--chalk);
  transform: scale(1.25);
  box-shadow: 0 0 0 5px rgba(244, 245, 246, 0.1);
}
.rnode.active.human .rnode__dot {
  background: var(--human);
  border-color: var(--human);
  box-shadow: 0 0 0 5px rgba(188, 144, 57, 0.22);
}
.rnode__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.rnode__n {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--chalk-g);
}
.rnode__name {
  font-size: 0.96rem;
  color: var(--chalk-f);
  white-space: nowrap;
  transition: color 0.3s;
}
.rnode.active .rnode__name {
  color: var(--chalk);
}
.rnode.done .rnode__name {
  color: var(--chalk-d);
}
@media (max-width: 860px) {
  .rnode {
    padding: 9px 13px;
  }
  .rnode__name {
    font-size: 0.88rem;
  }
}

.stagewrap {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
}
.stage {
  padding: clamp(28px, 3.4vw, 48px);
  min-width: 0;
}
.stage__kick {
  margin: 0 0 16px;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chalk-g);
}
.stage.is-human .stage__kick {
  color: var(--human-l);
}
.stage__h {
  margin: 0 0 18px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.stage__p {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.62;
  color: var(--chalk-d);
  max-width: 56ch;
}
.stage__anim {
  animation: stagein 0.6s var(--expo) both;
}
@keyframes stagein {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.logbox {
  border-top: 1px solid var(--rule);
  padding: 16px clamp(28px, 3.4vw, 48px) 20px;
  background: rgba(0, 0, 0, 0.24);
}
.logbox__k {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chalk-g);
}
.logbox__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
  min-height: 104px;
}
.logbox__list li {
  font-family: var(--mono);
  font-size: 0.83rem;
  color: var(--chalk-f);
  display: flex;
  gap: 12px;
  animation: logline 0.35s var(--ease) both;
}
.logbox__list li b {
  color: var(--chalk-g);
  font-weight: 400;
  min-width: 8ch;
}
.logbox__list li.hl b,
.logbox__list li.hl {
  color: var(--human-l);
}
@keyframes logline {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.appcard {
  margin-top: 28px;
  border: 1px solid rgba(188, 144, 57, 0.5);
  background: var(--void-2);
  animation: stagein 0.55s var(--expo) both;
}
.appcard__top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--human-l);
}
.pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--human);
  flex: none;
}
.appcard__body {
  padding: 22px 20px;
}
.appcard__from {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--chalk-g);
  margin-bottom: 16px;
}
.appcard__draft {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.62;
  color: var(--chalk-d);
}
.appcard__draft strong {
  color: var(--chalk);
  font-weight: 600;
}
.appcard__why,
.appcard__flag {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding-top: 13px;
  border-top: 1px solid var(--rule);
  font-size: 0.92rem;
  color: var(--chalk-f);
}
.appcard__k {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk-g);
  min-width: 5ch;
  padding-top: 0.2em;
}
.appcard__flag .appcard__k {
  color: var(--human-l);
}
.appcard__acts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 20px;
  border-top: 1px solid var(--rule);
}
.abtn {
  padding: 12px 20px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 500;
  border: 1px solid var(--rule-2);
  background: none;
  transition: all 0.28s var(--ease);
}
.abtn--yes {
  background: var(--human);
  border-color: var(--human);
  color: #12140f;
  font-weight: 600;
}
.abtn--yes:hover {
  background: var(--human-d);
  border-color: var(--human-d);
  color: var(--chalk);
}
.abtn--edit:hover,
.abtn--no:hover {
  border-color: var(--chalk);
  color: var(--chalk);
}
.appcard__hint {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--chalk-g);
  letter-spacing: 0.05em;
}

.outcome {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  margin-top: 30px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.ocell {
  background: var(--void-1);
  padding: 18px 18px 20px;
}
.ocell__k {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk-g);
}
.ocell__v {
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  color: var(--chalk);
}
.ocell__v--warm {
  color: var(--human-l);
}
.ocell__v--cold {
  color: var(--machine-l);
}
.ocell__s {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--chalk-f);
}

.loop__note {
  margin: 0;
  max-width: 66ch;
  font-size: 1.06rem;
  line-height: 1.64;
  color: var(--chalk-f);
}
