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

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

:root {
  --cream: #faf6eb;
  --ink: #11110f;
  --orange: #f05a28;
  --orange-dark: #c73f12;
  --muted: #756f63;
  --hairline: rgba(17, 17, 15, 0.78);
  --mono: "Geist Mono", "Courier New", monospace;
  --sans: "Geist", Arial, Helvetica, sans-serif;
  --page-pad: clamp(20px, 3vw, 48px);
  --header-h: 84px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

img,
svg {
  display: block;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink);
  transition: clip-path 850ms var(--ease-out), visibility 850ms;
  clip-path: inset(0 0 0 0);
}

.preloader.is-gone {
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}

.preloader__orbit {
  position: relative;
  width: min(68vw, 640px);
  aspect-ratio: 1;
  animation: preloader-spin 8s linear infinite;
}

.preloader__orbit::before,
.preloader__orbit::after {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(250, 246, 235, 0.28);
  border-radius: 50%;
  content: "";
}

.preloader__orbit::after {
  inset: 42%;
  border-color: var(--orange);
  background: var(--orange);
}

.preloader__orbit span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  margin: -18px;
  font-size: clamp(26px, 4vw, 60px);
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  transform: rotate(calc(var(--i) * 40deg)) translateY(-29vw) rotate(calc(var(--i) * -40deg));
}

.preloader__orbit span:nth-child(1) { --i: 0; }
.preloader__orbit span:nth-child(2) { --i: 1; }
.preloader__orbit span:nth-child(3) { --i: 2; }
.preloader__orbit span:nth-child(4) { --i: 3; }
.preloader__orbit span:nth-child(5) { --i: 4; }
.preloader__orbit span:nth-child(6) { --i: 5; }
.preloader__orbit span:nth-child(7) { --i: 6; }
.preloader__orbit span:nth-child(8) { --i: 7; }
.preloader__orbit span:nth-child(9) { --i: 8; }

.preloader__status {
  position: absolute;
  right: var(--page-pad);
  bottom: 28px;
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 950;
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: difference;
}

.cursor.is-visible {
  opacity: 1;
}

.cursor__ring,
.cursor__dot,
.cursor__label {
  position: absolute;
  transform: translate(-50%, -50%);
}

.cursor__ring {
  width: 34px;
  height: 34px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  transition: width 220ms var(--ease-out), height 220ms var(--ease-out), background 220ms ease;
}

.cursor__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cream);
}

.cursor__label {
  display: none;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.cursor.is-active .cursor__ring {
  width: 68px;
  height: 68px;
  border-color: var(--cream);
  background: var(--cream);
}

.cursor.is-active .cursor__dot {
  opacity: 0;
}

.cursor.is-active .cursor__label {
  display: block;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding: 0 var(--page-pad);
  color: var(--ink);
  transition: transform 420ms var(--ease-out), background 260ms ease, border-color 260ms ease;
}

.site-header::after {
  position: absolute;
  right: var(--page-pad);
  bottom: 0;
  left: var(--page-pad);
  height: 1px;
  background: var(--hairline);
  content: "";
  transform-origin: left;
  animation: rule-in 900ms 900ms var(--ease-out) both;
}

.site-header.is-scrolled {
  background: rgba(250, 246, 235, 0.92);
  backdrop-filter: blur(14px);
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

@keyframes rule-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: fit-content;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.5vw, 56px);
  font-family: var(--mono);
  font-size: 13px;
}

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

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

.desktop-nav a:hover::after,
.footer__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 13px;
}

.menu-toggle__disc {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  transition: transform 300ms var(--ease-out), background 220ms ease;
}

.menu-toggle:hover .menu-toggle__disc {
  background: var(--orange);
  transform: rotate(90deg);
}

.menu-toggle__disc i {
  position: absolute;
  top: 21px;
  left: 13px;
  width: 18px;
  height: 1px;
  background: var(--cream);
}

.menu-toggle__disc i:first-child { transform: translateY(-4px); }
.menu-toggle__disc i:last-child { transform: translateY(4px); }

.site-menu {
  position: fixed;
  z-index: 800;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  visibility: hidden;
  overflow: hidden;
  padding: 24px var(--page-pad) 28px;
  color: var(--cream);
  background: var(--ink);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 720ms var(--ease-out), visibility 720ms;
}

.site-menu.is-open {
  visibility: visible;
  clip-path: inset(0 0 0 0);
}

