@charset "UTF-8";

@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-800.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

@font-face {
  font-family: "Unbounded";
  src: url("/assets/fonts/unbounded-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Unbounded";
  src: url("/assets/fonts/unbounded-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --black: #11100e;
  --black-soft: #1b1916;
  --cream: #f4efe5;
  --cream-deep: #e9e0d1;
  --coral: #f05a42;
  --coral-dark: #d94731;
  --yellow: #f7cb45;
  --muted: #716c64;
  --line-dark: rgb(17 16 14 / 24%);
  --line-light: rgb(244 239 229 / 26%);
  --sans: "Onest", Arial, sans-serif;
  --display: "Unbounded", Arial, sans-serif;
  --wrap: 1320px;
  --header-height: 72px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

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

body {
  min-width: 300px;
  margin: 0;
  color: var(--black);
  background: var(--cream);
  font-family: var(--sans);
  font-size: clamp(1rem, .97rem + .12vw, 1.1rem);
  line-height: 1.52;
  text-rendering: optimizeLegibility;
}

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

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

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

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

.shell {
  width: min(calc(100% - clamp(40px, 7vw, 112px)), var(--wrap));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--cream);
  background: var(--black);
  font-weight: 800;
  transform: translateY(-180%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--cream);
  background: var(--black);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}

.site-header.is-stuck {
  border-bottom-color: var(--line-light);
}

.nav {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  gap: clamp(24px, 4vw, 62px);
  align-items: center;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: .42em;
  font-family: var(--display);
  font-size: clamp(.82rem, .77rem + .18vw, .98rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1;
  white-space: nowrap;
}

.wordmark__cash {
  color: var(--cream);
}

.wordmark__cash strong {
  color: var(--coral);
  font-weight: 700;
}

.nav-links {
  display: flex;
  min-width: 0;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 36px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: #c8c1b7;
  font-size: .76rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--cream);
}

.nav-toggle {
  display: none;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 2px solid currentColor;
  border-radius: 0;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.15;
  transition: color .24s ease, background .24s ease, transform .24s var(--ease-out);
}

.nav-cta {
  min-height: 44px;
  color: var(--black);
  background: var(--cream);
  border-color: var(--cream);
}

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

.nav-cta:hover {
  color: var(--cream);
  background: var(--coral);
  border-color: var(--coral);
}

.button--black {
  color: var(--cream);
  background: var(--black);
  border-color: var(--black);
}

.button--black:hover {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--black);
}

.button--cream {
  color: var(--black);
  background: var(--cream);
  border-color: var(--cream);
}

.button--cream:hover {
  color: var(--cream);
  background: var(--black);
  border-color: var(--black);
}

.button--outline {
  color: currentColor;
  background: transparent;
}

.button--outline:hover {
  color: var(--cream);
  background: var(--black);
  border-color: var(--black);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-block: 3px;
  border-bottom: 2px solid currentColor;
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.45;
}

.text-link span {
  transition: transform .2s var(--ease-out);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.page-section {
  position: relative;
  padding-block: clamp(84px, 10vw, 150px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .62fr);
  gap: clamp(30px, 8vw, 126px);
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 84px);
}

.section-head > * {
  min-width: 0;
}

.section-head__meta {
  display: block;
  margin: 0 0 17px;
  font-family: var(--display);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.4;
}

.section-head > p {
  max-width: 48ch;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: .98rem;
  text-wrap: pretty;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -.04em;
}

h1 {
  max-width: 13.6ch;
  font-size: clamp(3rem, 5.6vw, 4.375rem);
  line-height: .98;
}

h2 {
  max-width: 17ch;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  line-height: 1.15;
}

/* Hero */

.home-hero {
  position: relative;
  color: var(--black);
  background: var(--coral);
  overflow: clip;
}

.hero-main {
  padding-block: clamp(62px, 8vw, 112px) clamp(45px, 6vw, 76px);
}

.hero-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .62fr);
  gap: clamp(34px, 8vw, 126px);
  align-items: end;
}

.hero-head > * {
  min-width: 0;
}

.hero-kicker {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 700;
}

.hero-side {
  padding-bottom: 2px;
}

