:root {
  --bg: #050505;
  --bg-soft: #0b0b0c;
  --panel: #111113;
  --panel-2: #151516;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f1eeee;
  --muted: #9a9693;
  --dim: #67625f;
  --red: #c91622;
  --red-2: #ff2633;
  --max: 1360px;
  --pad: clamp(1.25rem, 3vw, 3rem);
  --condensed: "Arial Narrow", "Aptos Narrow", "Roboto Condensed", Impact, sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 7%, rgba(201, 22, 34, 0.08), transparent 18rem),
    linear-gradient(180deg, #060606 0%, #030303 100%);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  background: url("../img/noise.png") repeat;
  opacity: 0.22;
  mix-blend-mode: screen;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), rgba(0,0,0,.06) 55%, transparent);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  transform: translateY(-200%);
  padding: .75rem 1rem;
  background: var(--red);
  z-index: 999;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.layout {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
}

.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;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.topbar.is-scrolled,
.topbar.menu-open {
  background: rgba(5, 5, 5, 0.86);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}
.topbar__inner {
  height: 74px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-family: var(--condensed);
  line-height: 1;
}
.brand__title {
  font-size: .95rem;
  font-weight: 800;
}
.brand__title::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin-top: 18px;
  background: var(--red);
}
.brand__claim {
  display: none;
  margin-top: .55rem;
  font-size: .56rem;
  color: var(--muted);
  letter-spacing: .16em;
}
.brand--footer .brand__claim { display: block; }

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.35rem);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .14em;
  color: #b7b2af;
}
.nav a,
.footer__nav a,
.text-link,
.socials a {
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
}
.nav a:hover,
.footer__nav a:hover,
.text-link:hover,
.socials a:hover { color: var(--red-2); }

.socials {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: #d5d0cc;
  font-weight: 700;
  font-size: .9rem;
}
.socials a:hover { transform: translateY(-2px); }

.menu-button {
  display: none;
  inline-size: 44px;
  block-size: 44px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  color: var(--text);
  justify-self: end;
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 19px;
  height: 1px;
  background: currentColor;
  margin: 5px auto;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 790px;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0 0 0 34%;
  z-index: -3;
  background: url("../img/hero-doorway.jpg") center right / cover no-repeat;
  opacity: .92;
  filter: contrast(1.02);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5,5,5,.96) 18%, rgba(5,5,5,.66) 45%, rgba(5,5,5,.16) 68%, rgba(5,5,5,.62) 100%),
    radial-gradient(circle at 58% 35%, rgba(255,255,255,.12), transparent 18rem),
    linear-gradient(180deg, rgba(0,0,0,.12), #050505 101%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 86px var(--pad) 0 var(--pad);
  z-index: -1;
  border-left: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 190px 190px;
  opacity: .45;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.8), transparent 82%);
}
.hero__inner {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(210px, 1fr);
  align-items: center;
  gap: clamp(2rem, 8vw, 8rem);
  padding-top: 84px;
}
.hero__copy { max-width: 615px; }
.eyebrow,
.section-label,
.section-kicker {
  margin: 0 0 1.35rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 800;
}
.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: .6rem;
  vertical-align: middle;
  background: var(--red);
}
.hero h1,
.section-heading h2,
.logic__title,
.manifest h2,
.newsletter h2 {
  margin: 0;
  font-family: var(--condensed);
  text-transform: uppercase;
  line-height: .98;
  letter-spacing: .085em;
  font-weight: 900;
}
.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.7rem, 8.9vw, 8.55rem);
}
em {
  color: var(--red-2);
  font-style: normal;
}
.hero__lead {
  width: min(100%, 515px);
  margin: 1.55rem 0 0;
  color: #bdb7b2;
  font-size: clamp(.98rem, 1.1vw, 1.08rem);
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button span { margin-left: .85rem; font-size: 1.2rem; }
.button--primary {
  background: var(--red);
  border-color: var(--red);
  color: white;
}
.button--primary:hover { background: #e11b29; transform: translateY(-2px); }
.button--ghost {
  border-bottom-color: var(--line-strong);
  color: #ded8d3;
}
.button--ghost:hover { border-color: var(--red); color: var(--red-2); }
.hero__manifest {
  justify-self: end;
  max-width: 260px;
  color: #d7d2ce;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .88rem;
  line-height: 1.55;
  font-weight: 900;
}
.hero__manifest p { margin: .25rem 0; }
.hero__manifest strong { color: var(--red-2); }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: #efe9e3;
  font-size: 1.4rem;
  background: rgba(0,0,0,.25);
  box-shadow: 0 0 0 10px rgba(201,22,34,.035);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(201,22,34,.035); }
  50% { box-shadow: 0 0 0 14px rgba(201,22,34,.08); }
}

