@font-face {
  font-family: "Source Serif 4";
  src: url("assets/fonts/SourceSerif4-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("assets/fonts/SourceSerif4-Italic-Variable.woff2") format("woff2");
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}

:root {
  --black: #080807;
  --black-soft: #10100f;
  --black-raised: #161512;
  --paper: #eee5d7;
  --paper-dim: #b9afa0;
  --amber: #d69a54;
  --amber-bright: #f0ad61;
  --line: rgba(238, 229, 215, .14);
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --gutter: clamp(22px, 4vw, 68px);
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 84% 12%, rgba(139, 81, 33, .18), transparent 31rem),
    var(--black);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .035;
  background:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(255,255,255,.15) 3px),
    repeating-linear-gradient(91deg, transparent 0 11px, rgba(255,255,255,.08) 12px);
  mix-blend-mode: soft-light;
}

img, video { display: block; max-width: 100%; }
button, input { font: inherit; }
a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: calc(10px + env(safe-area-inset-top));
  left: 10px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--black);
}
.skip-link:not(:focus) { width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

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

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  min-height: calc(84px + env(safe-area-inset-top));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: calc(16px + env(safe-area-inset-top)) var(--gutter) 16px;
}
.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -100px;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  pointer-events: none;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled::before {
  background: rgba(8, 8, 7, .86);
  border-color: var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.wordmark { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1; }
.wordmark__main { font: 700 13px/1 var(--sans); letter-spacing: .2em; }
.wordmark__sub { margin-top: 7px; color: var(--paper-dim); font: 450 9px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 42px); font: 500 12px/1 var(--sans); letter-spacing: .09em; }
.site-nav a { text-decoration: none; color: var(--paper-dim); transition: color .2s ease; }
.site-nav a:hover { color: var(--paper); }
.site-nav .nav-cta { color: var(--paper); padding-bottom: 6px; border-bottom: 1px solid var(--amber); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  max-width: var(--max);
  margin: 0 auto;
  padding: max(118px, 14vh) var(--gutter) 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, .72fr);
  align-items: center;
  gap: clamp(36px, 6vw, 100px);
}
.hero__wash { position: absolute; width: 46vw; height: 46vw; max-width: 720px; max-height: 720px; right: -10%; top: 5%; border-radius: 50%; background: rgba(193, 115, 53, .08); filter: blur(70px); }
.hero__copy { position: relative; z-index: 2; }
.eyebrow { margin: 0; color: var(--amber); font: 600 10px/1.2 var(--sans); letter-spacing: .26em; text-transform: uppercase; }
.hero h1 {
  max-width: 9ch;
  margin: 26px 0 34px;
  font-size: clamp(66px, 8vw, 126px);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.065em;
}
.hero h1 em { color: var(--amber); font-weight: 390; }
.hero__lede { max-width: 570px; margin: 0; color: var(--paper-dim); font-size: clamp(19px, 1.7vw, 25px); line-height: 1.48; }
.hero__actions { display: flex; align-items: center; gap: 28px; margin-top: 42px; }
.button { appearance: none; border: 0; display: inline-flex; align-items: center; justify-content: center; gap: 28px; min-height: 52px; padding: 0 22px; text-decoration: none; font: 650 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.button--primary { color: #160f08; background: var(--amber-bright); transition: transform .2s ease, background .2s ease; }
.button--primary:hover { background: var(--paper); transform: translateY(-2px); }
.text-link { font: 550 11px/1.2 var(--sans); letter-spacing: .08em; text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 7px; }
.text-link span { color: var(--amber); margin-left: 6px; }
.hero__facts { display: flex; gap: clamp(18px, 3vw, 46px); margin-top: 60px; color: var(--paper-dim); font: 500 10px/1.3 var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.hero__facts b { display: block; margin-bottom: 8px; color: var(--paper); font-size: 18px; font-weight: 450; }

.hero-art { position: relative; z-index: 2; width: min(100%, 390px); margin: 0 auto; }
.hero-art__frame { position: relative; aspect-ratio: .64; overflow: hidden; background: #000; box-shadow: 0 60px 110px rgba(0,0,0,.55); }
.hero-art__frame::before { content: ""; position: absolute; inset: 12px; z-index: 2; border: 1px solid rgba(238,229,215,.18); pointer-events: none; }
.hero-art__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.015); }
.hero-art__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 35%, rgba(0,0,0,.92)); }
.hero-art figcaption { position: absolute; z-index: 3; bottom: 32px; left: 34px; right: 34px; font-size: 25px; font-style: italic; }
.hero-art figcaption span { display: block; margin-bottom: 5px; color: var(--amber); font: 600 9px/1 var(--sans); letter-spacing: .25em; text-transform: uppercase; }
.hero-art__note { position: absolute; top: 48%; right: -82px; margin: 0; color: var(--paper-dim); font: 550 9px/1 var(--sans); letter-spacing: .28em; text-transform: uppercase; transform: rotate(90deg); }
.scroll-note { position: absolute; left: var(--gutter); bottom: 28px; color: var(--paper-dim); font: 500 9px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; text-decoration: none; }
.scroll-note span { margin-left: 12px; color: var(--amber); }

