@font-face {
  font-family: "Criterio Geist";
  src: url("./assets/fonts/Geist-Variable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-feature-values "Criterio Geist" {
  @styleset {
    no-tail-a: 1;
  }
}

:root {
  color-scheme: light;
  --ink: #0d0d0c;
  --muted: #5f5d57;
  --paper: #ffffff;
  --line: #dedede;
  --soft-line: rgba(0, 0, 0, 0.08);
  --soft-fill: rgba(0, 0, 0, 0.03);
  --green-fill: #dbeee4;
  --green-ink: #163427;
  --amber-fill: #f3e6c5;
  --amber-ink: #78570f;
  --red-fill: #f3d8d5;
  --red-ink: #8f2b25;
  --white-ink: #fffdf7;
  --tracking-display: -0.03em;
  --tracking-nav: -0.02em;
  --tracking-label: 0.02em;
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --cursor-left: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cpath d='M50 32H14m10-10L14 32l10 10' fill='none' stroke='%230d0d0c' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") 14 32, w-resize;
  --cursor-right: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cpath d='M14 32h36M40 22l10 10-10 10' fill='none' stroke='%230d0d0c' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") 50 32, e-resize;
  --font-sans: "Criterio Geist", "Geist", "Geist Sans", Arial, sans-serif;
  font-family: var(--font-sans);
  font-feature-settings: "ss01" 1;
  font-variant-alternates: styleset(no-tail-a);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  overflow-y: auto;
  scroll-padding-top: 129px;
  scroll-behavior: auto;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  overflow-y: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "ss01" 1;
  font-variant-alternates: styleset(no-tail-a);
}

html.modal-open,
body.modal-open {
  overflow: hidden;
}

button,
input,
textarea,
a {
  font: inherit;
  font-feature-settings: "ss01" 1;
  font-variant-alternates: styleset(no-tail-a);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  min-height: 129px;
  padding: 40px 48px 64px;
  pointer-events: none;
  isolation: isolate;
  transform: translateZ(0);
}

.site-header > * {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.site-header::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.86) 34%,
    rgba(255, 255, 255, 0.46) 64%,
    rgba(255, 255, 255, 0.14) 84%,
    rgba(255, 255, 255, 0) 100%
  );
}

.site-header::after {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.24) 52%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-backdrop-filter: blur(18px) saturate(112%);
  backdrop-filter: blur(18px) saturate(112%);
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.94) 38%,
    rgba(0, 0, 0, 0.42) 74%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.94) 38%,
    rgba(0, 0, 0, 0.42) 74%,
    rgba(0, 0, 0, 0) 100%
  );
}

.brand {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

nav a,
.nav-button,
.footer-links a,
.footer-links button {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: var(--tracking-nav);
  line-height: 1;
  transition: background-color 180ms var(--ease-in-out), border-color 180ms var(--ease-in-out), color 180ms var(--ease-in-out), opacity 180ms var(--ease-in-out);
}

nav a:hover,
.footer-links a:hover {
  opacity: 0.62;
}

.nav-button {
  border: 0.5px solid rgba(13, 13, 12, 0.01);
  background: rgba(0, 0, 0, 0.08);
  padding: 4.5px 8.5px;
}

.nav-button,
.footer-links button {
  transition: background-color 180ms var(--ease-in-out), border-color 180ms var(--ease-in-out), color 180ms var(--ease-in-out), opacity 180ms var(--ease-in-out);
}

.nav-button:hover,
.footer-links button:hover {
  background: rgba(0, 0, 0, 0.1);
}

.hero {
  height: 100svh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 749px) minmax(360px, 798px);
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: 104px 48px 48px;
}

.hero-copy {
  max-width: 749px;
  padding-bottom: 0;
}

h1 {
  max-width: 749px;
  color: var(--ink);
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: var(--tracking-display);
  line-height: 1.1;
}

.hero-copy > p {
  max-width: 749px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.62;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: background-color 180ms var(--ease-in-out), border-color 180ms var(--ease-in-out), color 180ms var(--ease-in-out), opacity 180ms var(--ease-in-out);
}

.primary {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white-ink);
}

.primary:hover {
  background: #1f1f1c;
}

.secondary {
  border: 0.5px solid rgba(13, 13, 12, 0.01);
  background: rgba(0, 0, 0, 0.08);
  color: var(--ink);
}

.secondary:hover {
  background: rgba(0, 0, 0, 0.1);
}

.light {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: var(--ink);
}

.light:hover {
  background: rgba(255, 255, 255, 0.9);
}

