:root {
  color-scheme: dark;
  --ink: #071013;
  --ink-2: #0a2025;
  --panel: rgba(9, 34, 39, 0.88);
  --panel-strong: #0c2a2f;
  --cream: #f1d8a5;
  --cream-2: #ffe7b8;
  --paper: #fff1cf;
  --gold: #f5ad2f;
  --gold-2: #ffd06b;
  --red: #d64b32;
  --blue: #69d8f0;
  --green: #78c99d;
  --terminal-green: #79e06d;
  --violet: #b46ad7;
  --muted: #b6c7c1;
  --line: rgba(255, 225, 158, 0.18);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --font-body: "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ui: "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-brand: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --font-display: "Fraunces", "Recoleta", "Cooper Black", "Bookman Old Style",
    "Iowan Old Style", Georgia, serif;
  --font-reading: "Iowan Old Style", Athelas, Charter, Georgia, serif;
  --sp-cream: #f2e3c5;
  --sp-rust: #d9573b;
  --sp-shadow: #02070b;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(116deg, rgba(214, 75, 50, 0.14), transparent 32%),
    linear-gradient(180deg, #061115 0%, #08262a 46%, #061315 100%);
  color: #fff8df;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 78%, transparent);
  pointer-events: none;
}

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

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

p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
}

.brand,
.nav-links,
.reward-row,
.world-places,
.waitlist-items {
  display: flex;
  align-items: center;
}

.brand {
  gap: 8px;
  min-width: 0;
  color: var(--sp-cream);
  font-family: var(--font-brand);
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  overflow: visible;
  border: 0;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(2px 3px 0 var(--sp-shadow));
  transform: scale(1.12);
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-title {
  display: inline-flex;
  align-items: center;
  column-gap: 0.3em;
  color: var(--sp-cream);
  font-family: var(--font-brand);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow:
    2px 0 0 var(--sp-rust),
    0 2px 0 var(--sp-rust),
    4px 4px 0 var(--sp-shadow);
}

.brand .brand-title {
  font-size: 1.85rem;
}

.nav-links {
  justify-content: center;
  gap: clamp(1.15rem, 2vw, 1.8rem);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 750;
  min-width: 0;
}

.nav-links a {
  position: relative;
  color: #fff1d4;
  opacity: 0.92;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

.nav-cta,
.button {
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 0.86rem 1.05rem;
  background: var(--gold);
  color: #18120b;
  box-shadow: 0 10px 26px rgba(245, 173, 47, 0.26);
  font-size: 0.78rem;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 86vh;
  padding: 136px max(24px, calc((100vw - 1160px) / 2)) 86px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(2, 8, 12, 0.98), rgba(2, 8, 12, 0.74) 38%, rgba(2, 8, 12, 0.18) 70%),
    linear-gradient(180deg, rgba(2, 8, 12, 0.08), rgba(2, 8, 12, 0.2) 72%, #061315 100%),
    url("assets/background-reference.jpg") center / cover no-repeat;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(590px, 100%);
}

.hero-stage {
  position: absolute;
  z-index: 1;
  right: max(22px, calc((100vw - 1160px) / 2));
  bottom: 28px;
  width: min(45vw, 520px);
  height: min(60vh, 570px);
  pointer-events: none;
}

.hero-stage::before {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 4%;
  width: 76%;
  height: 18%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  filter: blur(14px);
}

.hero-stage::after {
  content: "";
  position: absolute;
  right: 9%;
  bottom: 18%;
  width: 58%;
  height: 62%;
  border-radius: 50%;
  background: rgba(255, 143, 38, 0.2);
  filter: blur(45px);
}

.hero-machine {
  position: absolute;
  right: 10%;
  bottom: 6%;
  z-index: 2;
  width: min(72%, 330px);
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.5));
}

.hero-can {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 9%;
  width: 92px;
  transform: rotate(8deg);
  filter: drop-shadow(0 15px 18px rgba(0, 0, 0, 0.45));
}

.hero-token {
  position: absolute;
  z-index: 3;
  left: 18%;
  bottom: 1%;
  width: 102px;
  transform: rotate(-12deg);
  filter: drop-shadow(0 15px 18px rgba(0, 0, 0, 0.45));
}

.eyebrow {
  color: var(--gold-2);
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #805317;
}

h2,
.hero-line {
  font-family: var(--font-display);
  font-weight: 900;
  text-wrap: balance;
}

