@font-face {
  font-family: Plex;
  src: url('/assets/plex-regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --canvas: #080808;
  --ink: #f5f5f2;
  --muted: #9a9a96;
  --line: #30302e;
  font-family: Plex, Arial, sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
* { box-sizing: border-box; }
body { margin: 0; }
a { color: inherit; }
::selection { color: var(--canvas); background: var(--ink); }
.page {
  width: min(100%, 1920px);
  min-height: 100svh;
  margin-inline: auto;
  padding: 0 clamp(24px, 4.2vw, 80px);
  display: flex;
  flex-direction: column;
}
.masthead {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 23px;
  letter-spacing: -.055em;
  padding-block: 10px;
}
.brand svg { width: 35px; height: 26px; }
.brand:focus-visible { outline: 2px solid var(--ink); outline-offset: 8px; }
.edition, .eyebrow, footer { font-size: 13px; }
.edition { color: var(--muted); }
main { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: clamp(430px, 44vw, 680px);
}
.hero-copy { position: relative; z-index: 1; padding-block: 64px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 42px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.cross { font-size: 23px; line-height: 1; }
h1 {
  margin: 0 0 26px -0.065em;
  font-size: clamp(76px, 9.65vw, 176px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.075em;
}
.sculpture {
  overflow: clip;
  position: absolute;
  width: min(49vw, 810px);
  right: -3vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
.sculpture img { display: block; width: 100%; height: auto; }
.sculpture-tilt {
  transform: perspective(900px) translate3d(var(--pointer-x, 0px), var(--pointer-y, 0px), 0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 700ms cubic-bezier(.2, .65, .3, 1);
}
.sculpture-float { animation: sphere-float 9s ease-in-out infinite; }
.sculpture img { animation: sphere-turn 48s linear infinite; }
@keyframes sphere-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes sphere-turn { to { transform: rotate(360deg); } }
.motion-still .sculpture-float,
.motion-still .sculpture img { animation-play-state: paused; }
.motion-still .sculpture-tilt { transform: none; transition: none; }
.motion-toggle {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 14px 8px;
  min-height: 44px;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition: color 150ms ease-out, text-decoration-color 150ms ease-out;
}
.motion-toggle[hidden] { display: none; }
.motion-toggle:hover { color: var(--ink); text-decoration-color: currentColor; }
.motion-toggle:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  .sculpture-float, .sculpture img { animation: none; }
  .sculpture-tilt { transform: none; transition: none; }
  .motion-toggle { display: none; }
}
.statement {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-block: 0 64px;
  gap: 32px;
}
.statement p { margin: 0; font-size: clamp(16px, 1.5vw, 23px); line-height: 1.55; letter-spacing: -.02em; }
.forward { font-size: 70px; line-height: 1; font-family: Arial, sans-serif; }
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.index { letter-spacing: .08em; }
.gone main { align-items: start; gap: 24px; padding-block: 64px; }
.gone h1 { font-size: clamp(56px, 9vw, 128px); margin: 0; }
.gone p { color: var(--muted); font-size: 18px; }
.home-link { text-underline-offset: 6px; padding-block: 12px; }
.home-link:focus-visible { outline: 2px solid var(--ink); outline-offset: 8px; }
@media (max-width: 1000px) {
  .hero { min-height: 540px; }
  h1 { font-size: clamp(76px, 10vw, 100px); }
  .sculpture { width: 49vw; right: -3vw; }
  .statement { padding-bottom: 48px; }
}
@media (max-width: 700px) {
  .masthead { min-height: 90px; }
  .brand { font-size: 21px; }
  .brand svg { width: 30px; }
  .edition { font-size: 11px; max-width: 80px; text-align: right; line-height: 1.5; }
  .hero { display: flex; flex-direction: column; align-items: stretch; min-height: auto; }
  .hero-copy { padding: 48px 0 0; }
  .eyebrow { margin-bottom: 28px; font-size: 11px; }
  h1 { font-size: clamp(53px, 12.35vw, 86px); margin-bottom: 0; }
  .sculpture { position: relative; width: min(100%, 400px); align-self: center; right: auto; top: auto; transform: none; margin: -6px 0 8px; }
  .statement { padding-block: 0 40px; gap: 14px; }
  .statement p { font-size: 15px; }
  .forward { font-size: 40px; }
  footer { min-height: 76px; gap: 12px; font-size: 11px; }
}
@media (max-width: 360px) {
  .page { padding-inline: 20px; }
  h1 { font-size: 12.2vw; }
  .statement p { font-size: 13px; }
}