.reveal-item {
  opacity: 0;
  filter: blur(var(--reveal-blur, 0px));
  transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 28px), 0) scale(var(--reveal-scale, 0.994));
  transition:
    opacity var(--reveal-duration, 860ms) var(--ease-out),
    transform var(--reveal-duration, 860ms) var(--ease-out),
    filter var(--reveal-duration, 860ms) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-item.reveal-from-right {
  --reveal-x: 30px;
  --reveal-y: 0px;
}

.reveal-item.reveal-from-left {
  --reveal-x: -26px;
  --reveal-y: 0px;
}

.reveal-item.reveal-from-down {
  --reveal-x: 0px;
  --reveal-y: -15px;
}

.reveal-item.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.reveal-item.button,
.reveal-item.nav-button,
.footer-links button.reveal-item {
  transition:
    opacity var(--reveal-duration, 820ms) var(--ease-out),
    transform var(--reveal-duration, 820ms) var(--ease-out),
    filter var(--reveal-duration, 820ms) var(--ease-out),
    background-color 180ms var(--ease-in-out),
    border-color 180ms var(--ease-in-out),
    color 180ms var(--ease-in-out);
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms, 0ms;
}

.shader-frame {
  position: relative;
  align-self: stretch;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: #15120f;
  isolation: isolate;
}

.shader-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: overlay;
  opacity: 0.45;
}

#hero-shader {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.scroll-statement {
  min-height: 912px;
  padding: 96px 176px;
}

.sources,
.briefs,
.rows,
.close {
  scroll-margin-top: 96px;
}

.statement-sticky {
  position: sticky;
  top: 12vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
}

.scroll-write {
  max-width: 1032px;
  color: var(--ink);
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: var(--tracking-display);
  line-height: 1;
}

.scroll-write .char {
  opacity: 0.035;
  transition: opacity 140ms var(--ease-in-out);
}

.scroll-write .char.revealed {
  opacity: 1;
}

.sources {
  padding: 0 48px 112px;
}

.sources-heading {
  width: min(100%, 1032px);
  margin: 0 auto 24px;
}

.briefs {
  overflow: hidden;
  padding: 0 48px 0;
}

.section-title {
  width: min(100%, 1032px);
  margin: 0 auto 24px;
}

.section-title h2,
.sources-heading h2,
.rows h2,
.close h2,
.modal-copy h2 {
  color: var(--ink);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: var(--tracking-display);
  line-height: 1.1;
}

.section-title p,
.sources-heading p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.62;
}

.source-system {
  width: min(100%, 1032px);
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(420px, 1.14fr);
  gap: 32px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.source-lanes {
  display: grid;
  align-content: start;
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.source-lane {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.source-lane:first-child {
  border-top: 0;
  padding-top: 0;
}

.source-lane:last-child {
  padding-bottom: 0;
}

.source-lane strong,
.source-pipeline strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  line-height: 1.2;
  text-transform: uppercase;
}

.source-lane p,
.source-pipeline p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

.source-pipeline {
  display: grid;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-pipeline li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.source-pipeline li:first-child {
  border-top: 0;
  padding-top: 0;
}

.source-pipeline li:last-child {
  padding-bottom: 0;
}

.source-pipeline span {
  color: rgba(95, 93, 87, 0.55);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  line-height: 1.2;
}

.source-pipeline strong {
  display: block;
  grid-column: 2;
  margin-bottom: 8px;
}

.source-pipeline p {
  grid-column: 2;
}

.cards-shell {
  position: relative;
  width: calc(100% + 96px);
  margin-left: -48px;
}

.cards-bleed {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 56px;
  cursor: grab;
  scroll-snap-type: none;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: contain;
  touch-action: pan-y;
  user-select: none;
}

.cards-bleed::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.cards-bleed.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.cards-bleed.is-sliding {
  cursor: default;
}

.cards-track {
  width: max-content;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - 773.667px) / 2));
}

.slider-zone {
  position: absolute;
  z-index: 8;
  top: 0;
  bottom: 56px;
  width: clamp(112px, 11vw, 176px);
  display: flex;
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  opacity: 0.78;
  transition: opacity 180ms var(--ease-in-out);
}

.slider-zone.left {
  left: 0;
  cursor: var(--cursor-left);
  justify-content: flex-start;
}

.slider-zone.right {
  right: 0;
  cursor: var(--cursor-right);
  justify-content: flex-end;
}

.slider-zone:hover {
  opacity: 1;
}

.slider-zone:disabled {
  cursor: default;
  opacity: 0.28;
}

.slider-arrow {
  position: relative;
  width: 64px;
  height: 34px;
  display: block;
  margin: 0 34px;
  color: currentColor;
}

.slider-arrow::before,
.slider-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
}

.slider-arrow::before {
  width: 62px;
  height: 1.25px;
  background: currentColor;
  transform: translateY(-50%);
}