.hero-line {
  margin-top: 0.85rem;
  max-width: 630px;
  font-size: 3.95rem;
  line-height: 1.16;
}

.hero-line span {
  color: var(--gold);
}

.hero-text {
  max-width: 540px;
  margin-top: 1.05rem;
  color: #f9eac6;
  font-size: 1.05rem;
  line-height: 1.62;
}

.hero-waitlist {
  display: grid;
  gap: 0.62rem;
  width: min(600px, 100%);
  margin-top: 1.9rem;
}

.hero-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: start;
}

.hero-form-row input {
  min-width: 0;
}

.hero-waitlist .form-note {
  color: #fff3d0;
  font-size: 0.83rem;
  font-weight: 700;
}

.hero-waitlist .form-note.success {
  color: #a8e9bd;
}

.hero-waitlist .form-note.error {
  color: #ffb2a4;
}

.hero-waitlist.is-attention input {
  animation: waitlist-field-attention 900ms ease;
}

.hero-waitlist.is-attention .button {
  animation: waitlist-button-attention 900ms ease;
}

@keyframes waitlist-field-attention {
  0%,
  100% {
    border-color: rgba(55, 35, 15, 0.24);
    box-shadow:
      inset 0 0 0 1px rgba(121, 224, 109, 0),
      0 0 0 3px rgba(121, 224, 109, 0),
      0 12px 28px rgba(0, 0, 0, 0);
  }

  35%,
  70% {
    border-color: var(--terminal-green);
    box-shadow:
      inset 0 0 0 1px rgba(121, 224, 109, 0.22),
      0 0 0 3px rgba(121, 224, 109, 0.26),
      0 0 0 8px rgba(121, 224, 109, 0.16),
      0 14px 30px rgba(0, 0, 0, 0.28);
  }
}

@keyframes waitlist-button-attention {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(245, 173, 47, 0.25);
  }

  35%,
  70% {
    box-shadow:
      0 0 0 3px rgba(105, 216, 240, 0.26),
      0 0 0 8px rgba(245, 173, 47, 0.22),
      0 18px 34px rgba(245, 173, 47, 0.3);
  }
}

.hero-invite-copy {
  color: #f8e7c1;
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-invite-link {
  position: relative;
  display: inline-flex;
  color: #fff2c8;
  font-family: var(--font-ui);
  font-weight: 900;
  transition: color 160ms ease;
}

.hero-invite-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12rem;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 4px 12px rgba(245, 173, 47, 0);
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    height 160ms ease;
}

.hero-invite-link:hover,
.hero-invite-link:focus-visible {
  color: #ffffff;
}

.hero-invite-link:hover::after,
.hero-invite-link:focus-visible::after {
  height: 3px;
  background: var(--gold-2);
  box-shadow: 0 4px 12px rgba(245, 173, 47, 0.35);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 1.35rem;
  font-size: 0.8rem;
}

.button.primary {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1b1308;
  box-shadow: 0 12px 28px rgba(245, 173, 47, 0.25);
}

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

.button:focus-visible,
.nav-cta:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(105, 216, 240, 0.85);
  outline-offset: 3px;
}

.loop-strip {
  position: relative;
  width: min(1160px, calc(100% - 40px));
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: 0.9fr repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 37, 42, 0.92);
  box-shadow: var(--shadow);
}

.loop-label,
.loop-strip article {
  min-height: 166px;
  padding: 2rem 1.7rem;
}

.loop-label {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 0.9rem;
}

.loop-label-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.3));
}

.loop-label span {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(245, 173, 47, 0.42);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.loop-strip article {
  position: relative;
  border-left: 1px dashed rgba(255, 226, 168, 0.2);
}

.loop-strip h2 {
  margin-top: 0.95rem;
  font-size: 1.16rem;
  line-height: 1.12;
}

.loop-strip p {
  margin-top: 0.65rem;
  color: #d5e0d3;
  font-size: 0.91rem;
  line-height: 1.5;
}

.step-sprite {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.28));
}

