:root {
  color-scheme: light;
  --paper: #fbfaf5;
  --paper-2: #f2efe6;
  --ink: #10212b;
  --muted: #5b6470;
  --line: #d8d3c5;
  --panel: #ffffff;
  --coral: #ef476f;
  --mint: #06d6a0;
  --cyan: #118ab2;
  --sun: #ffd166;
  --violet: #6f4bd8;
  --green: #2f855a;
  --shadow: 0 22px 60px rgba(16, 33, 43, 0.14);
  --radius: 8px;
  --shell: 1180px;
  --scrollbar-track: #ece7dc;
  --scrollbar-thumb: #263844;
  --hc-spectrum: linear-gradient(90deg, #4169e1, var(--mint), var(--sun), var(--coral), #8b5cf6, #4169e1);
}

* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open,
body.privacy-controls-open {
  overflow: hidden;
}

img,
svg,
canvas {
  max-width: 100%;
}

picture {
  display: block;
}

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

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

button,
select {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

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

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

.color-aurora {
  position: relative;
  isolation: isolate;
}

.color-aurora::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: var(--aurora-inset, -18% -8% auto -8%);
  height: var(--aurora-height, 22rem);
  background:
    radial-gradient(circle at 18% 30%, rgba(65, 105, 225, 0.18), transparent 34%),
    radial-gradient(circle at 68% 22%, rgba(6, 214, 160, 0.16), transparent 32%),
    radial-gradient(circle at 46% 78%, rgba(255, 209, 102, 0.13), transparent 34%),
    radial-gradient(circle at 82% 70%, rgba(239, 71, 111, 0.11), transparent 30%);
  filter: blur(var(--aurora-blur, 28px));
  opacity: var(--aurora-opacity, 0.78);
  pointer-events: none;
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  border-block-end: 1px solid rgba(16, 33, 43, 0.12);
  background: rgba(251, 250, 245, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

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

.brand-lockup {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-lockup img {
  display: block;
  width: 176px;
  height: auto;
}

.nav-actions {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.site-search-trigger,
.nav-toggle,
.nav-menu a,
.button,
.small-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 33, 43, 0.18);
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.site-search-trigger {
  width: min(180px, 100%);
  min-height: 40px;
  justify-self: center;
  gap: 8px;
  padding: 0 10px;
  background: #fff;
  color: #263844;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(16, 33, 43, 0.06);
}

.site-search-trigger-icon {
  position: relative;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.site-search-trigger-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -3px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.site-search-trigger kbd {
  min-width: 24px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border: 1px solid rgba(16, 33, 43, 0.16);
  border-radius: 6px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: #fff;
  color: var(--ink);
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.nav-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
}

.nav-menu a {
  position: relative;
  min-height: 40px;
  flex: 0 0 auto;
  border-color: transparent;
  padding: 0 12px;
  color: #263844;
  font-weight: 700;
  white-space: nowrap;
}

.nav-menu a.nav-cta {
  background: var(--ink);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-block-end: 1px solid rgba(16, 33, 43, 0.12);
  background: #f8f5ed;
}

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

.hero::before {
  z-index: 1;
  background-image: linear-gradient(90deg, rgba(251, 250, 245, 0.99) 0%, rgba(251, 250, 245, 0.84) 39%, rgba(251, 250, 245, 0.3) 70%, rgba(251, 250, 245, 0.08) 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(251, 250, 245, 0.06), rgba(251, 250, 245, 0.3)),
    radial-gradient(circle at 18% 44%, rgba(255, 255, 255, 0.56), transparent 34%);
}

.home-hero-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home-hero-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-content {
  --aurora-inset: 2% 12% auto 20%;
  --aurora-height: 30rem;
  --aurora-blur: 40px;
  --aurora-opacity: 0.42;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.7fr);
  gap: 46px;
  align-items: center;
  padding-block: 72px 54px;
}

.hero-text {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #364a54;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 5.8rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
}

.hero-copy {
  max-width: 720px;
  margin: 18px 0 0;
  color: #2f414b;
  font-size: 1.12rem;
}

.launch-note {
  max-width: 720px;
  margin: 16px 0 0;
  padding: 12px 14px;
  border-inline-start: 4px solid var(--cyan);
  background: rgba(255, 255, 255, 0.78);
  color: #33414b;
  font-weight: 700;
}

.signature-palette {
  max-width: 740px;
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-block-start: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(16, 33, 43, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

.signature-palette span {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2px;
  padding: 10px;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.signature-palette strong,
.signature-palette em {
  position: relative;
  z-index: 1;
  overflow-wrap: anywhere;
  line-height: 1.12;
  text-shadow: 0 1px 10px rgba(16, 33, 43, 0.22);
}

.signature-palette strong {
  font-size: 0.78rem;
  font-weight: 900;
}

.signature-palette em {
  font-size: 0.68rem;
  font-style: normal;
  opacity: 0.82;
}

.palette-primary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02)), rgba(65, 105, 225, 0.76);
}

.palette-accent {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.03)), rgba(6, 214, 160, 0.62);
  color: #08251f !important;
}

.palette-surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.18)), rgba(251, 250, 245, 0.58);
  color: var(--ink) !important;
}

