:root {
  color-scheme: dark;
  --bg: #141618;
  --bg-deep: #0b0d0e;
  --surface: #212326;
  --surface-raised: #292c2f;
  --control: #2f3236;
  --ink: #f2f5fa;
  --muted: #a8b0bd;
  --line: rgb(255 255 255 / 0.12);
  --line-strong: rgb(255 255 255 / 0.22);
  --orange: #ff5c3d;
  --orange-dark: #d63821;
  --lime: #a8ef35;
  --violet: #a78bfa;
  --success: #40c285;
  --warning: #f5ab3d;
  --blue: #619eff;
  --max: 1240px;
  --reading: 760px;
  --radius: 20px;
  --shadow: 0 24px 80px rgb(0 0 0 / 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

html.locale-pending body {
  visibility: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-wrap: normal;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
blockquote {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

:where(h1, h2, h3, p, blockquote, li, a, button, strong, span):lang(ko) {
  overflow-wrap: normal;
  word-break: keep-all;
}

:where(h1, h2, h3, p, blockquote, li, a, button, strong, span):lang(en),
:where(h1, h2, h3, p, blockquote, li, a, button, strong, span):lang(de),
:where(h1, h2, h3, p, blockquote, li, a, button, strong, span):lang(es),
:where(h1, h2, h3, p, blockquote, li, a, button, strong, span):lang(fr) {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

:where(h1, h2, h3, p, blockquote, li, a, button, strong, span):lang(ja),
:where(h1, h2, h3, p, blockquote, li, a, button, strong, span):lang(zh-Hans),
:where(h1, h2, h3, p, blockquote, li, a, button, strong, span):lang(zh-Hant) {
  overflow-wrap: normal;
  word-break: normal;
  line-break: strict;
}

:where(h1, h2, h3, blockquote):lang(ko) {
  letter-spacing: -0.025em;
}

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

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

button,
select {
  font: inherit;
}

.visually-hidden {
  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;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #130d0a;
  background: var(--orange);
  border-radius: 10px;
  font-weight: 800;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgb(11 13 14 / 0.88);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav,
.section,
.manifesto-layout,
.release-layout,
.footer-grid,
.legal-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 880;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 11px;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.13);
}

.brand-word {
  font-size: 1.14rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 0 12px rgb(255 92 61 / 0.65);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 170ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgb(255 255 255 / 0.07);
}

.nav-links a[aria-current="page"],
.nav-links a[aria-current="location"] {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgb(255 92 61 / 0.13), rgb(255 92 61 / 0.06));
  box-shadow: inset 0 0 0 1px rgb(255 92 61 / 0.2);
}

.nav-links a[aria-current="page"]::after,
.nav-links a[aria-current="location"]::after {
  transform: scaleX(1);
}

.language-control {
  position: relative;
  flex: 0 0 auto;
}

.language-control::after {
  content: "⌄";
  position: absolute;
  top: 50%;
  right: 12px;
  color: var(--muted);
  pointer-events: none;
  transform: translateY(-58%);
}

[data-language-select] {
  min-height: 42px;
  max-width: 142px;
  appearance: none;
  padding: 0 34px 0 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.home-hero {
  position: relative;
  min-height: min(820px, calc(100svh - 76px));
  display: grid;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-art,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-art {
  z-index: -3;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 38%;
  filter: saturate(0.9) contrast(1.02);
  image-rendering: auto;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(5 7 8 / 0.98) 0%, rgb(5 7 8 / 0.9) 35%, rgb(5 7 8 / 0.34) 66%, rgb(5 7 8 / 0.08) 100%),
    linear-gradient(0deg, rgb(5 7 8 / 0.9) 0%, transparent 38%);
}

.hero-layout {
  width: min(var(--max), calc(100% - 40px));
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.5fr);
  gap: 44px;
  align-items: end;
  margin-inline: auto;
  padding: clamp(84px, 12vh, 142px) 0 58px;
}

.hero-copy {
  align-self: center;
  max-width: 780px;
}

.eyebrow,
.section-label,
.stage-label,
.proof-kicker {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #d9dee7;
  font-size: clamp(0.74rem, 1.2vw, 0.9rem);
  font-weight: 760;
}

.eyebrow-mark {
  width: 34px;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 18px var(--orange);
}

.hero-copy h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(3.25rem, 8.2vw, 7.9rem);
  font-weight: 920;
  letter-spacing: -0.052em;
  line-height: 0.88;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: block;
}

.accent-text {
  color: var(--orange);
  text-shadow: 0 0 48px rgb(255 92 61 / 0.18);
}

.hero-lead {
  max-width: 700px;
  margin: 34px 0 0;
  color: #d2d7df;
  font-size: clamp(1.03rem, 1.8vw, 1.3rem);
  line-height: 1.6;
}

.beta-note {
  max-width: 690px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.status-light {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 0.48em;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 14px rgb(64 194 133 / 0.8);
}

.status-light.waiting {
  background: var(--warning);
  box-shadow: 0 0 14px rgb(245 171 61 / 0.65);
}

.hero-actions,
.license-actions,
.document-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.hero-notice {
  max-width: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 18px;
  margin-top: 24px;
  padding: 15px 17px 16px;
  background: rgb(11 13 14 / 0.82);
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--orange);
  border-radius: 12px;
  box-shadow: 0 18px 55px rgb(0 0 0 / 0.24);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.hero-notice-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  color: #aeb6c2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.notice-pulse {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 14px rgb(255 92 61 / 0.9);
}

.hero-notice > a:first-of-type {
  min-width: 0;
  margin-top: 8px;
  text-decoration: none;
}

.hero-notice > a:first-of-type:hover strong,
.hero-notice > a:first-of-type:focus-visible strong {
  color: var(--orange);
}

.hero-notice strong {
  display: block;
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  letter-spacing: -0.015em;
  line-height: 1.25;
  transition: color 160ms ease;
}

.hero-notice > p {
  grid-column: 1 / -1;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-notice-all {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  color: #d8dde5;
  font-size: 0.76rem;
  font-weight: 820;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
  background: rgb(255 255 255 / 0.05);
  font-weight: 820;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: #130d0a;
  background: var(--orange);
  border-color: var(--orange);
}

.button.primary:hover {
  background: #ff765f;
}

.button.ghost:hover {
  background: rgb(255 255 255 / 0.11);
  border-color: rgb(255 255 255 / 0.32);
}

.button.disabled {
  width: 100%;
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.hero-proof {
  align-self: end;
  max-width: 430px;
  justify-self: end;
  padding: 20px 22px;
  background: rgb(11 13 14 / 0.78);
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--lime);
  border-radius: 14px;
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.hero-proof span,
.hero-proof strong {
  display: block;
}

.proof-kicker {
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 800;
}

.hero-proof strong {
  margin-top: 5px;
  font-size: 1.07rem;
}

.hero-proof span:last-child {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.status-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status-rail div {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 18px clamp(16px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.status-rail div:last-child {
  border-right: 0;
}

.status-rail span {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.status-rail strong {
  font-size: clamp(0.88rem, 1.5vw, 1.04rem);
}

.world-first-campaign {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 78%, rgb(168 239 53 / 0.12), transparent 28%),
    radial-gradient(circle at 82% 18%, rgb(167 139 250 / 0.15), transparent 30%),
    linear-gradient(135deg, #0b0d0e 0%, #17191c 54%, #0b0d0e 100%);
  border-bottom: 1px solid var(--line);
}

.world-first-campaign::before {
  content: "01";
  position: absolute;
  z-index: -1;
  right: -0.08em;
  bottom: -0.3em;
  color: rgb(255 255 255 / 0.025);
  font-size: clamp(18rem, 44vw, 42rem);
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 0.76;
  pointer-events: none;
}

.world-first-campaign::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -26vw;
  left: 50%;
  width: min(72vw, 980px);
  aspect-ratio: 1;
  border: 1px solid rgb(255 92 61 / 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgb(255 92 61 / 0.025),
    0 0 0 180px rgb(255 92 61 / 0.018);
  pointer-events: none;
}

.world-first-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(92px, 12vw, 170px) 0;
}

.campaign-kicker {
  margin: 0;
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.world-first-route {
  max-width: 1080px;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(32px, 1fr) minmax(0, auto) minmax(32px, 1fr) minmax(0, auto);
  gap: clamp(12px, 2.5vw, 34px);
  align-items: center;
  margin: 28px 0 46px;
  padding-block: clamp(22px, 3.4vw, 36px);
  border-block: 1px solid var(--line-strong);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(0.88rem, 2vw, 1.35rem);
  letter-spacing: 0.06em;
  text-align: center;
}

.world-first-route strong:first-child {
  color: var(--lime);
}

.world-first-route strong:nth-of-type(2) {
  color: var(--violet);
}

.world-first-route strong:last-child {
  color: var(--orange);
}

.world-first-route span {
  color: #5d6570;
  font-size: 1.15em;
}

.world-first-shell h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(3.5rem, 8.5vw, 8.7rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.world-first-lead {
  max-width: 720px;
  margin: 30px 0 32px;
  color: #cbd1da;
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
}

.world-first-scope {
  max-width: 850px;
  margin: 34px 0 0;
  color: #7f8997;
  font-size: 0.76rem;
  line-height: 1.55;
}

.section {
  padding-block: clamp(88px, 11vw, 150px);
}

.section-dark {
  position: relative;
}

.section-dark::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 460px;
  background:
    radial-gradient(circle at 76% 14%, rgb(167 139 250 / 0.1), transparent 32%),
    radial-gradient(circle at 22% 10%, rgb(168 239 53 / 0.07), transparent 34%);
  pointer-events: none;
}

.section-heading {
  max-width: 900px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
  gap: 60px;
  align-items: end;
}

.section-label {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 850;
}

.section-heading h2,
.manifesto-layout h2,
.release-layout h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.3vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading > p:last-child,
.section-heading.split > p,
.release-layout > div:first-child > p:last-child {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.section-heading.split > p {
  margin: 0;
}

.architecture {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  margin-top: 66px;
}

.stage {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.stage.featured {
  background:
    linear-gradient(145deg, rgb(168 239 53 / 0.12), transparent 54%),
    var(--surface-raised);
  border-color: rgb(168 239 53 / 0.45);
  box-shadow: 0 0 54px rgb(168 239 53 / 0.07);
}

.stage-index {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
}

.stage-label {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 850;
}

.stage h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.2;
}

.stage p:last-child {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 1.25rem;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.evidence-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px;
  background: rgb(255 255 255 / 0.035);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.evidence-card.verified {
  border-left: 3px solid var(--success);
}

.evidence-card.pending {
  border-left: 3px solid var(--warning);
}

.evidence-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #130d0a;
  background: var(--success);
  border-radius: 50%;
  font-weight: 900;
}

.pending .evidence-icon {
  background: var(--warning);
}

.evidence-card h3 {
  margin: 0;
  font-size: 1rem;
}

.evidence-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section-features {
  border-top: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 62px;
}

.feature-card {
  position: relative;
  min-height: 270px;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border: 1px solid rgb(255 92 61 / 0.25);
  border-radius: 50%;
}

.feature-number {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 850;
}

.feature-card h3 {
  max-width: 500px;
  margin: 52px 0 0;
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
  line-height: 1.1;
}

.feature-card p {
  max-width: 570px;
  margin: 16px 0 0;
  color: var(--muted);
}

.manifesto {
  position: relative;
  padding-block: clamp(100px, 13vw, 190px);
  overflow: hidden;
  background:
    linear-gradient(125deg, rgb(214 56 33 / 0.98), rgb(255 92 61 / 0.92)),
    var(--orange);
  color: #130d0a;
}

.manifesto-backdrop {
  position: absolute;
  right: -0.02em;
  bottom: -0.24em;
  color: rgb(19 13 10 / 0.1);
  font-size: clamp(15rem, 42vw, 42rem);
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 0.8;
  pointer-events: none;
}

.manifesto-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.82fr);
  gap: clamp(48px, 8vw, 120px);
}

.manifesto .section-label {
  color: #130d0a;
}

.manifesto-copy {
  font-size: 1.04rem;
}

.manifesto-copy > p {
  margin: 0 0 18px;
}

.manifesto blockquote {
  margin: 44px 0 38px;
  padding-left: 20px;
  border-left: 4px solid #130d0a;
  font-size: clamp(1.45rem, 2.9vw, 2.25rem);
  font-weight: 880;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.text-link {
  font-weight: 850;
}

.section-license {
  padding-bottom: clamp(90px, 12vw, 160px);
}

.license-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 60px;
}

.license-card {
  min-height: 310px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.license-card.primary-card {
  background:
    linear-gradient(150deg, rgb(255 92 61 / 0.14), transparent 56%),
    var(--surface);
  border-color: rgb(255 92 61 / 0.5);
}

.license-tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  color: #130d0a;
  background: var(--orange);
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.license-card:not(.primary-card) .license-tag {
  color: var(--ink);
  background: var(--control);
}

.license-card h3 {
  margin: 54px 0 0;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.12;
}

.license-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.license-actions {
  margin-top: 24px;
}

.license-footnote {
  max-width: 850px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.release-section {
  position: relative;
  padding-block: clamp(90px, 12vw, 160px);
  overflow: hidden;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}

.release-glow {
  position: absolute;
  top: -320px;
  left: 40%;
  width: 780px;
  height: 780px;
  background: radial-gradient(circle, rgb(167 139 250 / 0.15), transparent 66%);
  pointer-events: none;
}

.release-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.72fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.release-panel {
  padding: clamp(26px, 4vw, 42px);
  background: rgb(33 35 38 / 0.78);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.release-status {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--warning);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.release-status.live {
  color: var(--success);
}

.release-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.release-actions .button {
  min-width: 0;
}

.release-actions .button.primary {
  grid-column: 1 / -1;
}

.release-checks {
  display: grid;
  gap: 13px;
  margin: 28px 0;
  padding: 0;
  color: #d9dee7;
  list-style: none;
}

.release-checks li {
  position: relative;
  padding-left: 24px;
}

.release-checks li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.site-footer {
  padding-block: 54px;
  background: #090b0c;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) auto minmax(260px, 0.72fr);
  gap: 42px;
  align-items: start;
}

.footer-brand {
  width: max-content;
}

.footer-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(80px, 1fr));
  gap: 11px 24px;
}

.footer-links a {
  color: #d9dee7;
  font-size: 0.88rem;
  font-weight: 730;
}

.footer-note {
  margin: 0 !important;
}

/* Legal and support pages */

.legal-page {
  background:
    radial-gradient(circle at 85% 0%, rgb(255 92 61 / 0.1), transparent 26%),
    var(--bg);
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 54px;
  align-items: center;
  padding: clamp(72px, 9vw, 120px) 0 54px;
}

.legal-hero-copy {
  max-width: 820px;
}

.legal-hero .eyebrow {
  margin-bottom: 18px;
}

.legal-hero p:last-of-type {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-icon {
  width: 154px;
  height: 154px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.legal-summary {
  padding: 22px 24px;
  color: #ded9ce;
  background: #221d18;
  border: 1px solid rgb(245 171 61 / 0.28);
  border-left: 4px solid var(--warning);
  border-radius: 12px;
}

.legal-summary p {
  margin: 0;
}

.support-issue-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.support-issue-cta .button {
  flex: 0 0 auto;
}

.language-content {
  padding: 30px 0 clamp(80px, 10vw, 130px);
}

.language-section {
  max-width: 920px;
  margin: 0;
  padding: clamp(24px, 5vw, 52px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.language-section[hidden] {
  display: none;
}

.language-section h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.language-section p,
.language-section li {
  color: #ccd2dc;
}

.language-section ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding-left: 1.35em;
}

.tag {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  color: #130d0a;
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
}

.legal-updated {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.84rem;
}

/* Concise home */

.compact-section {
  padding-bottom: clamp(82px, 10vw, 126px);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.difference-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 3vw, 38px);
  overflow: hidden;
  background:
    linear-gradient(150deg, rgb(255 255 255 / 0.055), transparent 58%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.difference-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 250px;
  height: 250px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.16;
}

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

.difference-orange {
  color: var(--orange);
}

.difference-violet {
  color: var(--violet);
}

.difference-number {
  position: absolute;
  top: 28px;
  left: 30px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.difference-card h3 {
  max-width: 440px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.42rem, 2.25vw, 1.9rem);
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.difference-card p {
  max-width: 470px;
  margin: 16px 0 0;
  color: var(--muted);
}

.source-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 20px 24px;
  background: rgb(255 255 255 / 0.035);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.source-callout p {
  margin: 0;
  color: var(--muted);
}

.source-callout a {
  flex: 0 0 auto;
}

.manifesto-visual {
  position: relative;
  min-height: clamp(620px, 62vw, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deep);
  border-block: 1px solid var(--line);
}

.manifesto-visual-art,
.manifesto-visual-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.manifesto-visual-art {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(0.94) brightness(0.91);
  image-rendering: auto;
}

.manifesto-visual-shade {
  background:
    linear-gradient(90deg, rgb(8 10 11 / 0.94) 0%, rgb(8 10 11 / 0.74) 38%, rgb(8 10 11 / 0.08) 72%),
    linear-gradient(0deg, rgb(8 10 11 / 0.52), transparent 55%);
}

.manifesto-visual-copy {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.manifesto-visual-copy > * {
  max-width: 680px;
}

.manifesto-visual-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 7.5vw, 7rem);
  font-weight: 920;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-wrap: balance;
}

.manifesto-visual-copy blockquote {
  margin: 30px 0;
  color: #d9dee7;
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  font-weight: 680;
}

.license-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: center;
}

.license-preview-mark {
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 30px;
  color: #130d0a;
  background:
    radial-gradient(circle at 72% 18%, rgb(255 255 255 / 0.5), transparent 28%),
    var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgb(255 92 61 / 0.08), var(--shadow);
  transform: rotate(-5deg);
}

.license-preview-mark span {
  font-size: clamp(2.2rem, 6vw, 5.3rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.license-preview-mark strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  letter-spacing: -0.1em;
  line-height: 0.94;
}

.license-preview-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
  text-wrap: balance;
}

.license-preview-copy > p:not(.section-label) {
  max-width: 720px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.release-compact .release-layout {
  align-items: stretch;
}

.compact-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

/* Manifesto page */

.story-page {
  background: var(--bg-deep);
}

.story-main {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.story-art {
  position: absolute;
  inset: 0 0 auto;
  height: min(820px, 72vw);
}

.story-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) contrast(0.93) brightness(0.87);
  image-rendering: auto;
}

.story-art-shade {
  position: absolute;
  inset: 0 0 auto;
  height: min(900px, 80vw);
  background:
    linear-gradient(90deg, rgb(8 10 11 / 0.94) 0%, rgb(8 10 11 / 0.72) 40%, rgb(8 10 11 / 0.08) 76%),
    linear-gradient(0deg, var(--bg-deep) 0%, transparent 62%);
}

.story-shell,
.license-shell {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.story-shell {
  padding: 28px 0 clamp(100px, 12vw, 170px);
}

.story-language,
.license-language {
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.story-intro {
  max-width: 860px;
  min-height: clamp(470px, 58vw, 660px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0 80px;
}

.story-intro h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(3.8rem, 9vw, 8.2rem);
  font-weight: 930;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-wrap: balance;
}

.no-break {
  white-space: nowrap;
}

.story-intro > p:last-child {
  max-width: 680px;
  margin: 28px 0 0;
  color: #d1d6df;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.story-chapters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.story-chapter {
  min-height: 360px;
  padding: clamp(28px, 4vw, 50px);
  background: rgb(20 22 24 / 0.88);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-chapter > span,
.story-declaration > span {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.story-chapter h2 {
  max-width: 520px;
  margin: 72px 0 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 3.4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.story-chapter p {
  max-width: 580px;
  margin: 20px 0 0;
  color: var(--muted);
}

.story-declaration {
  margin: 0;
  padding: clamp(54px, 9vw, 110px);
  color: #130d0a;
  background: var(--orange);
}

.story-declaration > span {
  color: #572016;
}

.story-declaration p {
  margin: 34px 0 0;
  color: #130d0a;
  font-size: clamp(2.8rem, 7.7vw, 7.2rem);
  font-weight: 940;
  letter-spacing: -0.045em;
  line-height: 0.97;
  text-wrap: balance;
}

.story-closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: clamp(38px, 6vw, 70px) 0 0;
}

.story-closing p {
  max-width: 740px;
  margin: 0;
  color: #d8dde5;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  font-weight: 760;
  letter-spacing: -0.015em;
}

.story-closing .button {
  flex: 0 0 auto;
}

/* License page */

.license-page {
  background:
    radial-gradient(circle at 80% 3%, rgb(255 92 61 / 0.11), transparent 24%),
    var(--bg);
}

.license-masthead {
  position: relative;
  min-height: clamp(340px, 46vw, 590px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #151719, #080a0b);
  border-bottom: 1px solid var(--line);
}

.license-masthead::before,
.license-masthead::after {
  content: "";
  position: absolute;
  width: min(60vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgb(255 92 61 / 0.22);
  border-radius: 50%;
}

.license-masthead::before {
  left: -14vw;
  bottom: -68%;
}

.license-masthead::after {
  right: -18vw;
  top: -78%;
}

.license-masthead-glow {
  position: absolute;
  width: min(65vw, 820px);
  height: 330px;
  background: radial-gradient(ellipse, rgb(255 92 61 / 0.19), transparent 67%);
}

.license-masthead-copy {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.license-masthead-copy span,
.license-masthead-copy small {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(0.68rem, 1.4vw, 0.9rem);
  font-weight: 880;
  letter-spacing: 0.18em;
}

.license-masthead-copy strong {
  margin: 16px 0 8px;
  font-size: clamp(3.6rem, 10vw, 9.5rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.82;
}

.license-shell {
  padding: 28px 0 clamp(100px, 12vw, 170px);
}

.license-intro {
  max-width: 990px;
  padding: clamp(66px, 9vw, 120px) 0 clamp(58px, 8vw, 96px);
}

.license-intro h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 930;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-wrap: balance;
}

.license-intro > p:not(.section-label) {
  max-width: 800px;
  margin: 28px 0 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.license-principles {
  border-top: 1px solid var(--line);
}

.license-principle {
  display: grid;
  grid-template-columns: 130px minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(34px, 5vw, 58px) 0;
  border-bottom: 1px solid var(--line);
}

.license-principle > span {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.license-principle h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.45vw, 2.1rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.license-principle p {
  margin: 0;
  color: var(--muted);
}

.license-principle code {
  color: var(--lime);
  font-size: 0.92em;
}

.license-policy-note {
  margin-top: 30px;
  padding: 24px 26px;
  color: #dfd6c6;
  background: #231e19;
  border: 1px solid rgb(245 171 61 / 0.28);
  border-left: 4px solid var(--warning);
  border-radius: 12px;
}

.license-files {
  padding-top: clamp(92px, 12vw, 160px);
}

.license-file-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 48px;
}

.license-file-grid a {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
  text-decoration: none;
}

.license-file-grid a:hover,
.license-file-grid a:focus-visible {
  background: var(--surface-raised);
  border-color: rgb(255 92 61 / 0.52);
}

.license-file-grid strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85rem;
  overflow-wrap: anywhere;
}

.license-file-grid span {
  color: var(--muted);
  font-size: 0.8rem;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1040px) {
  .nav {
    gap: 14px;
  }

  .nav-links a {
    padding-inline: 9px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

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

  .flow-arrow {
    display: none;
  }

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

  .license-card {
    min-height: 0;
  }

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

  .footer-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 128px;
  }

  .nav,
  .section,
  .manifesto-layout,
  .release-layout,
  .footer-grid,
  .legal-shell {
    width: min(100% - 32px, var(--max));
  }

  .nav {
    min-height: 0;
    flex-wrap: wrap;
    column-gap: 12px;
    row-gap: 6px;
    padding-block: 8px;
  }

  .brand-word {
    font-size: 1rem;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 2px;
    overflow-x: auto;
    padding: 0 max(18px, calc(50% - 18px)) 3px 2px;
    scroll-padding-inline: 18px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    min-height: 42px;
    flex: 0 0 auto;
    padding-inline: 10px;
    font-size: 0.82rem;
    scroll-snap-align: center;
  }

  .language-control {
    margin-left: auto;
  }

  [data-language-select] {
    min-height: 42px;
    max-width: 126px;
    font-size: 0.85rem;
  }

  .home-hero {
    min-height: auto;
    display: block;
  }

  .hero-art {
    position: relative;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .hero-art img {
    object-position: 52% 38%;
  }

  .hero-shade {
    top: auto;
    bottom: 0;
    height: 54%;
    background: linear-gradient(0deg, var(--bg-deep) 6%, rgb(11 13 14 / 0.82) 58%, transparent);
  }

  .hero-layout {
    width: min(100% - 32px, var(--max));
    display: block;
    padding: 30px 0 42px;
  }

  .hero-copy {
    max-width: none;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 17vw, 5.4rem);
    line-height: 0.88;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-notice {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .hero-notice-all {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 12px;
  }

  .hero-proof {
    max-width: none;
    margin-top: 26px;
  }

  .hero-proof strong {
    font-size: 1rem;
    line-height: 1.35;
    text-wrap: balance;
  }

  .support-issue-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .support-issue-cta .button {
    width: 100%;
  }

  .status-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .status-rail div:nth-child(2) {
    border-right: 0;
  }

  .status-rail div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .status-rail div {
    min-height: 82px;
    padding: 14px 16px;
  }

  .section-heading.split,
  .manifesto-layout,
  .release-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-heading.split > p {
    margin-top: 0;
  }

  .architecture,
  .evidence-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stage {
    min-height: 220px;
  }

  .feature-card {
    min-height: 240px;
  }

  .manifesto-copy {
    font-size: 1rem;
  }

  .document-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .release-panel {
    padding: 24px 20px;
  }

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

  .release-actions .button.primary {
    grid-column: auto;
  }

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

  .footer-note {
    grid-column: auto;
  }

  .legal-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 58px;
  }

  .hero-icon {
    width: 92px;
    height: 92px;
    grid-row: 1;
    border-radius: 19px;
  }
}

@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: 2.9rem;
  }

  .status-rail {
    grid-template-columns: 1fr;
  }

  .status-rail div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 1040px) {
  .difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .difference-card:last-child {
    grid-column: 1 / -1;
  }

  .license-principle {
    grid-template-columns: 100px minmax(240px, 0.8fr) minmax(280px, 1fr);
    gap: 28px;
  }

  .license-file-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .story-shell,
  .license-shell {
    width: min(100% - 32px, var(--max));
  }

  .difference-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .difference-card,
  .difference-card:last-child {
    min-height: 235px;
    grid-column: auto;
  }

  .source-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .manifesto-visual {
    min-height: 660px;
    align-items: flex-end;
  }

  .manifesto-visual-art {
    object-position: 63% center;
  }

  .manifesto-visual-shade {
    background:
      linear-gradient(0deg, rgb(8 10 11 / 0.97) 2%, rgb(8 10 11 / 0.72) 56%, rgb(8 10 11 / 0.08) 100%),
      linear-gradient(90deg, rgb(8 10 11 / 0.65), transparent 78%);
  }

  .manifesto-visual-copy {
    width: min(100% - 32px, var(--max));
    padding-bottom: 52px;
  }

  .manifesto-visual-copy h2 {
    font-size: clamp(3.1rem, 14vw, 5.4rem);
  }

  .license-preview {
    grid-template-columns: 1fr;
  }

  .license-preview-mark {
    width: min(230px, 65vw);
  }

  .story-art {
    height: 540px;
  }

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

  .story-art-shade {
    height: 620px;
    background:
      linear-gradient(0deg, var(--bg-deep) 0%, rgb(8 10 11 / 0.68) 58%, rgb(8 10 11 / 0.18) 100%),
      linear-gradient(90deg, rgb(8 10 11 / 0.62), transparent 86%);
  }

  .story-intro {
    min-height: 500px;
    justify-content: flex-end;
    padding-bottom: 54px;
  }

  .story-intro h1 {
    font-size: clamp(2.9rem, 13.5vw, 4.8rem);
  }

  .story-chapters {
    grid-template-columns: 1fr;
  }

  .story-chapter {
    min-height: 300px;
  }

  .story-declaration {
    padding-inline: 28px;
  }

  .story-declaration p {
    font-size: clamp(2.5rem, 13vw, 4.6rem);
  }

  .story-declaration br {
    display: none;
  }

  .story-closing {
    align-items: flex-start;
    flex-direction: column;
  }

  .license-masthead {
    min-height: 330px;
  }

  .license-masthead-copy strong {
    font-size: clamp(3.2rem, 16vw, 5.8rem);
  }

  .license-intro h1 {
    font-size: clamp(3rem, 14vw, 5.2rem);
  }

  .license-principle {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .license-principle p {
    margin-top: 4px;
  }

  .license-file-grid {
    grid-template-columns: 1fr;
  }
}

/* Game Mode focus */

.game-mode-focus {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 20%, rgb(168 239 53 / 0.14), transparent 28%),
    linear-gradient(135deg, #0b0d0e 0%, #141817 48%, #0b0d0e 100%);
  border-block: 1px solid var(--line);
}

.game-mode-focus::before {
  content: "GAME MODE";
  position: absolute;
  right: -0.02em;
  bottom: -0.3em;
  color: rgb(255 255 255 / 0.025);
  font-size: clamp(8rem, 21vw, 22rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
}

.game-mode-shell,
.compatibility-teaser,
.sponsor-section,
.compatibility-hero-grid,
.compatibility-shell,
.compatibility-report {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.game-mode-shell {
  position: relative;
  z-index: 1;
  padding: clamp(90px, 10vw, 150px) 0;
}

.game-mode-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  column-gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.game-mode-heading .section-label {
  grid-column: 1 / -1;
}

.game-mode-heading h2 {
  max-width: 900px;
  margin: 14px 0 0;
  font-size: clamp(3.1rem, 7vw, 7.3rem);
  font-weight: 940;
  letter-spacing: -0.048em;
  line-height: 0.94;
  text-wrap: balance;
}

.game-mode-heading > p:last-child {
  max-width: 460px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1.08rem;
}

.game-mode-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(62px, 8vw, 104px);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.game-mode-metrics article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 38px);
  background: rgb(255 255 255 / 0.025);
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.game-mode-metrics strong {
  color: var(--lime);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.game-mode-metrics span {
  color: #d8dde5;
  font-weight: 760;
}

.game-mode-bridge {
  display: grid;
  grid-template-columns: 1fr auto 1.2fr auto 1fr;
  gap: clamp(14px, 3vw, 42px);
  align-items: center;
  margin-top: 24px;
  padding: clamp(22px, 3vw, 34px);
  background: #1c1f21;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  color: #d5dae1;
  font-size: clamp(0.92rem, 1.6vw, 1.18rem);
  font-weight: 800;
  text-align: center;
}

.game-mode-bridge b {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.game-mode-bridge .bridge-core {
  padding: 13px 18px;
  color: #101409;
  background: var(--lime);
  border-radius: 999px;
}

.game-mode-foot {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: center;
  margin-top: 22px;
}

.game-mode-foot p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.game-mode-foot a {
  flex: 0 0 auto;
}

/* Other apps by the developer */

.developer-apps-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 11vw, 150px) 0;
  background:
    radial-gradient(circle at 84% 12%, rgb(97 158 255 / 0.1), transparent 25%),
    radial-gradient(circle at 18% 88%, rgb(167 139 250 / 0.08), transparent 28%),
    var(--bg-deep);
  border-block: 1px solid var(--line);
}

.developer-apps-shell {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.developer-apps-header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: end;
}

.developer-apps-header h2 {
  max-width: 820px;
  margin: 12px 0 0;
  font-size: clamp(3.1rem, 7vw, 7rem);
  font-weight: 940;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.developer-apps-header > p {
  max-width: 520px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.08rem;
}

.developer-apps-controls {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: clamp(48px, 7vw, 86px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-strong);
}

.developer-platform-tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(84px, 1fr));
  padding: 4px;
  background: #1c1f22;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
}

.developer-platform-tabs button {
  min-height: 42px;
  padding: 8px 18px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-weight: 820;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.developer-platform-tabs button:hover,
.developer-platform-tabs button:focus-visible {
  color: var(--ink);
}

.developer-platform-tabs button[aria-selected="true"] {
  color: #130d0a;
  background: var(--orange);
  box-shadow: 0 8px 28px rgb(255 92 61 / 0.2);
}

.developer-app-count {
  color: #929ba8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.developer-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.developer-app-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.035), transparent 46%),
    #191b1e;
  border: 1px solid var(--line);
  border-radius: 17px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.developer-app-card:hover {
  background:
    linear-gradient(145deg, rgb(255 92 61 / 0.065), transparent 48%),
    #202327;
  border-color: rgb(255 92 61 / 0.35);
  transform: translateY(-4px);
}

.developer-app-heading {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.developer-app-artwork {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  object-fit: cover;
  background: var(--surface);
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 20px;
  box-shadow: 0 15px 36px rgb(0 0 0 / 0.3);
  image-rendering: auto;
}

.developer-app-identity {
  min-width: 0;
}

.developer-app-identity h3 {
  margin: 2px 0 0;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.developer-app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 11px;
}

.developer-app-badge {
  padding: 4px 8px;
  color: #bcc4cf;
  background: rgb(255 255 255 / 0.055);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.25;
}

.developer-app-badge.game {
  color: #241607;
  background: var(--warning);
  border-color: var(--warning);
}

.developer-app-badge.compatible {
  color: #101609;
  background: var(--lime);
  border-color: var(--lime);
}

.developer-app-summary {
  margin: 28px 0 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.developer-app-link {
  align-self: flex-start;
  margin-top: auto;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration-color: var(--orange);
  transition: color 160ms ease;
}

.developer-app-link:hover,
.developer-app-link:focus-visible {
  color: var(--orange);
}

.developer-app-loading,
.developer-app-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 52px 0;
  color: var(--muted);
}

/* Compatibility and sponsorship teasers */

.compatibility-teaser,
.sponsor-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  min-height: 620px;
  align-items: stretch;
  padding-block: clamp(64px, 8vw, 110px);
}

.compatibility-teaser-count {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 76px);
  color: #11150b;
  background: var(--lime);
  border-radius: var(--radius) 0 0 var(--radius);
}

.compatibility-teaser-count > span,
.compatibility-teaser-count > small {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.compatibility-teaser-count > span {
  line-height: 1.35;
  text-wrap: balance;
}

.compatibility-teaser-count strong {
  margin: 24px 0 16px;
  font-size: clamp(7rem, 18vw, 15rem);
  font-weight: 950;
  letter-spacing: -0.11em;
  line-height: 0.7;
}

.compatibility-teaser-copy,
.sponsor-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(42px, 7vw, 92px);
  background: #1e2023;
  border: 1px solid var(--line);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.compatibility-teaser-copy h2,
.sponsor-copy h2 {
  max-width: 780px;
  margin: 12px 0 0;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  letter-spacing: -0.045em;
  line-height: 0.94;
}

html[lang="ko"] .compatibility-teaser-copy h2 {
  word-break: keep-all;
}

.compatibility-teaser-copy > p:not(.section-label),
.sponsor-copy > p:not(.section-label) {
  max-width: 660px;
  margin: 26px 0 32px;
  color: var(--muted);
  font-size: 1.08rem;
}

.sponsor-section {
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
}

.sponsor-mark {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #140f09;
  background:
    radial-gradient(circle at center, #ffd073 0%, var(--orange) 54%, #df4028 100%);
  border-radius: var(--radius) 0 0 var(--radius);
}

.sponsor-mark span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.sponsor-mark strong {
  font-size: clamp(8rem, 18vw, 15rem);
  font-weight: 300;
  line-height: 0.75;
}

.sponsor-copy {
  min-height: 470px;
}

.sponsor-button {
  color: #11150b;
  background: var(--lime);
}

.sponsor-button:hover,
.sponsor-button:focus-visible {
  background: #c7ff6e;
}

/* Project updates */

.updates-page {
  background: var(--bg-deep);
}

.updates-hero {
  position: relative;
  min-height: 530px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgb(255 92 61 / 0.18), transparent 26%),
    radial-gradient(circle at 22% 82%, rgb(167 139 250 / 0.1), transparent 29%),
    linear-gradient(145deg, #0b0d0e, #17191c);
  border-bottom: 1px solid var(--line);
}

.updates-hero::before {
  content: "NOW";
  position: absolute;
  right: -0.05em;
  bottom: -0.26em;
  color: rgb(255 255 255 / 0.025);
  font-size: clamp(12rem, 32vw, 31rem);
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 0.8;
  pointer-events: none;
}

.updates-hero-shell,
.updates-shell {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.updates-hero-shell {
  padding-block: 76px;
}

.updates-hero-shell h1 {
  max-width: 1000px;
  margin: 14px 0 0;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.updates-hero-shell > p:last-child {
  max-width: 700px;
  margin: 28px 0 0;
  color: #c9cfd8;
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
}

.updates-shell {
  padding: clamp(78px, 10vw, 142px) 0;
}

.updates-heading {
  display: grid;
  grid-template-columns: minmax(130px, 0.25fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  margin-bottom: 48px;
}

.updates-heading > span {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.updates-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.updates-list {
  border-top: 1px solid var(--line-strong);
}

.update-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 110px);
  padding: clamp(34px, 5vw, 62px) 0;
  border-bottom: 1px solid var(--line-strong);
}

.update-card-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  align-content: start;
  color: #7f8894;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.update-card-index {
  grid-row: 1 / span 2;
  color: var(--orange);
}

.update-card-date {
  letter-spacing: 0;
  text-transform: none;
}

.update-card-copy h2 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.update-card-copy > p,
.update-card-body {
  max-width: 760px;
  margin: 20px 0 22px;
}

.update-card-copy > p,
.update-card-body p {
  color: var(--muted);
  font-size: 1.02rem;
}

.update-card-body {
  display: grid;
  gap: 20px;
}

.update-card-body p {
  margin: 0;
}

.update-card-link {
  color: var(--lime);
}

.updates-loading,
.updates-empty {
  margin: 0;
  padding: 48px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

/* Compatibility database */

.compatibility-page {
  background: var(--bg-deep);
}

.compatibility-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 38%, rgb(255 92 61 / 0.17), transparent 24%),
    radial-gradient(circle at 25% 65%, rgb(168 239 53 / 0.08), transparent 29%),
    #0b0d0e;
  border-bottom: 1px solid var(--line);
}

.compatibility-hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  top: -220px;
  right: -130px;
  border: 1px solid rgb(255 92 61 / 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgb(255 92 61 / 0.035),
    0 0 0 180px rgb(255 92 61 / 0.025);
  pointer-events: none;
}

.compatibility-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: clamp(42px, 8vw, 116px);
  align-items: center;
  padding-block: 70px;
}

.compatibility-hero-copy h1 {
  max-width: 900px;
  margin: 14px 0 0;
  font-size: clamp(4rem, 8.5vw, 8.4rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.compatibility-hero-copy > p:last-child {
  max-width: 680px;
  margin: 30px 0 0;
  color: #c9ced6;
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.compatibility-count-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  color: #12160b;
  background: var(--lime);
  border-radius: 18px;
  box-shadow: 0 30px 100px rgb(0 0 0 / 0.38);
}

.compatibility-count-card span,
.compatibility-count-card small {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.compatibility-count-card span {
  line-height: 1.35;
  text-wrap: balance;
}

.compatibility-count-card strong {
  font-size: clamp(7rem, 14vw, 11rem);
  font-weight: 950;
  letter-spacing: -0.11em;
  line-height: 0.7;
}

.compatibility-shell {
  padding: clamp(74px, 9vw, 130px) 0;
}

.compatibility-summary {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(300px, 1.5fr);
  border-block: 1px solid var(--line-strong);
}

.compatibility-summary > div,
.compatibility-summary > p {
  min-height: 130px;
  margin: 0;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.compatibility-summary > p {
  display: flex;
  align-items: center;
  color: var(--muted);
  border-right: 0;
}

.compatibility-summary span {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.compatibility-summary strong {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.compatibility-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 16px;
  margin-top: 54px;
}

.compatibility-toolbar label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.compatibility-toolbar input,
.compatibility-toolbar select {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  color: var(--ink);
  background: #202327;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  outline: 0;
}

.compatibility-toolbar input:focus,
.compatibility-toolbar select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgb(168 239 53 / 0.15);
}

.compatibility-ledger {
  margin-top: 22px;
  border-top: 1px solid var(--line-strong);
}

.compatibility-ledger-head,
.compatibility-row {
  display: grid;
  grid-template-columns:
    minmax(210px, 1.25fr)
    minmax(170px, 0.85fr)
    minmax(140px, 0.68fr)
    minmax(135px, 0.68fr)
    minmax(95px, 0.45fr)
    minmax(180px, 1fr)
    46px;
}

.compatibility-ledger-head {
  color: #747d8a;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compatibility-ledger-head span {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.compatibility-entry {
  background: #17191c;
  border-top: 1px solid var(--line);
}

.compatibility-row {
  min-height: 142px;
  background: #17191c;
  transition: background 180ms ease, transform 180ms ease;
}

.compatibility-entry:hover .compatibility-row {
  position: relative;
  z-index: 1;
  background: #202327;
  transform: translateX(4px);
}

.compatibility-row > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}

.compatibility-row > div:last-child {
  border-right: 0;
}

.compatibility-game-cell {
  flex-direction: row !important;
  gap: 18px;
  align-items: center;
}

.compatibility-index {
  flex: 0 0 auto;
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.69rem;
  font-weight: 900;
}

.compatibility-game-cell h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.75vw, 1.45rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.compatibility-official-title,
.compatibility-device-cell span,
.compatibility-verification-cell span {
  margin-top: 7px;
  color: #7f8895;
  font-size: 0.78rem;
}

.compatibility-status {
  align-self: flex-start;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.15;
  text-wrap: balance;
}

.compatibility-status[data-status="playable"] {
  color: var(--lime);
}

.compatibility-status[data-status="testing"] {
  color: var(--warning);
}

.compatibility-status[data-status="blocked"] {
  color: var(--orange);
}

.compatibility-status[data-status="unknown"] {
  color: var(--muted);
}

.compatibility-blocked-button {
  align-self: flex-start;
  min-height: 34px;
  margin-top: 10px;
  padding: 0 10px;
  color: var(--orange);
  background: rgb(255 92 61 / 0.08);
  border: 1px solid rgb(255 92 61 / 0.68);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 850;
  cursor: pointer;
}

.compatibility-blocked-button:hover,
.compatibility-blocked-button[aria-expanded="true"] {
  color: #160c08;
  background: var(--orange);
  border-color: var(--orange);
}

.compatibility-version-cell,
.compatibility-macos-version-cell {
  flex-flow: row wrap !important;
  align-content: center;
  gap: 7px;
}

.compatibility-version {
  padding: 5px 8px;
  color: var(--ink);
  background: #292e32;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.74rem;
  line-height: 1.2;
}

.compatibility-version-empty {
  color: var(--muted);
}

.compatibility-record-count-cell strong {
  font-size: 0.96rem;
}

.compatibility-record-count-cell > span {
  margin-top: 7px;
  color: #7f8895;
  font-size: 0.78rem;
}

.compatibility-expand-cell {
  padding: 0 !important;
}

.compatibility-expand-button {
  width: 100%;
  min-height: 100%;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.compatibility-expand-button:hover,
.compatibility-expand-button[aria-expanded="true"] {
  color: var(--ink);
  background: #272b2f;
}

.compatibility-device-cell strong,
.compatibility-verification-cell strong,
.compatibility-record-version-cell strong {
  font-size: 0.92rem;
  line-height: 1.3;
}

.compatibility-notes-cell {
  color: var(--muted);
  font-size: 0.88rem;
}

.compatibility-record-panel {
  padding: 0 20px 20px 40px;
  background: #111315;
  border-top: 1px solid var(--line);
}

.compatibility-record-panel[data-mode="blocked"] {
  background:
    linear-gradient(90deg, rgb(255 92 61 / 0.08), transparent 42%),
    #111315;
  border-top-color: rgb(255 92 61 / 0.34);
}

.compatibility-record-panel[hidden] {
  display: none;
}

.compatibility-record-panel-title {
  margin: 0;
  padding: 18px 0 14px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.compatibility-record-panel[data-mode="blocked"] .compatibility-record-panel-title {
  color: var(--orange);
}

.compatibility-record-panel-head,
.compatibility-record {
  display: grid;
  grid-template-columns:
    minmax(135px, 0.64fr)
    minmax(100px, 0.44fr)
    minmax(110px, 0.48fr)
    minmax(145px, 0.68fr)
    minmax(120px, 0.56fr)
    minmax(135px, 0.64fr)
    minmax(180px, 1fr);
}

.compatibility-record-panel-head {
  color: #747d8a;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
}

.compatibility-record-panel-head span {
  padding: 13px 14px;
  border-right: 1px solid var(--line);
}

.compatibility-record {
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--line-strong);
}

.compatibility-record[data-status="playable"] {
  border-left-color: var(--lime);
}

.compatibility-record[data-status="blocked"] {
  border-left-color: var(--orange);
}

.compatibility-record-cell {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 104px;
  padding: 16px 14px;
  border-right: 1px solid var(--line);
}

.compatibility-record-notes-cell {
  color: var(--muted);
  font-size: 0.84rem;
}

.compatibility-empty,
.compatibility-loading {
  margin: 0;
  padding: 52px 24px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

.compatibility-report {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: 0;
  padding-bottom: clamp(80px, 10vw, 150px);
}

.compatibility-report-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(42px, 7vw, 86px);
  color: #140e0a;
  background: var(--orange);
  border-radius: var(--radius) 0 0 var(--radius);
}

.compatibility-report-copy .section-label {
  color: #4b170e;
}

.compatibility-report-copy h2 {
  max-width: 730px;
  margin: 12px 0 0;
  color: #140e0a;
  font-size: clamp(3rem, 6.5vw, 6rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.compatibility-report-copy > p:not(.section-label) {
  max-width: 660px;
  margin: 26px 0 32px;
  color: rgb(20 14 10 / 0.76);
  font-weight: 650;
}

.compatibility-report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.compatibility-report-copy .button.primary {
  color: var(--ink);
  background: #151719;
}

.compatibility-report-copy .button.ghost {
  color: #160f0a;
  border-color: rgb(20 14 10 / 0.34);
}

.compatibility-log-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(36px, 5vw, 62px);
  background:
    radial-gradient(circle at 70% 20%, rgb(168 239 53 / 0.12), transparent 31%),
    #1c1f21;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.compatibility-log-card > span {
  margin-bottom: auto;
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.compatibility-log-card h3 {
  margin: 70px 0 0;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.compatibility-log-card p {
  margin: 22px 0 0;
  color: var(--muted);
}

@media (max-width: 1040px) {
  .developer-apps-header {
    grid-template-columns: 1fr;
  }

  .developer-apps-header > p {
    margin: 0;
  }

  .developer-app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .update-card {
    grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1fr);
    gap: 38px;
  }

  .game-mode-heading,
  .compatibility-hero-grid {
    grid-template-columns: 1fr;
  }

  .game-mode-heading > p:last-child {
    margin-top: 28px;
  }

  .compatibility-count-card {
    width: min(380px, 100%);
    min-height: 240px;
  }

  .compatibility-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compatibility-summary > p {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .compatibility-ledger-head {
    display: none;
  }

  .compatibility-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-top: 14px;
  }

  .compatibility-entry {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
  }

  .compatibility-row {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 44px;
  }

  .compatibility-entry:hover .compatibility-row {
    transform: translateY(-3px);
  }

  .compatibility-row > div {
    min-height: 104px;
    padding: 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .compatibility-row > div::before {
    content: attr(data-label);
    margin-bottom: 10px;
    color: #747d8a;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.63rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .compatibility-game-cell,
  .compatibility-notes-cell {
    grid-column: 1 / -2;
  }

  .compatibility-game-cell {
    min-height: 132px !important;
    border-right: 0 !important;
  }

  .compatibility-notes-cell {
    border-bottom: 0 !important;
  }

  .compatibility-expand-cell {
    grid-column: -2 / -1;
    grid-row: 1 / 5;
    border-left: 1px solid var(--line);
    border-bottom: 0 !important;
  }

  .compatibility-expand-cell::before {
    display: none;
  }

  .compatibility-record-panel {
    padding: 0 18px 18px;
  }

  .compatibility-record-panel-head {
    display: none;
  }

  .compatibility-record {
    grid-template-columns: 1fr 1fr;
  }

  .compatibility-record-cell {
    min-height: 92px;
    border-bottom: 1px solid var(--line);
  }

  .compatibility-record-notes-cell {
    grid-column: 1 / -1;
  }

  .compatibility-record-cell::before {
    content: attr(data-label);
    margin-bottom: 9px;
    color: #747d8a;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.61rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .compatibility-report {
    grid-template-columns: 1fr;
  }

  .compatibility-report-copy {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .compatibility-log-card {
    min-height: 420px;
    border-top: 0;
    border-left: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
  }
}

@media (max-width: 760px) {
  .game-mode-shell,
  .world-first-shell,
  .developer-apps-shell,
  .updates-hero-shell,
  .updates-shell,
  .compatibility-teaser,
  .sponsor-section,
  .compatibility-hero-grid,
  .compatibility-shell,
  .compatibility-report {
    width: min(100% - 32px, var(--max));
  }

  .developer-apps-header h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .developer-apps-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .developer-platform-tabs {
    width: 100%;
  }

  .developer-platform-tabs button {
    padding-inline: 10px;
  }

  .developer-app-grid {
    grid-template-columns: 1fr;
  }

  .developer-app-card {
    min-height: 320px;
  }

  .world-first-route {
    grid-template-columns: 1fr;
    margin: 24px 0 38px;
  }

  .world-first-route span {
    transform: rotate(90deg);
  }

  .world-first-shell h2,
  .updates-hero-shell h1 {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
  }

  .world-first-scope {
    font-size: 0.72rem;
  }

  .updates-hero {
    min-height: 620px;
  }

  .updates-heading,
  .update-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .update-card-meta {
    max-width: 280px;
  }

  .update-card-copy h2 {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .game-mode-heading h2,
  .compatibility-hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .game-mode-metrics {
    grid-template-columns: 1fr;
  }

  .game-mode-metrics article {
    min-height: 170px;
  }

  .game-mode-bridge {
    grid-template-columns: 1fr;
  }

  .game-mode-bridge b {
    transform: rotate(90deg);
  }

  .game-mode-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .compatibility-teaser,
  .sponsor-section {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .compatibility-teaser-count,
  .compatibility-teaser-copy,
  .sponsor-copy,
  .sponsor-mark {
    min-width: 0;
  }

  .compatibility-teaser-count,
  .sponsor-mark {
    min-height: 360px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .compatibility-teaser-copy,
  .sponsor-copy {
    min-height: 480px;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .compatibility-teaser-copy h2,
  .sponsor-copy h2 {
    font-size: clamp(2rem, 10vw, 4rem);
    hyphens: auto;
    word-break: normal;
  }

  .compatibility-hero,
  .compatibility-hero-grid {
    min-height: 720px;
  }

  .compatibility-hero-grid {
    align-content: center;
    padding-block: 64px;
  }

  .compatibility-summary,
  .compatibility-toolbar,
  .compatibility-list {
    grid-template-columns: 1fr;
  }

  .compatibility-summary > p {
    grid-column: auto;
  }

  .compatibility-summary > div,
  .compatibility-summary > p {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .compatibility-toolbar {
    margin-top: 42px;
  }

  .compatibility-row {
    grid-template-columns: 1fr 42px;
  }

  .compatibility-game-cell,
  .compatibility-notes-cell {
    grid-column: 1;
  }

  .compatibility-status-cell,
  .compatibility-version-cell,
  .compatibility-macos-version-cell,
  .compatibility-record-count-cell {
    grid-column: 1;
  }

  .compatibility-row > div {
    border-right: 0;
  }

  .compatibility-expand-cell {
    grid-column: 2;
    grid-row: 1 / 7;
  }

  .compatibility-record-panel {
    padding-inline: 14px;
  }

  .compatibility-record {
    grid-template-columns: 1fr;
  }

  .compatibility-record-cell {
    border-right: 0;
  }

  .compatibility-report-copy {
    padding-inline: 28px;
  }

  .compatibility-report-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
  }

  .compatibility-report-actions {
    width: 100%;
  }

  .compatibility-report-actions .button {
    width: 100%;
  }
}

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

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