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

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

:root {
  --ink: #10100f;
  --ink-soft: #191917;
  --paper: #f1eee6;
  --paper-bright: #f8f5ee;
  --paper-muted: #d9d4c9;
  --line-dark: rgba(16, 16, 15, 0.68);
  --line-light: rgba(241, 238, 230, 0.42);
  --muted-dark: #67645e;
  --muted-light: #b7b1a7;
  --orange: #f05b19;
  --orange-dark: #c83d00;
  --header-height: 72px;
  --page-gutter: clamp(20px, 3vw, 48px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist Local", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

main {
  overflow: clip;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  color: inherit;
}

::selection {
  background: var(--orange);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--orange);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 240ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr);
  align-items: center;
  min-height: var(--header-height);
  padding: 0 var(--page-gutter);
  border-bottom: 1px solid var(--line-light);
  background: rgba(16, 16, 15, 0.96);
  color: var(--paper);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 10px;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.brand img {
  width: 30px;
  height: 30px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
  font-size: 14px;
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
}

.desktop-nav a::after,
.site-footer nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.site-footer nav a:hover::after,
.site-footer nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.sound-toggle,
.menu-button {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  border: 1px solid var(--line-light);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.sound-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 15px;
}

.sound-bars i {
  width: 2px;
  height: 6px;
  background: currentColor;
  transition: height 240ms var(--ease), background-color 240ms ease;
}

.sound-bars i:nth-child(2) {
  height: 12px;
}

.sound-bars i:nth-child(3) {
  height: 9px;
}

.sound-toggle[aria-pressed="true"] .sound-bars i {
  background: var(--orange);
  animation: soundBars 720ms ease-in-out infinite alternate;
}

.sound-toggle[aria-pressed="true"] .sound-bars i:nth-child(2) {
  animation-delay: -260ms;
}

.sound-toggle[aria-pressed="true"] .sound-bars i:nth-child(3) {
  animation-delay: -480ms;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 42px;
  padding: 0 18px;
  background: var(--orange);
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  transition: background-color 220ms ease, transform 220ms var(--ease);
}

.header-cta:hover {
  background: #ff7133;
  transform: translateY(-2px);
}

.header-cta:active,
.button:active,
.workflow-step:active,
.copy-field button:active {
  transform: scale(0.98);
}

.menu-button {
  display: none;
  grid-template-columns: auto 22px;
  gap: 10px;
  padding: 0 12px;
  font-size: 14px;
}

.menu-lines {
  display: grid;
  gap: 5px;
}

.menu-lines i {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 280ms var(--ease);
}

.menu-button[aria-expanded="true"] .menu-lines i:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines i:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 25;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(28px, 8vw, 80px) var(--page-gutter) 36px;
  background: var(--orange);
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-24px);
  transition: opacity 260ms ease, transform 360ms var(--ease), visibility 0s linear 360ms;
}

.menu-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.menu-panel nav {
  display: grid;
  align-content: center;
}

.menu-panel nav a {
  display: flex;
  align-items: center;
  min-height: 15vh;
  border-bottom: 1px solid rgba(16, 16, 15, 0.54);
  font-family: "Arial Narrow", "Geist Local", sans-serif;
  font-size: clamp(42px, 11vw, 84px);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.menu-panel p {
  margin: 24px 0 0;
  font-family: "Geist Mono Local", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100dvh - var(--header-height));
  background: var(--ink);
  color: var(--paper);
}

.hero-main {
  display: grid;
  grid-template-columns: 56px minmax(0, 1.08fr) minmax(0, 0.92fr);
  min-height: calc(100dvh - var(--header-height) - 60px);
}

.hero-rail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0 32px;
  border-right: 1px solid var(--line-light);
  overflow: hidden;
}

.hero-rail span:last-child {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Geist Mono Local", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rail-rule {
  display: block;
  width: 2px;
  height: 80px;
  background: var(--orange);
  animation: railPulse 2.8s var(--ease) infinite;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  padding: clamp(36px, 5vw, 80px) clamp(24px, 4vw, 68px);
}

.hero h1 {
  margin: 0;
  max-width: 100%;
  font-family: Impact, Haettenschweiler, "Arial Narrow", "Geist Local", sans-serif;
  font-size: clamp(52px, 4.2vw, 68px);
  font-stretch: condensed;
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
  transform-origin: left center;
}

