:root {
  color-scheme: dark;
  --bg: #090c09;
  --bg-soft: #0d120e;
  --surface: #111712;
  --surface-2: #151d16;
  --surface-3: #1b251c;
  --line: rgba(225, 239, 223, 0.11);
  --line-strong: rgba(225, 239, 223, 0.18);
  --text: #edf5eb;
  --text-soft: #b4c2b1;
  --muted: #7f8e7c;
  --green: #70cf7e;
  --green-strong: #42ad5b;
  --green-dark: #17361f;
  --amber: #e7b95f;
  --red: #e47c72;
  --blue: #82b7d8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1180px;
  --header-h: 72px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% -5%, rgba(82, 156, 94, 0.13), transparent 30rem),
    radial-gradient(circle at 92% 28%, rgba(50, 104, 64, 0.10), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

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

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

a {
  color: inherit;
}

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

button {
  border: 0;
}

::selection {
  color: #071108;
  background: #83de8e;
}

.clipboard-helper {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  color: #061007;
  background: var(--green);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(225, 239, 223, 0.08);
  background: rgba(9, 12, 9, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(112, 207, 126, 0.18);
  border-radius: 11px;
  background: #112018;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.brand-note {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.desktop-nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.89rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  content: "";
  background: var(--green);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--text);
}

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

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

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  list-style: none;
  font-size: 1.2rem;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-panel {
  position: absolute;
  top: 52px;
  right: 0;
  width: min(280px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0e140f;
  box-shadow: var(--shadow);
}

.mobile-panel a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-panel a:hover {
  color: var(--text);
  background: var(--surface-2);
}

.button,
.button-secondary,
.button-quiet,
.copy-button {
  display: inline-flex;
  min-height: 46px;
  gap: 9px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button {
  color: #061108;
  background: var(--green);
  box-shadow: 0 10px 28px rgba(61, 165, 83, 0.18);
}

.button:hover {
  background: #81dc8c;
  transform: translateY(-1px);
}

.button-secondary,
.copy-button {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover,
.copy-button:hover {
  border-color: rgba(112, 207, 126, 0.42);
  background: rgba(112, 207, 126, 0.07);
  transform: translateY(-1px);
}

.button-quiet {
  min-height: 40px;
  padding-inline: 14px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  background: var(--surface);
}

.button-quiet:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.hero {
  position: relative;
  padding: clamp(64px, 9vw, 112px) 0 70px;
  overflow: clip;
}

.hero::after {
  position: absolute;
  top: 8%;
  right: -14%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(74, 177, 92, 0.15), transparent 68%);
  filter: blur(10px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: #9ddda6;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.35rem);
  font-weight: 820;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

h1 strong {
  color: var(--green);
  font-weight: inherit;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.72;
}

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

.server-address {
  display: inline-flex;
  min-height: 54px;
  gap: 14px;
  align-items: center;
  padding: 8px 9px 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
}

.server-address-copy {
  display: grid;
  min-width: 180px;
  line-height: 1.2;
}

.address-label {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.address-value {
  margin-top: 4px;
  color: #d8f2d8;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.93rem;
  font-weight: 700;
}

.copy-button {
  min-height: 38px;
  padding-inline: 13px;
  border-radius: 9px;
  font-size: 0.76rem;
}

.hero-meta {
  display: flex;
  gap: 16px 22px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 23px;
  color: var(--muted);
  font-size: 0.83rem;
}

.status-inline {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--text-soft);
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--muted);
  box-shadow: 0 0 0 5px rgba(127, 142, 124, 0.08);
}

.status-dot.is-online {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(112, 207, 126, 0.09);
}

.status-dot.is-degraded {
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(231, 185, 95, 0.09);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 470px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225, 239, 223, 0.09);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(25, 56, 33, 0.46), rgba(12, 18, 13, 0.78)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 32%);
  pointer-events: none;
}

.hero-visual img {
  width: 104%;
  max-width: none;
  transform: translateY(8px);
}

.visual-note {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 11px 13px;
  border: 1px solid rgba(225, 239, 223, 0.09);
  border-radius: 12px;
  color: var(--text-soft);
  background: rgba(8, 12, 9, 0.72);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
}

.visual-note strong {
  color: var(--text);
}

.facts-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact {
  min-height: 112px;
  padding: 25px 24px;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.fact span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: clamp(72px, 9vw, 112px) 0;
}

.section-compact {
  padding: 62px 0;
}

.section-tinted {
  border-block: 1px solid rgba(225, 239, 223, 0.06);
  background: rgba(13, 18, 14, 0.68);
}

.section-head {
  display: flex;
  gap: 30px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-head-copy {
  max-width: 700px;
}

.section-kicker {
  margin-bottom: 11px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.04;
}

.section-intro {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.text-link {
  color: #bce8c2;
  font-size: 0.89rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--green);
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.world-card,
.panel,
.news-card,
.rule-card,
.support-card,
.status-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.025), transparent 52%), var(--surface);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.world-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.world-card:hover {
  border-color: var(--line-strong);
  background-color: var(--surface-2);
  transform: translateY(-3px);
}

.world-card-green { --card-glow: rgba(112, 207, 126, 0.14); }
.world-card-blue { --card-glow: rgba(130, 183, 216, 0.14); }
.world-card-amber { --card-glow: rgba(231, 185, 95, 0.15); }

.world-card::after {
  position: absolute;
  top: -54px;
  right: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  background: var(--card-glow, rgba(112, 207, 126, 0.12));
  filter: blur(24px);
}

.world-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 44px;
}

.world-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.025);
  font-size: 1.45rem;
}

