@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/inter-latin-dxhc940764593d0fe5d.c940764593d0fe5d.woff2") format("woff2");
}

@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/inter-tight-latin-dxh83d548cd73ef2e03.83d548cd73ef2e03.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ibm-plex-mono-regular-latin-dxhc36f509c0a8f9f85.c36f509c0a8f9f85.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/ibm-plex-mono-medium-latin-dxha76f53ca6612e7b3.a76f53ca6612e7b3.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --paper: #f7f7f4;
  --paper-pure: #fff;
  --ink-900: #0c0d0c;
  --ink-700: #232522;
  --ink-500: #6a6e68;
  --ink-300: #a9aca5;
  --hairline: #e3e3de;
  --grass-700: #12603a;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --gutter: clamp(24px, 6vw, 96px);
  --measure: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink-900);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body:has(.lb[open]) { overflow: hidden; }

img,
svg { max-width: 100%; }

.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--measure);
  margin: 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

a { color: inherit; }

::selection {
  background: #d8e6dc;
  color: var(--ink-900);
}

:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--grass-700);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1.display,
h2.title,
.lede { text-wrap: balance; }

.timeline .e,
.reasons p,
.body { text-wrap: pretty; }

.stats .n,
.timeline .t,
.reasons .num,
.chart .lbl { font-variant-numeric: tabular-nums; }

.accent { color: var(--grass-700); }

