:root {
  color-scheme: light;
  --ink: #10121a;
  --ink-soft: #202431;
  --paper: #f7f5ef;
  --white: #ffffff;
  --cyan: #24c7e8;
  --blue: #3d73ff;
  --lime: #a8ed27;
  --coral: #ff5a5f;
  --magenta: #eb3fa9;
  --yellow: #ffd84a;
  --line: rgba(16, 18, 26, 0.18);
  --shell: 1280px;
  --header-height: 76px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body[data-account-open="true"],
body[data-beta-open="true"] {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

button,
select,
input {
  font: inherit;
}

button,
a,
select,
input {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.section-pad {
  padding-block: 116px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 34px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(247, 245, 239, 0.96);
  box-shadow: 0 12px 40px rgba(16, 18, 26, 0.1);
}

.wordmark {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  width: 182px;
  color: inherit;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 27px;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  white-space: nowrap;
}

.wordmark-x {
  margin-inline: 2px;
  color: var(--coral);
  font-size: 35px;
  transform: rotate(-7deg);
}

.wordmark small {
  flex-basis: 100%;
  margin-top: 5px;
  color: var(--yellow);
  font-family: "Inter", Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.site-header.is-scrolled .wordmark small,
.site-header.is-open .wordmark small {
  color: #8d6500;
}

.site-navigation {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-navigation a {
  position: relative;
  padding: 27px 0 24px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.site-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-control select {
  width: 60px;
  height: 38px;
  padding: 0 8px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.language-control select option {
  color: var(--ink);
  background: var(--white);
}

.header-account {
  height: 38px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-account {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px 9px;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 94svh;
  max-height: 980px;
  overflow: hidden;
  color: var(--white);
  background: #1b2332;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
  animation: hero-breathe 12s ease-in-out infinite alternate;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(8, 10, 17, 0.9) 0%, rgba(8, 10, 17, 0.7) 28%, rgba(8, 10, 17, 0.12) 58%, rgba(8, 10, 17, 0.06) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero-copy {
  width: min(620px, 52%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.ink {
  color: #596071;
}

.eyebrow.coral {
  color: var(--coral);
}

.eyebrow.lime {
  color: var(--lime);
}

.eyebrow.light {
  color: var(--yellow);
}

.live-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(168, 237, 39, 0.18);
  animation: dot-pulse 1.8s ease-in-out infinite;
}

.hero h1 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 92px;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero h1 strong {
  color: var(--coral);
  font-size: 118px;
  transform: rotate(-6deg);
}

.hero-edition {
  margin: 13px 0 0;
  color: var(--cyan);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 570px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-ghost {
  color: var(--white);
  background: rgba(10, 12, 18, 0.24);
  border-color: rgba(255, 255, 255, 0.55);
}

.button-ghost:hover {
  color: var(--ink);
  background: var(--white);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-meta span + span::before {
  content: "/";
  margin-right: 18px;
  color: var(--coral);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--yellow), var(--cyan), var(--coral));
}

.world-lab {
  position: relative;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 46px;
}

.section-heading.compact {
  margin-bottom: 38px;
}

.section-heading h2,
.identity-copy h2,
.citizen-content h2,
.survival-copy h2,
.start-heading h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading > p,
.start-heading > p,
.survival-copy > p,
.identity-copy .large-copy {
  margin: 0;
  color: #596071;
  font-size: 16px;
  line-height: 1.72;
}

.world-console {
  position: relative;
}

.mode-switch {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(600px, calc(100% - 48px));
  margin: 0 auto -22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(16, 18, 26, 0.14);
  overflow: hidden;
}

.mode-switch button {
  min-height: 58px;
  padding: 0 15px;
  color: #606676;
  background: var(--white);
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease;
}

.mode-switch button:last-child {
  border-right: 0;
}

.mode-switch button span {
  margin-right: 8px;
  color: #a2a6b0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 18px;
}

.mode-switch button[aria-selected="true"] {
  color: var(--white);
  background: var(--ink);
}

.mode-switch button[aria-selected="true"] span {
  color: var(--lime);
}

.world-visual {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 8px;
}

.world-visual > img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  transition: filter 400ms ease, transform 600ms ease;
}

.world-console[data-mode="draw"] .world-visual > img {
  filter: saturate(0.72) contrast(1.04);
  transform: scale(1.015) translateX(1.5%);
}

.world-console[data-mode="mesh"] .world-visual > img {
  filter: saturate(0.9) contrast(1.12);
  transform: scale(1.02);
}

.world-console[data-mode="world"] .world-visual > img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.015) translateX(-1.5%);
}

.focus-window {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 34%;
  border: 2px solid var(--yellow);
  background: rgba(255, 216, 74, 0.04);
  box-shadow: inset 0 0 70px rgba(255, 216, 74, 0.16), 0 0 0 999px rgba(8, 10, 17, 0.18);
  transition: left 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease;
  pointer-events: none;
}

.world-console[data-mode="mesh"] .focus-window {
  left: 33%;
  border-color: var(--cyan);
  background: rgba(36, 199, 232, 0.04);
  box-shadow: inset 0 0 70px rgba(36, 199, 232, 0.18), 0 0 0 999px rgba(8, 10, 17, 0.18);
}

.world-console[data-mode="world"] .focus-window {
  left: 66%;
  border-color: var(--coral);
  background: rgba(255, 90, 95, 0.04);
  box-shadow: inset 0 0 70px rgba(255, 90, 95, 0.16), 0 0 0 999px rgba(8, 10, 17, 0.18);
}

.world-visual figcaption {
  position: absolute;
  left: 36px;
  bottom: 34px;
  z-index: 2;
  width: min(510px, calc(100% - 72px));
  padding: 22px 24px;
  color: var(--white);
  background: rgba(12, 14, 21, 0.86);
  border-left: 4px solid var(--yellow);
}

.world-console[data-mode="mesh"] figcaption {
  border-left-color: var(--cyan);
}

.world-console[data-mode="world"] figcaption {
  border-left-color: var(--coral);
}

.world-visual figcaption span {
  display: block;
  margin-bottom: 7px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
}

.world-console[data-mode="mesh"] figcaption span {
  color: var(--cyan);
}

.world-console[data-mode="world"] figcaption span {
  color: #ff9ba0;
}

.world-visual figcaption strong {
  display: block;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 27px;
  line-height: 1.08;
  text-transform: uppercase;
}

.world-visual figcaption p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.world-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.world-pillars article {
  min-height: 226px;
  padding: 32px 34px;
  border-right: 1px solid var(--line);
}

.world-pillars article:last-child {
  border-right: 0;
}

.world-pillars article > span {
  color: var(--coral);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.world-pillars h3 {
  margin: 30px 0 9px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.world-pillars p {
  margin: 0;
  color: #676c79;
  font-size: 13px;
}

.identity-studio {
  color: var(--white);
  background: var(--ink);
}

.identity-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.8fr);
  align-items: center;
  gap: 90px;
}

.identity-media {
  position: relative;
  height: 720px;
  overflow: hidden;
  background: #171b25;
  border-radius: 8px;
}

.identity-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.identity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.identity-tags {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: rgba(255, 255, 255, 0.7);
  background: rgba(8, 10, 15, 0.82);
  border-radius: 4px;
  overflow: hidden;
}

.identity-tags span {
  min-height: 40px;
  display: grid;
  place-items: center;
  padding: 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 9px;
  font-weight: 900;
  text-align: center;
}

.identity-tags span:first-child {
  color: var(--ink);
  background: var(--lime);
}

.identity-copy h2 {
  font-size: 76px;
}

.identity-copy .large-copy {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.7);
}

.identity-specs {
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.identity-specs div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.identity-specs strong {
  color: var(--coral);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 20px;
}

.identity-specs span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.creator-preview {
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--lime);
}

.creator-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 9px;
  font-weight: 900;
}

.creator-preview-head strong {
  color: var(--lime);
}

.creator-preview-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.creator-preview-tabs span {
  min-width: 0;
  padding: 9px 6px;
  color: rgba(255, 255, 255, 0.45);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 8px;
  font-weight: 900;
  text-align: center;
}

.creator-preview-tabs .is-active {
  color: var(--ink);
  background: var(--lime);
}

.creator-preview-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 0;
  padding: 12px 14px;
}

.creator-preview-options > div:not(.creator-swatches) {
  display: grid;
  gap: 2px;
}

.creator-preview-options span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 900;
}

.creator-preview-options strong {
  color: var(--white);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 16px;
}

.creator-swatches {
  display: flex;
  gap: 5px;
}

.creator-swatches i {
  width: 17px;
  height: 17px;
  background: var(--coral);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.creator-swatches i:nth-child(2) { background: var(--cyan); }
.creator-swatches i:nth-child(3) { background: var(--lime); }
.creator-swatches i:nth-child(4) { background: var(--yellow); }
.creator-swatches i:nth-child(5) { background: var(--magenta); }

.text-command {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 0 0 7px;
  color: var(--lime);
  background: transparent;
  border-bottom: 2px solid currentColor;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.citizen-story {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #3d4c5d;
}

.citizen-story > img,
.citizen-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.citizen-story > img {
  object-fit: cover;
  object-position: center;
}

.citizen-shade {
  background: linear-gradient(90deg, rgba(12, 14, 20, 0.88) 0%, rgba(12, 14, 20, 0.5) 38%, rgba(12, 14, 20, 0.05) 70%), linear-gradient(0deg, rgba(12, 14, 20, 0.62) 0%, transparent 52%);
}

.citizen-content {
  position: relative;
  z-index: 2;
  padding-bottom: 76px;
}

.citizen-content h2 {
  max-width: 680px;
  font-size: 82px;
}

.citizen-content > p:not(.eyebrow) {
  max-width: 550px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.citizen-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.citizen-lines span {
  padding: 10px 13px;
  color: var(--ink);
  background: var(--white);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
}

.citizen-lines span:nth-child(2) {
  background: var(--yellow);
}

.citizen-lines span:nth-child(3) {
  background: var(--cyan);
}

.playable-proof {
  background: #edf0f4;
}

.capture-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.capture {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
  border-radius: 6px;
}

.capture-wide {
  grid-row: span 2;
  min-height: 656px;
}

.capture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.18) saturate(1.06);
  transition: transform 500ms ease;
}

.capture:hover img {
  transform: scale(1.025);
}

.capture::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(8, 10, 16, 0.85), transparent);
  pointer-events: none;
}

.capture figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 4px;
  color: var(--white);
}

.capture figcaption span {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 900;
}

.capture figcaption strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.survival-economy {
  color: var(--white);
  background: #171b24;
}

.survival-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1fr);
  align-items: center;
  gap: 100px;
}