.hero-lede {
  max-width: 49ch;
  margin: 0;
  font-size: clamp(1.05rem, .93rem + .48vw, 1.34rem);
  font-weight: 600;
  line-height: 1.48;
  text-wrap: pretty;
}

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

.hero-reel {
  position: relative;
  min-height: clamp(430px, 54vw, 680px);
  padding-top: 22px;
  overflow: clip;
}

.hero-reel::before {
  position: absolute;
  inset: 11% 0 auto;
  height: 1px;
  background: rgb(17 16 14 / 32%);
  content: "";
}

.hero-reel__grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.18fr) minmax(0, .82fr);
  gap: clamp(14px, 2.2vw, 34px);
  align-items: end;
  padding: 0 clamp(20px, 5vw, 72px) 42px;
}

.hero-frame {
  position: relative;
  min-width: 0;
  aspect-ratio: 9 / 13.5;
  overflow: clip;
  border: 2px solid var(--black);
  box-shadow: 13px 14px 0 var(--black);
  transform-origin: 50% 100%;
  transition: transform 1.05s var(--ease-out), opacity .7s ease;
}

.hero-frame--left {
  max-height: 76%;
  color: var(--black);
  background: var(--cream);
  transform: rotate(-4deg);
}

.hero-frame--center {
  height: 96%;
  color: var(--cream);
  background: var(--black);
  transform: rotate(1deg);
}

.hero-frame--right {
  max-height: 82%;
  color: var(--black);
  background: var(--yellow);
  transform: rotate(4deg);
}

.motion:not(.is-ready) .hero-frame--left {
  opacity: 0;
  transform: translate3d(-46vw, 14vh, 0) rotate(-18deg);
}

.motion:not(.is-ready) .hero-frame--center {
  opacity: 0;
  transform: translate3d(0, 50vh, 0) rotate(0);
}

.motion:not(.is-ready) .hero-frame--right {
  opacity: 0;
  transform: translate3d(46vw, 14vh, 0) rotate(18deg);
}

.hero-frame__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 2px solid currentColor;
  font-family: var(--display);
  font-size: clamp(.52rem, .45rem + .25vw, .72rem);
  font-weight: 700;
}

.hero-frame__top i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

.hero-frame__body {
  display: flex;
  height: calc(100% - 52px);
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(18px, 2.5vw, 34px);
}

.hero-frame__number {
  font-family: var(--sans);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .76;
}

.hero-frame__list {
  margin: 0;
  padding: 0;
  font-family: var(--display);
  font-size: clamp(.65rem, .52rem + .45vw, 1rem);
  font-weight: 700;
  line-height: 1.65;
  list-style: none;
}

.hero-frame--center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.hero-frame--center::after {
  position: absolute;
  inset: 0;
  background: rgb(240 90 66 / 48%);
  content: "";
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-frame__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 18px;
  color: var(--cream);
  background: var(--black);
}

.hero-frame__caption b,
.hero-frame__caption span {
  display: block;
}

.hero-frame__caption b {
  font-size: clamp(1rem, 1.7vw, 1.55rem);
  line-height: 1.08;
}

.hero-frame__caption span {
  margin-top: 6px;
  color: #c8c1b7;
  font-size: .72rem;
}

.hero-frame__cash {
  font-family: var(--sans);
  font-size: clamp(4.2rem, 11vw, 9.5rem);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .78;
}

.hero-frame__route {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  font-size: clamp(.84rem, .74rem + .28vw, 1.05rem);
  font-weight: 800;
  list-style: none;
}

.hero-frame__route li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-frame__route li:not(:last-child)::after {
  margin-left: auto;
  content: "→";
}

.hero-scroll-note {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: 12px;
  z-index: 4;
  margin: 0;
  font-family: var(--display);
  font-size: .6rem;
  font-weight: 700;
}

.service-marquee {
  position: relative;
  color: var(--cream);
  background: var(--black);
  border-block: 2px solid var(--black);
  overflow: clip;
}

.service-marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee-shift 28s linear infinite;
}

.service-marquee__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.service-marquee span {
  display: inline-flex;
  min-height: 70px;
  align-items: center;
  gap: 20px;
  padding-inline: 20px;
  font-family: var(--display);
  font-size: clamp(.72rem, .65rem + .22vw, .9rem);
  font-weight: 700;
  white-space: nowrap;
}