.palette-text {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.01)), rgba(16, 33, 43, 0.82);
}

.palette-warning {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.04)), rgba(255, 209, 102, 0.66);
  color: #2b2100 !important;
}

.palette-danger {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02)), rgba(239, 71, 111, 0.76);
}

.hero-actions {
  margin-block-start: 28px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button,
.small-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(16, 33, 43, 0.18);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-decoration: none;
}

.small-button {
  min-height: 44px;
  padding: 0 10px;
  font-size: 0.74rem;
  font-weight: 900;
}

.button-primary {
  border: 2px solid transparent;
  background: linear-gradient(var(--ink), var(--ink)) padding-box, linear-gradient(90deg, var(--coral), var(--sun), var(--mint), var(--cyan)) border-box;
  color: #fff;
}

.button-secondary {
  background: #fff;
  color: var(--ink);
}

.hero-facts {
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 36px 0 0;
}

.hero-facts div {
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.24));
  box-shadow: 0 16px 38px rgba(16, 33, 43, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px) saturate(1.28);
  -webkit-backdrop-filter: blur(18px) saturate(1.28);
}

.hero-facts dt {
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 900;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.hero-system-card {
  --aurora-inset: -28% -18% auto -18%;
  --aurora-height: 19rem;
  --aurora-blur: 24px;
  --aurora-opacity: 0.82;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 86% 8%, rgba(6, 214, 160, 0.16), transparent 30%);
  box-shadow: 0 24px 58px rgba(16, 33, 43, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px) saturate(1.32);
  -webkit-backdrop-filter: blur(22px) saturate(1.32);
}

.system-card-top,
.system-seed-row,
.system-metrics {
  display: flex;
  gap: 14px;
}

.system-card-top {
  align-items: flex-start;
  justify-content: space-between;
}

.system-card-top h2 {
  margin: 2px 0 0;
  font-size: 1.55rem;
  line-height: 1.1;
}

.panel-kicker {
  margin: 0;
  color: #61707a;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.system-status {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  background: rgba(237, 247, 250, 0.68);
  color: #0c5f78;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.system-seed-row {
  align-items: center;
  margin-block-start: 18px;
}

.system-seed {
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent), rgba(65, 105, 225, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42), 0 14px 32px rgba(65, 105, 225, 0.24);
}

.system-seed-row span,
.system-metrics span {
  display: block;
  color: #61707a;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.system-seed-row strong,
.system-metrics strong {
  display: block;
  margin-block-start: 3px;
  font-size: 1.16rem;
}

.system-seed-row em,
.system-metrics em {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
}

.system-palette-strip {
  height: 58px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-block-start: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
}

.system-palette-strip span:nth-child(1) { background: rgba(65, 105, 225, 0.76); }
.system-palette-strip span:nth-child(2) { background: rgba(6, 214, 160, 0.66); }
.system-palette-strip span:nth-child(3) { background: rgba(251, 250, 245, 0.62); }
.system-palette-strip span:nth-child(4) { background: rgba(16, 33, 43, 0.84); }
.system-palette-strip span:nth-child(5) { background: rgba(255, 209, 102, 0.68); }
.system-palette-strip span:nth-child(6) { background: rgba(239, 71, 111, 0.76); }

.role-chip-row,
.system-metrics {
  margin-block-start: 14px;
}

.role-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.role-chip-row span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 900;
}

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

.system-metrics div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.code-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 33, 43, 0.1);
}

.code-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 999px;
  background: var(--hc-spectrum);
  opacity: 0.64;
  pointer-events: none;
}

.source-code-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-block: 0 10px;
}