.survival-copy h2 {
  font-size: 72px;
}

.survival-copy > p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
}

.survival-copy .survival-note {
  padding-left: 18px;
  border-left: 3px solid var(--lime);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.survival-console {
  position: relative;
  min-height: 350px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 20px 30px;
  padding: 46px;
  background: #222735;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.survival-console::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 8px;
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--yellow));
}

.survival-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 900;
}

.survival-time {
  color: var(--cyan);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.survival-money {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-height: 90px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 900;
}

.survival-money span {
  color: var(--lime);
  font-size: 40px;
}

.survival-money strong {
  min-width: 290px;
  font-size: 92px;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.survival-rate {
  display: grid;
  gap: 3px;
}

.survival-rate span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 900;
}

.survival-rate strong {
  color: var(--yellow);
  font-size: 15px;
}

.survival-meter {
  grid-column: 1 / -1;
  height: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.survival-meter i {
  display: block;
  width: 5%;
  height: 100%;
  background: var(--lime);
  transition: width 250ms linear, background-color 200ms ease;
}

.survival-console > button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 20px;
}

.quick-start {
  color: var(--white);
  background: #3040e6;
}

.start-heading {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 0.7fr);
  align-items: end;
  gap: 80px;
}

.start-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -50px;
}

.start-heading h2 {
  font-size: 70px;
}

