@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans/PlusJakartaSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans/PlusJakartaSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans/PlusJakartaSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans/PlusJakartaSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans/PlusJakartaSans-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-700-latin.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #111111;
  --hero: #090909;
  --paper: #f2f0ec;
  --app: #fbfaf8;
  --surface: #ffffff;
  --muted: #625e58;
  --muted-light: #c8c1b8;
  --orange: #c2410c;
  --orange-bright: #ff5b1a;
  --orange-dark: #9a3412;
  --orange-soft: #fff1e8;
  --neon: #b8ff4d;
  --green: #237a42;
  --green-soft: #eaf8ef;
  --blue: #1f67c7;
  --border: #e5dfd7;
  --border-strong: #d2c9be;
  --radius: 8px;
  --container: 1220px;
  --font-heading: "Plus Jakarta Sans", "Space Grotesk", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --shadow-sm: 0 10px 28px rgba(28, 22, 16, .09);
  --shadow-md: 0 24px 68px rgba(28, 22, 16, .17);
  --z-content: 10;
  --z-header: 30;
  --z-skip: 50;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--orange) var(--paper);
  scrollbar-width: thin;
}

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

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: var(--paper);
}

body::-webkit-scrollbar-thumb {
  border: 2px solid var(--paper);
  border-radius: 99px;
  background: var(--orange);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: 0;
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid rgba(184, 255, 77, .68);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: var(--z-skip);
  padding: 10px 14px;
  border-radius: 5px;
  background: var(--neon);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease-out;
}

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

.legal-container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  padding: 10px 0;
  border-bottom: 1px solid #2d2b28;
  background: rgba(9, 9, 9, .94);
  color: var(--surface);
  backdrop-filter: blur(16px);
}

.legal-nav-shell {
  min-height: 54px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
}

.legal-brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid #3c3935;
  border-radius: 7px;
}

.legal-page-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid #393632;
  border-radius: 7px;
  background: #141414;
}

.legal-page-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 4px;
  color: #c8c1b8;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 180ms ease-out, color 180ms ease-out;
}

.legal-page-nav a:hover,
.legal-page-nav a[aria-current="page"] {
  background: var(--neon);
  color: var(--ink);
}

.legal-home-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid #4b4742;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  transition: border-color 180ms ease-out, background-color 180ms ease-out;
}

.legal-home-link span {
  font-size: 17px;
}

.legal-home-link:hover {
  border-color: var(--orange);
  background: #1d1a18;
}

.legal-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: var(--legal-icon) center / contain no-repeat;
  mask: var(--legal-icon) center / contain no-repeat;
  transition: transform 180ms ease-out;
}

.legal-icon.is-home {
  --legal-icon: url("../icons/feather/home.svg");
}

.legal-icon.is-down {
  --legal-icon: url("../icons/feather/chevron-down.svg");
}

.legal-icon.is-next {
  --legal-icon: url("../icons/feather/chevron-right.svg");
}

.legal-icon.is-external {
  --legal-icon: url("../icons/feather/arrow-up-right.svg");
}

.legal-button:hover .legal-icon.is-down {
  transform: translateY(2px);
}

.legal-button:hover .legal-icon.is-next {
  transform: translateX(2px);
}

.legal-button:hover .legal-icon.is-external {
  transform: translate(2px, -2px);
}

.legal-hero {
  position: relative;
  isolation: isolate;
  min-height: min(640px, calc(100svh - 112px));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 74px 0 64px;
  border-bottom: 1px solid var(--ink);
}

.legal-hero::before,
.legal-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.legal-hero::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .44;
}

.legal-hero::after {
  top: 0;
  right: 8%;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(184, 255, 77, .48), transparent);
}

.privacy-page .legal-hero,
.status-page .legal-hero {
  background: var(--hero);
  color: var(--surface);
}

.support-page .legal-hero {
  background: var(--neon);
  color: var(--ink);
}

.support-page .legal-hero::before,
.terms-page .legal-hero::before {
  background-image:
    linear-gradient(rgba(17, 17, 17, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, .06) 1px, transparent 1px);
}

.support-page .legal-hero::after {
  background: linear-gradient(180deg, transparent, rgba(194, 65, 12, .58), transparent);
}