.section,
.section-tight { border-bottom: 1px solid var(--line); }
.section { padding: clamp(3.75rem, 7vw, 6.5rem) 0; }
.section-tight { padding: clamp(2.5rem, 4.5vw, 4rem) 0; }
.section-kicker {
  text-align: center;
  color: #d1ccc7;
  margin-bottom: 2rem;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.section-heading h2,
.logic__title,
.manifest h2,
.newsletter h2 {
  font-size: clamp(2.1rem, 4.5vw, 4.6rem);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: #b7b1ad;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 900;
  white-space: nowrap;
}
.text-link span { font-size: 1.2rem; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-card {
  min-height: 186px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1rem;
  text-align: center;
  border-left: 1px solid var(--line);
}
.process-card:first-child { border-left: 0; }
.process-card h3,
.proof-card h3,
.collection-card h3,
.logic-card strong {
  margin: .9rem 0 .35rem;
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
}
.process-card h3 { font-size: 1.1rem; }
.process-card p {
  max-width: 145px;
  margin: 0;
  color: #b4aeaa;
  font-size: .86rem;
}
.process-icon,
.mini-icon {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
  color: var(--text);
}
.process-icon::before,
.process-icon::after,
.mini-icon::before,
.mini-icon::after { content: ""; position: absolute; }
.process-icon--frame::before {
  inset: 8px;
  border: 1px solid #aaa;
  clip-path: polygon(0 0, 30% 0, 30% 8%, 8% 8%, 8% 30%, 0 30%, 0 0, 70% 0, 100% 0, 100% 30%, 92% 30%, 92% 8%, 70% 8%, 70% 0, 100% 70%, 100% 100%, 70% 100%, 70% 92%, 92% 92%, 92% 70%, 100% 70%, 30% 100%, 0 100%, 0 70%, 8% 70%, 8% 92%, 30% 92%, 30% 100%);
}
.process-icon--frame::after {
  width: 6px; height: 6px; border-radius: 50%; background: var(--red); left: 21px; top: 21px;
}
.process-icon--arrows::before,
.process-icon--arrows::after {
  width: 30px; height: 30px; border-top: 1px solid #aaa; border-right: 1px solid #aaa; transform: rotate(45deg); top: 9px;
}
.process-icon--arrows::before { left: 2px; opacity: .5; }
.process-icon--arrows::after { left: 11px; }
.process-icon--cube::before {
  width: 27px; height: 27px; left: 10px; top: 10px; border: 1px solid #aaa; transform: rotate(30deg) skew(-12deg);
}
.process-icon--cube::after {
  width: 6px; height: 6px; border-radius: 50%; left: 21px; top: 9px; background: var(--red);
  box-shadow: 0 24px 0 rgba(255,255,255,.75);
}
.process-icon--slash::before,
.process-icon--slash::after {
  width: 37px; height: 1px; background: #aaa; transform: rotate(-42deg); top: 23px; left: 4px;
}
.process-icon--slash::after { top: 16px; left: 11px; background: var(--red); }
.process-icon--target::before {
  inset: 8px; border: 1px solid #aaa; border-radius: 50%;
  box-shadow: inset 0 0 0 12px #050505;
}
.process-icon--target::after {
  width: 6px; height: 6px; border-radius: 50%; background: var(--red); left: 21px; top: 21px;
  box-shadow: -20px 3px 0 -2px #aaa, 20px 3px 0 -2px #aaa, 3px -20px 0 -2px #aaa, 3px 20px 0 -2px #aaa;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .8rem;
}
.proof-card,
.logic-card,
.collection-card,
.manifest-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--panel), #090909);
  border: 1px solid var(--line);
}
.proof-card {
  min-height: 456px;
  isolation: isolate;
}
.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.38) 42%, rgba(0,0,0,.86) 100%),
    linear-gradient(90deg, rgba(201,22,34,.09), transparent 45%);
}
.proof-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, opacity .55s ease;
  opacity: .95;
}
.proof-card:hover img { transform: scale(1.06); opacity: 1; }
.proof-card__content {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  padding: 1.15rem;
}
.date {
  margin: 0 0 .35rem;
  color: var(--red-2);
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .84rem;
}
.proof-card h3 {
  margin: 0 0 5.5rem;
  font-size: clamp(1.25rem, 1.7vw, 1.8rem);
  line-height: 1;
}
.proof-card h3::after,
.collection-card h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  margin-top: .7rem;
  background: var(--red);
}
.proof-card p:not(.date) {
  margin: auto 0 1.25rem;
  color: #e2dcd7;
  font-size: .92rem;
  line-height: 1.45;
}
.proof-card small {
  display: block;
  min-height: 52px;
  color: #a9a39f;
  font-size: .82rem;
  line-height: 1.45;
}
.proof-card a,
.collection-card a {
  align-self: flex-end;
  color: #dbd5d0;
  font-size: 1.4rem;
  margin-top: .55rem;
}