.site-menu__art {
  position: absolute;
  inset: -10% -5% -10% 38%;
  opacity: 0.3;
  pointer-events: none;
}

.site-menu__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(-15deg) scale(0.86);
  transition: transform 1.1s var(--ease-out), opacity 800ms ease;
}

.site-menu.is-open .site-menu__art img {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.site-menu__top,
.site-menu__foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(250, 246, 235, 0.45);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.menu-close {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0 8px 16px;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
}

.menu-close span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 24px;
  line-height: 1;
  transition: color 220ms ease, background 220ms ease, transform 280ms var(--ease-out);
}

.menu-close:hover span {
  color: var(--ink);
  background: var(--cream);
  transform: rotate(90deg);
}

.site-menu__nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(860px, 70vw);
  padding: 48px 0;
}

.site-menu__nav a {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px solid rgba(250, 246, 235, 0.2);
}

.site-menu__nav small {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 12px;
}

.site-menu__nav span {
  font-size: clamp(54px, 8vw, 124px);
  font-weight: 650;
  line-height: 0.9;
  letter-spacing: -0.075em;
  transition: color 220ms ease, transform 300ms var(--ease-out);
}

.site-menu__nav a:hover span {
  color: var(--orange);
  transform: translateX(16px);
}

.site-menu__foot {
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 0;
  border-top: 1px solid rgba(250, 246, 235, 0.45);
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: max(860px, 100svh);
  overflow: hidden;
  padding: calc(var(--header-h) + 36px) var(--page-pad) 168px;
  background: var(--cream);
}

.hero__grain,
.principles__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  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='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.17'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero__copy {
  position: relative;
  z-index: 3;
  width: min(58vw, 860px);
}

.hero h1 {
  margin: 0;
  font-size: clamp(76px, 9.1vw, 152px);
  font-weight: 620;
  line-height: 0.72;
  letter-spacing: -0.09em;
}

.hero-line {
  display: block;
  width: fit-content;
  transform-origin: left center;
}

.hero-line--b { margin-left: 3vw; }
.hero-line--c { margin-left: 0.5vw; }
.hero-line--d { margin-left: 2.5vw; }

.hero-line em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.08em;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(36px) rotate(1deg);
  transition: opacity 720ms var(--ease-out), transform 860ms var(--ease-out);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.hero-line:nth-child(2) { transition-delay: 80ms; }
.hero-line:nth-child(3) { transition-delay: 150ms; }
.hero-line:nth-child(4) { transition-delay: 220ms; }

.hero__intro {
  width: min(360px, 90%);
  margin: 32px 0 0 8px;
  font-family: var(--mono);
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.35;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 0 8px;
}

.round-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 142px;
  height: 142px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
  transition: color 280ms ease, background 280ms ease, transform 380ms var(--ease-out);
}

.round-action svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.round-action--orange {
  color: var(--cream);
  border-color: var(--orange);
  background: var(--orange);
}

.round-action:hover {
  color: var(--cream);
  background: var(--ink);
  transform: rotate(-5deg) scale(1.04);
}

.round-action--orange:hover {
  color: var(--ink);
  background: var(--cream);
}

.hero__art {
  --art-x: 0px;
  --art-y: 0px;
  --art-rotate: 0deg;
  position: absolute;
  z-index: 2;
  top: 13%;
  right: -6vw;
  width: min(67vw, 1040px);
  pointer-events: none;
  transform: translate3d(var(--art-x), var(--art-y), 0) rotate(var(--art-rotate));
  transform-origin: center;
  transition: transform 180ms linear;
}

.hero__art > img {
  width: 100%;
  height: auto;
  filter: saturate(0.97) contrast(1.01);
}

.hero__orbit {
  position: absolute;
  top: 28%;
  right: 10%;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: rgba(250, 246, 235, 0.82);
  cursor: pointer;
  pointer-events: auto;
  font-family: var(--mono);
  font-size: 12px;
  transform: rotate(8deg);
  transition: color 250ms ease, background 250ms ease, transform 480ms var(--ease-out);
}

.hero__orbit svg {
  width: 20px;
  fill: var(--ink);
  transition: fill 250ms ease;
}

.hero__orbit:hover,
.hero__orbit.is-pulsing {
  color: var(--cream);
  background: var(--orange);
  transform: rotate(-8deg) scale(1.12);
}