.terms-page .legal-hero {
  background: var(--app);
  color: var(--ink);
}

.terms-page .legal-hero::after {
  right: 0;
  width: 34%;
  background: repeating-linear-gradient(-45deg, rgba(194, 65, 12, .08) 0 1px, transparent 1px 28px);
}

.legal-hero-grid {
  position: relative;
  z-index: var(--z-content);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: 72px;
}

.legal-hero-copy {
  display: grid;
  align-content: start;
  gap: 24px;
}

.legal-kicker,
.section-kicker,
.fact-index,
.panel-index,
.doc-index,
.status-label,
.version-tag {
  width: max-content;
  max-width: 100%;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.legal-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border: 1px solid currentColor;
  border-radius: 5px;
}

.legal-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--neon);
}

.support-page .legal-kicker::before,
.terms-page .legal-kicker::before {
  background: var(--orange);
}

.legal-hero h1 {
  max-width: 860px;
  font-size: 76px;
  font-weight: 800;
  line-height: .99;
}

.legal-lead {
  max-width: 720px;
  color: var(--muted-light);
  font-size: 20px;
  line-height: 1.56;
}

.support-page .legal-lead,
.terms-page .legal-lead {
  color: #3f3c36;
}

.legal-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: .82;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 17px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--neon);
  color: var(--ink);
  font-weight: 800;
  transition: background-color 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out;
}

.legal-button:hover {
  background: var(--surface);
}

.legal-button.is-ghost {
  border-color: #514c46;
  background: transparent;
  color: currentColor;
}

.support-page .legal-button.is-ghost,
.terms-page .legal-button.is-ghost {
  border-color: var(--ink);
}

.legal-button.is-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.legal-hero-art {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
}

.legal-hero-art::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 72%;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: var(--neon);
  box-shadow: 14px 14px 0 var(--orange);
  transform: rotate(3deg);
  opacity: .94;
}

.support-page .legal-hero-art::before {
  background: var(--surface);
  box-shadow: 14px 14px 0 var(--ink);
}

.terms-page .legal-hero-art::before {
  background: var(--orange-soft);
  box-shadow: 14px 14px 0 var(--ink);
}

.status-page .legal-hero-art::before {
  border-color: #4a6425;
  background: #121a0b;
  box-shadow: 14px 14px 0 var(--orange);
}

.legal-hero-art img {
  position: relative;
  z-index: 1;
  width: min(82%, 390px);
  height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, .16));
  animation: legal-asset-float 5.4s ease-in-out infinite paused;
}

.legal-hero-art.is-in-view img {
  animation-play-state: running;
}

@keyframes legal-asset-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.legal-art-note {
  position: absolute;
  right: 0;
  bottom: 26px;
  z-index: 2;
  width: min(240px, 62%);
  display: grid;
  gap: 5px;
  padding: 15px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.legal-art-note span {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-art-note strong {
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.3;
}

.legal-art-note small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.signal-strip {
  border-bottom: 1px solid var(--ink);
  background: var(--neon);
}

.signal-list {
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signal-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px;
  font-weight: 800;
  text-align: center;
}

.signal-list span + span {
  border-left: 1px solid var(--ink);
}

.signal-list i {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--orange);
}

.support-context {
  border-bottom: 1px solid var(--ink);
  background: var(--surface);
}

.support-context[hidden] {
  display: none;
}

.support-context-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-block: 14px;
}

