/* SeldomSolemn HQ — lab record, not a template. */
:root {
  --bg: #141310;
  --raise: #1b1916;
  --line: rgba(232, 222, 200, 0.1);
  --line-strong: rgba(232, 222, 200, 0.18);
  --ink: #f1eadb;
  --muted: #b0aa9e;
  --soft: #d0c8b9;
  --accent: #e6d6b5;
  --accent-dim: rgba(230, 214, 181, 0.12);
  --ok: #b1c5a4;
  --warn: #dec28a;
  --fail: #e4a297;
  --sans: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --pad: clamp(1.1rem, 4vw, 2.2rem);
  --max: 40rem;
  --wide: 72rem;
  --header-h: 4.5rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html, body { max-width: 100%; overflow-x: clip; }
body {
  margin: 0;
  min-height: 100dvh;
  background:
    linear-gradient(180deg, rgba(230, 214, 181, 0.04), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

a { color: var(--accent); text-underline-offset: 0.16em; }
a:hover { color: #fff7e6; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.skip {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  z-index: 40;
  padding: 0.5rem 0.85rem;
  background: var(--raise);
  color: var(--ink);
}
.skip:focus { left: var(--pad); }

.wrap,
.narrow {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--pad);
}
.wrap { max-width: calc(var(--wide) + 2 * var(--pad)); }
.narrow { max-width: calc(var(--max) + 2 * var(--pad)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  min-height: var(--header-h);
  flex-wrap: wrap;
}
.brand {
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { color: var(--accent); }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--mono);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.7rem;
  color: var(--muted);
  text-decoration: none;
}
.nav-links a:hover { color: var(--ink); }

.hero {
  padding: clamp(2.6rem, 8vw, 4.8rem) 0 clamp(2.2rem, 5vw, 3.4rem);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  gap: 2rem 3rem;
}
@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(14rem, 0.7fr);
    align-items: end;
  }
}
.kicker {
  margin: 0 0 0.85rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.display {
  margin: 0 0 1.15rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.85rem, 6.4vw, 4.1rem);
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
  color: var(--ink);
}
.lede {
  margin: 0;
  max-width: min(36rem, 100%);
  color: var(--soft);
  font-size: clamp(1.02rem, 2vw, 1.14rem);
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-strong);
  background: var(--raise);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
.btn:hover { border-color: var(--accent); color: var(--ink); }
.btn-primary {
  background: var(--accent-dim);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}

section {
  padding: clamp(2.4rem, 6vw, 3.8rem) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}
.sec-head { margin-bottom: 1.35rem; }
.sec-head h2 {
  margin: 0;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
  letter-spacing: -0.03em;
}
.sec-head .kicker { margin-bottom: 0.3rem; }
.section-intro {
  margin: 0.4rem 0 0;
  color: var(--muted);
  max-width: min(36rem, 100%);
}

.now-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.now-list li {
  display: grid;
  gap: 0.25rem 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .now-list li { grid-template-columns: 11rem 1fr; align-items: baseline; }
}
.now-list strong {
  font-family: var(--mono);
  font-size: 0.86rem;
  font-weight: 500;
}
.now-list span { color: var(--muted); }

.cards {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 800px) {
  .cards { grid-template-columns: 1fr 1fr; }
}
.card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.2rem 1.2rem 1.25rem;
  background: var(--raise);
  color: inherit;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.card p { margin: 0; color: var(--muted); flex: 1; }