.hero__orbit:hover svg,
.hero__orbit.is-pulsing svg {
  fill: var(--cream);
}

.hero__index {
  position: absolute;
  right: var(--page-pad);
  bottom: 20px;
  left: var(--page-pad);
  z-index: 4;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: end;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 12px;
}

.hero__index > span:first-child {
  font-family: var(--sans);
  font-size: 46px;
  font-weight: 650;
  line-height: 1;
}

.hero__index p {
  margin: 0;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero__index i {
  align-self: center;
  height: 1px;
  background: var(--hairline);
}

.section-rail {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 52px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 12px;
}

.section-rail__number {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-width: 52px;
  color: var(--cream);
  background: var(--ink);
  font-size: 18px;
}

.section-rail i {
  height: 1px;
  background: var(--hairline);
}

.rail-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-right: 4px;
  color: var(--cream);
  border-radius: 50%;
  background: var(--ink);
  transition: background 220ms ease, transform 280ms var(--ease-out);
}

.rail-arrow:hover {
  background: var(--orange);
  transform: rotate(-45deg);
}

.rail-arrow svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.workflow {
  --tension-x: 0;
  --tension-y: 0;
  position: relative;
  z-index: 5;
  min-height: 1120px;
  padding: 0 var(--page-pad);
  overflow: hidden;
  background: var(--cream);
  scroll-margin-top: var(--header-h);
}

.workflow__heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
  align-items: end;
  min-height: 350px;
  padding: 44px 0 32px;
}

.workflow__heading h2 {
  margin: 0;
  font-size: clamp(76px, 9.7vw, 154px);
  font-weight: 650;
  line-height: 0.76;
  letter-spacing: -0.09em;
}

.workflow__heading > p {
  width: min(340px, 100%);
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 16px;
}

.thread-handle {
  position: absolute;
  top: 76px;
  right: 1%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: transparent;
  cursor: grab;
  touch-action: none;
  font-family: var(--mono);
  font-size: 12px;
  transform: translate3d(var(--handle-x, 0), var(--handle-y, 0), 0);
}

.thread-handle:active { cursor: grabbing; }

.thread-handle::after {
  width: 74px;
  border-top: 1px dashed var(--orange);
  content: "";
  order: 1;
}

.thread-handle span { order: 2; }

.thread-handle svg {
  width: 28px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.workflow__sequence {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 32px);
  min-height: 610px;
  padding: 112px 0 64px;
}

.thread-line {
  position: absolute;
  z-index: 0;
  top: 60px;
  left: calc(var(--page-pad) * -1);
  width: calc(100% + var(--page-pad) * 2);
  height: 360px;
  overflow: visible;
  filter: drop-shadow(0 5px 4px rgba(17, 17, 15, 0.16));
}

.thread-line path {
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-width: 10;
}

.step {
  position: relative;
  z-index: 1;
  align-self: start;
  min-width: 0;
}

.step--host { margin-top: 100px; }
.step--invite { margin-top: 8px; }
.step--approve { margin-top: 80px; }
.step--compile { margin-top: 18px; }

.paper-object {
  display: grid;
  place-items: center;
  width: min(100%, 210px);
  height: 190px;
  margin-bottom: 20px;
  transform: translate3d(var(--shift-x, 0px), var(--shift-y, 0px), 0) rotate(var(--object-rotate, 0deg));
  transition: transform 240ms var(--ease-out);
}

.step:nth-of-type(2) .paper-object { --object-shift: -4px; --object-rotate: -2deg; }
.step:nth-of-type(3) .paper-object { --object-shift: 5px; --object-rotate: 2deg; }
.step:nth-of-type(4) .paper-object { --object-shift: -3px; --object-rotate: -1deg; }
.step:nth-of-type(5) .paper-object { --object-shift: 4px; --object-rotate: 2deg; }

.paper-object svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  filter: drop-shadow(0 11px 9px rgba(17, 17, 15, 0.14));
}

.paper-object--folder {
  position: relative;
  border-radius: 8px 8px 3px 3px;
  background: #eee8d9;
  box-shadow: 0 14px 22px rgba(17, 17, 15, 0.16);
  transform: rotate(4deg);
}

.paper-object--folder::before,
.paper-object--folder::after {
  position: absolute;
  width: 86%;
  height: 90%;
  border: 1px solid rgba(17, 17, 15, 0.22);
  border-radius: inherit;
  background: #f6f0e3;
  content: "";
}