.proof-section,
.curator-section,
.machine-section,
.world-section,
.waitlist-section {
  width: min(1160px, calc(100% - 40px));
  margin: 18px auto 0;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 1.2rem;
  align-items: stretch;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(7, 26, 31, 0.94), rgba(10, 35, 39, 0.82)),
    url("assets/background-reference.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.proof-copy,
.conversation {
  padding: 2.3rem;
}

.proof-copy h2,
.section-heading h2,
.world-copy h2,
.waitlist-section h2 {
  margin-top: 0.72rem;
  font-size: 2.5rem;
  line-height: 1.02;
}

#proof-title {
  line-height: 1.12;
}

.proof-copy p:not(.eyebrow),
.world-copy p:not(.eyebrow),
.waitlist-section p:not(.eyebrow),
.curator-copy p {
  margin-top: 1rem;
  color: #f2dfb9;
  font-size: 1rem;
  line-height: 1.62;
}

.conversation {
  border: 1px solid rgba(255, 226, 168, 0.22);
  border-radius: var(--radius);
  background: rgba(2, 13, 17, 0.78);
}

.machine-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  color: var(--cream-2);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.machine-chip img {
  width: 34px;
  height: 42px;
  object-fit: contain;
}

.status-light {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(120, 201, 157, 0.9);
}

.chat-line {
  max-width: 92%;
  margin-top: 0.72rem;
  padding: 0.86rem 0.95rem;
  border-radius: var(--radius);
  color: #f8e9c7;
  font-size: 0.94rem;
  line-height: 1.48;
}

.chat-line.machine {
  background: rgba(21, 58, 62, 0.92);
}

.chat-line.player {
  margin-left: auto;
  background: rgba(238, 180, 75, 0.18);
  border: 1px solid rgba(238, 180, 75, 0.24);
}

.chat-line.good {
  border: 1px solid rgba(120, 201, 157, 0.4);
  background: rgba(50, 106, 78, 0.4);
}

.reward-row {
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 226, 168, 0.26);
  color: #d8e3d4;
}

.reward-row strong {
  color: var(--gold-2);
}

.curator-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
  border-radius: var(--radius);
  color: #15100a;
  box-shadow: var(--shadow);
}

.curator-art {
  position: relative;
  height: 100%;
  min-height: 390px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 24, 28, 0.15), rgba(4, 24, 28, 0.05)),
    var(--cream);
}

.curator-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.54;
  filter: saturate(1.06) contrast(1.04);
}

.curator-person {
  position: absolute;
  left: 6%;
  bottom: -2%;
  z-index: 2;
  width: min(34%, 230px);
  filter: drop-shadow(0 20px 18px rgba(41, 24, 12, 0.28));
}

.curator-caravan {
  position: absolute;
  right: 4%;
  bottom: 5%;
  z-index: 1;
  width: min(56%, 390px);
  filter: drop-shadow(0 20px 18px rgba(41, 24, 12, 0.26));
}

.curator-copy {
  padding: 3.3rem;
}

.curator-copy h2 {
  margin-top: 0.7rem;
  color: #15100a;
  font-size: 3.05rem;
  line-height: 0.98;
}

.curator-copy p {
  color: #322313;
}

blockquote {
  margin-top: 1.35rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  color: #3b2814;
  font-family: var(--font-reading);
  font-size: 1.16rem;
  line-height: 1.45;
}

.machine-section {
  padding: 3.8rem 0 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 1.4rem;
  text-align: center;
}

.section-heading h2 {
  color: #fff2cf;
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.machine-grid article {
  min-height: 330px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 226, 168, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 226, 168, 0.08), rgba(9, 34, 39, 0) 42%),
    rgba(9, 34, 39, 0.82);
  text-align: center;
}

.machine-grid article img {
  width: 142px;
  height: 178px;
  margin: 0 auto 1.1rem;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.28));
}

.machine-grid h3 {
  color: var(--cream-2);
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.05;
  text-wrap: normal;
  white-space: nowrap;
}

.machine-grid p {
  margin-top: 0.7rem;
  color: #cfddd5;
  font-size: 0.93rem;
  line-height: 1.48;
}

.world-section {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(5, 24, 29, 0.95), rgba(9, 47, 52, 0.82)),
    url("assets/background-reference.jpg") center / cover no-repeat;
}

.world-places {
  justify-content: flex-end;
  gap: 1rem;
  height: 420px;
  padding: 2.2rem 2.4rem 2.2rem 43%;
}

.world-places img {
  width: min(23%, 190px);
  height: 74%;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.35));
}

.world-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 12, 16, 0.86), rgba(3, 12, 16, 0.4) 54%, rgba(3, 12, 16, 0.08));
}