.hero h1 span:first-child {
  animation: titleBreathe 7s var(--ease) infinite alternate;
}

.hero h1 span:last-child {
  animation: titleBreathe 7s var(--ease) 900ms infinite alternate-reverse;
}

.orange-rule {
  display: block;
  width: min(360px, 84%);
  height: 3px;
  margin: 26px 0 22px;
  background: var(--orange);
  transform-origin: left;
  animation: lineReveal 1.1s var(--ease) both;
}

.hero-copy > p {
  max-width: 29ch;
  margin: 0 0 28px;
  color: var(--paper-muted);
  font-family: "Geist Mono Local", monospace;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid currentColor;
  white-space: nowrap;
  font-family: "Geist Mono Local", monospace;
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
  transition: transform 260ms var(--ease), background-color 240ms ease, color 240ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button span {
  font-size: 21px;
  line-height: 1;
  transition: transform 260ms var(--ease);
}

.button:hover span {
  transform: translateX(5px);
}

.button-orange {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.button-orange:hover {
  background: #ff7133;
}

.hero-image {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--line-light);
  perspective: 1000px;
}

.hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.04);
  transform: scale(1.035);
  transition: transform 700ms var(--ease);
}

.hero-image:hover > img {
  transform: scale(1.065);
}

.cover-stamp {
  position: absolute;
  left: 38%;
  top: 42%;
  display: grid;
  grid-template-columns: 34px auto;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(16, 16, 15, 0.72);
  background: rgba(241, 238, 230, 0.82);
  color: var(--ink);
  transform: rotate(-1.8deg);
  box-shadow: 9px 11px 0 rgba(16, 16, 15, 0.08);
}

.cover-stamp span {
  font-size: 26px;
  font-weight: 730;
  letter-spacing: -0.06em;
}

.cover-stamp small {
  grid-column: 1 / -1;
  padding-top: 8px;
  border-top: 1px solid rgba(16, 16, 15, 0.44);
  font-family: "Geist Mono Local", monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.hero-index {
  display: grid;
  grid-template-columns: 56px repeat(3, minmax(0, 1fr)) auto;
  min-height: 60px;
  border-top: 1px solid var(--line-light);
  font-family: "Geist Mono Local", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.hero-index > span {
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid var(--line-light);
}

.hero-index .index-mark {
  justify-content: center;
  padding: 0;
}

.hero-index .index-arrows {
  border-right: 0;
  font-size: 16px;
}

.paper-section {
  position: relative;
  background:
    linear-gradient(rgba(16, 16, 15, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 84px;
  color: var(--ink);
}

.dark-section {
  background: var(--ink);
  color: var(--paper);
}

.section-label {
  width: max-content;
  margin: 0 0 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  font-family: "Geist Mono Local", monospace;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 2.3fr) 84px;
  min-height: 760px;
  border-bottom: 1px solid var(--line-dark);
}

.manifesto-aside {
  padding: 72px var(--page-gutter);
  border-right: 1px solid var(--line-dark);
}

.aside-lead {
  max-width: 15ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.1vw, 34px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.manifesto-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px clamp(36px, 7vw, 112px);
}

.manifesto-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(76px, 9.4vw, 156px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.77;
}

.manifesto-copy h2 span {
  display: block;
}

.manifesto-copy h2 em {
  color: var(--orange-dark);
  font-weight: 400;
}

.manifesto-copy > p {
  max-width: 46ch;
  margin: 52px 0 0 auto;
  color: #35332f;
  font-family: "Geist Mono Local", monospace;
  font-size: 13px;
  line-height: 1.65;
}

.manifesto-measure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  border-left: 1px solid var(--line-dark);
  font-family: "Geist Mono Local", monospace;
  font-size: 9px;
  writing-mode: vertical-rl;
}

.manifesto-measure i {
  width: 1px;
  height: 92px;
  background: var(--line-dark);
}

.room-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 2.28fr);
  gap: 42px;
  padding: 76px var(--page-gutter) 48px;
  border-bottom: 1px solid var(--line-light);
}