.paper-object--folder::before { transform: translate(-11px, -11px) rotate(-4deg); }
.paper-object--folder::after { transform: translate(10px, -6px) rotate(3deg); }
.paper-object--folder svg { position: relative; z-index: 2; width: 72px; filter: none; }

.paper-object--tent svg .tent {
  fill: #efe9da;
  stroke: rgba(17, 17, 15, 0.34);
}

.paper-object--tent svg .terminal { stroke: var(--ink); }

.paper-object--note svg .note {
  fill: #f0eadc;
  stroke: rgba(17, 17, 15, 0.3);
}

.paper-object--note svg .fold { fill: #ddd5c5; }
.paper-object--note svg .link { stroke-width: 3; }

.paper-object--guest {
  width: 100%;
  perspective: 800px;
}

.guest-window {
  width: 100%;
  max-width: 220px;
  padding: 0 14px 14px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: #f4eee1;
  box-shadow: 0 15px 24px rgba(17, 17, 15, 0.18);
  transform: rotateY(-7deg) rotate(2deg);
}

.guest-window__bar {
  display: flex;
  gap: 5px;
  height: 28px;
  margin: 0 -14px 12px;
  padding: 11px 10px;
  border-bottom: 1px solid var(--ink);
}

.guest-window__bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
}

.guest-window > svg {
  display: inline-block;
  width: 40px;
  height: 40px;
  filter: none;
  fill: var(--ink);
  stroke: none;
  vertical-align: middle;
}

.guest-window > span {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 11px;
  vertical-align: middle;
}

.guest-window button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 12px;
  padding: 8px 10px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: transparent;
  font-family: var(--mono);
  font-size: 10px;
}

.guest-window button b {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--cream);
  border-radius: 50%;
  background: var(--ink);
}

.paper-object--pdf svg path:first-child { fill: #f3eddf; stroke: rgba(17, 17, 15, 0.34); }
.paper-object--pdf svg rect { fill: transparent; }
.paper-object--pdf svg text { fill: var(--ink); stroke: none; font: 700 10px var(--mono); }

.step__number {
  position: relative;
  z-index: 3;
  margin: 0;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 620;
}

.step h3 {
  position: relative;
  z-index: 3;
  margin: -2px 0 10px;
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 670;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.step > p:last-child {
  position: relative;
  z-index: 3;
  max-width: 190px;
  margin: 0;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.45;
}

.section-rail--bottom {
  position: absolute;
  right: var(--page-pad);
  bottom: 0;
  left: var(--page-pad);
}

.workflow .section-rail--bottom { display: none; }

.room-views {
  position: relative;
  z-index: 5;
  min-height: 2600px;
  padding: 0 var(--page-pad) clamp(120px, 14vw, 220px);
  overflow: clip;
  background: #e6dfd0;
}

.room-views::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 49.94%, rgba(17, 17, 15, 0.11) 50%, transparent 50.06%), radial-gradient(circle at 14% 18%, rgba(240, 90, 40, 0.12), transparent 22%), repeating-linear-gradient(0deg, transparent 0 31px, rgba(17, 17, 15, 0.035) 32px);
  content: "";
}

.room-views__rail { position: relative; z-index: 4; }
.room-views__counter { font-family: var(--mono); font-size: 11px; }

.room-views__heading {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 4vw;
  align-items: end;
  padding: clamp(78px, 9vw, 150px) 0 clamp(90px, 10vw, 170px);
}

.room-views__heading > p { max-width: 260px; margin: 0 0 12px; font-family: var(--mono); font-size: 12px; }
.room-views__heading h2 { margin: 0; font-size: clamp(72px, 9.2vw, 150px); font-weight: 620; line-height: 0.78; letter-spacing: -0.085em; }
.room-views__heading em { color: var(--orange); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.room-views__stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(150px, 20vw, 300px);
  width: min(100%, 1380px);
  margin: 0 auto;
}

.room-shot {
  --shot-x: 0px;
  --shot-y: 0px;
  --shot-rotate: 0deg;
  position: relative;
  width: min(88vw, 1220px);
  margin: 0;
  transform: translate3d(var(--shot-x), var(--shot-y), 0) rotate(var(--shot-rotate));
  transform-origin: 50% 45%;
  will-change: transform;
}