.manifesto { max-width: var(--max); margin: 0 auto; padding: clamp(100px, 14vw, 210px) var(--gutter); display: grid; grid-template-columns: 1fr 3fr; border-top: 1px solid var(--line); }
.manifesto__number { color: rgba(238,229,215,.08); font: 500 clamp(110px, 18vw, 250px)/.7 var(--serif); letter-spacing: -.08em; }
.manifesto__body { max-width: 880px; }
.manifesto__statement { margin: 22px 0 32px; font-size: clamp(42px, 6vw, 86px); line-height: .98; letter-spacing: -.045em; }
.manifesto__copy { max-width: 720px; margin: 0; color: var(--paper-dim); font-size: clamp(19px, 1.8vw, 26px); }

.story-panel { display: grid; grid-template-columns: minmax(0, min(50vw, 760px)) minmax(0, 1fr); align-items: center; background: #11110f; }
.story-panel__image { position: relative; width: 100%; aspect-ratio: 1; margin: 0; overflow: hidden; }
.story-panel__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; }
.story-panel__image::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 160px rgba(0,0,0,.55); }
.story-panel__image figcaption { position: absolute; z-index: 2; bottom: 28px; left: var(--gutter); color: var(--paper-dim); font: 500 9px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; }
.story-panel__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 8vw, 130px); }
.story-panel blockquote { margin: 34px 0; font-size: clamp(35px, 4.2vw, 64px); line-height: 1.02; font-style: italic; letter-spacing: -.035em; }
.story-panel__copy > p:last-child { max-width: 460px; color: var(--paper-dim); }

.experience { max-width: var(--max); margin: 0 auto; padding: clamp(110px, 14vw, 200px) var(--gutter); }
.section-heading { display: grid; grid-template-columns: 1fr 2.3fr 1fr; gap: 40px; align-items: end; }
.section-heading h2, .world__heading h2 { margin: 0; font-size: clamp(48px, 6.8vw, 94px); line-height: .93; letter-spacing: -.05em; font-weight: 450; }
.section-heading h2 em, .playtest h2 em { color: var(--amber); }
.section-heading > p:last-child { color: var(--paper-dim); font-size: 17px; }
.demo-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 160px); align-items: center; margin-top: clamp(90px, 12vw, 170px); }
.demo-copy article { padding: 28px 0 30px 58px; position: relative; border-top: 1px solid var(--line); }
.demo-copy article:last-child { border-bottom: 1px solid var(--line); }
.demo-copy article > span { position: absolute; left: 0; top: 34px; color: var(--amber); font: 600 9px/1 var(--sans); letter-spacing: .16em; }
.demo-copy h3 { margin: 0 0 9px; font-size: 27px; font-weight: 500; font-style: italic; }
.demo-copy p { margin: 0; color: var(--paper-dim); font-size: 16px; }