.world-copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 3.1rem;
  width: min(430px, calc(100% - 80px));
  transform: translateY(-50%);
}

.world-copy h2 {
  color: #fff2cf;
}

#world-title {
  max-width: 430px;
  font-size: clamp(2rem, 4vw, 2.32rem);
  line-height: 1.16;
}

.waitlist-section {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(360px, 1.05fr) minmax(370px, 0.95fr);
  gap: 1.55rem;
  align-items: center;
  margin-bottom: 0;
  padding: 1.5rem 2.1rem;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 239, 204, 0.98), rgba(246, 213, 154, 0.98)),
    var(--cream);
  color: #16100a;
  box-shadow: var(--shadow);
}

.waitlist-items {
  position: relative;
  justify-content: center;
  width: 160px;
  min-height: 132px;
  margin-left: -1.8rem;
}

.waitlist-items img:first-child {
  width: 92px;
  z-index: 2;
  transform: rotate(-8deg);
  filter: drop-shadow(0 12px 14px rgba(70, 40, 14, 0.24));
}

.waitlist-items img:last-child {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 86px;
  transform: rotate(12deg);
  filter: drop-shadow(0 12px 14px rgba(70, 40, 14, 0.22));
}

.waitlist-section h2 {
  color: #16100a;
}

.waitlist-section p:not(.eyebrow) {
  color: #3c2a16;
}

.waitlist-copy p:not(.eyebrow) {
  white-space: nowrap;
}

.waitlist-form {
  display: grid;
  align-self: end;
  grid-template-columns: minmax(190px, 1fr) auto;
  column-gap: 0.8rem;
  row-gap: 0.5rem;
  align-items: start;
}

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(55, 35, 15, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 250, 232, 0.68);
  color: #22170d;
  font: 500 0.92rem / 1 var(--font-body);
  padding: 0 1rem;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

input:focus {
  border-color: var(--terminal-green);
  box-shadow:
    inset 0 0 0 1px rgba(121, 224, 109, 0.2),
    0 0 0 3px rgba(121, 224, 109, 0.2),
    0 12px 28px rgba(0, 0, 0, 0.24);
}

input:focus-visible {
  outline: 0;
}

input::placeholder {
  color: rgba(34, 23, 13, 0.58);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 1.2rem;
  color: rgba(49, 34, 17, 0.74);
  font-size: 0.76rem;
}

.form-note.success {
  color: #26633e;
  font-weight: 800;
}

.form-note.error {
  color: #9b2d20;
  font-weight: 800;
}

.about-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: 138px max(24px, calc((100vw - 1160px) / 2)) 92px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(2, 8, 12, 0.98), rgba(2, 8, 12, 0.74) 44%, rgba(2, 8, 12, 0.24) 76%),
    linear-gradient(180deg, rgba(2, 8, 12, 0.02), rgba(2, 8, 12, 0.2) 70%, #061315 100%),
    url("assets/background-reference.jpg") center / cover no-repeat;
}

.about-hero-copy {
  position: relative;
  z-index: 2;
  width: min(730px, 100%);
}

.about-title {
  margin-top: 0.85rem;
  color: #fff8df;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.1rem);
  font-weight: 900;
  line-height: 1.04;
  text-wrap: balance;
}

.about-hero-text {
  max-width: 640px;
  margin-top: 1.15rem;
  color: #f9eac6;
  font-size: 1.08rem;
  line-height: 1.66;
}

.legal-note {
  margin-top: 1rem;
  color: rgba(255, 238, 195, 0.72);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-hero-art {
  position: absolute;
  right: max(22px, calc((100vw - 1160px) / 2));
  bottom: 46px;
  width: min(36vw, 420px);
  height: 420px;
  pointer-events: none;
}

.about-hero-art::before {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 2%;
  width: 74%;
  height: 16%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  filter: blur(16px);
}

.about-machine {
  position: absolute;
  right: 8%;
  bottom: 4%;
  width: min(72%, 280px);
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.45));
}

.about-item {
  position: absolute;
  z-index: 2;
  width: 82px;
  filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.38));
}

.about-item-left {
  left: 14%;
  bottom: 18%;
  transform: rotate(-10deg);
}

.about-item-right {
  right: 0;
  bottom: 0;
  transform: rotate(9deg);
}