.room-shot--host { justify-self: start; --shot-rotate: -2.6deg; }
.room-shot--session { justify-self: end; --shot-rotate: 2.2deg; }
.room-shot--editor { justify-self: center; --shot-rotate: -1.2deg; }

.room-shot__frame { position: relative; padding: clamp(12px, 1.5vw, 22px); border: 1px solid rgba(17, 17, 15, 0.7); background: var(--cream); box-shadow: 0 32px 54px rgba(17, 17, 15, 0.18); }
.room-shot__frame::before { position: absolute; inset: 7px; border: 1px dashed rgba(17, 17, 15, 0.19); pointer-events: none; content: ""; }
.room-shot img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; background: #fff; }
.room-shot figcaption { display: grid; grid-template-columns: 145px minmax(0, 420px); gap: 22px; align-items: start; margin-top: 18px; font-family: var(--mono); font-size: 12px; }
.room-shot figcaption span { color: var(--orange-dark); }
.room-shot figcaption p { margin: 0; }
.room-shot__tape { position: absolute; z-index: 4; top: -18px; left: 13%; width: 140px; height: 44px; background: rgba(240, 90, 40, 0.82); mix-blend-mode: multiply; transform: rotate(-4deg); }
.room-shot__stitch { position: absolute; z-index: 4; top: 8%; right: -30px; width: 66px; height: 82%; border-right: 8px solid var(--orange); border-radius: 50%; transform: rotate(2deg); }
.room-shot__thread { position: absolute; z-index: 4; right: 5%; bottom: -52px; width: 34%; height: 80px; border-bottom: 9px solid var(--orange); border-radius: 50%; transform: rotate(-4deg); }

.principles {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(600px, 1.24fr);
  min-height: max(900px, 100svh);
  overflow: clip;
  padding: clamp(48px, 6vh, 72px) var(--page-pad) clamp(64px, 8vh, 96px);
  color: var(--cream);
  background: var(--ink);
  scroll-margin-top: var(--header-h);
}

.principles__grain {
  opacity: 0.12;
  mix-blend-mode: lighten;
}

.principles__visual {
  position: relative;
  top: auto;
  align-self: start;
  height: min(82vh, 820px);
}

.principles__visual h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(82px, 10.3vw, 168px);
  font-weight: 620;
  line-height: 0.69;
  letter-spacing: -0.09em;
}