.source-code-action {
  min-height: 44px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.source-code-block-standalone .source-code-action {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  color: #f7fbfd;
}

.source-code-block-standalone {
  margin: 14px 0 0;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(7, 16, 22, 0.9);
  color: #eaf7fa;
}

.source-code-block-standalone pre {
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  background: transparent;
  color: inherit;
  font-size: 0.9rem;
  line-height: 1.5;
}

.source-code-block-standalone code {
  display: block;
  min-width: max-content;
  white-space: pre;
}

.privacy-banner {
  position: fixed;
  inset-inline: 20px;
  inset-block-end: 20px;
  z-index: 260;
  width: min(760px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 33, 43, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 24px 64px rgba(16, 33, 43, 0.18);
}

.privacy-banner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--hc-spectrum);
}

.privacy-kicker {
  margin: 0 0 6px;
  color: #0c5f78;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.privacy-banner h2 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.22;
}

.privacy-banner p:not(.privacy-kicker) {
  margin: 8px 0 0;
  color: #40515c;
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.45;
}

.privacy-banner-actions {
  min-width: 300px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

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

.hp-field input {
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  border: 0;
}

.workspace-flow,
.workspace-launch-list,
.footer-links {
  display: grid;
  gap: 8px;
}

.workspace-flow a,
.workspace-launch-list a,
.machine-library .fact-list h3 a,
.footer-links a,
.footer-links button,
.footer-credit a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  text-decoration: none;
}

.workspace-flow a {
  padding-block: 12px;
}

.workspace-launch-list a,
.footer-links a,
.footer-links button {
  justify-content: center;
}

.footer-links-site a,
.footer-links-site button {
  width: 100%;
}

.footer-logo {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.icon-button {
  min-width: 48px;
  min-height: 48px;
}

.input-row input,
.name-row input,
.waitlist-row input,
select {
  min-height: 48px;
}

.consent-row {
  min-height: 48px;
}

.consent-row input {
  width: 24px;
  height: 24px;
}

.consent-row a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

@supports (content-visibility: auto) {
  .home .color-tools,
  .home .platform,
  .home .layout-preview,
  .home .machine-library,
  .home .next-tools,
  .home .faq {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }
}

@media (max-width: 960px) {
  .nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
    margin-inline-start: auto;
  }

  .site-search-trigger {
    width: 48px;
    min-width: 48px;
    min-height: 48px;
    justify-content: center;
    padding: 0;
  }

  .site-search-trigger-label,
  .site-search-trigger kbd {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    width: 48px;
    min-width: 48px;
    height: 48px;
  }

  .button,
  .small-button,
  .source-code-action {
    min-height: 48px;
  }

  .small-button,
  .source-code-action {
    min-width: 48px;
  }

  .nav-menu {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(16, 33, 43, 0.14);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 22px 60px rgba(16, 33, 43, 0.16);
  }

  body.nav-open .nav-menu {
    display: flex;
  }

  .nav-menu a {
    justify-content: center;
  }

  .hero {
    min-height: 76svh;
  }

  .hero::before {
    background-image: linear-gradient(90deg, rgba(251, 250, 245, 0.99) 0%, rgba(251, 250, 245, 0.93) 50%, rgba(251, 250, 245, 0.58) 100%);
    background-position: center;
  }

  .home-hero-picture {
    bottom: auto;
    height: min(76svh, 680px);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-system-card {
    max-width: 720px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.55rem;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .brand-lockup img {
    width: 148px;
  }

  .home-hero-picture {
    display: none;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(251, 250, 245, 0.08), rgba(251, 250, 245, 0.72)),
      radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.72), transparent 42%);
  }

  .hero::before {
    background-image: linear-gradient(180deg, rgba(251, 250, 245, 0.74) 0%, rgba(251, 250, 245, 0.86) 38%, rgba(251, 250, 245, 0.96) 72%, rgba(251, 250, 245, 1) 100%);
    background-position: center;
    background-size: cover;
  }

  .hero-content {
    padding-block: 52px 38px;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-subtitle {
    font-size: 1.28rem;
  }

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

  .signature-palette,
  .system-metrics {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-block-start: 24px;
  }

  .hero-facts div {
    min-height: 68px;
    padding: 10px;
  }

  .hero-facts dt {
    font-size: 1.25rem;
  }

  .hero-facts dd {
    font-size: 0.74rem;
    line-height: 1.2;
  }

  .hero-system-card {
    padding: 14px;
  }

  .system-card-top,
  .system-seed-row {
    display: grid;
  }

  .privacy-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
    inset-inline: 14px;
    inset-block-end: 14px;
    width: calc(100% - 28px);
    max-height: calc(100svh - 28px);
    overflow-y: auto;
  }

  .privacy-banner-actions {
    min-width: 0;
  }

  .privacy-banner-actions .small-button {
    width: 100%;
  }
}