.about-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 40px));
  margin: -54px auto 0;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 37, 42, 0.94);
  box-shadow: var(--shadow);
}

.about-section + .about-section {
  margin-top: clamp(2rem, 5vw, 3.6rem);
  padding-top: clamp(2rem, 5vw, 3.6rem);
  border-top: 1px dashed rgba(255, 226, 168, 0.22);
}

.about-section h2,
.about-cta h2 {
  margin-top: 0.72rem;
  color: #fff2cf;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.08;
  text-wrap: balance;
}

.privacy-page .about-section h2 {
  max-width: 760px;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.18;
}

.preferences-page .about-section + .about-section {
  margin-top: clamp(1.5rem, 3.2vw, 2.4rem);
  padding-top: clamp(1.5rem, 3.2vw, 2.4rem);
}

.preferences-page .about-section h2 {
  max-width: 760px;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.18;
}

.about-section p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 1rem;
  color: #f2dfb9;
  font-size: 1.03rem;
  line-height: 1.72;
}

.about-definition-list,
.about-play-list,
.about-faq-list {
  max-width: 820px;
  margin: 1.25rem 0 0;
  border-top: 1px dashed rgba(255, 226, 168, 0.22);
}

.about-definition-list {
  display: grid;
}

.about-definition-row,
.about-play-list li {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(255, 226, 168, 0.18);
}

.about-definition-row:last-child,
.about-play-list li:last-child,
.about-faq-list details:last-child {
  border-bottom: 0;
}

.about-definition-row dt,
.about-play-list span {
  color: var(--gold-2);
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-definition-row dd {
  margin: 0;
  color: #f2dfb9;
  font-size: 1rem;
  line-height: 1.66;
}

.about-play-list {
  display: grid;
  list-style: none;
  padding: 0;
}

.about-section .about-play-list p {
  max-width: none;
  margin: 0;
  color: #d9c79f;
  font-size: 0.98rem;
  line-height: 1.6;
}

.about-faq-list details {
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(255, 226, 168, 0.18);
}

.about-faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  color: #fff2cf;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.about-faq-list summary::after {
  content: "+";
  color: var(--gold-2);
  font-family: var(--font-brand);
  font-size: 1.08rem;
  line-height: 1;
}

.about-faq-list details[open] summary::after {
  content: "-";
}

.about-section .about-faq-list p {
  max-width: 720px;
  margin-top: 0.72rem;
  color: #d9c79f;
  font-size: 0.96rem;
  line-height: 1.6;
}

.legal-list {
  max-width: 760px;
  margin-top: 1.1rem;
  padding-left: 1.35rem;
  color: #f2dfb9;
  font-size: 1.03rem;
  line-height: 1.7;
}

.legal-list li + li {
  margin-top: 0.55rem;
}

.legal-list li::marker {
  color: var(--gold-2);
}

.preferences-panel {
  max-width: 760px;
  margin-top: 1.4rem;
}

.preferences-panel fieldset {
  margin: 0;
  padding: 1.25rem;
  border: 1px dashed rgba(255, 226, 168, 0.24);
  border-radius: var(--radius);
  background: rgba(3, 18, 22, 0.48);
}

.preferences-panel fieldset:disabled {
  opacity: 1;
}

.preferences-label {
  display: block;
  color: #fff2cf;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preferences-request-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  margin-top: 0.75rem;
}

.preferences-request-row input:disabled {
  border-color: rgba(121, 224, 109, 0.22);
  background: rgba(255, 250, 232, 0.58);
  cursor: not-allowed;
}

.preferences-request-row .button:disabled {
  opacity: 0.68;
  cursor: not-allowed;
  transform: none;
}

.preferences-note {
  margin-top: 0.8rem;
  color: #d9c79f;
  font-size: 0.86rem;
  line-height: 1.55;
}

.preference-summary-list {
  max-width: 760px;
  margin-top: 1rem;
  border-top: 1px dashed rgba(255, 226, 168, 0.22);
}