.service-marquee span::after {
  color: var(--coral);
  content: "✦";
}

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

/* Proof */

.proof {
  color: var(--black);
  background: var(--cream);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(185px, auto);
  gap: 14px;
}

.proof-card {
  position: relative;
  min-width: 0;
  padding: clamp(23px, 3vw, 38px);
  border: 2px solid var(--black);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}

a.proof-card:hover {
  z-index: 2;
  box-shadow: 9px 10px 0 var(--black);
  transform: translate(-4px, -4px);
}

.proof-card--feature {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 560px;
  padding: 0;
  color: var(--cream);
  background: var(--black);
  overflow: clip;
}

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

.proof-card--feature::after {
  position: absolute;
  inset: 0;
  background: rgb(17 16 14 / 28%);
  content: "";
  pointer-events: none;
}

.proof-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: clamp(25px, 4vw, 48px);
  background: var(--black);
}

.proof-card__meta {
  display: block;
  margin-bottom: 11px;
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 700;
}

.proof-card__content h3 {
  max-width: 22ch;
  font-size: clamp(1.55rem, 2.8vw, 2.55rem);
}

.proof-card__content p {
  max-width: 56ch;
  margin: 13px 0 0;
  color: #c9c2b8;
  font-size: .9rem;
}

.proof-card--metric {
  display: flex;
  grid-column: span 5;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.proof-card--metric strong {
  display: block;
  font-size: clamp(3.2rem, 6.4vw, 6.3rem);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .82;
}

.proof-card--metric h3 {
  margin-top: 14px;
}

.proof-card--metric p {
  max-width: 32ch;
  margin: 9px 0 0;
  font-size: .9rem;
}

.proof-card--metric small {
  display: block;
  color: currentColor;
  font-size: .7rem;
  font-weight: 700;
}

.proof-card--coral {
  background: var(--coral);
}

.proof-card--yellow {
  color: var(--black);
  background: var(--yellow);
}

.proof-card--black {
  color: var(--cream);
  background: var(--black);
}

.proof-card--events {
  display: grid;
  grid-column: span 12;
  grid-template-columns: minmax(0, .62fr) minmax(0, 1.38fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  background: var(--cream-deep);
}

.proof-card--events h3 {
  max-width: 17ch;
  font-size: clamp(1.6rem, 2.6vw, 2.45rem);
}

.proof-card--events p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(.75rem, .62rem + .34vw, 1rem);
  font-weight: 700;
  line-height: 1.85;
}

.proof-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

/* Journey */

.journey {
  color: var(--cream);
  background: var(--black);
}

.journey .section-head {
  margin-bottom: 0;
}

.journey .section-head > p {
  color: #aaa39a;
}

.journey-scene {
  position: relative;
  min-height: 720px;
}

.journey-stage {
  display: grid;
  min-height: 720px;
  align-items: center;
}

.motion .journey-scene {
  height: 225vh;
}

.motion .journey-stage {
  position: sticky;
  top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
}

.journey-canvas {
  position: relative;
  width: 100%;
  height: min(70vh, 700px);
  min-height: 570px;
  overflow: clip;
}

.journey-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  color: rgb(244 239 229 / 8%);
  font-size: clamp(8rem, 24vw, 22rem);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .8;
  transform: translate(-50%, -54%);
  pointer-events: none;
}

.journey-frame {
  position: absolute;
  top: 50%;
  width: min(25vw, 300px);
  aspect-ratio: 9 / 14;
  padding: clamp(18px, 2.5vw, 31px);
  border: 2px solid var(--cream);
  box-shadow: 10px 12px 0 rgb(244 239 229 / 22%);
  transform: translateY(-50%);
  will-change: transform, opacity;
}

.journey-frame--attention {
  left: 8%;
  color: var(--black);
  background: var(--coral);
  transform: translateY(-50%) rotate(-4deg);
}

.journey-frame--meaning {
  left: 50%;
  color: var(--black);
  background: var(--cream);
  transform: translate(-50%, -50%) rotate(1deg);
}

