:root {
  --ink: #070907;
  --ink-soft: #0d110d;
  --paper: #ebe7dc;
  --paper-dim: rgba(235, 231, 220, 0.7);
  --line: rgba(200, 255, 116, 0.17);
  --paint-bright: #c8ff74;
  --signal: #c8ff74;
  --discord: #5865f2;
  --display: "Arial Narrow", "Aptos Narrow", Impact, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: min(1180px, calc(100vw - 48px));
  --header-height: 92px;
  color-scheme: dark;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: none !important;
}

.section-shell {
  width: var(--page);
  margin-inline: auto;
}

.eyebrow {
  margin: 0;
  color: var(--paint-bright);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: var(--page);
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(200, 255, 116, 0.18);
}

.site-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: var(--display);
  font-size: 1.08rem;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.site-mark__origin {
  font-size: 0.72em;
  font-style: italic;
  font-weight: 700;
  opacity: 0.72;
}

.site-mark__slash {
  color: var(--signal);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a::after {
  display: block;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__signal {
  color: var(--discord);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  align-items: end;
}

.hero__media,
.hero__veil,
.hero__grain {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.hero__media {
  overflow: hidden;
  background: var(--ink-soft);
}

.hero__media img {
  width: 100%;
  height: calc(100% + 50px);
  transform: translate3d(0, calc(var(--hero-shift, 0) * 1px), 0) scale(1.035);
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.82) contrast(1.08) brightness(0.68);
  transition: transform 120ms linear;
}

.hero__veil {
  z-index: -2;
  background:
    radial-gradient(circle at 55% 58%, rgba(200, 255, 116, 0.08), transparent 24%),
    linear-gradient(90deg, rgba(7, 9, 7, 0.97) 0%, rgba(7, 9, 7, 0.82) 31%, rgba(7, 9, 7, 0.28) 62%, rgba(7, 9, 7, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 9, 7, 0.84) 0%, transparent 42%, rgba(7, 9, 7, 0.42) 100%);
}

.hero__grain {
  z-index: -1;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.23'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero__signal-line {
  position: absolute;
  z-index: -1;
  top: calc(var(--header-height) + 42px);
  bottom: 48px;
  left: 52%;
  width: 1px;
  background: linear-gradient(transparent, rgba(200, 255, 116, 0.72) 28%, rgba(200, 255, 116, 0.22) 72%, transparent);
  box-shadow: 0 0 22px rgba(200, 255, 116, 0.14);
  opacity: 0.7;
  animation: signal-breathe 4.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes signal-breathe {
  0%,
  100% { opacity: 0.34; }
  48% { opacity: 0.82; }
}

.hero__content {
  width: var(--page);
  margin: var(--header-height) auto 0;
  padding: clamp(88px, 12vh, 138px) 0 clamp(56px, 8vh, 84px);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__eyebrow::after {
  width: 52px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero__eyebrow span {
  color: rgba(255, 255, 255, 0.62);
}

.hero__title {
  display: flex;
  max-width: 650px;
  margin: 12px 0 0 -0.04em;
  font-family: var(--display);
  font-size: clamp(8rem, 18vw, 15rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.095em;
  line-height: 0.66;
  text-transform: uppercase;
}

.hero__title span {
  display: inline-block;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.36);
}

.hero__title span:last-child {
  color: var(--signal);
  text-shadow: 0 0 32px rgba(200, 255, 116, 0.12);
}

.hero__edition {
  margin: 26px 0 0 0.08em;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.6vw, 2.35rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.26em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__headline {
  margin: clamp(28px, 4vh, 46px) 0 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.3vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero__body {
  max-width: 550px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.hero__body em {
  color: var(--paper);
  font-style: normal;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  border: 0;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.button--primary {
  min-width: 302px;
  padding: 0 24px;
  background: var(--discord);
  color: #fff;
  box-shadow: 0 0 24px rgba(88, 101, 242, 0.2);
  transition: box-shadow 160ms ease, filter 160ms ease, transform 160ms ease;
}

.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(88, 101, 242, 0.3);
  filter: brightness(1.08);
}

.button--text {
  min-height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  transition: border-color 160ms ease, color 160ms ease;
}

.button--text:hover {
  border-color: var(--signal);
  color: var(--signal);
}

.button--signal {
  flex: 0 0 auto;
  min-width: 218px;
  padding-inline: 20px;
  background: var(--discord);
  color: #fff;
  cursor: pointer;
  transition: filter 160ms ease, transform 160ms ease;
}

.button--signal:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.button--signal:disabled {
  background: rgba(235, 231, 220, 0.12);
  color: rgba(235, 231, 220, 0.5);
  cursor: not-allowed;
  filter: none;
}

.hero__status {
  display: flex;
  margin: 22px 0 0;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero__status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 16px rgba(200, 255, 116, 0.45);
}

.hero__telemetry {
  position: absolute;
  right: max(78px, calc((100vw - 1180px) / 2));
  bottom: 128px;
  width: min(330px, 27vw);
  padding: 18px 0 0 20px;
  border-left: 1px solid rgba(200, 255, 116, 0.62);
  background: linear-gradient(90deg, rgba(7, 9, 7, 0.72), transparent);
  font-family: var(--display);
  text-transform: uppercase;
}

.hero__telemetry > p {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.hero__telemetry dl {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero__telemetry dl div {
  padding-top: 10px;
  border-top: 1px solid rgba(235, 231, 220, 0.2);
}

.hero__telemetry dt,
.hero__telemetry dd {
  margin: 0;
}

.hero__telemetry dt {
  color: rgba(235, 231, 220, 0.46);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.hero__telemetry dd {
  margin-top: 4px;
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero__scroll {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.hero__scroll-line::after {
  display: block;
  width: 1px;
  height: 26px;
  transform: translateY(-100%);
  animation: scroll-line 1.9s ease-in-out infinite;
  background: var(--paper);
  content: "";
}

@keyframes scroll-line {
  0% { transform: translateY(-100%); }
  55%, 100% { transform: translateY(210%); }
}

.statement {
  display: grid;
  padding-block: clamp(120px, 17vw, 230px);
  grid-template-columns: 0.45fr 1.55fr;
  gap: 32px;
}

.statement h2,
.arena-feature h2,
.principles h2,
.golden-build h2,
.release h2,
.waitlist h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}

.statement h2 {
  grid-column: 2;
  max-width: 880px;
  font-size: clamp(4rem, 9.6vw, 8.8rem);
}

.statement h2 em {
  color: var(--signal);
  font-style: italic;
}

.statement__copy {
  display: grid;
  grid-column: 2;
  max-width: 840px;
  margin-top: 36px;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 5vw, 70px);
  color: var(--paper-dim);
}

.statement__copy p {
  margin: 0;
}

.arena-feature {
  position: relative;
  padding-bottom: clamp(120px, 17vw, 220px);
}

.arena-feature__frame {
  position: relative;
  width: min(1560px, calc(100vw - 48px));
  height: min(72vw, 860px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--ink-soft);
}

.arena-feature__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arena-feature__frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 42%, rgba(7, 9, 7, 0.68) 100%),
    linear-gradient(0deg, rgba(7, 9, 7, 0.36), transparent 42%);
  content: "";
  pointer-events: none;
}

.arena-feature__frame figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 18px;
  padding: 5px 8px;
  background: rgba(7, 9, 7, 0.72);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.arena-feature__copy {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: clamp(-170px, -13vw, -100px);
  justify-items: end;
  text-align: right;
}

.arena-feature__copy h2 {
  max-width: 680px;
  margin-top: 18px;
  font-size: clamp(3.7rem, 7vw, 7.4rem);
}

.arena-feature__copy > p:last-child {
  max-width: 490px;
  margin: 26px 0 0;
  color: var(--paper-dim);
}

.principles {
  padding-bottom: clamp(120px, 16vw, 220px);
}

.principles__heading {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 30px;
}

.principles h2 {
  font-size: clamp(3.2rem, 6.4vw, 6.6rem);
}

.principle-list,
.target-list {
  margin: clamp(66px, 9vw, 110px) 0 0;
  padding: 0;
  list-style: none;
}

.principle-list li {
  display: grid;
  min-height: 152px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  grid-template-columns: 0.34fr 0.66fr 1fr;
  gap: 26px;
}

.principle-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.principle-list__number {
  color: var(--signal);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.principle-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.principle-list p {
  max-width: 490px;
  margin: 0;
  color: var(--paper-dim);
}

.golden-build {
  position: relative;
  overflow: hidden;
  padding-block: clamp(120px, 15vw, 210px);
  background: var(--paper);
  color: var(--ink);
}

.golden-build__backdrop {
  position: absolute;
  top: -0.22em;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(49, 84, 22, 0.07);
  font-family: var(--display);
  font-size: clamp(12rem, 35vw, 36rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.7;
  pointer-events: none;
}

.golden-build__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(50px, 10vw, 140px);
}

.golden-build .eyebrow {
  color: #315416;
}

.golden-build h2 {
  margin-top: 22px;
  font-size: clamp(4rem, 7vw, 7.3rem);
}

.golden-build__intro > p:last-child {
  max-width: 500px;
  margin: 30px 0 0;
  color: rgba(7, 9, 7, 0.69);
  font-size: 1.02rem;
}

.target-list {
  margin-top: 58px;
  border-top: 1px solid rgba(7, 9, 7, 0.22);
}

.target-list li {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid rgba(7, 9, 7, 0.22);
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.target-list span {
  color: #315416;
  font-family: var(--display);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.target-list strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-transform: uppercase;
}

.release {
  padding-block: clamp(130px, 17vw, 230px);
}

.release__promise {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  column-gap: clamp(32px, 8vw, 120px);
}

.release h2 {
  grid-column: 2;
  margin-top: 18px;
  color: var(--paper);
  font-size: clamp(4.6rem, 9vw, 8.8rem);
}

.release h2 em {
  color: var(--signal);
  font-style: normal;
}

.release__promise > p:last-child {
  grid-column: 2;
  max-width: 690px;
  margin: 34px 0 0;
  color: var(--paper-dim);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.waitlist {
  display: grid;
  margin-top: clamp(100px, 13vw, 170px);
  padding-block: clamp(54px, 7vw, 88px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(48px, 9vw, 140px);
}

.waitlist__intro h3 {
  max-width: 460px;
  margin-top: 18px;
  font-size: clamp(3.3rem, 6vw, 6rem);
}

.waitlist__intro > p:last-child {
  max-width: 460px;
  margin: 28px 0 0;
  color: var(--paper-dim);
}

.waitlist-form {
  position: relative;
  align-self: center;
}

.form-field > label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field__line {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  align-items: stretch;
}

.form-field__line:focus-within {
  border-color: var(--signal);
  box-shadow: 0 1px 0 var(--signal);
}

.form-field input[type="email"] {
  min-width: 0;
  flex: 1 1 auto;
  padding: 14px 18px 14px 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font: inherit;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.form-field input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.form-hint,
.form-status,
.no-js-note {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.79rem;
}

.form-consent {
  display: grid;
  margin-top: 28px;
  align-items: start;
  grid-template-columns: 20px 1fr;
  gap: 12px;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--signal);
}

.form-consent label {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
  line-height: 1.55;
}

.form-consent a {
  color: var(--paper);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.4em;
  padding-left: 18px;
  border-left: 2px solid rgba(255, 255, 255, 0.22);
}

.form-status[data-state="submitting"] {
  border-color: var(--signal);
  color: var(--paper-dim);
}

.form-status[data-state="accepted"],
.form-status[data-state="confirmed"],
.form-status[data-state="unsubscribed"] {
  border-color: var(--signal);
  color: var(--signal);
}

.form-status[data-state="error"] {
  border-color: var(--paper);
  color: var(--paper);
}

.form-status[data-state="confirmation-invalid"],
.form-status[data-state="invalid"] {
  border-color: var(--paper);
  color: var(--paper);
}

.form-status[data-state="ready"],
.form-status[data-state="success"] {
  border-color: var(--signal);
  color: var(--signal);
}

.preference-page {
  min-height: 100svh;
}

.preference-main {
  position: relative;
  display: grid;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  align-items: center;
}

.preference-main__media,
.preference-main__veil,
.preference-main__grain {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.preference-main__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(0.72) contrast(1.08) brightness(0.58);
}

.preference-main__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 9, 7, 0.98) 0%, rgba(7, 9, 7, 0.88) 42%, rgba(7, 9, 7, 0.3) 78%, rgba(7, 9, 7, 0.52) 100%),
    linear-gradient(0deg, rgba(7, 9, 7, 0.8), transparent 52%, rgba(7, 9, 7, 0.35));
}

.preference-main__grain {
  z-index: -1;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.23'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.preference-content {
  width: var(--page);
  max-width: 760px;
  margin: 0 auto;
  padding-block: calc(var(--header-height) + clamp(48px, 8vh, 84px)) clamp(48px, 7vh, 76px);
}

.preference-content h1 {
  max-width: 700px;
  margin: 20px 0 0;
  font-family: var(--display);
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.82;
  text-transform: uppercase;
}

.preference-content__lede {
  max-width: 610px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.65vw, 1.24rem);
}

.preference-form {
  display: grid;
  max-width: 610px;
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  justify-items: start;
  gap: 8px;
}

.preference-form .button--signal {
  min-width: 210px;
}

.preference-form .button--signal:disabled {
  cursor: not-allowed;
}

.preference-form .form-status {
  width: 100%;
  margin-top: 16px;
}

.preference-content__note {
  max-width: 600px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

.preference-content__note a {
  color: rgba(255, 255, 255, 0.86);
}

.js .preference-content {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-copy-in 640ms cubic-bezier(0.2, 0.75, 0.25, 1) 80ms forwards;
}

.site-footer {
  display: grid;
  padding-block: 42px 56px;
  border-top: 1px solid var(--line);
  align-items: start;
  grid-template-columns: 0.5fr 1fr 0.5fr;
  gap: 36px;
}

.site-footer p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  line-height: 1.65;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--paper);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.js .hero__eyebrow,
.js .hero__edition,
.js .hero__headline,
.js .hero__body,
.js .hero__actions,
.js .hero__status {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-copy-in 700ms cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.js .hero__title span {
  opacity: 0;
  transform: translateY(0.22em);
  animation: hero-title-in 760ms cubic-bezier(0.16, 0.82, 0.24, 1) forwards;
}

.js .hero__title span:nth-child(2) { animation-delay: 70ms; }
.js .hero__title span:nth-child(3) { animation-delay: 140ms; }
.js .hero__eyebrow { animation-delay: 200ms; }
.js .hero__edition { animation-delay: 260ms; }
.js .hero__headline { animation-delay: 320ms; }
.js .hero__body { animation-delay: 400ms; }
.js .hero__actions { animation-delay: 480ms; }
.js .hero__status { animation-delay: 540ms; }

@keyframes hero-title-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-copy-in {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 34px, 720px);
    --header-height: 76px;
  }

  .site-nav a:not(.site-nav__signal) {
    display: none;
  }

  .preference-page .site-nav a {
    display: block;
  }

  .hero__content {
    padding-bottom: 58px;
  }

  .hero__title {
    font-size: clamp(8.7rem, 47vw, 18rem);
  }

  .hero__scroll {
    display: none;
  }

  .hero__telemetry {
    display: none;
  }

  .statement,
  .principles__heading,
  .golden-build__inner,
  .release__promise,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .statement h2,
  .statement__copy,
  .release h2,
  .release__promise > p:last-child {
    grid-column: 1;
  }

  .statement__copy {
    max-width: 620px;
  }

  .arena-feature__frame {
    width: 100%;
    height: 72vw;
  }

  .arena-feature__copy {
    margin-top: -40px;
    justify-items: start;
    text-align: left;
  }

  .arena-feature__frame::after {
    background: linear-gradient(0deg, rgba(7, 9, 7, 0.74), transparent 48%);
  }

  .principles__heading {
    gap: 22px;
  }

  .principle-list li {
    grid-template-columns: 54px 0.8fr 1.2fr;
  }

  .golden-build__inner {
    gap: 18px;
  }

  .release__promise {
    min-width: 0;
    gap: 0;
  }

  .release__promise > * {
    min-width: 0;
  }

  .waitlist {
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .site-footer__links {
    justify-content: flex-start;
  }

  .preference-content {
    max-width: var(--page);
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 32px);
  }

  .site-mark {
    font-size: 0.84rem;
  }

  .site-nav {
    font-size: 0.7rem;
  }

  .hero {
    min-height: max(780px, 100svh);
  }

  .hero__media img {
    object-position: 56% center;
  }

  .hero__veil {
    background:
      radial-gradient(circle at 62% 48%, rgba(200, 255, 116, 0.06), transparent 24%),
      linear-gradient(90deg, rgba(7, 9, 7, 0.96), rgba(7, 9, 7, 0.34)),
      linear-gradient(0deg, rgba(7, 9, 7, 0.95) 0%, rgba(7, 9, 7, 0.2) 70%);
  }

  .hero__content {
    padding-top: 122px;
  }

  .hero__eyebrow span,
  .hero__eyebrow::after {
    display: none;
  }

  .hero__title {
    margin-top: 18px;
    font-size: clamp(7.2rem, 43vw, 10.4rem);
  }

  .hero__edition {
    margin-top: 22px;
    font-size: 1.15rem;
  }

  .hero__headline {
    font-size: clamp(2.6rem, 14vw, 4.3rem);
  }

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

  .button--primary {
    width: 100%;
  }

  .button--text {
    width: max-content;
  }

  .statement__copy {
    grid-template-columns: 1fr;
  }

  .statement h2 {
    font-size: clamp(3.5rem, 18vw, 5.7rem);
  }

  .arena-feature__frame {
    height: 92vw;
  }

  .arena-feature__copy h2 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .principles h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .principle-list li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .principle-list p {
    grid-column: 2;
    margin-top: 8px;
  }

  .golden-build__inner {
    min-width: 0;
  }

  .golden-build h2 {
    font-size: clamp(3.7rem, 17vw, 5.6rem);
  }

  .target-list strong {
    font-size: 1.3rem;
  }

  .release h2 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

  .waitlist__intro h3 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .form-field__line {
    border-bottom: 0;
    flex-direction: column;
    gap: 14px;
  }

  .form-field__line:focus-within {
    box-shadow: none;
  }

  .form-field input[type="email"] {
    width: 100%;
    min-height: 54px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }

  .button--signal {
    width: 100%;
  }

  .preference-main__media img {
    object-position: 73% center;
  }

  .preference-main__veil {
    background:
      linear-gradient(90deg, rgba(7, 9, 7, 0.95), rgba(7, 9, 7, 0.48)),
      linear-gradient(0deg, rgba(7, 9, 7, 0.93), rgba(7, 9, 7, 0.22));
  }

  .preference-content {
    padding-top: calc(var(--header-height) + 52px);
  }

  .preference-content h1 {
    font-size: clamp(4.6rem, 20vw, 6.3rem);
  }

  .preference-form {
    width: 100%;
  }
}

@media (max-width: 620px) and (max-height: 640px) {
  .hero {
    min-height: 640px;
  }

  .hero__content {
    padding-top: 84px;
    padding-bottom: 38px;
  }

  .hero__title {
    margin-top: 10px;
    font-size: clamp(5.8rem, 34vw, 7.3rem);
  }

  .hero__edition {
    margin-top: 14px;
  }

  .hero__headline {
    margin-top: 20px;
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .hero__body {
    margin-top: 14px;
    font-size: 0.92rem;
  }

  .hero__actions {
    gap: 8px;
    margin-top: 18px;
  }

  .hero__status {
    margin-top: 14px;
  }
}

@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;
  }

  .js [data-reveal],
  .js .hero__title span,
  .js .hero__eyebrow,
  .js .hero__edition,
  .js .hero__headline,
  .js .hero__body,
  .js .hero__actions,
  .js .hero__status,
  .js .preference-content {
    opacity: 1;
    transform: none;
  }
}