.slider-arrow::after {
  width: 17px;
  height: 17px;
  border-color: currentColor;
  border-style: solid;
  transform-origin: center;
}

.slider-zone.right .slider-arrow::before {
  right: 0;
}

.slider-zone.right .slider-arrow::after {
  right: 0;
  border-width: 1.25px 1.25px 0 0;
  transform: translateY(-50%) rotate(45deg);
}

.slider-zone.left .slider-arrow::before {
  left: 0;
}

.slider-zone.left .slider-arrow::after {
  left: 0;
  border-width: 0 0 1.25px 1.25px;
  transform: translateY(-50%) rotate(45deg);
}

.slider-zone:focus-visible {
  outline: 2px solid #244f3d;
  outline-offset: -8px;
}

.brief-card {
  width: 773.667px;
  min-height: 510px;
  flex: 0 0 auto;
  border: 0.5px solid var(--soft-line);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 35px 18px 20px rgba(0, 0, 0, 0.02), 9px 5px 11px rgba(0, 0, 0, 0.02);
  padding: 56.5px;
  scroll-snap-align: center;
}

.brief-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brief-heading {
  min-width: 0;
}

.badge {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  padding: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  text-transform: uppercase;
}

.badge.pursue {
  background: var(--green-fill);
  color: var(--green-ink);
}

.badge.watch {
  background: var(--amber-fill);
  color: var(--amber-ink);
}

.badge.skip {
  background: var(--red-fill);
  color: var(--red-ink);
}

.brief-card h3 {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: var(--tracking-display);
  line-height: 1.6137;
}

.score-block {
  width: 104px;
  flex: 0 0 auto;
  text-align: right;
}