.pill {
  display: inline-flex;
  min-height: 28px;
  gap: 7px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pill-green {
  border-color: rgba(112, 207, 126, 0.2);
  color: #a7e5ae;
  background: rgba(112, 207, 126, 0.065);
}

.pill-amber {
  border-color: rgba(231, 185, 95, 0.22);
  color: #f0cf8d;
  background: rgba(231, 185, 95, 0.065);
}

.world-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.world-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
  color: var(--text-soft);
  font-size: 0.91rem;
  line-height: 1.7;
}

.world-meta {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.meta-chip {
  padding: 5px 8px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.72rem;
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.panel {
  padding: clamp(24px, 4vw, 36px);
}

.panel h3 {
  margin-bottom: 12px;
  font-size: 1.36rem;
}

.panel p:last-child {
  margin-bottom: 0;
}

.muted {
  color: var(--text-soft);
}

.principle-list,
.check-list,
.plain-list,
.timeline,
.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.principle-list {
  display: grid;
  gap: 16px;
}

.principle-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}

.principle-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--green);
  background: rgba(112, 207, 126, 0.04);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.principle-item strong {
  display: block;
  margin-bottom: 3px;
}

.principle-item span {
  color: var(--muted);
  font-size: 0.86rem;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
}

.news-card {
  padding: 24px;
}

.news-card-main {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(to top, rgba(8, 12, 9, 0.96), rgba(8, 12, 9, 0.15)),
    radial-gradient(circle at 72% 16%, rgba(112, 207, 126, 0.18), transparent 16rem),
    var(--surface-2);
}

.news-stack {
  display: grid;
  gap: 16px;
}

.news-date {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.73rem;
}

.news-card h3 {
  margin-bottom: 9px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.news-card p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.89rem;
}

.news-card .text-link {
  display: inline-block;
  margin-top: 18px;
}

.join-box {
  position: relative;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(112, 207, 126, 0.17);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 22%, rgba(112, 207, 126, 0.14), transparent 20rem),
    linear-gradient(135deg, #111b13, #0d130e 62%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.join-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.join-box h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.step {
  min-height: 210px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.step:last-child {
  border-right: 0;
}

.step-number {
  margin-bottom: 34px;
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 900;
}

.step strong {
  display: block;
  margin-bottom: 8px;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.62;
}

.page-hero {
  padding: 74px 0 50px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(to bottom, rgba(24, 53, 31, 0.16), transparent);
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

.breadcrumbs a {
  color: var(--text-soft);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--green);
}

.page-title {
  max-width: 850px;
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 820;
  letter-spacing: -0.05em;
  line-height: 1;
}

.page-intro {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: start;
}

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

.sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.sidebar-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.sidebar-card + .sidebar-card {
  margin-top: 14px;
}

.sidebar-card h3 {
  margin-bottom: 11px;
  font-size: 1rem;
}

.sidebar-card p,
.sidebar-card li {
  color: var(--muted);
  font-size: 0.83rem;
}

.sidebar-card ul {
  margin: 0;
  padding-left: 18px;
}

.prose {
  color: var(--text-soft);
}

.prose h2 {
  margin: 54px 0 18px;
  color: var(--text);
  font-size: 1.75rem;
  letter-spacing: -0.025em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 32px 0 12px;
  color: var(--text);
  font-size: 1.17rem;
}

.prose p,
.prose ul,
.prose ol {
  margin-bottom: 18px;
}

.prose a {
  color: #bce8c2;
}

.prose code {
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #cae8cd;
  background: rgba(255, 255, 255, 0.035);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.86em;
}

.notice {
  margin: 26px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--green);
  border-radius: 0 12px 12px 0;
  color: var(--text-soft);
  background: rgba(112, 207, 126, 0.055);
}