h1.display {
  font-family: var(--display);
  font-size: clamp(40px, 6.4vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.032em;
}

h2.title {
  max-width: 21ch;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.026em;
}

h2.title .pred { color: var(--ink-500); }

h2.title.credit {
  font-size: clamp(23px, 2.5vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.022em;
}

h2.title.title-wide { max-width: 36ch; }

.body-spaced { margin-top: 18px; }

header.site {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(247, 247, 244, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  transition: background 0.25s ease, border-color 0.25s ease;
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}

header.site.scrolled {
  border-bottom-color: var(--hairline);
  background: rgba(247, 247, 244, 0.9);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.wordmark {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink-900);
  color: var(--paper);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.18s ease;
}

.btn:hover {
  background: var(--grass-700);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px);
  transition-duration: 0.06s;
}

.btn.lg {
  padding: 14px 26px;
  font-size: 16px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 40px);
}

section.hero { padding: clamp(56px, 9vw, 120px) 0 clamp(48px, 7vw, 96px); }

section.hero h1 { max-width: 24ch; }

section.hero .lede {
  max-width: 52ch;
  margin-top: 26px;
  color: var(--ink-500);
  font-family: var(--display);
  font-size: clamp(19px, 2.1vw, 25px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.012em;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--ink-500);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rot {
  display: inline-block;
  color: var(--grass-700);
  transition: opacity 0.3s ease, transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.rot.out {
  opacity: 0;
  transform: translateY(-14px);
}

.rot.enter {
  opacity: 0;
  transform: translateY(14px);
  transition: none;
}

.js section.hero .eyebrow,
.js section.hero h1,
.js section.hero .lede,
.js section.hero .actions {
  opacity: 0;
  animation: hero-in 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.js section.hero .eyebrow { animation-delay: 0.05s; }
.js section.hero h1 { animation-delay: 0.14s; }
.js section.hero .lede { animation-delay: 0.26s; }
.js section.hero .actions { animation-delay: 0.36s; }

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

section.sec { padding: clamp(52px, 6vw, 92px) 0; }
section.sec.tight { padding-top: 0; }

.hero-shot { margin-top: clamp(26px, 3.2vw, 40px); }

.shot-frame {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: var(--paper-pure);
  box-shadow: 0 1px 2px rgba(12, 13, 12, 0.04), 0 14px 36px rgba(12, 13, 12, 0.06);
  cursor: zoom-in;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shot-frame:hover {
  border-color: #cfd1ca;
  box-shadow: 0 1px 2px rgba(12, 13, 12, 0.05), 0 18px 44px rgba(12, 13, 12, 0.08);
}

.shot-frame picture,
.shot-frame img {
  display: block;
  width: 100%;
}

.shot-frame img { height: auto; }

.lb {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: auto;
  padding: clamp(16px, 4vw, 56px);
  overflow: hidden;
  border: 0;
  background: transparent;
  color: var(--paper);
}

.lb[open] {
  display: grid;
  place-items: center;
}

.lb::backdrop {
  background: rgba(12, 13, 12, 0.82);
  backdrop-filter: blur(6px);
}

.lb-content {
  position: relative;
  display: grid;
  max-width: min(100%, 2200px);
  max-height: 100%;
  place-items: center;
}

.lb picture,
.lb img {
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - clamp(32px, 8vw, 112px));
}

.lb img {
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.lb-close {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(247, 247, 244, 0.35);
  border-radius: 999px;
  background: rgba(12, 13, 12, 0.78);
  color: var(--paper);
  font: 500 13px/1 var(--sans);
  cursor: pointer;
}

.lb-close:focus-visible { outline-color: var(--paper); }

.timeline-shell {
  position: relative;
  margin-top: clamp(26px, 3vw, 40px);
}

.timeline {
  border-left: 1px solid var(--hairline);
  list-style: none;
}

.timeline-shell .spine {
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 0;
  background: var(--grass-700);
  opacity: 0.55;
  transition: height 0.28s ease;
}

.timeline-shell .spine.progress-1 { height: 11.111%; }
.timeline-shell .spine.progress-2 { height: 22.222%; }
.timeline-shell .spine.progress-3 { height: 33.333%; }
.timeline-shell .spine.progress-4 { height: 44.444%; }
.timeline-shell .spine.progress-5 { height: 55.556%; }
.timeline-shell .spine.progress-6 { height: 66.667%; }
.timeline-shell .spine.progress-7 { height: 77.778%; }
.timeline-shell .spine.progress-8 { height: 88.889%; }
.timeline-shell .spine.progress-9 { height: 100%; }

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
  padding: 17px 0 17px 24px;
}

.timeline li::before {
  position: absolute;
  top: 27px;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbccc6;
  content: "";
  transition: background 0.3s ease, transform 0.3s ease;
}

.timeline li.passed::before {
  background: var(--grass-700);
  transform: scale(1.25);
}

.js .timeline li {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.js .timeline li.in {
  opacity: 1;
  transform: none;
}

.timeline-delay-1 { transition-delay: 70ms !important; }
.timeline-delay-2 { transition-delay: 140ms !important; }
.timeline-delay-3 { transition-delay: 210ms !important; }
.timeline-delay-4 { transition-delay: 280ms !important; }
.timeline-delay-5 { transition-delay: 350ms !important; }
.timeline-delay-6 { transition-delay: 420ms !important; }

.timeline .t {
  padding-top: 4px;
  color: var(--ink-500);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: right;
}

.timeline .e {
  max-width: 62ch;
  color: var(--ink-500);
  font-family: var(--display);
  font-size: clamp(16.5px, 1.6vw, 18.5px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.012em;
}

.timeline .e strong {
  color: var(--ink-900);
  font-weight: 500;
}

.center { text-align: center; }
.center h2.title { max-width: none; }
.center .actions { justify-content: center; }

.chart { margin-top: clamp(28px, 3.5vw, 44px); }

.chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.chart .lbl {
  fill: var(--ink-500);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.js .chart .b {
  transform: scaleY(0.04);
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.js .chart.in .b { transform: none; }

.chart .b:nth-of-type(2) { transition-delay: 26ms; }
.chart .b:nth-of-type(3) { transition-delay: 52ms; }
.chart .b:nth-of-type(4) { transition-delay: 78ms; }
.chart .b:nth-of-type(5) { transition-delay: 104ms; }
.chart .b:nth-of-type(6) { transition-delay: 130ms; }
.chart .b:nth-of-type(7) { transition-delay: 156ms; }
.chart .b:nth-of-type(8) { transition-delay: 182ms; }
.chart .b:nth-of-type(9) { transition-delay: 208ms; }
.chart .b:nth-of-type(10) { transition-delay: 234ms; }
.chart .b:nth-of-type(11) { transition-delay: 260ms; }
.chart .b:nth-of-type(12) { transition-delay: 286ms; }
.chart .b:nth-of-type(13) { transition-delay: 312ms; }
.chart .b:nth-of-type(14) { transition-delay: 338ms; }
.chart .b:nth-of-type(15) { transition-delay: 364ms; }
.chart .b:nth-of-type(16) { transition-delay: 390ms; }
.chart .b:nth-of-type(17) { transition-delay: 416ms; }
.chart .b:nth-of-type(18) { transition-delay: 442ms; }
.chart .b:nth-of-type(19) { transition-delay: 468ms; }
.chart .b:nth-of-type(20) { transition-delay: 494ms; }
.chart .b:nth-of-type(21) { transition-delay: 520ms; }
.chart .b:nth-of-type(22) { transition-delay: 546ms; }
.chart .b:nth-of-type(23) { transition-delay: 572ms; }
.chart .b:nth-of-type(24) { transition-delay: 598ms; }
.chart .b:nth-of-type(25) { transition-delay: 624ms; }
.chart .b:nth-of-type(26) { transition-delay: 650ms; }
.chart .b:nth-of-type(27) { transition-delay: 676ms; }
.chart .b:nth-of-type(28) { transition-delay: 700ms; }

.reasons {
  margin-top: clamp(30px, 4vw, 48px);
  list-style: none;
}

.reasons li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: clamp(12px, 2vw, 28px);
  padding: clamp(20px, 2.4vw, 28px) 0;
  border-top: 1px solid var(--hairline);
}

.reasons li:last-child { border-bottom: 1px solid var(--hairline); }

.reasons .num {
  padding-top: 4px;
  color: var(--ink-500);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.reasons p {
  max-width: 74ch;
  color: var(--ink-500);
  font-family: var(--display);
  font-size: clamp(17px, 1.75vw, 20px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.014em;
}

.reasons p strong {
  color: var(--ink-900);
  font-weight: 500;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
  margin-top: clamp(26px, 3vw, 40px);
}

.stats .stat {
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: var(--paper-pure);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.stats .stat:hover {
  border-color: #d2d4cd;
  transform: translateY(-2px);
}

.stats .stat.feature {
  border-color: var(--ink-900);
  background: var(--ink-900);
}

.stats .stat.feature .n { color: var(--paper); }
.stats .stat.feature .l { color: rgba(247, 247, 244, 0.72); }
.stats .stat.feature:hover { border-color: var(--grass-700); }

.stats .n {
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.032em;
}

.stats .l {
  margin-top: 10px;
  color: var(--ink-500);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.js .rise {
  opacity: 0;
  transform: translateY(14px);
}

.js .rise.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.rise-delay-1 { transition-delay: 60ms !important; }
.rise-delay-2 { transition-delay: 120ms !important; }

.punch {
  max-width: 62ch;
  margin-top: clamp(28px, 4vw, 40px);
  font-family: var(--display);
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.punch .sub {
  display: block;
  margin-top: 10px;
  color: var(--ink-500);
}

.prose { padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 96px); }

.prose .doc {
  max-width: calc(74ch + var(--gutter));
  margin-right: auto;
  margin-left: 0;
}

.doc-title {
  margin-top: 20px;
  font-size: clamp(34px, 4.6vw, 54px) !important;
}

.prose h2 {
  margin-top: clamp(38px, 5vw, 54px);
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 27px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.022em;
}

.prose p,
.prose li { color: var(--ink-700); }
.prose p { margin-top: 14px; }
.prose ul {
  margin-top: 14px;
  padding-left: 20px;
}
.prose li { margin-top: 8px; }
.prose li::marker { color: var(--grass-700); }
.prose a { color: var(--grass-700); }

.prose .updated {
  margin-top: 18px;
  color: var(--ink-300);
  font-family: var(--mono);
  font-size: 13px;
}

.kicker {
  color: var(--grass-700);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.logostrip {
  padding-top: clamp(26px, 3vw, 40px);
  border-top: 1px solid var(--hairline);
}

.lslabel {
  color: var(--ink-500);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lsrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 24px;
}

.lsrow svg {
  display: block;
  width: auto;
  height: 24px;
  fill: var(--ink-500);
}

.lw {
  color: var(--ink-500);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.lw-mcp {
  color: var(--grass-700);
  font-family: var(--mono);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

footer.site {
  margin-top: clamp(32px, 5vw, 64px);
  padding: clamp(36px, 4.5vw, 56px) 0 clamp(32px, 4vw, 44px);
  border-top: 1px solid var(--hairline);
}

footer.site .foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

footer.site .foot-brand .wordmark { display: block; }
footer.site .foot-brand .meta { margin-top: 8px; }

footer.site .foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 32px);
}

footer.site a,
footer.site .meta {
  color: var(--ink-500);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s ease;
}

footer.site a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.15s ease;
}

footer.site a:hover { color: var(--grass-700); background-size: 100% 1px; }
footer.site a[aria-current="page"] { color: var(--ink-900); }
footer.site .meta { color: var(--ink-300); }

.not-found { min-height: calc(100dvh - 252px); }

@media (max-width: 760px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .reasons li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 560px) {
  .timeline li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-left: 20px;
  }

  .timeline .t {
    padding-top: 0;
    text-align: left;
  }

  header.site .wrap { gap: 14px; }
  .btn { padding-right: 15px; padding-left: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .rot,
  .rot.out,
  .rot.enter,
  .js .rise,
  .js .rise.in,
  .js .timeline li,
  .js .timeline li.in,
  .js .chart .b,
  .js .chart.in .b {
    opacity: 1;
    transform: none;
    transition: none !important;
  }

  .js section.hero .eyebrow,
  .js section.hero h1,
  .js section.hero .lede,
  .js section.hero .actions {
    opacity: 1;
    animation: none;
  }

  .timeline-shell .spine { display: none; }
}