.score-label {
  display: block;
  color: rgba(95, 93, 87, 0.4);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.score {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 4rem;
  font-weight: 200;
  letter-spacing: var(--tracking-display);
  line-height: 68.992px;
}

.brief-body {
  display: grid;
  grid-template-columns: 251px minmax(0, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.source-data h4,
.brief-group h4 {
  margin: 0;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  line-height: normal;
  text-transform: uppercase;
}

.source-data dl {
  margin: 16px 0 0;
  border-top: 1px solid var(--line);
}

.source-data div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 30px;
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

.source-data dt {
  color: var(--muted);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.source-data dd {
  max-width: 158px;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brief-groups {
  display: grid;
  gap: 8px;
}

.brief-group {
  min-width: 0;
  border-radius: 16px;
  background: var(--soft-fill);
  padding: 16px;
}

.brief-group ul {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.brief-group li,
.brief-group p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
}

.brief-group.next-action p {
  color: var(--ink);
  font-weight: 500;
}

.rows {
  max-width: 1032px;
  margin: 0 auto;
  padding: 176px 0;
}

.rows h2 {
  margin-bottom: 38px;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.row:last-child {
  border-bottom: 1px solid var(--line);
}

.row strong {
  color: var(--ink);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.row p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.62;
}

.close {
  min-height: 504.8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 176px 72px;
  background: var(--ink);
  color: #ffffff;
  text-align: center;
}

.close h2 {
  color: #ffffff;
}

.close p {
  max-width: 768px;
  margin: 18px 0 16px;
  color: rgba(255, 253, 247, 0.72);
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1.62;
}

.close .button {
  min-width: 128px;
  width: auto;
}

.footer {
  min-height: 72px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 72px;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.footer .brand,
.footer-links a,
.footer-links button {
  color: #ffffff;
}

.footer .brand {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: var(--tracking-nav);
  line-height: 1.25;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 518px;
  font-size: 0.82rem;
  letter-spacing: 0;
  line-height: 1.25;
}

.footer .reveal-item {
  opacity: 1;
  filter: none;
  transform: none;
  transition-delay: 0ms;
}

.footer-links {
  margin-top: 0;
  gap: 0;
}

.footer-links a,
.footer-links button {
  min-height: 17px;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-links button {
  background: transparent;
}

.footer .footer-links button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.waitlist-dialog {
  width: min(640px, calc(100vw - 40px));
  max-height: calc(100svh - 40px);
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #ffffff;
  color: var(--ink);
  opacity: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transform: translate3d(0, 26px, 0) scale(0.965);
  transition: opacity 520ms var(--ease-in-out), transform 520ms var(--ease-in-out);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.waitlist-dialog::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.waitlist-dialog::backdrop {
  background: rgba(13, 13, 12, 0);
  backdrop-filter: blur(8px);
}

.waitlist-dialog[open]::backdrop {
  animation: backdrop-in 520ms var(--ease-in-out) forwards;
}

.waitlist-dialog[open].is-open {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.waitlist-dialog.is-closing {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.975);
}

.waitlist-dialog[open].is-closing::backdrop {
  animation: backdrop-out 420ms var(--ease-in-out) forwards;
}

@starting-style {
  .waitlist-dialog[open].is-open {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.965);
  }
}

@keyframes backdrop-in {
  from {
    background: rgba(13, 13, 12, 0);
  }

  to {
    background: rgba(13, 13, 12, 0.48);
  }
}

@keyframes backdrop-out {
  from {
    background: rgba(13, 13, 12, 0.48);
  }

  to {
    background: rgba(13, 13, 12, 0);
  }
}

.modal-shell {
  position: relative;
  max-height: calc(100svh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.modal-shell::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.06);
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 9px;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.modal-copy {
  max-width: 500px;
}

.modal-copy p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.55;
}

.waitlist-form {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
}

.waitlist-form span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.waitlist-form input,
.waitlist-form textarea {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.4;
  transition: border-color 160ms var(--ease-in-out), box-shadow 160ms var(--ease-in-out);
}

.waitlist-form input {
  min-height: 46px;
  padding: 0 12px;
}

.waitlist-form textarea {
  resize: vertical;
  min-height: 112px;
  padding: 12px;
}

.waitlist-form input:focus,
.waitlist-form input:focus-visible,
.waitlist-form input.is-focused,
.waitlist-form label:focus-within input,
.waitlist-form textarea:focus,
.waitlist-form textarea:focus-visible,
.waitlist-form textarea.is-focused,
.waitlist-form label:focus-within textarea {
  border-color: var(--ink) !important;
  outline: 0 !important;
  box-shadow: inset 0 0 0 1px var(--ink) !important;
}

.button:focus-visible,
.nav-button:focus-visible,
.modal-close:focus-visible,
.footer-links button:focus-visible {
  outline: 2px solid #244f3d;
  outline-offset: 3px;
}

.modal-submit {
  width: 100%;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0;
  line-height: 1.45;
}

.form-message.success {
  color: var(--green-ink);
}

.form-message.error {
  color: var(--red-ink);
}

@media (max-width: 1280px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  }

  .scroll-statement {
    padding-right: 96px;
    padding-left: 96px;
  }

  .scroll-write {
    font-size: 4.25rem;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 96px;
  }

  .site-header {
    min-height: 96px;
    padding: 28px 24px 40px;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 128px 24px 72px;
  }

  .shader-frame {
    min-height: 520px;
    order: -1;
  }

  h1 {
    font-size: 2.75rem;
  }

  .scroll-statement {
    min-height: 760px;
    padding: 72px 24px;
  }

  .statement-sticky {
    min-height: 580px;
    padding: 80px 0;
  }

  .scroll-write {
    font-size: 3.25rem;
  }

  .sources {
    padding: 0 24px 96px;
  }

  .source-system {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .source-lanes {
    padding-right: 0;
    padding-bottom: 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .briefs {
    padding-right: 24px;
    padding-left: 24px;
  }

  .cards-shell {
    width: calc(100% + 48px);
    margin-left: -24px;
  }

  .cards-bleed {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    cursor: default;
    touch-action: auto;
    user-select: auto;
  }

  .slider-zone {
    display: none;
  }

  .cards-bleed::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .cards-track {
    gap: 16px;
    padding: 0 24px;
  }

  .brief-card {
    width: min(774px, calc(100vw - 48px));
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .rows {
    padding: 120px 24px;
  }

  .footer,
  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  nav {
    gap: 8px;
  }

  nav a {
    display: none;
  }

  .hero {
    padding-top: 112px;
  }

  .shader-frame {
    min-height: 420px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .scroll-write {
    font-size: 2.75rem;
  }

  .section-title h2,
  .sources-heading h2,
  .rows h2,
  .close h2,
  .modal-copy h2 {
    font-size: 2rem;
  }

  .source-pipeline li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .brief-card {
    min-height: auto;
    padding: 28px;
  }

  .brief-header,
  .brief-body,
  .row {
    grid-template-columns: 1fr;
  }

  .brief-header {
    display: grid;
  }

  .score-block {
    width: auto;
    text-align: left;
  }

  .source-data dd {
    white-space: normal;
  }

  .row {
    gap: 12px;
    align-items: start;
  }

  .close {
    min-height: 420px;
    padding: 104px 24px;
  }

  .footer {
    gap: 16px;
    padding: 16px 24px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-shell {
    padding: 32px 20px 24px;
  }
}

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

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

  .scroll-write .char {
    opacity: 1;
  }

  .reveal-item {
    filter: none;
    opacity: 1;
    transform: none !important;
  }

  .waitlist-dialog {
    opacity: 1;
    transform: none;
  }
}