.journey-frame--action {
  right: 8%;
  color: var(--black);
  background: var(--yellow);
  transform: translateY(-50%) rotate(4deg);
}

.journey-frame span,
.journey-frame small,
.journey-frame b {
  display: block;
}

.journey-frame span {
  font-family: var(--display);
  font-size: .6rem;
  font-weight: 700;
}

.journey-frame b {
  margin-top: 26px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .9;
}

.journey-frame p {
  max-width: 25ch;
  margin: 18px 0 0;
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.45;
}

.journey-frame small {
  position: absolute;
  right: 22px;
  bottom: 19px;
  font-size: .68rem;
  font-weight: 800;
}

.journey-result {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: clamp(13px, 3vw, 40px);
  align-items: center;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(.7rem, .55rem + .48vw, 1.05rem);
  font-weight: 700;
}

.journey-result span {
  display: inline-flex;
  align-items: center;
  gap: clamp(13px, 3vw, 40px);
}

.journey-result span:not(:last-child)::after {
  color: var(--coral);
  content: "→";
}

.motion .journey-result span {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s var(--ease-out);
}

.motion .journey-result span.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* Capabilities */

.capabilities {
  color: var(--black);
  background: var(--cream);
}

.capability-list {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--black);
  list-style: none;
}

.capability-row {
  display: grid;
  grid-template-columns: 54px minmax(220px, .85fr) minmax(300px, 1.1fr);
  gap: clamp(18px, 4vw, 64px);
  align-items: start;
  padding-block: clamp(26px, 3.5vw, 45px);
  border-bottom: 2px solid var(--black);
}

.capability-row > * {
  min-width: 0;
}

.capability-row > span {
  padding-top: 5px;
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: .64rem;
  font-weight: 700;
}

.capability-row h3 {
  max-width: 20ch;
  font-size: clamp(1.35rem, 2.25vw, 2.2rem);
}

.capability-row p {
  max-width: 58ch;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .94rem;
  text-wrap: pretty;
}

.process-band {
  color: var(--black);
  background: var(--coral);
  border-block: 2px solid var(--black);
}

.process-band__inner {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 8vw, 120px);
  padding-block: clamp(64px, 8vw, 105px);
}

.process-band h2 {
  max-width: 12ch;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--black);
  list-style: none;
}

.process-list li {
  min-width: 0;
  padding: 24px 22px 27px 0;
  border-bottom: 2px solid var(--black);
}

.process-list li:nth-child(odd) {
  padding-right: 28px;
  border-right: 2px solid var(--black);
}

.process-list li:nth-child(even) {
  padding-left: 28px;
}

.process-list span {
  display: block;
  font-family: var(--display);
  font-size: .6rem;
  font-weight: 700;
}

.process-list h3 {
  margin-top: 16px;
  font-size: 1.16rem;
}

.process-list p {
  margin: 9px 0 0;
  font-size: .86rem;
}

/* Factory */

.factory {
  color: var(--black);
  background: var(--yellow);
  overflow: clip;
}

.factory-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(380px, 1.12fr);
  gap: clamp(42px, 8vw, 122px);
  align-items: center;
}

.factory-copy h2 {
  max-width: 15ch;
}

.factory-copy > p {
  max-width: 50ch;
  margin: 24px 0 0;
  font-size: 1rem;
  text-wrap: pretty;
}

.factory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  align-items: center;
  margin-top: 30px;
}

.factory-sheet {
  position: relative;
  min-height: 570px;
}

.factory-sheet__paper {
  position: absolute;
  inset: 5% 2% 7% 7%;
  display: flex;
  flex-direction: column;
  padding: clamp(25px, 4vw, 48px);
  color: var(--cream);
  background: var(--black);
  border: 2px solid var(--black);
  box-shadow: 15px 16px 0 var(--coral);
  transform: rotate(2deg);
}

.factory-sheet__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 700;
}

.factory-sheet__title {
  max-width: 8ch;
  margin: auto 0;
  color: var(--coral);
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .78;
}

.factory-days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.factory-day {
  min-width: 0;
  padding: 12px 8px 0 0;
  border-right: 1px solid var(--line-light);
}

.factory-day:last-child {
  border-right: 0;
}