.card .more {
  font-family: var(--mono);
  font-size: 0.875rem;
  color: var(--accent);
  text-decoration: none;
}
.card .more:hover { color: #fff7e6; }

.badge {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.22rem 0.45rem;
  border: 1px solid var(--line);
  color: var(--muted);
}
.badge-lab { color: var(--warn); border-color: color-mix(in srgb, var(--warn) 40%, var(--line)); }
.badge-failed { color: var(--fail); border-color: color-mix(in srgb, var(--fail) 40%, var(--line)); }
.badge-shelved { color: var(--muted); }
.badge-public { color: var(--ok); border-color: color-mix(in srgb, var(--ok) 40%, var(--line)); }

.records { border-top: 1px solid var(--line); }
.record {
  display: grid;
  gap: 0.4rem 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.record h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 500;
}
.record .label {
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.record p { margin: 0; color: var(--soft); }
@media (min-width: 760px) {
  .record {
    grid-template-columns: 1.05fr 1fr 1.45fr;
    align-items: start;
  }
}

.board-wrap {
  margin-top: 1.4rem;
  overflow-x: auto;
  border: 1px solid var(--line);
}
.board {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 0.875rem;
}
.board caption {
  text-align: left;
  padding: 0.75rem 1rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  caption-side: top;
  border-bottom: 1px solid var(--line);
}
.board th, .board td {
  text-align: left;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.board th {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.board tr:last-child td { border-bottom: 0; }
.board .num { text-align: right; font-variant-numeric: tabular-nums; }
.board .win { color: var(--ok); }
.board .loss { color: var(--fail); }
.board .mute { color: var(--muted); }


.write-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.write-list a,
.write-list .idle {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}
.write-list a:hover { color: var(--accent); }
.write-list .meta {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.write-list strong { font-weight: 500; font-size: 1.08rem; }
.write-list .dek { color: var(--muted); font-size: 0.92rem; }

.prose { max-width: var(--max); color: var(--soft); }
.prose p { margin: 0 0 1rem; }
.prose p:last-child { margin-bottom: 0; }
.letter { padding-left: 1rem; border-left: 1px solid var(--line-strong); }
.article-head { margin-bottom: 1.6rem; }
.article-head h1 {
  margin: 0 0 0.55rem;
  font-weight: 500;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  letter-spacing: -0.035em;
  color: var(--ink);
}
.article-meta {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.875rem;
}

.page-hero {
  padding: clamp(2.2rem, 6vw, 3.4rem) 0 3rem;
  border-bottom: 0;
}
.back {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--accent);
  text-decoration: none;
}
.back:hover { color: #fff7e6; }

.site-footer {
  padding: 2rem 0 2.6rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.875rem;
}
.site-footer .row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  justify-content: space-between;
  align-items: center;
}
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.note {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.display-sm {
  font-size: clamp(1.8rem, 6vw, 3rem);
  white-space: normal;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-block: 0.4rem 0.15rem;
  }
  .nav-links { width: 100%; }
  .nav-links a { padding: 0 0.75rem 0 0; }
  .display { font-size: clamp(1.55rem, 8.2vw, 2.4rem); }
}

.arena-preview { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.arena-preview caption { text-align: left; color: var(--ink); font-weight: 500; padding-bottom: 0.75rem; }
.arena-preview caption span { display: block; margin-top: 0.2rem; color: var(--muted); font-weight: 400; }
.arena-preview th, .arena-preview td { padding: 0.6rem 0; border-bottom: 1px solid var(--line); text-align: left; font-weight: 400; }
.arena-preview thead th { color: var(--muted); }
.arena-preview td, .arena-preview thead th:last-child { text-align: right; padding-left: 0.75rem; }
.arena-preview td { font-family: var(--mono); font-variant-numeric: tabular-nums; white-space: nowrap; }
.arena-preview .preview-positive { color: var(--ok); }
.preview-context { color: var(--muted); font-size: 0.8125rem; line-height: 1.5; }
.update-date { display: block; margin-bottom: 0.5rem; color: var(--muted); font-family: var(--mono); font-size: 0.875rem; line-height: 1.5; }
.product-preview { display: block; border: 1px solid var(--line-strong); border-radius: 4px; overflow: hidden; }
.product-preview img, .product-screenshot img { display: block; width: 100%; height: auto; }
.product-screenshot { margin: 0 0 2rem; }
.product-screenshot > a { display: block; border: 1px solid var(--line-strong); border-radius: 6px; overflow: hidden; }
.product-screenshot figcaption { margin-top: 0.75rem; color: var(--muted); font-size: 0.875rem; line-height: 1.6; }
.prose h2 { color: var(--ink); font-size: 1.4rem; font-weight: 500; margin: 2rem 0 0.75rem; }

/* Motion surfaces retain readable static content when JS/WebGL is unavailable. */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.hero { position: relative; isolation: isolate; overflow: hidden; }
.connection-map { padding: 1.2rem; border: 1px solid var(--line); border-radius: 5px; background: var(--bg); }
.connection-host { font-weight: 500; font-size: .95rem; }
.connection-host > span { display: block; color: var(--muted); font-size: .8125rem; font-weight: 400; }
.connection-nodes { position: relative; list-style: none; margin: 1rem 0 0 .45rem; padding: 0 0 0 1.4rem; border-left: 1px solid var(--line-strong); }
.connection-nodes li { position: relative; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .2rem .7rem; padding: .45rem 0; font-size: .875rem; }
.connection-nodes li::before { content: ""; position: absolute; top: 1.1rem; left: -1.4rem; width: 1rem; border-top: 1px dashed var(--line-strong); }
.connection-nodes strong { font-weight: 400; }
.connection-nodes span { color: var(--muted); font-size: .8125rem; }
.connection-nodes .connection-live::before { border-top: 1px solid var(--ok); }
.connection-nodes .connection-live span { color: var(--ok); }
.arena-replay { min-width: 0; padding-bottom: .8rem; border-bottom: 1px solid var(--line); }
.arena-replay h2 { font-size: 1rem; font-weight: 500; margin: 0 0 .25rem; }
.replay-chart { position: relative; margin: .6rem 0; aspect-ratio: 620 / 210; }
.replay-static, .replay-canvas { width: 100%; height: 100%; display: block; }
.replay-canvas { position: absolute; inset: 0; visibility: hidden; }
.webgl-ready .replay-canvas { visibility: visible; }
.webgl-ready .replay-static path { visibility: hidden; }
.replay-controls:not([hidden]) { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; margin: .75rem 0; }
.replay-controls .btn { padding: .4rem .65rem; font-size: .8125rem; min-width: 5rem; }
.replay-controls input { min-width: 5rem; flex: 1; accent-color: var(--accent); min-height: 44px; cursor: pointer; }
.replay-controls output { font-size: .8125rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.replay-values { width: 100%; border-collapse: collapse; font-size: .8125rem; }
.replay-values th, .replay-values td { padding: .45rem 0; text-align: left; font-weight: 400; }
.replay-values thead th { color: var(--muted); }
.replay-values th:first-child { width: 55%; }
.replay-values td, .replay-values th:not(:first-child) { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; padding-left: .5rem; }
.series-dot { display: inline-block; width: .5rem; height: .5rem; border-radius: 50%; background: var(--series); margin-right: .45rem; }
.replay-note { font-size: .8125rem; line-height: 1.6; margin-top: .6rem; }
@media (prefers-reduced-motion: no-preference) {
  .reveal-connections .connection-nodes li { animation: connect-in 900ms ease both; }
  .reveal-connections .connection-nodes li:nth-child(2) { animation-delay: 150ms; }
  .reveal-connections .connection-nodes li:nth-child(3) { animation-delay: 300ms; }
  .reveal-connections .connection-nodes li:nth-child(4) { animation-delay: 450ms; }
  @keyframes connect-in { from { opacity: .35; transform: translateX(-4px); } to { opacity: 1; transform: translateX(0); } }
}
@media (max-width: 480px) { .replay-controls output { width: 100%; } .replay-values { font-size: .75rem; } }

/* Warm graphite and ivory, drawn from the SeldomSolemn X avatar. */
body { background: var(--bg); }
.brand { letter-spacing: -0.04em; font-size: 1rem; }
.nav-links { text-transform: none; letter-spacing: 0; }
.hero { padding-block: clamp(3rem, 7vw, 6rem); background: linear-gradient(110deg, #1e1b16, var(--bg) 70%); }
.hero-grid { align-items: center; }
.display { font-size: clamp(2rem, 5.2vw, 4rem); letter-spacing: -0.065em; line-height: 1.12; white-space: normal; }
.lede { max-width: 35rem; line-height: 1.75; }
.kicker { letter-spacing: 0.13em; }
.hero-actions { margin-top: 2rem; gap: 0.75rem; }
.btn { min-height: 46px; border-radius: 4px; letter-spacing: 0; }
.btn-primary { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.btn-primary:hover { color: var(--bg); background: #f4e8cd; }
.status-panel { min-width: 0; padding: 1.5rem; background: var(--raise); border: 1px solid var(--line-strong); border-radius: 6px; }
.panel-title { margin: 0 0 1.2rem; font-size: 1rem; font-weight: 500; }
.status-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.status-table th, .status-table td { padding: 1rem 0; text-align: left; border-bottom: 1px solid var(--line); }
.status-table thead th { padding-top: 0; color: var(--muted); font-size: 0.75rem; font-family: var(--mono); font-weight: 400; }
.status-table th { font-weight: 400; }
.status-table td, .status-table thead th:last-child { text-align: right; }
.status-table a { color: var(--ink); text-decoration: none; display: inline-block; padding-block: 0.35rem; }
.status-table a:hover { text-decoration: underline; }
.status-table .badge { white-space: nowrap; letter-spacing: 0; text-transform: none; }
.panel-link { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.2rem; font-size: 0.875rem; color: var(--muted); text-decoration: none; }
section:not(.hero) { padding-block: clamp(2.5rem, 5vw, 4rem); }
.sec-head { margin-bottom: 1.8rem; }
.sec-head h2 { font-size: clamp(1.6rem, 3vw, 2rem); }
.section-intro { max-width: 44rem; }
.now-list li { padding-block: 1.25rem; }
.now-list strong { font-size: 0.95rem; }
.cards { gap: 1.2rem; border: 0; background: transparent; }
.card { gap: 1.1rem; padding: 1.7rem; border: 1px solid var(--line-strong); border-radius: 6px; }
.card:hover { border-color: #766953; }
.card h3 { font-size: 1.4rem; }
.card p { line-height: 1.7; }
.card .more { border-top: 1px solid var(--line); padding-top: 1rem; min-height: 44px; }
.badge { border-radius: 3px; letter-spacing: 0.05em; }
.record { padding-block: 1.5rem; gap: 1rem 2rem; }
.record .label { margin-bottom: 0.45rem; }
.board-wrap { border-radius: 6px; background: var(--raise); }
.board caption { padding: 1.3rem; font-family: var(--sans); font-size: 1rem; background: var(--raise); }
.board caption strong { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1rem; color: var(--ink); font-weight: 500; }
.caption-tag { font: 0.75rem var(--mono); color: var(--muted); border: 1px solid var(--line-strong); padding: 0.25rem 0.45rem; border-radius: 3px; }
.table-context { display: block; margin-top: 0.65rem; font-size: 0.875rem; line-height: 1.7; letter-spacing: 0; }
.board th, .board td { padding: 1rem 1.3rem; }
.board thead { background: #211e19; }
.board thead th { text-transform: none; letter-spacing: 0; font-size: 0.875rem; }
.board tbody th { font-family: var(--sans); font-size: 0.95rem; text-transform: none; letter-spacing: 0; color: var(--ink); }
.board tbody tr:first-child { background: rgba(177,197,164,0.045); }
.board tbody tr:last-child > * { border-bottom: 0; }
.note { font-size: 0.875rem; line-height: 1.7; max-width: 64rem; }
.write-list .idle { padding: 1.8rem; background: var(--raise); border: 1px dashed var(--line-strong); border-radius: 6px; gap: 0.5rem; }
.write-list { border-top: 0; }
.write-list strong { font-size: 1.2rem; }
#path { background: #181612; }
#path .narrow { max-width: calc(var(--wide) + 2 * var(--pad)); }
.letter { border-color: var(--accent); padding-left: 1.5rem; line-height: 1.85; }
.page-hero { padding-block: 4rem; min-height: 70vh; }
.article-head { padding-bottom: 1.8rem; border-bottom: 1px solid var(--line); }
.article-head h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.15; }
.prose { font-size: 1.0625rem; line-height: 1.8; }
.site-footer { font-size: 0.875rem; }
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: minmax(0, 1.45fr) minmax(21rem, 1fr); gap: 4rem; }
}
@media (min-width: 880px) and (max-width: 999px) {
  .hero-grid { grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 1fr); gap: 2rem; }
}
@media (max-width: 720px) {
  :root { --header-h: 7rem; }
  .nav { padding-top: 0.8rem; }
  .nav-links { column-gap: 0.3rem; }
  .nav-links a { font-size: 0.875rem; }
  .display { font-size: clamp(1.8rem, 8vw, 3.5rem); }
  .status-panel { padding: 1.1rem; }
  .card { padding: 1.3rem; }
  .card-top { flex-wrap: wrap; }
  .board caption { text-align: left; }
}
@media (prefers-reduced-motion: no-preference) {
  a, .card { transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease; }
}

.arena-detail .arena-replay { max-width: 48rem; margin: 3rem 0; padding: 1.5rem; border: 1px solid var(--line-strong); border-radius: 6px; background: var(--raise); }
.arena-detail .arena-replay h2 { font-size: 1.4rem; }

/* Product-led surfaces: a softly lit charcoal backdrop below a quiet introduction. */
body { background: radial-gradient(ellipse 75% 34rem at 0% 48rem, #33312c 0%, transparent 72%), radial-gradient(ellipse 60% 38rem at 100% 85rem, #242529 0%, transparent 75%), #141310; }
main { position: relative; isolation: isolate; }
.ambient-grain { position: fixed; inset: 0; width: 100%; height: 100vh; pointer-events: none; z-index: -1; opacity: 0; }
.grain-active .ambient-grain { opacity: 1; }
main.grain-active::before { opacity: 0; }
@media (prefers-reduced-motion: reduce) { .ambient-grain { display: none; } main.grain-active::before { opacity: .16; } }
main::before { content: ""; pointer-events: none; position: absolute; inset: 30rem 0 0; z-index: -1; opacity: .16; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' opacity='.25' filter='url(%23n)'/%3E%3C/svg%3E"); mask-image: linear-gradient(transparent,black 10%,black 90%,transparent); }
.hero { background: #141310; border-bottom: 0; padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.hero-grid { align-items: center; }
.display { font-size: clamp(2.15rem, 4.3vw, 3.9rem); font-weight: 500; letter-spacing: -.055em; line-height: 1.12; }
.lede { max-width: 31rem; font-size: 1.1rem; line-height: 1.7; }
.kicker { font-family: var(--sans); text-transform: none; letter-spacing: .025em; font-size: .875rem; color: var(--muted); }
.btn { border-radius: 999px; padding-inline: 1.25rem; font-family: var(--sans); }
.status-panel { border-radius: 18px; background: #1b1a17; box-shadow: 0 20px 55px #0002; }
.status-table .badge { font-family: var(--sans); font-size: .8125rem; }
.badge { text-transform: none; letter-spacing: 0; font-family: var(--sans); border-radius: 999px; padding: .25rem .65rem; }
section:not(.hero) { border-bottom: 0; }
.sec-head { margin-bottom: 2rem; }
.section-intro { line-height: 1.7; }
.now-list { border-top: 0; background: #1b1916ed; border: 1px solid var(--line-strong); border-radius: 18px; padding: .25rem 1.5rem; }
.now-list li:last-child { border-bottom: 0; }
.now-list strong { font-family: var(--sans); font-size: 1rem; }
.cards { gap: 1.5rem; }
.card { border-radius: 20px; background: linear-gradient(145deg,#24221f,#1b1916 60%); box-shadow: 0 18px 48px #0002; padding: 1.8rem; }
.card-top { flex-wrap: wrap; }
.card h3 { font-size: 1.65rem; }
.card .more { font-family: var(--sans); font-size: .95rem; }
.product-preview, .connection-map { border-radius: 10px; }
.connection-map { background: #171613; }
.arena-preview { font-family: var(--sans); }
.arena-preview caption { font-size: 1rem; }
.arena-preview caption span { font-size: .875rem; margin-top: .5rem; }
.arena-preview th, .arena-preview td { padding-block: .85rem; }
.write-list .idle { border-style: solid; border-radius: 18px; background: #1b1916ed; }
.site-footer { border-top: 1px solid var(--line); font-family: var(--sans); }
@media (max-width: 720px) { .display { font-size: clamp(2rem,8vw,3.2rem); } .card { padding: 1.25rem; } .now-list { padding-inline: 1.1rem; } }