.support-context-inner > div {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.support-context-inner span,
.support-context-inner small {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.support-context-inner > div > span {
  padding: 6px 8px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--neon);
}

.support-context-inner strong {
  font-size: 18px;
}

.support-context-inner small {
  color: var(--muted);
}

.support-context-inner small b {
  color: var(--ink);
}

.support-context-inner > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.support-context-inner > a:hover {
  background: var(--ink);
  color: var(--surface);
}

.legal-section {
  padding: 100px 0;
}

.legal-section.is-light {
  background: var(--app);
}

.legal-section.is-paper {
  background: var(--paper);
}

.legal-section.is-dark {
  background: var(--hero);
  color: var(--surface);
}

.legal-section-head {
  max-width: 850px;
  display: grid;
  gap: 20px;
  margin-bottom: 46px;
}

.legal-section-head h2 {
  font-size: 52px;
  line-height: 1.05;
}

.legal-section-head > p:not(.section-kicker) {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
}

.is-dark .legal-section-head > p:not(.section-kicker) {
  color: var(--muted-light);
}

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

.fact-card {
  min-height: 245px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.fact-card:nth-child(2) {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface);
}

.fact-card:nth-child(3) {
  border-color: var(--ink);
  background: var(--neon);
  color: var(--ink);
}

.fact-card:nth-child(4) {
  border-color: var(--orange);
  background: var(--orange-soft);
}

.fact-index {
  color: var(--orange);
}

.fact-card:nth-child(2) .fact-index {
  color: var(--neon);
}

.fact-card h3 {
  font-size: 23px;
  line-height: 1.18;
}

.fact-card p {
  color: var(--muted);
}

.fact-card:nth-child(2) p {
  color: #c9c2b9;
}

.interactive-band {
  padding: 100px 0;
  border-block: 1px solid var(--ink);
  background: var(--neon);
}

.interactive-band.is-orange {
  background: #ff5b1a;
}

.interactive-band.is-dark {
  border-color: #34302c;
  background: var(--hero);
  color: var(--surface);
}

.interactive-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 70px;
  align-items: start;
}

.interactive-intro {
  display: grid;
  gap: 20px;
}

.interactive-intro h2 {
  font-size: 48px;
  line-height: 1.06;
}

.interactive-intro > p:not(.section-kicker) {
  max-width: 520px;
  color: #34352f;
  font-size: 18px;
}

.interactive-band.is-dark .interactive-intro > p:not(.section-kicker) {
  color: var(--muted-light);
}

.switcher {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
}

.interactive-band.is-dark .switcher {
  border-color: #4c4843;
  box-shadow: 12px 12px 0 var(--orange);
}

.switcher-tabs {
  display: grid;
  grid-template-columns: repeat(var(--tab-count, 4), minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
  background: #eae6e0;
}

.switcher-tabs button {
  min-height: 56px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease-out, color 180ms ease-out;
}

.switcher-tabs button + button {
  border-left: 1px solid var(--ink);
}

.switcher-tabs button:hover {
  background: var(--orange-soft);
}

.switcher-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: var(--neon);
}

.switcher-output {
  min-height: 354px;
  display: grid;
  align-items: stretch;
  transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
}

.switcher-output.is-fading {
  opacity: .18;
  transform: translateY(5px);
}

.switch-panel {
  min-height: 354px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .66fr);
  align-content: center;
  gap: 34px;
  padding: 34px;
}

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

.switch-panel-copy {
  display: grid;
  align-content: center;
  gap: 15px;
}

.panel-index {
  color: var(--orange);
}

.switch-panel h3 {
  max-width: 540px;
  font-size: 32px;
  line-height: 1.12;
}

.switch-panel p {
  max-width: 580px;
  color: var(--muted);
  font-size: 17px;
}

.switch-panel ul,
.switch-panel ol {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.switch-panel li {
  position: relative;
  padding: 0 0 12px 30px;
  border-bottom: 1px solid var(--border);
  color: #3e3b36;
}

.switch-panel li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.document-band {
  position: relative;
  padding: 108px 0 120px;
  background: var(--app);
}

.document-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 79px, rgba(17, 17, 17, .035) 79px 80px);
}

.document-layout {
  position: relative;
  display: grid;
  grid-template-columns: 230px minmax(0, 800px);
  justify-content: space-between;
  gap: 80px;
}

.document-toc {
  position: sticky;
  top: 98px;
  align-self: start;
  display: grid;
  gap: 18px;
}

.document-toc > span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.document-toc nav {
  display: grid;
  border-top: 1px solid var(--ink);
}

.document-toc a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  padding: 11px 4px;
  border-bottom: 1px solid var(--border-strong);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  transition: color 180ms ease-out, padding-left 180ms ease-out;
}

.document-toc a span {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 9px;
}

.document-toc a:hover,
.document-toc a[aria-current="location"] {
  padding-left: 10px;
  color: var(--ink);
  font-weight: 700;
}

.document-content {
  min-width: 0;
}

.document-intro {
  display: grid;
  gap: 22px;
  padding-bottom: 42px;
}