.factory-day b,
.factory-day span {
  display: block;
}

.factory-day b {
  color: var(--yellow);
  font-family: var(--display);
  font-size: .58rem;
}

.factory-day span {
  margin-top: 8px;
  color: #bdb5aa;
  font-size: .65rem;
  line-height: 1.35;
}

.factory-formats {
  margin: clamp(45px, 7vw, 90px) 0 0;
  padding: 0;
  border-top: 2px solid var(--black);
  list-style: none;
}

.factory-formats li {
  display: grid;
  grid-template-columns: 46px minmax(0, .7fr) minmax(250px, 1.3fr);
  gap: clamp(16px, 4vw, 55px);
  padding-block: 22px;
  border-bottom: 2px solid var(--black);
}

.factory-formats span {
  font-family: var(--display);
  font-size: .58rem;
  font-weight: 700;
}

.factory-formats b {
  font-size: 1rem;
}

.factory-formats p {
  margin: 0;
  font-size: .88rem;
}

/* Team */

.team {
  color: var(--cream);
  background: var(--coral);
}

.team .section-head > p {
  color: #3b201b;
}

.team-sheet {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 310px;
  grid-column: span 2;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--cream);
  background: var(--black);
  border: 2px solid var(--black);
  transition: color .25s ease, background .25s ease, transform .25s var(--ease-out);
}

.team-card:nth-child(even) {
  color: var(--black);
  background: var(--cream);
}

.team-card:hover {
  z-index: 2;
  color: var(--black);
  background: var(--yellow);
  transform: translateY(-8px) rotate(-1deg);
}

.team-card__index {
  font-family: var(--display);
  font-size: .58rem;
  font-weight: 700;
}

.team-card__initials {
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .8;
}

.team-card h3 {
  max-width: 13ch;
  font-size: 1rem;
}

.team-card p {
  margin: 7px 0 0;
  color: currentColor;
  font-size: .78rem;
}

/* Resources */

.resources {
  color: var(--black);
  background: var(--cream);
}

.resources-grid {
  display: grid;
  grid-template-columns: minmax(330px, .88fr) minmax(0, 1.12fr);
  gap: clamp(26px, 5vw, 76px);
}

.lead-magnet {
  position: relative;
  display: flex;
  min-height: 550px;
  flex-direction: column;
  padding: clamp(28px, 4.5vw, 58px);
  color: var(--black);
  background: var(--coral);
  border: 2px solid var(--black);
  box-shadow: 12px 13px 0 var(--black);
  overflow: clip;
}

.lead-magnet p.lead-magnet__number {
  margin: 0;
  font-size: clamp(6.5rem, 13vw, 12rem);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .72;
}

.lead-magnet__copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.lead-magnet h3 {
  max-width: 15ch;
  font-size: clamp(1.8rem, 3.5vw, 3.25rem);
  letter-spacing: -.045em;
}

.lead-magnet p:not(.lead-magnet__number) {
  max-width: 44ch;
  margin: 17px 0 0;
  font-size: .92rem;
}

.lead-magnet .button {
  align-self: flex-start;
  margin-top: 24px;
}

.journal {
  border-top: 2px solid var(--black);
}

.journal__title {
  padding-block: 0 20px;
  border-bottom: 2px solid var(--black);
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 700;
}

.journal a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 30px;
  gap: 20px;
  align-items: center;
  min-height: 132px;
  padding-block: 22px;
  border-bottom: 2px solid var(--black);
  transition: padding .24s var(--ease-out), background .24s ease;
}

.journal a:hover {
  padding-inline: 16px;
  background: var(--yellow);
}

.journal a > span:first-child {
  font-family: var(--display);
  font-size: .58rem;
  font-weight: 700;
}

.journal small,
.journal b {
  display: block;
}

.journal small {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
}

.journal b {
  max-width: 34ch;
  margin-top: 6px;
  font-size: clamp(1.02rem, 1.5vw, 1.3rem);
  line-height: 1.25;
}

.journal i {
  font-style: normal;
  font-size: 1.2rem;
}

/* FAQ and contact */

.faq {
  color: var(--cream);
  background: var(--black);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, .7fr) minmax(420px, 1.3fr);
  gap: clamp(40px, 10vw, 150px);
  align-items: start;
}