.preference-summary-item {
  display: grid;
  grid-template-columns: minmax(142px, 0.34fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 0.95rem 0;
  border-bottom: 1px dashed rgba(255, 226, 168, 0.18);
}

.preference-summary-item:last-child {
  border-bottom: 0;
}

.preference-summary-copy {
  display: grid;
  gap: 0.26rem;
}

.preference-summary-item h3 {
  margin: 0;
  color: #fff2cf;
  font-family: var(--font-ui);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.25;
}

.preference-summary-item p {
  max-width: 560px;
  margin: 0;
  color: #d9c79f;
  font-size: 0.94rem;
  line-height: 1.5;
}

.preference-kicker {
  color: var(--gold-2);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.preference-list {
  max-width: 820px;
  margin-top: 1.2rem;
  border-top: 1px dashed rgba(255, 226, 168, 0.22);
}

.preference-row {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px dashed rgba(255, 226, 168, 0.18);
  color: #f2dfb9;
}

.preference-row input {
  position: absolute;
  width: 1px;
  min-height: 0;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.preference-switch {
  position: relative;
  width: 48px;
  height: 26px;
  border: 1px solid rgba(255, 226, 168, 0.26);
  border-radius: 999px;
  background: rgba(3, 18, 22, 0.86);
  box-shadow: inset 0 0 0 2px rgba(3, 18, 22, 0.5);
}

.preference-switch::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 242, 207, 0.66);
  transition:
    transform 160ms ease,
    background-color 160ms ease;
}

.preference-row input:checked + .preference-switch {
  border-color: rgba(121, 224, 109, 0.56);
  background: rgba(20, 71, 43, 0.84);
}

.preference-row input:checked + .preference-switch::after {
  transform: translateX(21px);
  background: var(--terminal-green);
}

.preference-copy {
  display: grid;
  gap: 0.35rem;
}

.preference-name {
  color: #fff2cf;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.08;
}

.preference-detail {
  color: #d9c79f;
  font-size: 0.95rem;
  line-height: 1.56;
}

.preference-state {
  min-width: max-content;
  color: var(--gold-2);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inline-link {
  color: var(--gold-2);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.24rem;
}

.about-cta {
  width: min(980px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 1.6rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 239, 204, 0.98), rgba(246, 213, 154, 0.98)),
    var(--cream);
  color: #16100a;
  box-shadow: var(--shadow);
}

.about-cta h2 {
  color: #16100a;
}

.about-cta p:not(.eyebrow) {
  margin-top: 0.75rem;
  color: #3c2a16;
}

.about-waitlist-form {
  width: min(470px, 100%);
  justify-self: end;
}

.about-waitlist-form .button {
  white-space: nowrap;
}

.site-footer {
  display: block;
  margin-top: 18px;
  padding: 1.65rem 0 1.85rem;
  border-top: 1px solid rgba(255, 225, 158, 0.14);
  background: rgba(3, 17, 21, 0.62);
  color: #dabf88;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, auto);
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 4.5rem);
}

.footer-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.72rem;
  justify-self: start;
  min-width: 0;
  width: max-content;
  max-width: 100%;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sp-cream);
  font-family: var(--font-brand);
}

.footer-tagline {
  max-width: 280px;
  color: #bda97d;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  text-transform: none;
}

.footer-brand .brand-mark {
  width: 30px;
  height: 30px;
}

.footer-brand .brand-logo {
  filter: drop-shadow(1px 2px 0 var(--sp-shadow));
}

.footer-brand .brand-title {
  font-size: 1rem;
  line-height: 0.95;
  text-shadow:
    1px 0 0 var(--sp-rust),
    0 1px 0 var(--sp-rust),
    2px 2px 0 var(--sp-shadow);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(108px, max-content));
  gap: clamp(1.4rem, 4vw, 3.2rem);
  justify-content: end;
  position: relative;
  padding-left: 1.7rem;
}

.footer-nav::before {
  content: "+";
  position: absolute;
  left: 0;
  top: -0.05rem;
  color: var(--gold);
}

.footer-link-group {
  display: grid;
  gap: 0.44rem;
  align-content: start;
}

.footer-heading {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 900;
}

.footer-link {
  position: relative;
  width: max-content;
  color: #dabf88;
  font-family: var(--font-ui);
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.28rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #fff1cf;
  opacity: 1;
}