.section-intro h2,
.workflow-heading h2,
.details-heading h2 {
  margin: 0;
  font-family: "Arial Narrow", "Geist Local", sans-serif;
  font-size: clamp(44px, 4.6vw, 74px);
  font-stretch: condensed;
  font-weight: 720;
  letter-spacing: -0.068em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-intro > p:last-child {
  max-width: 30ch;
  margin: 26px 0 0;
  color: var(--muted-light);
  font-family: "Geist Mono Local", monospace;
  font-size: 12px;
}

.room-frame {
  align-self: start;
  padding: 10px;
  border: 1px solid var(--line-light);
  background: #c7c3ba;
  color: var(--ink);
  transform-origin: top center;
  box-shadow: 18px 20px 0 rgba(240, 91, 25, 0.16);
}

.frame-top {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  font-family: "Geist Mono Local", monospace;
  font-size: 9px;
}

.frame-lights {
  display: flex;
  gap: 5px;
}

.frame-lights i,
.proof-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #77736c;
}

.frame-lights i:first-child,
.proof-chrome span:first-child {
  background: var(--orange);
}

.frame-top > span:nth-child(2) {
  text-align: center;
}

.room-frame-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 15, 0.74);
  background: #f8f7f3;
}

.room-frame-media > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.room-frame-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px;
  border-top: 1px solid rgba(16, 16, 15, 0.7);
  background: rgba(246, 244, 238, 0.94);
  color: var(--ink);
  font-family: "Geist Mono Local", monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.room-notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 8px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
  font-family: "Geist Mono Local", monospace;
  font-size: 11px;
}

.room-notes li {
  display: flex;
  gap: 18px;
  padding: 18px 12px;
  border-right: 1px solid var(--line-light);
}

.room-notes li:last-child {
  border-right: 0;
}

.room-notes span {
  color: var(--orange);
}

.workflow {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.8fr);
  gap: 0;
  padding: 96px var(--page-gutter);
  border-bottom: 1px solid var(--line-dark);
}

.workflow-heading {
  grid-column: 1 / -1;
  max-width: 850px;
  padding-bottom: 68px;
}

.workflow-grid {
  border-top: 1px solid var(--line-dark);
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(220px, 1fr) 54px;
  align-items: center;
  width: 100%;
  min-height: 142px;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 280ms ease, padding 280ms var(--ease), background-color 280ms ease;
}

.workflow-step:hover,
.workflow-step:focus-visible,
.workflow-step.is-active {
  padding-left: 18px;
  background: var(--orange);
  color: var(--ink);
}

.step-word {
  font-family: "Arial Narrow", "Geist Local", sans-serif;
  font-size: clamp(42px, 5vw, 74px);
  font-stretch: condensed;
  font-weight: 750;
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.step-copy {
  max-width: 37ch;
  font-family: "Geist Mono Local", monospace;
  font-size: 11px;
  line-height: 1.55;
}

.step-arrow {
  font-size: 28px;
  transition: transform 260ms var(--ease);
}

.workflow-step:hover .step-arrow,
.workflow-step.is-active .step-arrow {
  transform: translateX(8px);
}

.workflow-proof {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  align-self: start;
  min-height: 440px;
  margin-left: 56px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  background: var(--paper-bright);
  box-shadow: 20px 22px 0 rgba(16, 16, 15, 0.1);
}

.proof-window {
  border: 1px solid var(--line-dark);
  background: var(--paper);
}

.proof-chrome {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 32px;
  padding: 0 10px;
  border-bottom: 1px solid var(--line-dark);
}

.proof-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 290px;
  padding: 32px;
}

.proof-kicker {
  margin-bottom: 46px;
  color: var(--orange-dark);
  font-family: "Geist Mono Local", monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.proof-content strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.proof-content p {
  max-width: 36ch;
  margin: 14px 0 28px;
  color: #494640;
  font-family: "Geist Mono Local", monospace;
  font-size: 11px;
}

.proof-content button,
.copy-field button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Geist Mono Local", monospace;
  font-size: 11px;
  cursor: pointer;
  transition: transform 220ms var(--ease), background-color 220ms ease;
}

.proof-content button:hover,
.copy-field button:hover {
  background: var(--orange-dark);
}

.proof-note {
  margin: 22px 0 0;
  color: var(--muted-dark);
  font-family: "Geist Mono Local", monospace;
  font-size: 10px;
}

.proof-window.is-changing .proof-content {
  animation: proofSwap 420ms var(--ease);
}

.invite-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.25fr) minmax(220px, 0.65fr);
  align-items: center;
  gap: clamp(28px, 4vw, 68px);
  padding: 92px var(--page-gutter);
  border-bottom: 1px solid var(--line-light);
}