.phone-stage { position: relative; display: flex; flex-direction: column; align-items: center; min-width: 0; }
.phone-glow { position: absolute; width: min(100%, 650px); aspect-ratio: 1; top: 12%; border-radius: 50%; background: rgba(214,154,84,.11); filter: blur(60px); }
.phone { position: relative; width: min(360px, 78vw); aspect-ratio: 390/844; padding: 8px; border: 1px solid #403d38; border-radius: 49px; background: linear-gradient(145deg, #2b2b29, #090909 42%); box-shadow: 0 45px 90px rgba(0,0,0,.6), inset 0 0 0 2px #080808; }
.phone__screen { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 41px; background: #000; }
.phone__screen > img { width: 100%; height: 100%; object-fit: cover; }
.phone__island { position: absolute; z-index: 8; top: 17px; left: 50%; width: 105px; height: 29px; border-radius: 18px; background: #000; transform: translateX(-50%); }
.phone__home { position: absolute; z-index: 8; bottom: 14px; left: 50%; width: 118px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.8); transform: translateX(-50%); }
.phone__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.12) 20%, rgba(0,0,0,.08) 40%, rgba(0,0,0,.97) 82%); }
.phone__topline { position: absolute; z-index: 3; top: 55px; left: 24px; right: 24px; display: flex; justify-content: space-between; align-items: center; color: var(--paper-dim); font: 600 8px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; }
.sound-toggle { color: var(--paper-dim); background: none; border: 0; padding: 9px 0; font: inherit; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.sound-toggle.is-playing { color: var(--amber-bright); }
.phone__narrative { position: absolute; z-index: 3; left: 25px; right: 25px; bottom: 54px; }
.phone__narrative > p { margin: 0 0 19px; color: var(--paper); font-size: clamp(19px, 4.8vw, 22px); line-height: 1.35; text-shadow: 0 2px 18px #000; }
.phone__narrative > p em { color: var(--amber-bright); }
.phone-stage__hint { position: relative; margin: 24px 0 0; color: var(--paper-dim); font: 500 9px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; }

.trailer { max-width: var(--max); margin: 0 auto; min-height: 780px; padding: 0 var(--gutter) clamp(100px, 13vw, 190px); display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(50px, 10vw, 160px); }
.trailer__copy { position: sticky; top: 150px; align-self: start; margin-top: 160px; }
.trailer__copy h2 { margin: 23px 0 28px; font-size: clamp(44px, 5vw, 74px); line-height: .95; letter-spacing: -.045em; font-weight: 450; }
.trailer__copy > p:last-child { max-width: 410px; color: var(--paper-dim); }
.trailer__media { position: relative; justify-self: center; width: min(100%, 410px); }
.trailer video { width: 100%; aspect-ratio: 9/16; object-fit: cover; background: #000; box-shadow: 0 50px 120px rgba(0,0,0,.55); }
.trailer__label { position: absolute; right: -55px; top: 50%; color: var(--paper-dim); font: 600 9px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; transform: rotate(90deg) translateX(50%); transform-origin: right center; }

.world { max-width: var(--max); margin: 0 auto; padding: clamp(100px, 13vw, 190px) var(--gutter); border-top: 1px solid var(--line); }
.world__heading { display: grid; grid-template-columns: 1fr 2fr; align-items: end; gap: 50px; }
.world__grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, clamp(280px, 24vw, 360px)); gap: 16px; margin-top: 80px; }
.world-card { position: relative; min-height: 0; margin: 0; overflow: hidden; background: #131210; }
.world-card--tall { grid-row: 1 / span 2; }
.world-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.83) contrast(1.05); transition: transform .7s ease, filter .5s ease; }
.world-card--orbit img { object-position: 50% 56%; }
.world-card:hover img { transform: scale(1.025); filter: saturate(1) contrast(1.05); }
.world-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.9)); }
.world-card figcaption { position: absolute; z-index: 2; left: 26px; bottom: 24px; font-size: 22px; font-style: italic; }
.world-card figcaption span { display: block; margin-bottom: 6px; color: var(--amber); font: 600 9px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; }