.document-intro h2 {
  font-size: 52px;
  line-height: 1.05;
}

.document-intro p {
  color: var(--muted);
  font-size: 18px;
}

.doc-section {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 42px 0;
  border-top: 1px solid var(--ink);
  scroll-margin-top: 104px;
}

.doc-index {
  padding-top: 5px;
  color: var(--orange);
}

.doc-copy {
  display: grid;
  gap: 17px;
}

.doc-copy h3 {
  font-size: 28px;
  line-height: 1.15;
}

.doc-copy p,
.doc-copy li {
  color: #4d4943;
}

.doc-copy ul,
.doc-copy ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.doc-copy strong {
  color: var(--ink);
}

.doc-callout {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-block: 1px solid var(--border-strong);
}

.doc-callout i {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 0 1px var(--ink);
}

.doc-callout.is-warning i {
  background: var(--orange);
}

.reference-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
  padding: 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--neon);
}

.reference-strip div {
  display: grid;
  gap: 4px;
}

.reference-strip p {
  color: #35372f;
  font-size: 14px;
}

.reference-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.reference-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--surface);
  font-size: 12px;
  font-weight: 800;
}

.reference-links a:hover {
  background: var(--ink);
  color: var(--surface);
}

.support-safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.support-list {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.support-list.is-alert {
  background: var(--orange-soft);
}

.support-list h3 {
  font-size: 26px;
}

.support-list ul {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.support-list li {
  position: relative;
  padding: 0 0 12px 28px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.support-list li::before {
  content: "+";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  font-family: var(--font-mono);
  font-weight: 700;
}

.support-list.is-alert li::before {
  content: "-";
  color: var(--orange);
}

.faq-stack {
  display: grid;
  border-top: 1px solid var(--ink);
}

.faq-stack details {
  border-bottom: 1px solid var(--ink);
}

.faq-stack summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-stack summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 16px;
  transition: transform 180ms ease-out, background-color 180ms ease-out;
}

.faq-stack details[open] summary::after {
  background: var(--neon);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 52px 24px 4px;
  color: var(--muted);
}

.status-hero-chip {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid #4d6726;
  border-radius: 6px;
  background: #121a0b;
  color: var(--surface);
  font-size: 13px;
  font-weight: 800;
}

.status-dot {
  position: relative;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--neon);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  animation: status-ping 2.2s ease-out infinite;
}

@keyframes status-ping {
  0% { opacity: .65; transform: scale(1); }
  70%, 100% { opacity: 0; transform: scale(2.4); }
}

.status-hero-chip.is-error .status-dot {
  background: var(--orange);
}

.service-card.is-limited .service-state {
  border-color: var(--orange);
  background: var(--orange-soft);
  color: var(--ink);
}

.status-release {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-block: 1px solid #393631;
  color: var(--muted-light);
}

.status-release code {
  overflow-wrap: anywhere;
  color: var(--neon);
  font-family: var(--font-mono);
  font-size: 11px;
}

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

.service-card {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-card.is-live {
  border-color: var(--ink);
  background: var(--neon);
}

.service-card.is-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface);
}

.service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-head span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-state {
  padding: 6px 8px;
  border: 1px solid currentColor;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
}

.service-card h3 {
  font-size: 25px;
}

.service-card p {
  color: var(--muted);
}

.service-card.is-dark p {
  color: var(--muted-light);
}

.beta-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
}

.beta-map article {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.beta-map article + article {
  border-left: 1px solid var(--ink);
}

.beta-map span {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
}

.beta-map h3 {
  font-size: 21px;
}

.beta-map p {
  color: var(--muted);
  font-size: 14px;
}

.legal-cta {
  position: relative;
  isolation: isolate;
  padding: 84px 0;
  border-block: 1px solid var(--ink);
  overflow: hidden;
  background: var(--orange-bright);
}

.legal-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 17, 17, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, .1) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .5;
}

.legal-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
}

.legal-cta-copy {
  display: grid;
  gap: 12px;
}

.legal-cta h2 {
  max-width: 760px;
  font-size: 46px;
  line-height: 1.05;
}

.legal-cta p {
  max-width: 700px;
  color: #361308;
  font-size: 17px;
}