.logic { padding-top: 0; }
.logic__title {
  padding-top: 2rem;
  margin-bottom: 1.25rem;
  letter-spacing: .14em;
}
.logic-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.logic-card {
  min-height: 292px;
}
.logic-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  opacity: .82;
  border-bottom: 1px solid var(--line);
  transition: transform .45s ease, opacity .45s ease;
}
.logic-card:hover img { transform: scale(1.035); opacity: 1; }
.logic-card__body {
  padding: 1rem 1.15rem 1.2rem;
  background: linear-gradient(180deg, rgba(10,10,10,.84), #0a0a0a);
}
.logic-card__body > p {
  display: inline-flex;
  flex-direction: column;
  margin: 0 2.3rem .9rem 0;
}
.logic-card strong {
  margin: 0;
  font-size: 1rem;
  color: #f1eeee;
}
.logic-card span {
  margin-top: .2rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .66rem;
}
.logic-card h3 {
  margin: .35rem 0 0;
  color: #e7e0db;
  font-size: .98rem;
  font-weight: 500;
  text-align: center;
}

.manifest {
  background:
    radial-gradient(circle at 91% 30%, rgba(201, 22, 34, .12), transparent 16rem),
    linear-gradient(90deg, rgba(255,255,255,.035), transparent 35%);
}
.manifest__grid {
  display: grid;
  grid-template-columns: minmax(250px, 360px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.manifest__statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.manifest h2 { max-width: 9ch; }
.manifest-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}
.manifest-card {
  min-height: 220px;
  padding: 2rem 1.35rem 1.5rem;
  border-left: 0;
  border-top: 0;
  border-bottom: 0;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
}
.manifest-card p {
  margin: 1.3rem 0 0;
  color: #c9c3be;
  font-size: .95rem;
}
.manifest-card strong { color: var(--red-2); font-weight: 700; }
.mini-icon--search::before {
  width: 20px; height: 20px; border: 1px solid #ddd; border-radius: 50%; left: 8px; top: 7px;
}
.mini-icon--search::after {
  width: 18px; height: 1px; background: var(--red); transform: rotate(45deg); left: 25px; top: 29px;
}
.mini-icon--layers::before,
.mini-icon--layers::after {
  width: 29px; height: 17px; left: 8px; border: 1px solid #ddd; transform: skewY(-20deg) rotate(-15deg);
}
.mini-icon--layers::before { top: 8px; border-color: var(--red); }
.mini-icon--layers::after { top: 19px; }
.mini-icon--chat::before {
  width: 33px; height: 23px; border: 1px solid #ddd; border-radius: 4px; left: 6px; top: 9px;
}
.mini-icon--chat::after {
  width: 5px; height: 5px; background: var(--red); left: 15px; top: 19px; box-shadow: 9px 0 0 var(--red), 18px 0 0 var(--red);
}
.mini-icon--paper::before {
  width: 38px; height: 1px; background: var(--red); left: 4px; top: 22px; transform: rotate(-28deg);
  box-shadow: 0 7px 0 rgba(201,22,34,.28), 0 -7px 0 rgba(255,255,255,.42);
}
.mini-icon--paper::after {
  width: 42px; height: 20px; border-top: 1px solid #ddd; border-right: 1px solid #ddd; transform: skewX(-34deg) rotate(-28deg); left: 4px; top: 9px;
}

.collections { padding-top: 3.2rem; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.collection-card {
  display: grid;
  grid-template-columns: 45% 1fr;
  min-height: 180px;
  background: #0e0e0f;
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
}
.collection-card > div { padding: 1.2rem 1.15rem; }
.collection-card h3 {
  margin: 0 0 .85rem;
  font-size: 1.3rem;
  line-height: 1.05;
}
.collection-card p {
  margin: 0;
  color: #c5bfba;
  font-size: .9rem;
}
.collection-card a { display: inline-block; margin-top: 1rem; }

.newsletter {
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 5.5vw, 5rem) 0;
  background: linear-gradient(180deg, rgba(201,22,34,.05), transparent 70%);
}
.newsletter__grid {
  display: grid;
  grid-template-columns: minmax(270px, 360px) 1fr minmax(340px, 520px);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.newsletter h2 { font-size: clamp(2.4rem, 4.5vw, 4.9rem); }
.newsletter__note {
  margin: 0;
  color: #aaa39e;
  max-width: 305px;
}
.newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  align-items: stretch;
  position: relative;
}
.newsletter__form input {
  width: 100%;
  min-height: 56px;
  padding: 0 1.2rem;
  color: var(--text);
  background: rgba(0,0,0,.42);
  border: 1px solid var(--line);
  border-right: 0;
  outline: none;
}
.newsletter__form input:focus { border-color: var(--line-strong); }
.form-message {
  grid-column: 1 / -1;
  min-height: 1.4rem;
  margin: .6rem 0 0;
  color: #c9c3be;
  font-size: .86rem;
}

.about { border-bottom: 1px solid var(--line); }
.about__inner {
  padding: 1.2rem 0;
  color: #aaa39e;
  font-size: .93rem;
}
.about__inner p { max-width: 860px; margin: 0; }
.about strong { color: var(--text); }

.footer { padding: 1.7rem 0 2.1rem; }
.footer__inner {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 2rem;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.3vw, 2.4rem);
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .14em;
  color: #85807c;
}
.footer__legal {
  margin: 0;
  color: #77716e;
  font-size: .72rem;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .topbar__inner { grid-template-columns: 190px 1fr auto; }
  .socials { display: none; }
  .hero__inner { grid-template-columns: 1fr; align-content: center; }
  .hero__manifest { justify-self: start; max-width: none; display: grid; grid-template-columns: repeat(3, auto); gap: .15rem 1.25rem; }
  .hero__manifest br { display: none; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(5, minmax(130px, 1fr)); overflow-x: auto; }
  .manifest__grid { grid-template-columns: 1fr; }
  .manifest h2 { max-width: 12ch; }
  .newsletter__grid { grid-template-columns: 1fr 1fr; }
  .newsletter__form { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --pad: 1.05rem; }
  .topbar__inner { height: 68px; grid-template-columns: 1fr auto; }
  .menu-button { display: block; }
  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: .85rem var(--pad) 1.2rem;
    background: rgba(5, 5, 5, .96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { width: 100%; padding: .95rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero { min-height: 760px; }
  .hero__image { inset: 0; opacity: .68; background-position: 58% center; }
  .hero__scrim { background: linear-gradient(90deg, #050505 0%, rgba(5,5,5,.88) 64%, rgba(5,5,5,.55) 100%), linear-gradient(180deg, transparent, #050505 100%); }
  .hero h1 { max-width: 11ch; }
  .hero__manifest { font-size: .72rem; letter-spacing: .14em; }
  .section-heading { align-items: start; flex-direction: column; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .logic-track,
  .collection-grid,
  .manifest-cards { grid-template-columns: 1fr; }
  .logic-track { overflow: visible; }
  .manifest-cards { border-left: 0; }
  .manifest-card { min-height: auto; border: 1px solid var(--line); }
  .collection-card { min-height: 165px; }
  .newsletter__grid { grid-template-columns: 1fr; }
  .newsletter__note { max-width: none; }
  .footer__inner { grid-template-columns: 1fr; align-items: start; }
  .footer__nav { flex-wrap: wrap; justify-content: flex-start; }
  .footer__legal { text-align: left; }
}

@media (max-width: 560px) {
  .hero { min-height: 700px; }
  .hero__inner { padding-top: 74px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .button { width: 100%; }
  .hero__actions { gap: .65rem; }
  .hero__manifest { grid-template-columns: 1fr; margin-top: .75rem; }
  .scroll-cue { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { min-height: 420px; }
  .process-grid { margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad); }
  .logic__title { font-size: 2.05rem; }
  .collection-card { grid-template-columns: 1fr; }
  .collection-card img { height: 150px; }
  .newsletter__form { grid-template-columns: 1fr; gap: .75rem; }
  .newsletter__form input { border-right: 1px solid var(--line); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