.invite-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.9vw, 76px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.invite-copy > p:last-child {
  max-width: 32ch;
  margin: 30px 0 0;
  color: var(--muted-light);
  font-family: "Geist Mono Local", monospace;
  font-size: 11px;
  line-height: 1.6;
}

.invite-paper {
  position: relative;
  padding: clamp(24px, 4vw, 54px);
  background: var(--paper);
  color: var(--ink);
  transform: rotate(-1deg);
  box-shadow: 18px 20px 0 rgba(240, 91, 25, 0.2);
}

.invite-paper::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, transparent 49%, #c9c3b8 50%);
}

.invite-paper-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 54px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-dark);
  font-family: "Geist Mono Local", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.invite-paper-head span:last-child {
  color: var(--orange-dark);
}

.invite-paper label {
  display: block;
  margin-bottom: 8px;
  font-family: "Geist Mono Local", monospace;
  font-size: 11px;
}

.copy-field {
  display: grid;
  grid-template-columns: 1fr auto;
}

.copy-field input {
  min-width: 0;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid var(--line-dark);
  border-right: 0;
  border-radius: 0;
  background: var(--paper-bright);
  color: var(--orange-dark);
  font-family: "Geist Mono Local", monospace;
  font-size: clamp(11px, 1.25vw, 15px);
}

.invite-paper > p {
  margin: 14px 0 0;
  color: var(--muted-dark);
  font-family: "Geist Mono Local", monospace;
  font-size: 10px;
}

.invite-list {
  display: grid;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: room-step;
}

.invite-list li {
  position: relative;
  padding-left: 44px;
  counter-increment: room-step;
}

.invite-list li::before {
  content: "0" counter(room-step);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-family: "Geist Mono Local", monospace;
  font-size: 11px;
}

.invite-list span,
.invite-list small {
  display: block;
}

.invite-list span {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 620;
}

.invite-list small {
  color: var(--muted-light);
  font-family: "Geist Mono Local", monospace;
  font-size: 10px;
}

.together-section {
  position: relative;
  min-height: min(82vw, 880px);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.together-image {
  position: absolute;
  inset: 0;
  margin: 0;
}

.together-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 16, 15, 0.92) 0%, rgba(16, 16, 15, 0.34) 42%, rgba(16, 16, 15, 0.05) 72%);
}

.together-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

.together-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(82vw, 880px);
  width: min(640px, 48vw);
  padding: 80px var(--page-gutter);
}

.together-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 7.4vw, 120px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.together-copy > p:last-child {
  max-width: 36ch;
  margin: 36px 0 0;
  color: var(--paper-muted);
  font-family: "Geist Mono Local", monospace;
  font-size: 11px;
}

.details-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 8vw, 130px);
  padding: 104px var(--page-gutter);
}

.details-heading {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.details-list div {
  min-height: 210px;
  padding: 26px 26px 30px 0;
  border-bottom: 1px solid var(--line-dark);
}

.details-list div:nth-child(odd) {
  padding-right: 44px;
  border-right: 1px solid var(--line-dark);
}

.details-list div:nth-child(even) {
  padding-left: 44px;
}

.details-list dt {
  margin-bottom: 56px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.details-list dd {
  max-width: 38ch;
  margin: 0;
  color: #4b4842;
  font-family: "Geist Mono Local", monospace;
  font-size: 11px;
  line-height: 1.6;
}

.text-rail {
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--paper);
}

.text-rail > div {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  min-height: 70px;
  padding-left: 28px;
  font-family: "Geist Mono Local", monospace;
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.08em;
  white-space: nowrap;
  animation: textRail 28s linear infinite;
}

.text-rail i {
  width: 72px;
  height: 1px;
  background: var(--orange);
}

.closing {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding: 110px var(--page-gutter) 92px;
}

.closing h2 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 9.4vw, 154px);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.closing p {
  max-width: 38ch;
  margin: 32px 0 0;
  color: var(--muted-light);
  font-family: "Geist Mono Local", monospace;
  font-size: 11px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr 1fr;
  align-items: start;
  gap: 32px;
  padding: 34px var(--page-gutter) 46px;
  border-top: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--paper);
  font-family: "Geist Mono Local", monospace;
  font-size: 10px;
}