.faq-copy p {
  max-width: 39ch;
  margin: 23px 0 0;
  color: #aaa39a;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  font-size: clamp(1rem, .92rem + .28vw, 1.22rem);
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 0;
  color: var(--coral);
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 64ch;
  margin: 0;
  padding: 0 46px 25px 0;
  color: #aaa39a;
  font-size: .9rem;
}

.final-cta {
  color: var(--black);
  background: var(--coral);
  border-top: 2px solid var(--black);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .6fr);
  gap: clamp(34px, 8vw, 120px);
  align-items: end;
}

.final-cta h2 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 5.4vw, 4.375rem);
}

.final-cta__side p {
  max-width: 39ch;
  margin: 0 0 27px;
}

.final-email {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 3px solid var(--black);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  color: #aaa39a;
  background: var(--black);
  border-top: 1px solid var(--line-light);
}

.footer-inner {
  display: flex;
  min-height: 82px;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
  font-size: .72rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--cream);
}

/* Progressive motion */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .8s var(--ease-out);
}

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

@media (max-width: 1100px) {
  .nav {
    gap: 22px;
  }

  .nav-links {
    gap: 17px;
  }

  .nav-links a {
    font-size: .7rem;
  }

  .hero-reel {
    min-height: 560px;
  }

  .hero-frame {
    box-shadow: 9px 10px 0 var(--black);
  }

  .proof-card--feature {
    min-height: 520px;
  }

  .team-sheet {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .team-card {
    grid-column: span 2;
  }

  .team-card:nth-child(4),
  .team-card:nth-child(5) {
    grid-column: span 3;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .nav {
    min-height: var(--header-height);
    grid-template-columns: 1fr;
    justify-content: space-between;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 18px;
    padding-bottom: 14px;
  }

  .js .nav {
    grid-template-columns: auto auto;
  }

  .js .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 6px;
    padding: 0;
    color: var(--cream);
    background: transparent;
    border: 1px solid var(--line-light);
  }

  .js .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform .2s ease;
  }

  .js .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .js .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .js .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px clamp(20px, 6vw, 50px) 18px;
    color: var(--cream);
    background: var(--black);
    border-bottom: 1px solid var(--line-light);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .js .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .js .nav-links li {
    border-bottom: 1px solid var(--line-light);
  }

  .js .nav-links a {
    display: block;
    padding-block: 14px;
    font-size: .86rem;
  }

  .hero-head,
  .section-head,
  .process-band__inner,
  .factory-layout,
  .resources-grid,
  .faq-layout,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .hero-head,
  .section-head {
    gap: 25px;
  }

  .hero-side,
  .hero-lede {
    max-width: 62ch;
  }

  .hero-reel {
    min-height: 520px;
  }

  .hero-reel__grid {
    grid-template-columns: .8fr 1.1fr .8fr;
    padding-inline: 20px;
  }

  .proof-card--feature {
    grid-column: span 12;
    min-height: 560px;
  }

  .proof-card--metric {
    grid-column: span 6;
  }

  .proof-card--events {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .motion .journey-scene {
    height: auto;
  }

  .motion .journey-stage {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .journey-scene,
  .journey-stage {
    min-height: 0;
  }

  .journey-canvas {
    display: grid;
    height: auto;
    min-height: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    padding-block: 58px 75px;
    overflow: visible;
  }

  .journey-ghost {
    top: 45%;
    font-size: 38vw;
  }

  .journey-frame {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: auto;
    min-width: 0;
    transform: none !important;
    opacity: 1 !important;
  }

  .journey-frame--attention {
    transform: rotate(-2deg) !important;
  }

  .journey-frame--meaning {
    transform: rotate(1deg) !important;
  }

  .journey-frame--action {
    transform: rotate(2deg) !important;
  }

  .journey-result span {
    opacity: 1 !important;
    transform: none !important;
  }

  .capability-row {
    grid-template-columns: 44px minmax(180px, .8fr) minmax(240px, 1.2fr);
    gap: 22px;
  }

  .process-band__inner {
    gap: 42px;
  }

  .factory-sheet {
    min-height: 540px;
  }

  .factory-layout {
    gap: 55px;
  }

  .factory-formats li {
    grid-template-columns: 40px minmax(180px, .8fr) minmax(0, 1.2fr);
  }

  .team-sheet {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-card,
  .team-card:nth-child(4),
  .team-card:nth-child(5) {
    grid-column: span 1;
  }

  .team-card:last-child {
    grid-column: 1 / -1;
  }

  .final-cta__inner {
    gap: 42px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 40px), var(--wrap));
  }

  .page-section {
    padding-block: 72px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 11.5vw, 3.4rem);
    letter-spacing: -.038em;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 2.75rem);
    letter-spacing: -.038em;
  }

  .hero-main {
    padding-block: 58px 38px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-reel {
    min-height: 510px;
  }

  .hero-reel__grid {
    right: -15%;
    left: -15%;
    grid-template-columns: .78fr 1.18fr .78fr;
    gap: 9px;
    padding: 0 4px 52px;
  }

  .hero-frame {
    border-width: 1.5px;
    box-shadow: 5px 6px 0 var(--black);
  }

  .hero-frame--left {
    max-height: 68%;
  }

  .hero-frame--center {
    height: 88%;
  }

  .hero-frame--right {
    max-height: 73%;
  }

  .hero-frame__top {
    padding: 10px;
    border-bottom-width: 1.5px;
  }

  .hero-frame__body {
    height: calc(100% - 38px);
    padding: 12px;
  }

  .hero-frame__list {
    font-size: .54rem;
  }

  .hero-frame__caption {
    padding: 12px;
  }

  .hero-frame__caption b {
    font-size: .84rem;
  }

  .hero-frame__caption span {
    font-size: .55rem;
  }

  .hero-frame__route {
    gap: 5px;
    font-size: .55rem;
  }

  .hero-scroll-note {
    right: 20px;
    font-size: .52rem;
  }

  .service-marquee span {
    min-height: 62px;
  }

  .proof-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .proof-card--feature,
  .proof-card--metric,
  .proof-card--events {
    grid-column: auto;
  }

  .proof-card--feature {
    min-height: 480px;
  }

  .proof-card--events {
    grid-template-columns: 1fr;
  }

  .journey-canvas {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 48px 80px;
  }

  .journey-frame {
    width: min(88%, 330px);
    justify-self: center;
  }

  .journey-frame--attention {
    justify-self: start;
  }

  .journey-frame--action {
    justify-self: end;
  }

  .journey-result {
    gap: 8px;
    font-size: .58rem;
  }

  .journey-result span {
    gap: 8px;
  }

  .capability-row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 16px;
  }

  .capability-row p {
    grid-column: 2;
  }

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

  .process-list li,
  .process-list li:nth-child(odd),
  .process-list li:nth-child(even) {
    padding: 22px 0;
    border-right: 0;
  }

  .factory-sheet {
    min-height: 450px;
  }

  .factory-sheet__paper {
    inset: 2% 3% 6% 2%;
    padding: 24px;
    box-shadow: 9px 10px 0 var(--coral);
  }

  .factory-sheet__title {
    font-size: clamp(3.2rem, 17vw, 5.4rem);
  }

  .factory-day span {
    font-size: .52rem;
  }

  .factory-formats li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 13px;
  }

  .factory-formats p {
    grid-column: 2;
  }

  .team-sheet {
    grid-template-columns: 1fr;
  }

  .team-card,
  .team-card:nth-child(4),
  .team-card:nth-child(5),
  .team-card:last-child {
    min-height: 245px;
    grid-column: auto;
  }

  .resources-grid {
    gap: 48px;
  }

  .lead-magnet {
    min-height: 510px;
    box-shadow: 8px 9px 0 var(--black);
  }

  .journal a {
    grid-template-columns: 35px minmax(0, 1fr) 20px;
    gap: 13px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .final-cta h2 {
    max-width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 22px;
  }
}

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

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

  .service-marquee__track {
    width: 100%;
    flex-wrap: wrap;
    animation: none;
  }

  .service-marquee__group {
    flex-wrap: wrap;
  }

  .service-marquee__group[aria-hidden="true"] {
    display: none;
  }

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