.trust-band { padding: clamp(90px, 10vw, 140px) var(--gutter); background: var(--paper); color: var(--black); }
.trust-band > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.trust-band .eyebrow { color: #915c2d; }
.trust-band__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(30px, 6vw, 90px); margin-top: 40px; }
.trust-band__grid p { margin: 0; color: #4d473f; font-size: 16px; }
.trust-band__grid b { display: inline-block; margin-bottom: 9px; color: var(--black); font: 650 13px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; }

.playtest { position: relative; min-height: 760px; display: grid; place-items: center; overflow: hidden; }
.playtest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,7,.97) 10%, rgba(8,8,7,.86) 55%, rgba(8,8,7,.55)); }
.playtest__art { position: absolute; inset: 0 0 0 45%; }
.playtest__art img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; filter: saturate(.85); }
.playtest__copy { position: relative; z-index: 2; width: min(100%, var(--max)); padding: 120px var(--gutter); }
.playtest h2 { max-width: 820px; margin: 24px 0 30px; font-size: clamp(55px, 7.5vw, 108px); font-weight: 450; line-height: .88; letter-spacing: -.055em; }
.playtest__copy > p { max-width: 570px; color: var(--paper-dim); font-size: 20px; }
.signup { max-width: 700px; margin-top: 42px; }
.signup label { display: block; margin-bottom: 9px; color: var(--paper-dim); font: 600 9px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; }
.signup__row { display: flex; }
.signup input { min-width: 0; flex: 1; height: 58px; padding: 0 18px; color: var(--paper); background: rgba(8,8,7,.72); border: 1px solid rgba(238,229,215,.3); border-right: 0; border-radius: 0; font: 400 15px/1 var(--sans); }
.signup input::placeholder { color: #777067; }
.signup .button { min-height: 58px; }
.signup__note { margin: 13px 0 0; color: var(--paper-dim); font: 500 10px/1.4 var(--sans); letter-spacing: .08em; }
.signup__note.is-success { color: var(--amber-bright); }

.site-footer { max-width: var(--max); margin: 0 auto; min-height: 180px; padding: 48px var(--gutter); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; color: var(--paper-dim); border-top: 1px solid var(--line); font: 500 10px/1 var(--sans); letter-spacing: .1em; }
.site-footer p { margin: 0; }
.site-footer nav { display: flex; justify-content: flex-end; gap: 25px; }
.site-footer nav a { text-decoration: none; }

.legal-page { min-height: 100vh; display: grid; grid-template-rows: auto 1fr auto; }
.legal-header, .legal-footer { width: min(100%, var(--max)); margin: 0 auto; padding: 38px var(--gutter); display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.legal-header { border-bottom: 1px solid var(--line); }
.legal-header a, .legal-footer a { text-decoration: none; }
.legal-content { width: min(100%, 900px); margin: 0 auto; padding: clamp(100px, 15vw, 190px) var(--gutter); }
.legal-content h1 { max-width: 10ch; margin: 22px 0 38px; font-size: clamp(58px, 8vw, 108px); font-weight: 450; line-height: .9; letter-spacing: -.05em; }
.legal-content > p:not(.eyebrow) { max-width: 690px; color: var(--paper-dim); font-size: clamp(18px, 2vw, 22px); }
.legal-content .legal-updated { margin: -18px 0 42px; color: var(--amber); font: 600 10px/1.4 var(--sans); letter-spacing: .16em; text-transform: uppercase; }
.legal-content section { max-width: 690px; margin-top: 62px; padding-top: 34px; border-top: 1px solid var(--line); }
.legal-content section h2 { margin: 0 0 20px; color: var(--paper); font-size: clamp(28px, 4vw, 42px); font-weight: 450; line-height: 1.05; letter-spacing: -.025em; }
.legal-content section p { color: var(--paper-dim); font-size: 18px; }
.legal-content section a { color: var(--paper); text-decoration-color: var(--amber); text-underline-offset: 4px; }
.legal-footer { color: var(--paper-dim); border-top: 1px solid var(--line); font: 500 10px/1.4 var(--sans); letter-spacing: .1em; }
.legal-footer p { margin: 0; }
.legal-footer nav { display: flex; gap: 25px; }
.contact-page .legal-content h1 { max-width: 12ch; }
.contact-card { position: relative; padding-bottom: 36px; }
.contact-card::after { content: ""; position: absolute; right: 0; bottom: 0; width: 88px; height: 1px; background: var(--amber); }
.legal-content .contact-card .eyebrow { margin-bottom: 18px; color: var(--amber); font-size: 10px; }
.contact-email { display: inline-block; margin: 4px 0 12px; color: var(--amber-bright) !important; font: 500 clamp(21px, 4vw, 38px)/1.2 var(--serif); letter-spacing: -.02em; overflow-wrap: anywhere; text-decoration-thickness: 1px; }

.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr .75fr; gap: 35px; }
  .hero h1 { font-size: clamp(60px, 8.8vw, 90px); }
  .hero-art__note { display: none; }
  .section-heading { grid-template-columns: 1fr 2.2fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .story-panel__copy { padding: 60px; }
  .demo-grid { gap: 70px; }
}

@media (max-width: 780px) {
  .site-header { min-height: calc(72px + env(safe-area-inset-top)); }
  .menu-toggle { display: inline-flex; align-items: center; gap: 10px; color: var(--paper); background: none; border: 0; font: 600 10px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; }
  .menu-toggle i { position: relative; display: block; width: 20px; height: 7px; }
  .menu-toggle i::before, .menu-toggle i::after { position: absolute; left: 0; width: 20px; height: 1px; background: currentColor; content: ""; transition: top .25s ease, bottom .25s ease, transform .25s ease; }
  .menu-toggle i::before { top: 0; }
  .menu-toggle i::after { bottom: 0; }
  .menu-toggle[aria-expanded="true"] i::before { top: 3px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::after { bottom: 3px; transform: rotate(-45deg); }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; padding: 20px var(--gutter) 28px; background: rgba(8,8,7,.97); border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; gap: 23px; }
  .site-nav.is-open { display: flex; }
  .hero { min-height: auto; padding-top: calc(125px + env(safe-area-inset-top)); grid-template-columns: 1fr; }
  .hero h1 { max-width: 8ch; font-size: clamp(62px, 20vw, 100px); }
  .hero__actions { align-items: flex-start; flex-direction: column; }
  .hero__facts { margin-top: 45px; }
  .hero-art { width: 88%; margin-top: 24px; }
  .scroll-note { display: none; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto__number { margin-bottom: 60px; }
  .story-panel { grid-template-columns: 1fr; }
  .story-panel__image { min-height: 630px; aspect-ratio: auto; }
  .story-panel__copy { padding: 70px var(--gutter) 90px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { grid-column: auto; max-width: 350px; }
  .section-heading h2 { margin-top: 20px; }
  .demo-grid { grid-template-columns: 1fr; }
  .phone-stage { grid-row: 1; }
  .trailer { grid-template-columns: 1fr; }
  .trailer__copy { position: static; margin-top: 0; }
  .trailer__media { width: min(90%, 430px); }
  .world__heading { grid-template-columns: 1fr; }
  .world__heading h2 { margin-top: 22px; }
  .world__grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 125vw); }
  .world-card--tall { grid-row: auto; }
  .trust-band__grid { grid-template-columns: 1fr; }
  .playtest { min-height: 820px; }
  .playtest__art { inset: 0; opacity: .55; }
  .playtest::after { background: rgba(8,8,7,.8); }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .site-footer nav { justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .wordmark__main { font-size: 11px; }
  .wordmark__sub { display: none; }
  .hero { min-height: 100svh; padding: calc(112px + env(safe-area-inset-top)) var(--gutter) 30px; display: flex; align-items: flex-end; overflow: hidden; }
  .hero__copy { width: 100%; text-shadow: 0 2px 3px rgba(0,0,0,.98), 0 7px 24px rgba(0,0,0,.92); }
  .hero__copy .eyebrow { color: #f0ad61; text-shadow: 0 1px 2px #000, 0 4px 14px #000; }
  .hero h1 { max-width: none; margin: 16px 0 18px; font-size: clamp(54px, 15vw, 68px); line-height: .86; letter-spacing: -.055em; }
  .hero__lede { max-width: 340px; color: #ddd4c6; font-size: 17px; line-height: 1.38; }
  .hero__actions { gap: 15px; margin-top: 23px; }
  .hero__actions .button { text-shadow: none; }
  .hero__actions .text-link { width: fit-content; text-shadow: 0 2px 16px #000; }
  .hero__facts { display: none; }
  .hero-art { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; margin: 0; }
  .hero-art__frame { width: 100%; height: 100%; aspect-ratio: auto; box-shadow: none; }
  .hero-art__frame::before { display: none; }
  .hero-art__frame img { object-position: center top; transform: none; }
  .hero-art__shade { background: linear-gradient(180deg, rgba(8,8,7,.06) 15%, rgba(8,8,7,.12) 40%, rgba(8,8,7,.68) 67%, #080807 100%); }
  .hero-art figcaption { display: none; }
  .manifesto__number { font-size: 120px; }
  .manifesto__statement { font-size: 45px; }
  .story-panel__image { min-height: 520px; }
  .phone { width: 92vw; max-width: 340px; }
  .trailer__label { display: none; }
  .signup__row { flex-direction: column; gap: 10px; }
  .signup input { border-right: 1px solid rgba(238,229,215,.3); }
  .signup .button { width: 100%; }
  .legal-header, .legal-footer { align-items: flex-start; flex-direction: column; }
  .legal-footer nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