.notice strong {
  color: var(--text);
}

.rule-list {
  display: grid;
  gap: 14px;
}

.rule-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 22px;
}

.rule-index {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--green);
  background: rgba(112, 207, 126, 0.04);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.8rem;
  font-weight: 850;
}

.rule-card h2 {
  margin-bottom: 7px;
  font-size: 1.12rem;
}

.rule-card p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.status-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.status-card {
  padding: 24px;
}

.status-card-wide {
  grid-column: 1 / -1;
}

.status-card-head {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.status-card h2,
.status-card h3 {
  margin-bottom: 0;
  font-size: 1.12rem;
}

.status-badge {
  display: inline-flex;
  min-height: 30px;
  gap: 8px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.73rem;
  font-weight: 800;
}

.status-badge.is-online {
  border-color: rgba(112, 207, 126, 0.21);
  color: #a9e7b1;
  background: rgba(112, 207, 126, 0.065);
}

.status-badge.is-degraded {
  border-color: rgba(231, 185, 95, 0.22);
  color: #f0cf8d;
  background: rgba(231, 185, 95, 0.065);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.metric strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.3rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.75rem;
}

.service-list {
  display: grid;
  gap: 10px;
}

.service-row {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 0;
}

.service-name strong {
  display: block;
  font-size: 0.92rem;
}

.service-name span {
  color: var(--muted);
  font-size: 0.75rem;
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-date {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.76rem;
}

.timeline-body h2,
.timeline-body h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.timeline-body p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.support-card {
  padding: 24px;
}

.support-card h2 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.support-card p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.support-card code {
  color: #c9e9cc;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.faq-list summary {
  padding: 17px 18px;
  cursor: pointer;
  color: var(--text);
  font-weight: 750;
  list-style: none;
}

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

.faq-answer {
  padding: 0 18px 18px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.error-page {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  padding: 60px 20px;
}

.error-card {
  width: min(680px, 100%);
  padding: clamp(30px, 7vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.error-code {
  margin-bottom: 8px;
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.error-card h1 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  letter-spacing: -0.035em;
}

.error-card p {
  max-width: 480px;
  margin: 0 auto 24px;
  color: var(--text-soft);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #080b08;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 52px;
  padding: 52px 0 34px;
}

.footer-copy {
  max-width: 410px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.83rem;
}

.footer-column h3 {
  margin-bottom: 13px;
  color: var(--text-soft);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(225, 239, 223, 0.07);
  color: #647162;
  font-size: 0.72rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions > .button-quiet {
    display: none;
  }

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

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .two-column,
  .join-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 410px;
  }

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

  .fact:nth-child(2) {
    border-right: 0;
  }

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

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

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

  .sidebar {
    position: static;
  }

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

  .footer-main > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 64px;
  }

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

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-note {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid {
    gap: 38px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.4rem);
  }

  .server-address {
    width: 100%;
    justify-content: space-between;
  }

  .server-address-copy {
    min-width: 0;
  }

  .hero-visual {
    min-height: 330px;
    border-radius: 24px;
  }

  .visual-note {
    position: static;
    margin: 0 14px 14px;
  }

  .facts-grid,
  .world-grid,
  .news-grid,
  .status-layout,
  .support-grid {
    grid-template-columns: 1fr;
  }

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

  .fact:last-child {
    border-bottom: 0;
  }

  .world-card:last-child,
  .status-card-wide {
    grid-column: auto;
  }

  .section-head {
    display: block;
  }

  .section-head .text-link {
    display: inline-block;
    margin-top: 16px;
  }

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

  .step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step:last-child {
    border-bottom: 0;
  }

  .step-number {
    margin-bottom: 20px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-main > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span + span {
    display: block;
    margin-top: 7px;
  }
}

@media (max-width: 460px) {
  .header-inner {
    gap: 12px;
  }

  .brand-name {
    font-size: 0.86rem;
  }

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

  .server-address {
    align-items: stretch;
  }

  .copy-button {
    flex: 0 0 auto;
  }

  .hero-meta {
    display: grid;
  }

  .rule-card {
    grid-template-columns: 1fr;
  }
}