.legal-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.legal-footer {
  overflow: hidden;
  padding-top: 62px;
  background: var(--hero);
  color: var(--surface);
}

.legal-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .8fr;
  gap: 50px;
  padding-bottom: 58px;
}

.legal-footer-brand {
  display: grid;
  gap: 14px;
}

.legal-footer-brand p,
.legal-footer-meta p {
  max-width: 430px;
  color: #aaa39a;
  font-size: 14px;
}

.legal-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  align-content: start;
}

.legal-footer-links a {
  width: max-content;
  max-width: 100%;
  border-bottom: 1px solid transparent;
  font-weight: 700;
}

.legal-footer-links a:hover {
  border-color: var(--neon);
  color: var(--neon);
}

.legal-footer-meta {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 12px;
  text-align: right;
}

.version-tag {
  padding: 7px 9px;
  border: 1px solid #465d25;
  border-radius: 5px;
  color: var(--neon);
}

.legal-footer-wordmark {
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid #2e2b28;
  color: var(--surface);
  user-select: none;
}

.legal-footer-wordmark span {
  display: block;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 270px;
  font-weight: 800;
  line-height: .7;
  transform: translateY(.08em);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease-out var(--reveal-delay, 0ms), transform 560ms ease-out var(--reveal-delay, 0ms);
}

