@font-face {
  font-family: "Rocket Wide";
  src: url("assets/fonts/RocketWide.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Rocket Mono";
  src: url("assets/fonts/RocketMono.woff2") format("woff2");
  font-display: swap;
}

:root {
  color-scheme: light dark;
  --page: #efeee8;
  --ink: #171714;
  --muted: #53554e;
  --surface: #d9d8d0;
  --surface-deep: #252521;
  --on-dark: #f0efe9;
  --accent: #c8ed43;
  --accent-text: #526b00;
  --line: color-mix(in srgb, var(--ink) 22%, transparent);
  --header: color-mix(in srgb, var(--page) 78%, transparent);
  --radius: 0;
  --page-pad: clamp(1rem, 3vw, 3rem);
  font-family: "Rocket Wide", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.06;
  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='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid color-mix(in srgb, var(--on-dark) 20%, transparent);
  color: var(--on-dark);
  background: color-mix(in srgb, #171714 38%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wordmark {
  width: max-content;
  font-family: "Rocket Wide", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.wordmark span {
  color: var(--accent);
}

nav {
  display: flex;
  gap: clamp(1.25rem, 4vw, 4.5rem);
  font-family: "Rocket Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

nav a {
  transition: opacity 180ms ease;
}

nav a:hover {
  opacity: 0.58;
}

.hero {
  --far-x: 0px;
  --far-y: 0px;
  --near-x: 0px;
  --near-y: 0px;
  --lift-x: 0px;
  --lift-y: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --copy-tilt-x: 0deg;
  --copy-tilt-y: 0deg;
  position: relative;
  display: grid;
  min-height: 100dvh;
  overflow: hidden;
  background: #171714;
  color: var(--on-dark);
  isolation: isolate;
  perspective: 1200px;
  perspective-origin: center;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-in 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.parallax-ready .hero-media {
  inset: -2%;
  transform: translate3d(var(--far-x), var(--far-y), -30px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
}

.parallax-ready .hero-copy {
  transform: translate3d(var(--near-x), var(--near-y), 26px) rotateX(var(--copy-tilt-x)) rotateY(var(--copy-tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
}

.parallax-ready .hero-stamp {
  transform: translate3d(var(--lift-x), var(--lift-y), 60px) rotate(8deg) rotateX(var(--copy-tilt-x)) rotateY(var(--copy-tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgb(12 12 10 / 0.92) 0%, rgb(12 12 10 / 0.58) 40%, rgb(12 12 10 / 0.04) 75%),
    linear-gradient(0deg, rgb(12 12 10 / 0.56), transparent 35%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(68rem, 78vw);
  padding: 0 var(--page-pad) clamp(3rem, 9vh, 7rem);
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-family: "Rocket Mono", monospace;
  font-size: clamp(0.75rem, 1vw, 0.92rem);
  font-weight: 700;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
  font-family: "Rocket Wide", "Arial Black", sans-serif;
  font-size: clamp(4rem, 11vw, 10.5rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.09em;
}

h1 span {
  display: block;
  transform-origin: left center;
  animation: word-in 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

h1 .outline {
  width: max-content;
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.13vw, 2px) var(--on-dark);
  animation-delay: 120ms;
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: 1.75rem;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.35;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 0 1.5rem;
  color: #171714;
  background: var(--accent);
  font-family: "Rocket Mono", monospace;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), background-color 180ms ease;
}

.primary-action:hover {
  transform: translateY(-3px);
  background: color-mix(in srgb, var(--accent) 78%, var(--on-dark));
}

.primary-action:active {
  transform: translateY(1px) scale(0.98);
}

.primary-action:focus-visible,
nav a:focus-visible,
.wordmark:focus-visible {
  outline: 3px solid #f0efe9;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #171714;
}

.hero-stamp {
  position: absolute;
  right: var(--page-pad);
  bottom: clamp(2rem, 6vh, 5rem);
  z-index: 2;
  display: grid;
  place-content: center;
  width: clamp(7rem, 11vw, 10rem);
  aspect-ratio: 1;
  border-radius: 50%;
  color: #171714;
  background: var(--accent);
  text-align: center;
  transform: rotate(8deg);
}

.hero-stamp span {
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-stamp strong {
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  letter-spacing: -0.09em;
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0 0.82rem;
  background: var(--accent);
  color: #171714;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  font-family: "Rocket Wide", "Arial Black", sans-serif;
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.07em;
  animation: ticker 18s linear infinite;
}

.ticker-track span,
.ticker-track i {
  padding-right: 2.2rem;
}

.ticker-track i {
  font-style: normal;
  font-weight: 400;
}

.section-shell {
  width: min(100%, 1600px);
  margin-inline: auto;
  padding: clamp(5rem, 10vw, 10rem) var(--page-pad);
}

.what {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}

.big-note {
  margin-bottom: 2rem;
  font-family: "Rocket Wide", "Arial Black", sans-serif;
  font-size: clamp(3.5rem, 6.5vw, 7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.big-note em,
.finale h2 em {
  display: inline-block;
  padding-bottom: 0.12em;
  color: var(--accent-text);
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
}

.body-copy {
  max-width: 30rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.4;
}

.object-shot {
  margin: 0;
}

.object-shot img {
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--surface-deep);
}

figcaption {
  padding-top: 0.75rem;
  color: var(--muted);
  font-family: "Rocket Mono", monospace;
  font-size: 0.78rem;
}

.people {
  display: grid;
  grid-template-columns: 0.55fr minmax(24rem, 1fr) 0.55fr;
  grid-template-rows: auto 1fr;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.people-title {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.people-title p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: "Rocket Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
}

.people-title h2 {
  margin: 0;
  font-family: "Rocket Wide", "Arial Black", sans-serif;
  font-size: clamp(6rem, 19vw, 19rem);
  font-weight: 900;
  line-height: 0.64;
  letter-spacing: -0.1em;
}

.night-shot {
  grid-column: 2;
  margin: 0;
  transform: rotate(-2deg);
}

.night-shot img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.people-copy {
  align-self: end;
  padding-bottom: 2rem;
}

.people-copy p {
  max-width: 23rem;
  margin-bottom: 2rem;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  line-height: 1.42;
}

.people-copy span {
  display: inline-block;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.28rem;
  font-family: "Rocket Mono", monospace;
  font-size: 0.84rem;
  font-weight: 800;
}

.finale {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: end;
  min-height: min(780px, 85dvh);
  background: var(--surface);
  color: var(--ink);
}

.finale h2 {
  margin-bottom: 1.5rem;
  font-family: "Rocket Wide", "Arial Black", sans-serif;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.09em;
  white-space: nowrap;
}

.finale-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 3rem;
  min-height: 92px;
  padding: 1rem var(--page-pad);
  color: var(--ink);
  background: var(--surface);
  font-family: "Rocket Mono", monospace;
  font-size: 0.75rem;
}

footer p {
  margin: 0;
}

.reveal {
  opacity: 1;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes hero-in {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes word-in {
  from {
    opacity: 0;
    transform: translateY(0.55em) rotate(2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

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

@media (prefers-color-scheme: dark) {
  :root {
    --page: #141412;
    --ink: #f0efe9;
    --muted: #aaa99f;
    --surface: #252521;
    --accent-text: var(--accent);
    --line: rgb(240 239 233 / 0.2);
    --header: rgb(20 20 18 / 0.74);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .finale {
    grid-template-columns: minmax(0, 1fr);
    align-content: end;
    min-height: 75dvh;
  }

  .finale-copy {
    min-width: 0;
  }
}

@media (min-width: 768px) and (max-height: 520px) {
  .hero-copy {
    width: min(58rem, 84vw);
    padding-bottom: 1rem;
  }

  .eyebrow {
    margin-bottom: 3rem;
  }

  h1 {
    margin-bottom: 0.6rem;
    font-size: clamp(3.25rem, min(9vw, 15vh), 6rem);
  }

  .hero-lead {
    max-width: 38rem;
    margin-bottom: 0.65rem;
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .primary-action {
    min-height: 42px;
    padding-inline: 1.25rem;
  }

  .hero-stamp {
    bottom: 1rem;
    width: 6rem;
  }
}

@media (max-width: 767px) {
  :root {
    --page-pad: 1rem;
  }

  .site-header {
    grid-template-columns: 1fr;
    min-height: 60px;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 100dvh;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgb(12 12 10 / 0.9) 0%, rgb(12 12 10 / 0.34) 70%, rgb(12 12 10 / 0.18));
  }

  .hero-copy {
    width: 100%;
    padding: 0 1.25rem 1.5rem;
  }

  .eyebrow {
    margin-bottom: 3rem;
  }

  h1 {
    margin-bottom: 1.1rem;
    font-size: clamp(3rem, 13.8vw, 3.7rem);
    line-height: 0.86;
  }

  .hero-lead {
    max-width: 18rem;
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
  }

  .hero-stamp {
    top: 39%;
    right: 1rem;
    bottom: auto;
    width: 5.2rem;
  }

  .ticker {
    padding-top: 0.7rem;
  }

  .ticker-track {
    font-size: 2.8rem;
  }

  .section-shell {
    width: 100%;
    padding: 5.5rem 1.25rem;
  }

  .what {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .big-note {
    margin-bottom: 1.5rem;
    font-size: clamp(3rem, 13.8vw, 4.2rem);
    line-height: 1;
  }

  .body-copy {
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .object-shot {
    width: 100%;
    margin-left: 0;
  }

  .people {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 2rem;
  }

  .people-title {
    grid-column: 1;
    display: block;
  }

  .people-title p {
    margin-bottom: 1rem;
  }

  .people-title h2 {
    font-size: 18vw;
    line-height: 0.88;
  }

  .people-title,
  .night-shot,
  .people-copy {
    min-width: 0;
  }

  .night-shot {
    grid-column: 1;
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .people-copy {
    padding: 0;
  }

  .people-copy p {
    font-size: 1.08rem;
    line-height: 1.45;
  }

  .finale {
    grid-template-columns: minmax(0, 1fr);
    align-content: end;
    min-height: 75dvh;
  }

  .finale h2 {
    font-size: clamp(2.1rem, 10.6vw, 3rem);
  }

  .finale-copy {
    min-width: 0;
  }

  footer {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  footer p:first-of-type {
    display: none;
  }
}

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

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .parallax-ready .hero-media,
  .parallax-ready .hero-copy {
    transform: none;
    will-change: auto;
  }

  .parallax-ready .hero-stamp {
    transform: rotate(8deg);
    will-change: auto;
  }
}

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