.principles__visual h2 em {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.principles__visual > p {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 260px;
  margin: 0;
  font-family: var(--mono);
  font-size: 14px;
}

.principles__visual img {
  --leaf-x: 0px;
  --leaf-y: 0px;
  position: absolute;
  z-index: 1;
  top: 8%;
  left: 26%;
  width: min(43vw, 640px);
  max-width: none;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 47% 65% at 43% 52%, #000 68%, transparent 100%);
  mask-image: radial-gradient(ellipse 47% 65% at 43% 52%, #000 68%, transparent 100%);
  transform: translate3d(var(--leaf-x), var(--leaf-y), 0) rotate(3deg);
  transition: transform 240ms linear;
}

.principle-list {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  margin: clamp(240px, 28vh, 300px) 0 0;
  padding: 0;
  list-style: none;
}

.principle-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  min-height: clamp(136px, 16vh, 164px);
  padding: 24px 0;
  border-top: 1px solid rgba(250, 246, 235, 0.68);
  border-bottom: 1px solid rgba(250, 246, 235, 0.68);
}

.principle-list li > span {
  padding-top: 12px;
  font-family: var(--mono);
  font-size: 14px;
}

.principle-list p {
  margin: 0;
  font-size: clamp(42px, 3.7vw, 62px);
  font-weight: 570;
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.principle-list strong {
  color: var(--orange);
  font-weight: inherit;
  transition: font-style 220ms ease, color 220ms ease;
}

.principle-list li:hover strong {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.footer {
  position: relative;
  z-index: 5;
  min-height: 740px;
  padding: 80px var(--page-pad) 28px;
  overflow: hidden;
  background: var(--cream);
  scroll-margin-top: var(--header-h);
}

.footer__notch {
  position: absolute;
  top: -22px;
  left: 50%;
  width: 48px;
  height: 48px;
  background: var(--ink);
  transform: translateX(-50%) rotate(45deg);
}

.download-cta {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  width: min(650px, 90vw);
  min-height: 92px;
  margin: 0 auto;
  padding: 10px 14px 10px 24px;
  border: 1px solid var(--orange-dark);
  border-radius: 46px;
  background: var(--orange);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 540;
  text-align: center;
  transition: color 260ms ease, background 260ms ease, transform 380ms var(--ease-out);
}

.download-cta > svg,
.download-cta i svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.download-cta i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: color 220ms ease, background 220ms ease, transform 360ms var(--ease-out);
}

.download-cta:hover {
  color: var(--cream);
  background: var(--ink);
  transform: scale(1.02);
}

.download-cta:hover i {
  color: var(--ink);
  background: var(--cream);
  transform: rotate(-45deg);
}

.footer__wordmark {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 440px;
  font-size: clamp(110px, 17vw, 280px);
  font-weight: 620;
  line-height: 0.7;
  letter-spacing: -0.095em;
  white-space: nowrap;
}

.footer__wordmark span {
  transition: transform 600ms var(--ease-out);
}

.footer:hover .footer__wordmark span:first-child { transform: translateX(2vw) rotate(-1deg); }
.footer:hover .footer__wordmark span:last-child { transform: translateX(-2vw) rotate(1deg); }

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: clamp(32px, 8vw, 120px);
  padding: 20px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 12px;
}

.footer__note {
  margin: 20px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .hero {
    min-height: 940px;
  }

  .hero__copy {
    width: 66vw;
  }

  .hero h1 {
    font-size: clamp(76px, 10vw, 114px);
  }

  .hero__art {
    top: 29%;
    right: -17vw;
    width: 82vw;
  }

  .workflow {
    min-height: 1660px;
  }

  .workflow__sequence {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 40px 24px;
    padding-top: 90px;
  }

  .thread-line {
    display: none;
  }

  .step {
    grid-column: span 2;
    margin-top: 0;
    padding-left: 24px;
    border-left: 5px solid var(--orange);
  }

  .step:nth-of-type(4) { grid-column: 2 / span 2; }
  .step:nth-of-type(5) { grid-column: 4 / span 2; }

  .principles {
    grid-template-columns: 42% 58%;
  }

  .principles__visual img {
    left: 10%;
    width: 56vw;
    opacity: 0.8;
  }
}

@media (max-width: 800px) {
  :root {
    --page-pad: 20px;
    --header-h: 70px;
  }

  .room-views { min-height: 1820px; padding-bottom: 110px; }
  .room-views__counter { display: none; }
  .room-views__heading { display: block; padding: 64px 0 86px; }
  .room-views__heading > p { margin-bottom: 34px; }
  .room-views__heading h2 { font-size: clamp(55px, 18vw, 78px); line-height: 0.82; }
  .room-views__stack { gap: 145px; }
  .room-shot { width: calc(100vw - 36px); max-width: none; }
  .room-shot--host { margin-left: -8px; }
  .room-shot--session { margin-right: -8px; }
  .room-shot__frame { padding: 8px; }
  .room-shot__frame::before { inset: 3px; }
  .room-shot figcaption { grid-template-columns: 96px 1fr; gap: 10px; margin-top: 13px; font-size: 10px; }
  .room-shot__tape { top: -13px; width: 82px; height: 29px; }
  .room-shot__stitch { right: -12px; width: 34px; border-right-width: 5px; }
  .room-shot__thread { bottom: -34px; border-bottom-width: 5px; }

  .cursor { display: none; }
  .desktop-nav { display: none; }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand { font-size: 20px; }
  .brand img { width: 27px; height: 27px; }
  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .site-menu__art {
    inset: 15% -44% 5% 18%;
    opacity: 0.22;
  }

  .site-menu__nav {
    width: 100%;
  }

  .site-menu__nav span {
    font-size: clamp(44px, 14vw, 74px);
  }

  .site-menu__foot {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .preloader__orbit span {
    transform: rotate(calc(var(--i) * 40deg)) translateY(-31vw) rotate(calc(var(--i) * -40deg));
  }

  .hero {
    min-height: 1050px;
    padding-top: calc(var(--header-h) + 28px);
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(58px, 17.5vw, 104px);
    line-height: 0.79;
  }

  .hero-line--b,
  .hero-line--c,
  .hero-line--d {
    margin-left: 0;
  }

  .hero__intro {
    width: 88%;
    margin-top: 24px;
    margin-left: 0;
  }

  .hero__actions {
    gap: 10px;
    margin-left: 0;
  }

  .round-action {
    width: 116px;
    height: 116px;
    font-size: 11px;
  }

  .hero__art {
    top: 53%;
    right: -32vw;
    width: 137vw;
  }

  .hero__orbit {
    top: 33%;
    right: 17%;
    width: 84px;
    height: 84px;
  }

  .hero__index {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .hero__index p { font-size: 22px; }
  .hero__index i { display: none; }

  .section-rail {
    gap: 10px;
  }

  .section-rail > span:nth-child(2) {
    max-width: 110px;
  }

  .workflow {
    min-height: auto;
    padding-bottom: 92px;
  }

  .workflow__heading {
    display: block;
    min-height: 360px;
    padding-top: 44px;
  }

  .workflow__heading h2 {
    font-size: clamp(68px, 19vw, 114px);
  }

  .workflow__heading > p {
    margin-top: 28px;
  }

  .thread-handle {
    display: none;
  }

  .workflow__sequence {
    display: flex;
    flex-direction: column;
    gap: 80px;
    min-height: 0;
    padding: 52px 0 88px 20px;
  }

  .workflow__sequence::before {
    position: absolute;
    top: 0;
    bottom: 40px;
    left: 5px;
    width: 6px;
    border-radius: 4px;
    background: var(--orange);
    content: "";
  }

  .step,
  .step:nth-of-type(4),
  .step:nth-of-type(5) {
    display: grid;
    grid-template-columns: minmax(124px, 42%) 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 0 18px;
    padding-left: 0;
    border-left: 0;
  }

  .paper-object {
    grid-row: 1 / 4;
    width: 100%;
    height: 152px;
    margin: 0;
  }

  .step__number,
  .step h3,
  .step > p:last-child {
    grid-column: 2;
  }

  .step h3 {
    font-size: 42px;
  }

  .principles {
    display: block;
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 120px;
  }

  .principles__visual {
    position: relative;
    top: auto;
    height: 680px;
  }

  .principles__visual h2 {
    font-size: clamp(76px, 22vw, 124px);
  }

  .principles__visual img {
    top: 16%;
    left: 3%;
    width: 117vw;
  }

  .principles__visual > p {
    bottom: 30px;
  }

  .principle-list {
    gap: 16px;
    margin-top: 24px;
  }

  .principle-list li {
    grid-template-columns: 42px 1fr;
    min-height: 240px;
  }

  .principle-list p {
    font-size: clamp(42px, 11vw, 64px);
  }

  .footer {
    min-height: 610px;
    padding-top: 64px;
  }

  .download-cta {
    grid-template-columns: 34px 1fr 42px;
    min-height: 72px;
    padding: 8px 10px 8px 18px;
    font-size: 18px;
  }

  .download-cta > svg { width: 21px; }
  .download-cta i { width: 42px; height: 42px; }

  .footer__wordmark {
    min-height: 360px;
    font-size: clamp(72px, 25vw, 132px);
  }

  .footer__nav {
    gap: 24px;
  }
}

@media (max-width: 460px) {
  .hero {
    min-height: 980px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .hero__art {
    top: 56%;
    right: -40vw;
    width: 155vw;
  }

  .hero__orbit {
    right: 21%;
  }

  .workflow__heading {
    min-height: 330px;
  }

  .workflow__heading h2 {
    font-size: clamp(62px, 18vw, 82px);
  }

  .step,
  .step:nth-of-type(4),
  .step:nth-of-type(5) {
    grid-template-columns: 116px 1fr;
    gap: 0 14px;
  }

  .paper-object { height: 132px; }
  .step h3 { font-size: 38px; }
  .step__number { font-size: 22px; }
  .step > p:last-child { font-size: 11px; }

  .principles__visual {
    height: 590px;
  }

  .principle-list li {
    grid-template-columns: 34px 1fr;
    gap: 8px;
    min-height: 220px;
  }

  .principle-list p {
    font-size: 39px;
  }

  .footer__wordmark {
    min-height: 310px;
    font-size: clamp(62px, 23vw, 102px);
  }

  .footer__nav {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
}

@media (pointer: coarse) {
  .cursor { display: none; }
}

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

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

  .preloader { display: none; }
  .cursor { display: none; }

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

  .hero__art,
  .principles__visual img,
  .paper-object {
    transform: none !important;
  }
}