@media (max-width: 1080px) {
  .legal-page-nav {
    justify-self: stretch;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .legal-page-nav::-webkit-scrollbar {
    display: none;
  }

  .legal-hero h1 {
    font-size: 64px;
  }

  .legal-hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 42px;
  }

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

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

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

  .beta-map article:nth-child(3) {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .beta-map article:nth-child(4) {
    border-top: 1px solid var(--ink);
  }
}

@media (max-width: 820px) {
  .legal-container {
    width: min(calc(100% - 32px), var(--container));
  }

  .legal-nav-shell {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .legal-page-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
  }

  .legal-page-nav a {
    flex: 1 0 auto;
  }

  .legal-home-link {
    justify-self: end;
  }

  .legal-hero {
    min-height: auto;
    padding: 64px 0 52px;
  }

  .legal-hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .legal-hero-art {
    min-height: 370px;
  }

  .legal-hero-art::before {
    width: min(420px, 78%);
  }

  .legal-hero-art img {
    width: min(360px, 72%);
    height: 330px;
  }

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

  .signal-list span {
    min-height: 58px;
  }

  .signal-list span:nth-child(3) {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .signal-list span:nth-child(4) {
    border-top: 1px solid var(--ink);
  }

  .interactive-layout,
  .document-layout,
  .legal-cta-inner {
    grid-template-columns: 1fr;
  }

  .interactive-layout {
    gap: 36px;
  }

  .document-layout {
    gap: 36px;
  }

  .document-toc {
    position: static;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .document-toc::-webkit-scrollbar {
    display: none;
  }

  .document-toc > span {
    display: none;
  }

  .document-toc nav {
    display: flex;
    width: max-content;
    border: 0;
    gap: 6px;
  }

  .document-toc a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 9px 11px;
    border: 1px solid var(--border-strong);
    border-radius: 5px;
    background: var(--surface);
    white-space: nowrap;
  }

  .document-toc a:hover,
  .document-toc a[aria-current="location"] {
    padding-left: 11px;
    border-color: var(--ink);
    background: var(--ink);
    color: var(--neon);
  }

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

  .legal-footer-meta {
    grid-column: 1 / -1;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 600px) {
  html {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  body {
    font-size: 15px;
  }

  .legal-container {
    width: min(calc(100% - 28px), var(--container));
  }

  .legal-header {
    padding: max(6px, env(safe-area-inset-top)) 0 6px;
  }

  .legal-nav-shell {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .legal-header .legal-brand {
    min-height: 42px;
  }

  .support-context-inner {
    min-height: 0;
    display: grid;
    gap: 14px;
    padding-block: 16px;
  }

  .support-context-inner > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .support-context-inner > div > span {
    width: max-content;
  }

  .support-context-inner > a {
    width: 100%;
    justify-content: space-between;
  }

  .legal-brand {
    font-size: 18px;
  }

  .legal-brand img {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .legal-home-link {
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    font-size: 0;
  }

  .legal-home-link .legal-icon {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }

  .legal-page-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    overflow: visible;
    padding: 3px;
  }

  .legal-page-nav a {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 6px 3px;
    font-size: 11px;
    line-height: 1.12;
    text-align: center;
    white-space: normal;
  }

  .legal-hero {
    padding: 46px 0 42px;
  }

  .legal-hero::before {
    background-size: 36px 36px;
  }

  .legal-hero-copy {
    gap: 19px;
  }

  .legal-hero h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .legal-lead {
    font-size: 17px;
  }

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

  .legal-button {
    width: 100%;
  }

  .legal-hero-art {
    min-height: 300px;
  }

  .legal-hero-art::before {
    width: 78%;
    height: 72%;
    box-shadow: 8px 8px 0 var(--orange);
  }

  .legal-hero-art img {
    width: 76%;
    height: 270px;
  }

  .legal-art-note {
    right: 4px;
    bottom: 8px;
    width: 58%;
    padding: 12px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .legal-art-note small {
    display: none;
  }

  .legal-section,
  .interactive-band {
    padding: 72px 0;
  }

  .legal-section-head {
    margin-bottom: 32px;
  }

  .legal-section-head h2,
  .document-intro h2 {
    font-size: 36px;
  }

  .legal-section-head > p:not(.section-kicker),
  .interactive-intro > p:not(.section-kicker),
  .document-intro p {
    font-size: 16px;
  }

  .fact-grid,
  .service-grid,
  .support-safety-grid,
  .beta-map {
    grid-template-columns: 1fr;
  }

  .fact-card,
  .service-card {
    min-height: 0;
  }

  .interactive-intro h2 {
    font-size: 36px;
  }

  .switcher {
    box-shadow: 7px 7px 0 var(--ink);
  }

  .switcher-tabs {
    display: grid;
    grid-template-columns: repeat(var(--tab-count, 4), minmax(0, 1fr));
    gap: 1px;
    overflow: visible;
    background: var(--ink);
  }

  .switcher-tabs button {
    min-width: 0;
    min-height: 48px;
    padding: 7px 3px;
    background: #eae6e0;
    font-size: 10px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .switcher-tabs button + button {
    border-left: 0;
  }

  .switch-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 24px;
  }

  .switch-panel h3 {
    font-size: 27px;
  }

  .switch-panel p {
    font-size: 15px;
  }

  .document-band {
    padding: 76px 0 90px;
  }

  .document-toc {
    overflow: visible;
    padding-bottom: 0;
  }

  .document-toc > span {
    display: block;
  }

  .document-toc nav {
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .document-toc a {
    min-width: 0;
    min-height: 48px;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    padding: 8px;
    white-space: normal;
    font-size: 11px;
  }

  .document-toc a:hover,
  .document-toc a[aria-current="location"] {
    padding-left: 8px;
  }

  .doc-section {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 34px 0;
  }

  .doc-copy h3 {
    font-size: 24px;
  }

  .reference-strip {
    grid-template-columns: 1fr;
  }

  .reference-links {
    justify-content: flex-start;
  }

  .legal-cta {
    padding: 56px 0 60px;
  }

  .legal-cta-inner {
    gap: 28px;
  }

  .legal-cta-actions {
    width: 100%;
    display: grid;
  }

  .legal-cta-actions .legal-button {
    width: 100%;
  }

  .legal-cta h2 {
    font-size: 34px;
    line-height: 1.06;
  }

  .legal-cta p {
    font-size: 15px;
  }

  .legal-footer-links {
    gap: 4px 18px;
  }

  .legal-footer-links a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  .beta-map article,
  .beta-map article:nth-child(2),
  .beta-map article:nth-child(3),
  .beta-map article:nth-child(4) {
    min-height: 0;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .beta-map article:first-child {
    border-top: 0;
  }

  .legal-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .legal-footer-meta {
    grid-column: auto;
  }

  .legal-footer-wordmark {
    height: 118px;
  }

  .legal-footer-wordmark span {
    font-size: 42vw;
  }
}

@media (max-width: 380px) {
  .legal-hero h1 {
    font-size: 40px;
  }

  .legal-hero-art {
    min-height: 270px;
  }

  .legal-hero-art img {
    height: 240px;
  }
}

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

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

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