.footer-link:hover::after,
.footer-link:focus-visible::after {
  transform: scaleX(1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-line {
    font-size: 3.3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1.45rem;
  }

  .footer-nav {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
  }

  .loop-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .loop-label {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 1.4rem 1.5rem 0;
  }

  .loop-strip article {
    border-left: 0;
    border-top: 1px dashed rgba(255, 226, 168, 0.2);
  }

  .proof-section,
  .curator-section,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .machine-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stage {
    opacity: 0.68;
    right: 0;
    width: min(38vw, 340px);
  }

  .about-hero-art {
    opacity: 0.56;
    right: 0;
    width: min(38vw, 320px);
  }

  .about-cta {
    grid-template-columns: 1fr;
  }

  .about-cta .button {
    width: max-content;
  }

  .about-waitlist-form {
    width: min(560px, 100%);
    justify-self: start;
  }

  .preferences-request-row {
    grid-template-columns: 1fr;
  }

  .preference-summary-item {
    grid-template-columns: 1fr;
    gap: 0.38rem;
  }

  .preference-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .preference-state {
    grid-column: 2;
  }

  .waitlist-items {
    width: 170px;
    margin: -1.2rem 0 -1rem;
  }

  .waitlist-copy p:not(.eyebrow) {
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 28px);
    padding: 16px 0;
  }

  .brand {
    gap: 6px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand .brand-title {
    font-size: 1.45rem;
  }

  .nav-cta {
    padding: 0.72rem 0.78rem;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 88vh;
    padding: 110px 20px 72px;
    background-position: 58% center;
  }

  .about-hero {
    min-height: auto;
    padding: 112px 20px 82px;
    background-position: 58% center;
  }

  .hero-stage {
    right: 0;
    bottom: 64px;
    width: 180px;
    height: 260px;
    opacity: 0.36;
    transform: none;
  }

  .about-hero-art {
    right: -18px;
    bottom: 26px;
    width: 180px;
    height: 250px;
    opacity: 0.3;
  }

  .about-item {
    width: 56px;
  }

  .hero-line {
    max-width: 360px;
    font-size: 2.55rem;
  }

  .about-title {
    max-width: 360px;
    font-size: 2.65rem;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.62;
  }

  .about-hero-text {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-waitlist {
    margin-top: 1.45rem;
  }

  .hero-form-row {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .preferences-panel fieldset {
    padding: 1rem;
  }

  .preference-row {
    gap: 0.85rem;
    align-items: start;
  }

  .preference-name {
    font-size: 1.16rem;
  }

  .loop-strip,
  .proof-section,
  .curator-section,
  .machine-section,
  .world-section,
  .waitlist-section,
  .about-content,
  .about-cta {
    width: calc(100% - 28px);
  }

  .loop-strip {
    grid-template-columns: 1fr;
    margin-top: -34px;
  }

  .loop-label,
  .loop-strip article,
  .proof-copy,
  .conversation,
  .curator-copy,
  .waitlist-section,
  .about-content,
  .about-cta {
    padding: 1.35rem;
  }

  .proof-copy h2,
  .section-heading h2,
  .world-copy h2,
  .waitlist-section h2,
  .about-section h2,
  .about-cta h2 {
    font-size: 2rem;
  }

  .about-definition-row,
  .about-play-list li {
    grid-template-columns: 1fr;
    gap: 0.42rem;
  }

  .proof-section {
    gap: 0;
  }

  .curator-art {
    min-height: clamp(300px, 62vw, 390px);
  }

  .curator-person {
    width: min(34%, 210px);
  }

  .curator-caravan {
    width: min(58%, 370px);
    right: 0;
  }

  .curator-copy h2 {
    font-size: 2.35rem;
  }

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

  .world-places {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    height: 520px;
    padding: 13.5rem 1rem 1.5rem;
  }

  .world-places img {
    width: 42%;
    height: 128px;
  }

  .world-copy {
    left: 1.35rem;
    width: calc(100% - 2.7rem);
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 2rem;
  }

  .footer-inner {
    width: calc(100% - 28px);
    justify-items: center;
    gap: 1.15rem;
    text-align: center;
  }

  .footer-identity {
    align-items: center;
    gap: 0.72rem;
    justify-self: center;
    width: 100%;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-tagline {
    margin-inline: auto;
  }

  .footer-nav {
    width: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    padding-left: 0;
  }

  .footer-nav::before {
    position: static;
    margin-bottom: -0.16rem;
  }

  .footer-link-group {
    justify-items: center;
  }

}

@media (max-width: 420px) {
  .site-header {
    gap: 0.75rem;
  }

  .brand {
    gap: 5px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand .brand-title {
    font-size: 1.22rem;
  }

  .nav-cta {
    padding: 0.66rem 0.68rem;
    font-size: 0.66rem;
  }
}