.start-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.start-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  margin: 70px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.start-steps li {
  min-height: 236px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.start-steps li:last-child {
  border-right: 0;
}

.start-steps li > span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
}

.start-steps strong {
  display: block;
  margin-top: 34px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
}

.start-steps p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.download-stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 46px;
  padding: 28px 32px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 6px;
}

.download-stage > div {
  display: grid;
}

.download-label {
  font-size: 9px;
  font-weight: 900;
}

.download-stage strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 32px;
  line-height: 1;
}

.download-stage small {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
}

.button-download {
  min-width: 260px;
  color: var(--white);
  background: var(--ink);
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 255, 255, 0.65);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 190px 1fr auto auto;
  align-items: center;
  gap: 34px;
}

.footer-wordmark {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--white);
}

.powered-by {
  min-width: 132px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 9px 11px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 3px;
}

.powered-by span,
.powered-by strong {
  grid-column: 1;
  line-height: 1.05;
}

.powered-by span {
  font-size: 7px;
  font-weight: 900;
}

.powered-by strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
}

.powered-by b {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 16px;
}

.powered-by:hover {
  color: var(--ink) !important;
  background: var(--yellow);
}

.account-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
}

.account-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 10, 16, 0.78);
  backdrop-filter: blur(10px);
}

.account-shell {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: 42px;
  color: var(--ink);
  background: var(--paper);
  border-top: 7px solid var(--coral);
  border-radius: 6px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.account-close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
}