.site-footer p {
  max-width: 28ch;
  margin: 0;
  color: var(--muted-light);
}

.site-footer nav {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.page-grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms ease, transform 900ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-fold] {
  transition: opacity 800ms ease, transform 1000ms var(--ease);
}

[data-fold].reveal {
  transform: perspective(1000px) rotateX(7deg) translateY(34px);
}

[data-fold].reveal.is-visible {
  transform: perspective(1000px) rotateX(0) translateY(0);
}

@keyframes soundBars {
  from { height: 4px; }
  to { height: 15px; }
}

@keyframes railPulse {
  0%, 100% { transform: scaleY(0.46); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

@keyframes titleBreathe {
  from { transform: scaleX(0.985); }
  to { transform: scaleX(1); }
}

@keyframes lineReveal {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes proofSwap {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes textRail {
  to { transform: translateX(-50%); }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta,
  .sound-toggle {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero-main {
    grid-template-columns: 48px minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .hero h1 {
    font-size: clamp(42px, 4.4vw, 52px);
  }

  .hero-index {
    grid-template-columns: 48px repeat(3, 1fr) auto;
  }

  .cover-stamp {
    left: 28%;
    top: 45%;
  }

  .manifesto {
    grid-template-columns: 220px minmax(0, 1fr) 64px;
  }

  .manifesto-copy h2 {
    font-size: clamp(72px, 9vw, 110px);
  }

  .workflow {
    grid-template-columns: 1fr minmax(320px, 0.8fr);
  }

  .workflow-proof {
    margin-left: 30px;
  }

  .workflow-step {
    grid-template-columns: minmax(150px, 0.62fr) minmax(180px, 1fr) 42px;
  }

  .invite-section {
    grid-template-columns: minmax(240px, 0.7fr) minmax(390px, 1.3fr);
  }

  .invite-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 32px;
    border-top: 1px solid var(--line-light);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .hero {
    min-height: auto;
  }

  .hero-main {
    grid-template-columns: 42px 1fr;
    min-height: auto;
  }

  .hero-copy {
    min-height: calc(100dvh - var(--header-height));
    padding: 56px clamp(20px, 7vw, 64px);
  }

  .hero h1 {
    font-size: clamp(50px, 9vw, 78px);
  }

  .hero-image {
    grid-column: 1 / -1;
    min-height: 68vw;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .hero-index {
    grid-template-columns: 42px 1fr 1fr 1fr;
  }

  .hero-index .index-arrows {
    display: none;
  }

  .manifesto {
    grid-template-columns: 1fr 54px;
    min-height: auto;
  }

  .manifesto-aside {
    grid-column: 1 / -1;
    padding: 60px var(--page-gutter) 0;
    border-right: 0;
  }

  .aside-lead {
    max-width: 24ch;
  }

  .manifesto-copy {
    padding: 54px var(--page-gutter) 72px;
  }

  .manifesto-copy h2 {
    font-size: clamp(64px, 12vw, 100px);
  }

  .room-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 68px;
  }

  .section-intro {
    max-width: 700px;
  }

  .room-notes {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-notes li:nth-child(2) {
    border-right: 0;
  }

  .room-notes li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .workflow {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .workflow-heading {
    padding-bottom: 50px;
  }

  .workflow-proof {
    position: relative;
    top: auto;
    min-height: 0;
    margin: 48px 0 0;
  }

  .invite-section {
    grid-template-columns: 1fr;
  }

  .invite-copy h2 {
    font-size: clamp(54px, 10vw, 84px);
  }

  .invite-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .together-section,
  .together-copy {
    min-height: 760px;
  }

  .together-copy {
    width: min(680px, 78vw);
  }

  .details-section {
    grid-template-columns: 1fr;
  }

  .details-heading {
    position: relative;
    top: auto;
    max-width: 680px;
  }

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

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .page-grain {
    opacity: 0.04;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 26px;
    height: 26px;
  }

  .menu-button {
    min-height: 38px;
  }

  .hero-main {
    grid-template-columns: 1fr;
  }

  .hero-rail {
    display: none;
  }

  .hero-copy {
    min-height: calc(100dvh - var(--header-height));
    padding: 54px 20px 46px;
  }

  .hero h1 {
    font-size: clamp(47px, 14.4vw, 66px);
    line-height: 0.9;
  }

  .hero h1 span {
    white-space: normal;
  }

  .orange-rule {
    margin-top: 22px;
  }

  .hero-copy > p {
    font-size: 13px;
  }

  .hero-image {
    min-height: 90vw;
  }

  .cover-stamp {
    left: 37%;
    top: 40%;
    padding: 8px 10px;
  }

  .cover-stamp img {
    width: 25px;
    height: 25px;
  }

  .cover-stamp span {
    font-size: 18px;
  }

  .cover-stamp small {
    display: none;
  }

  .hero-index {
    grid-template-columns: repeat(3, 1fr);
    min-height: 66px;
  }

  .hero-index .index-mark {
    display: none;
  }

  .hero-index > span {
    padding: 10px;
    font-size: 8px;
  }

  .manifesto {
    display: block;
  }

  .manifesto-aside {
    padding: 54px 20px 0;
  }

  .manifesto-copy {
    padding: 42px 20px 68px;
  }

  .manifesto-copy h2 {
    font-size: clamp(57px, 17.6vw, 78px);
    line-height: 0.8;
  }

  .manifesto-copy > p {
    margin: 42px 0 0;
  }

  .manifesto-measure {
    display: none;
  }

  .room-section {
    padding: 58px 20px 36px;
  }

  .section-intro h2,
  .workflow-heading h2,
  .details-heading h2 {
    font-size: clamp(42px, 13.5vw, 60px);
  }

  .room-frame {
    padding: 6px;
    box-shadow: 10px 12px 0 rgba(240, 91, 25, 0.16);
  }

  .frame-top {
    grid-template-columns: 46px 1fr;
    padding: 0 5px;
  }

  .frame-top > span:nth-child(3) {
    display: none;
  }

  .room-notes {
    grid-template-columns: 1fr;
  }

  .room-notes li {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .room-notes li:last-child {
    border-bottom: 0;
  }

  .workflow {
    display: block;
    padding: 64px 20px;
  }

  .workflow-step {
    grid-template-columns: 1fr 36px;
    min-height: 154px;
    padding: 20px 0;
  }

  .workflow-step:hover,
  .workflow-step:focus-visible,
  .workflow-step.is-active {
    padding-left: 12px;
  }

  .step-word {
    font-size: 54px;
  }

  .step-copy {
    grid-column: 1 / -1;
    margin-top: 12px;
  }

  .step-arrow {
    grid-column: 2;
    grid-row: 1;
  }

  .workflow-proof {
    margin-top: 36px;
    padding: 14px;
    box-shadow: 10px 12px 0 rgba(16, 16, 15, 0.1);
  }

  .proof-content {
    padding: 24px;
  }

  .invite-section {
    padding: 64px 20px;
  }

  .invite-paper {
    padding: 24px 18px 30px;
    transform: none;
    box-shadow: 10px 12px 0 rgba(240, 91, 25, 0.18);
  }

  .invite-paper-head {
    margin-bottom: 34px;
  }

  .copy-field {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .copy-field input {
    border-right: 1px solid var(--line-dark);
    font-size: 10px;
  }

  .invite-list {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .together-section,
  .together-copy {
    min-height: 680px;
  }

  .together-image::after {
    background: linear-gradient(0deg, rgba(16, 16, 15, 0.94) 0%, rgba(16, 16, 15, 0.22) 70%);
  }

  .together-copy {
    justify-content: flex-end;
    width: 100%;
    padding: 60px 20px;
  }

  .together-copy h2 {
    font-size: clamp(57px, 18vw, 78px);
  }

  .details-section {
    padding: 72px 20px;
  }

  .details-list {
    grid-template-columns: 1fr;
  }

  .details-list div,
  .details-list div:nth-child(odd),
  .details-list div:nth-child(even) {
    min-height: 180px;
    padding: 24px 0;
    border-right: 0;
  }

  .details-list dt {
    margin-bottom: 38px;
  }

  .closing {
    padding: 84px 20px 72px;
  }

  .closing h2 {
    font-size: clamp(66px, 20vw, 88px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 34px 20px 46px;
  }
}

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

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

  .reveal,
  [data-fold].reveal {
    opacity: 1;
    transform: none;
  }

  .text-rail > div {
    animation: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--ink);
    backdrop-filter: none;
  }

  .cover-stamp {
    background: var(--paper);
  }
}