.account-eyebrow {
  margin: 0 45px 8px 0;
  color: var(--coral);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-shell h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 48px;
  line-height: 1;
  text-transform: uppercase;
}

.account-copy {
  margin: 13px 0 0;
  color: #676c79;
  font-size: 13px;
}

.account-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.account-tab {
  min-height: 44px;
  color: #676c79;
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-tab[aria-selected="true"] {
  color: var(--white);
  background: var(--ink);
}

.account-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.account-field {
  display: grid;
  gap: 6px;
  color: #656b78;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-field input {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c6c8cf;
  border-radius: 3px;
  font-size: 15px;
  text-transform: none;
}

.account-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  color: #686d78;
  font-size: 11px;
}

.account-consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--coral);
}

.account-consent a {
  color: var(--blue);
  text-decoration: underline;
}

.account-submit {
  min-height: 50px;
  margin-top: 4px;
  color: var(--white);
  background: var(--coral);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-submit:disabled {
  opacity: 0.5;
  cursor: wait;
}

.account-feedback {
  min-height: 18px;
  margin: 0;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.account-feedback[data-state="success"] {
  color: #4d8c00;
}

.account-feedback[data-state="error"] {
  color: #c72e35;
}

.account-chatgpt-shell {
  width: min(540px, 100%);
  padding: 32px 38px 34px;
  color: #eef5f0;
  background: rgba(8, 12, 13, 0.98);
  border: 1px solid rgba(188, 255, 31, 0.28);
  border-top: 2px solid #bcff1f;
  border-radius: 2px;
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.72);
}

.account-chatgpt-shell .account-close {
  color: #eef5f0;
  border-color: rgba(255, 255, 255, 0.2);
}

.account-chatgpt-shell .account-eyebrow { margin-right: 0; color: #31d8d1; text-align: center; }
.account-chatgpt-shell h2 { color: #f3f7f2; font-size: 38px; text-align: center; }
.account-chatgpt-shell .account-copy { color: #9dacaa; line-height: 1.55; }

.account-identity-portal {
  width: 168px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  margin: -4px auto 20px;
  color: #bcff1f;
}
.account-identity-portal::before,
.account-identity-portal::after {
  content: "";
  position: absolute;
  z-index: 0;
  background: rgba(49, 216, 209, 0.18);
}
.account-identity-portal::before { width: 198px; height: 1px; }
.account-identity-portal::after { width: 1px; height: 198px; }
.account-portal-orbit {
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}
.account-portal-orbit-outer {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top-color: #bcff1f;
  border-right-color: #31d8d1;
  border-bottom-style: dashed;
  animation: account-portal-spin 18s linear infinite;
}
.account-portal-orbit-middle {
  inset: 15px;
  border: 3px dotted rgba(49, 216, 209, 0.48);
  border-left-color: #ff3b9d;
  animation: account-portal-spin-reverse 24s linear infinite;
}
.account-portal-orbit-inner {
  inset: 30px;
  border: 1px solid rgba(188, 255, 31, 0.64);
  border-left-width: 5px;
  border-right-width: 5px;
  animation: account-portal-spin 9s steps(32) infinite;
}
.account-portal-tick {
  position: absolute;
  z-index: 2;
  display: block;
  width: 14px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 0 10px rgba(188, 255, 31, 0.46);
}
.account-portal-tick-top { top: -1px; left: calc(50% - 7px); }
.account-portal-tick-right { right: -6px; top: calc(50% - 1px); transform: rotate(90deg); }
.account-portal-tick-bottom { bottom: -1px; left: calc(50% - 7px); }
.account-portal-tick-left { left: -6px; top: calc(50% - 1px); transform: rotate(90deg); }
.account-openai-plate {
  width: 74px;
  height: 74px;
  z-index: 3;
  display: grid;
  place-items: center;
  background: #090c0d;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(8, 12, 13, 0.96), 0 0 28px rgba(49, 216, 209, 0.18);
}
.account-openai-plate img {
  display: block;
  width: 38px;
  height: 38px;
  filter: none;
  transform: none;
}
.account-portal-tag {
  position: absolute;
  z-index: 4;
  bottom: -7px;
  min-width: 112px;
  padding: 5px 9px;
  color: #08100d;
  background: #bcff1f;
  border: 3px solid #080c0d;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
}
.account-identity-portal[data-state="pending"] .account-portal-orbit-outer { animation-duration: 3s; }
.account-identity-portal[data-state="pending"] .account-portal-orbit-middle { animation-duration: 5s; }
.account-identity-portal[data-state="connected"] { color: #31d8d1; }
.account-identity-portal[data-state="connected"] .account-portal-tag { background: #31d8d1; }
.account-identity-portal[data-state="connected"] .account-portal-tag::after { content: " // LINKED"; }
.account-identity-portal[data-state="error"] { color: #ff6e72; }
.account-identity-portal[data-state="error"] .account-portal-tag { color: #fff; background: #d52f41; }
.account-identity-portal[data-state="error"] .account-portal-tag::after { content: " // ERROR"; }
.account-identity-portal[data-state="error"] .account-portal-orbit { border-color: rgba(255, 110, 114, 0.5); animation-play-state: paused; }

.account-provider-state {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 14px;
  margin-top: 24px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.account-provider-state span,
.account-provider-state small { color: #80908c; font-size: 10px; font-weight: 900; }
.account-provider-state strong { color: #bcff1f; font-size: 12px; }
.account-provider-state small { grid-column: 1 / -1; color: #eef5f0; }
.account-provider-state[data-state="connected"] small { color: #31d8d1; }

.account-provider-actions { display: grid; gap: 9px; margin-top: 18px; }
.account-chatgpt-shell .account-submit { margin: 0; background: #eef5f0; color: #0a0e0f; border-radius: 1px; }
.account-chatgpt-connect {
  width: 100%;
  min-height: 64px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 13px;
  padding: 7px 14px 7px 8px;
  text-align: left;
  transition: background-color 160ms ease, transform 160ms ease;
}
.account-chatgpt-shell .account-submit:hover { background: #bcff1f; transform: translateY(-2px); }
.account-chatgpt-button-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #090c0d;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}
.account-chatgpt-button-mark img { display: block; width: 22px; height: 22px; filter: none; transform: none; }
.account-chatgpt-button-copy { min-width: 0; display: grid; gap: 3px; }
.account-chatgpt-button-copy strong { overflow-wrap: anywhere; font-size: 12px; }
.account-chatgpt-button-copy small { color: #4f5955; font-size: 8px; font-weight: 900; letter-spacing: 0.1em; }
.account-chatgpt-button-arrow { justify-self: end; font-size: 21px; font-weight: 400; }
.account-chatgpt-shell .account-secondary { color: #eef5f0; border-color: rgba(255,255,255,0.2); border-radius: 1px; }
.account-chatgpt-shell .account-feedback { margin-top: 12px; color: #9dacaa; }
.account-chatgpt-shell .account-feedback[data-state="success"] { color: #bcff1f; }
.account-chatgpt-shell .account-feedback[data-state="error"] { color: #ff6e72; }

.account-privacy { margin: 14px 0 0; color: #7e8b88; font-size: 10px; line-height: 1.55; }
.account-legal { display: flex; gap: 10px; margin: 14px 0 0; color: #9dacaa; font-size: 10px; }
.account-legal a { color: #31d8d1; }

@keyframes account-portal-spin { to { transform: rotate(360deg); } }
@keyframes account-portal-spin-reverse { to { transform: rotate(-360deg); } }

.verification-stage {
  display: grid;
  gap: 14px;
  text-align: center;
}

.verification-mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 4px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 34px;
  font-weight: 900;
}

.verification-stage .account-eyebrow {
  margin: 0;
}

.verification-stage h3 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
}

.verification-stage > p:not(.account-eyebrow, .account-feedback) {
  margin: 0;
  color: #676c79;
  font-size: 13px;
}

.verification-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 6px;
}

.verification-actions .account-submit {
  margin: 0;
}

.account-secondary {
  min-height: 50px;
  padding: 0 16px;
  color: var(--ink);
  background: transparent;
  border: 1px solid #b8bbc3;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 900;
}

.verification-stage small {
  color: #868b95;
  font-size: 9px;
}

.beta-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  place-items: center;
  padding: 24px;
}

.beta-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 10, 16, 0.84);
  backdrop-filter: blur(10px);
}

.beta-shell {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: 42px;
  color: var(--ink);
  background: var(--paper);
  border-top: 7px solid var(--lime);
  border-radius: 6px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.beta-shell h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 46px;
  line-height: 0.98;
  text-transform: uppercase;
}

.beta-copy {
  margin: 17px 0 0;
  color: #5d626f;
  font-size: 13px;
}

.beta-trust-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 20px;
  margin: 24px 0;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 900;
}

.beta-trust-row span {
  color: #7d828c;
}

.beta-trust-row strong {
  color: var(--ink);
}

.beta-shell .account-consent + .account-consent {
  margin-top: 12px;
}

.beta-confirm {
  width: 100%;
  margin-top: 22px;
  background: var(--ink);
}

.beta-confirm:disabled {
  cursor: not-allowed;
}

.beta-legal {
  margin: 12px 0 0;
  color: #858a94;
  font-size: 9px;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes hero-breathe {
  from { transform: scale(1.01); }
  to { transform: scale(1.035); }
}

@keyframes dot-pulse {
  0%, 100% { opacity: 0.66; transform: scale(0.88); }
  50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 1120px) {
  .site-header {
    gap: 16px;
    padding-inline: 22px;
  }

  .site-navigation {
    gap: 18px;
  }

  .site-navigation a {
    font-size: 10px;
  }

  .hero h1 {
    font-size: 76px;
  }

  .hero h1 strong {
    font-size: 98px;
  }

  .identity-grid,
  .survival-grid {
    gap: 56px;
  }

  .identity-media {
    height: 640px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .page-shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .section-pad {
    padding-block: 86px;
  }

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

  .menu-toggle {
    display: block;
    justify-self: end;
    grid-column: 2;
  }

  .site-navigation {
    position: absolute;
    top: var(--header-height);
    left: auto;
    right: 66px;
    width: min(330px, calc(100vw - 32px));
    justify-self: stretch;
    display: none;
    padding: 14px 22px 24px;
    color: var(--ink);
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(16, 18, 26, 0.12);
  }

  .site-header.is-open .site-navigation {
    display: grid;
  }

  .site-navigation a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }

  .site-navigation a::after {
    display: none;
  }

  .mobile-account {
    min-height: 48px;
    display: grid;
    place-items: center;
    margin-top: 16px;
    color: #eef5f0;
    background: #0a0e0f;
    border: 1px solid #0a0e0f;
    border-bottom: 3px solid #bcff1f;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .header-actions {
    grid-column: 3;
  }

  .header-account {
    display: none;
  }

  .language-control select {
    width: 56px;
  }

  .hero-copy {
    width: 62%;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero h1 strong {
    font-size: 80px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .section-heading,
  .start-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading h2,
  .identity-copy h2,
  .citizen-content h2,
  .survival-copy h2,
  .start-heading h2 {
    font-size: 54px;
  }

  .world-visual,
  .world-visual > img {
    min-height: 500px;
    height: 500px;
  }

  .world-pillars,
  .start-steps {
    grid-template-columns: 1fr;
  }

  .world-pillars article,
  .start-steps li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .start-steps li {
    border-bottom-color: rgba(255, 255, 255, 0.26);
  }

  .world-pillars article:last-child,
  .start-steps li:last-child {
    border-bottom: 0;
  }

  .identity-grid,
  .survival-grid {
    grid-template-columns: 1fr;
  }

  .identity-media {
    height: 720px;
  }

  .identity-copy {
    max-width: 660px;
  }

  .citizen-story {
    min-height: 680px;
  }

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

  .capture-wide {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 500px;
  }

  .capture {
    min-height: 280px;
  }

  .survival-console {
    width: min(680px, 100%);
  }

  .start-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .start-steps {
    margin-top: 48px;
  }

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

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .powered-by {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 700px) {
  .page-shell {
    width: calc(100% - 32px);
  }

  .section-pad {
    padding-block: 70px;
  }

  .site-header {
    padding-inline: 15px;
  }

  .wordmark {
    width: 142px;
    font-size: 22px;
  }

  .wordmark-x {
    font-size: 29px;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .hero {
    min-height: 760px;
    height: 94svh;
    max-height: 920px;
  }

  .hero-media img {
    object-position: center 42%;
    animation: none;
    transform: scale(1.12) translateY(5%);
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(9, 11, 17, 0.84) 0%, rgba(9, 11, 17, 0.3) 34%, rgba(9, 11, 17, 0.05) 58%, rgba(9, 11, 17, 0.88) 100%);
  }

  .hero-content {
    align-items: stretch;
    padding-top: 0;
  }

  .hero-copy {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 120px 0 34px;
  }

  .hero h1 {
    gap: 5px;
    font-size: 46px;
  }

  .hero h1 strong {
    font-size: 60px;
  }

  .hero-edition {
    font-size: 21px;
  }

  .hero-lead {
    position: static;
    width: 100%;
    padding: 0;
    margin: auto 0 0;
    font-size: 13px;
    line-height: 1.5;
  }

  .hero-actions {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    margin: 15px 0 0;
  }

  .hero-actions .button {
    min-height: 52px;
    padding: 0 12px;
    font-size: 10px;
  }

  .hero-meta {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading h2,
  .identity-copy h2,
  .citizen-content h2,
  .survival-copy h2,
  .start-heading h2 {
    font-size: 44px;
  }

  .section-heading > p,
  .start-heading > p,
  .survival-copy > p,
  .identity-copy .large-copy {
    font-size: 14px;
  }

  .mode-switch {
    width: calc(100% - 22px);
  }

  .mode-switch button {
    min-height: 54px;
    padding: 0 7px;
    font-size: 10px;
  }

  .mode-switch button span {
    display: none;
  }

  .world-visual,
  .world-visual > img {
    min-height: 520px;
    height: 520px;
  }

  .world-visual > img {
    object-position: center;
  }

  .focus-window {
    width: 36%;
  }

  .world-console[data-mode="mesh"] .focus-window {
    left: 32%;
  }

  .world-console[data-mode="world"] .focus-window {
    left: 64%;
  }

  .world-visual figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 16px;
  }

  .world-visual figcaption strong {
    font-size: 22px;
  }

  .world-pillars article {
    min-height: 0;
    padding: 24px 18px;
  }

  .world-pillars h3 {
    margin-top: 15px;
    font-size: 25px;
  }

  .identity-grid {
    gap: 46px;
  }

  .identity-media {
    height: 590px;
  }

  .identity-tags {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .identity-tags span {
    font-size: 7px;
  }

  .creator-preview-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .creator-swatches {
    grid-column: 1 / -1;
    margin-top: 2px;
  }

  .citizen-story {
    min-height: 760px;
    align-items: flex-end;
  }

  .citizen-story > img {
    object-position: 62% center;
  }

  .citizen-shade {
    background: linear-gradient(0deg, rgba(10, 12, 18, 0.94) 0%, rgba(10, 12, 18, 0.58) 45%, rgba(10, 12, 18, 0.04) 77%);
  }

  .citizen-content {
    padding-bottom: 42px;
  }

  .citizen-content > p:not(.eyebrow) {
    font-size: 14px;
  }

  .citizen-lines {
    display: grid;
  }

  .citizen-lines span {
    width: fit-content;
  }

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

  .capture-wide,
  .capture {
    grid-column: auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .survival-grid {
    gap: 42px;
  }

  .survival-console {
    min-height: 300px;
    gap: 14px 18px;
    padding: 28px 22px;
  }

  .survival-money {
    min-height: 76px;
  }

  .survival-money span {
    font-size: 31px;
  }

  .survival-money strong {
    min-width: 0;
    font-size: 68px;
  }

  .start-steps li {
    min-height: 0;
    padding: 25px 18px;
  }

  .start-steps strong {
    margin-top: 18px;
  }

  .download-stage {
    display: grid;
    padding: 22px;
  }

  .button-download {
    min-width: 0;
    width: 100%;
  }

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

  .site-footer p,
  .site-footer nav {
    grid-column: auto;
    grid-row: auto;
  }

  .powered-by {
    grid-column: auto;
    grid-row: auto;
    width: 145px;
  }

  .account-modal,
  .beta-modal {
    padding: 12px;
  }

  .account-shell,
  .beta-shell {
    max-height: calc(100svh - 24px);
    padding: 34px 22px 24px;
  }

  .account-shell h2 {
    font-size: 40px;
  }

  .account-chatgpt-shell {
    padding: 26px 20px 24px;
  }

  .account-chatgpt-shell h2 {
    font-size: 34px;
  }

  .account-identity-portal {
    width: 146px;
    margin-bottom: 18px;
  }

  .account-identity-portal::before { width: 170px; }
  .account-identity-portal::after { height: 170px; }
  .account-openai-plate { width: 66px; height: 66px; }
  .account-openai-plate img { width: 34px; height: 34px; }

  .beta-shell h2 {
    font-size: 38px;
  }

  .verification-actions {
    grid-template-columns: 1fr;
  }
}

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

  .wordmark {
    width: 126px;
    font-size: 20px;
  }

  .wordmark-x {
    font-size: 26px;
  }

  .creator-preview-head {
    display: grid;
    gap: 3px;
  }

  .creator-preview-tabs span {
    padding-inline: 3px;
    font-size: 7px;
  }

  .menu-toggle {
    width: 36px;
    padding-inline: 6px;
  }

  .language-control select {
    width: 48px;
    height: 36px;
    padding-inline: 5px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero h1 strong {
    font-size: 52px;
  }

  .hero-actions {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .hero-actions .button {
    font-size: 9px;
  }

  .identity-media {
    height: 520px;
  }

  .survival-money strong {
    font-size: 58px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
