:root {
  color-scheme: light dark;
  --page: #f6f7f6;
  --paper: #ffffff;
  --paper-soft: #edf1ef;
  --ink: #171c1a;
  --muted: #68726e;
  --quiet: #8c9692;
  --line: #d7ddda;
  --line-strong: #b8c2be;
  --teal: #087e72;
  --teal-strong: #075f57;
  --teal-soft: #dcefeb;
  --amber: #a8641d;
  --amber-soft: #f6eadb;
  --port: #dd4655;
  --starboard: #1d9b70;
  --shadow: 0 24px 70px rgba(23, 37, 32, .13);
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #0d1110;
    --paper: #141918;
    --paper-soft: #1a211f;
    --ink: #edf2f0;
    --muted: #a0aaa6;
    --quiet: #75807c;
    --line: #2b3431;
    --line-strong: #46534f;
    --teal: #45c4b2;
    --teal-strong: #72d7c9;
    --teal-soft: #173934;
    --amber: #e8aa62;
    --amber-soft: #35291c;
    --port: #ff6572;
    --starboard: #39c58e;
    --shadow: 0 28px 80px rgba(0, 0, 0, .34);
  }
}

/* Public pages deliberately keep the bright editorial palette. Dark surfaces
   are used as full-width content bands instead of switching the entire site. */
body.public-page {
  color-scheme: light;
  --page: #f7f8f6;
  --paper: #ffffff;
  --paper-soft: #edf1ef;
  --ink: #171c1a;
  --muted: #68726e;
  --quiet: #8c9692;
  --line: #d7ddda;
  --line-strong: #b8c2be;
  --teal: #087e72;
  --teal-strong: #075f57;
  --teal-soft: #dcefeb;
  --amber: #a8641d;
  --amber-soft: #f6eadb;
  --port: #dd4655;
  --starboard: #1d9b70;
  --shadow: 0 24px 70px rgba(23, 37, 32, .13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; letter-spacing: 0; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 9px 12px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
}

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

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--page) 92%, transparent);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.site-brand strong { font-size: 18px; }

.site-brand .wordmark { font-size: 30px; letter-spacing: 0; }
.site-brand .wordmark span { color: var(--teal); }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.5vw, 34px);
}

.site-nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

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

.hero {
  min-height: calc(100svh - 68px);
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px) 0;
  overflow: hidden;
}

.hero-copy { width: min(940px, 100%); }

.build-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.build-line strong {
  padding-left: 10px;
  border-left: 1px solid var(--line-strong);
  color: var(--amber);
}

.hero h1 {
  margin: 0;
  font-size: clamp(64px, 11vw, 150px);
  font-weight: 900;
  line-height: .82;
}

.hero-lead {
  max-width: 900px;
  margin: 34px 0 0;
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 680;
  line-height: 1.04;
}

.hero-detail {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.primary-action { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.primary-action:hover { border-color: var(--teal); background: var(--teal); color: #fff; }
.secondary-action:hover { border-color: var(--ink); }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 28px 0 56px;
  color: var(--quiet);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-meta span { padding: 0 13px; border-left: 1px solid var(--line); }
.hero-meta span:first-child { padding-left: 0; border-left: 0; }

.hero-product { margin: 0; }

.hero-product img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.hero-product figcaption,
.story-image figcaption {
  padding: 9px 0;
  color: var(--quiet);
  font-size: 11px;
}

.feature-intro,
.feature-story,
.access-section,
.architecture-section,
.open-section,
.development-section,
.faq-section,
.final-cta {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

.feature-intro {
  padding-top: clamp(92px, 12vw, 170px);
  padding-bottom: clamp(70px, 10vw, 130px);
}

.feature-intro h2,
.section-heading h2,
.open-section h2,
.final-cta h2 {
  max-width: 940px;
  margin: 10px 0 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.02;
}

.feature-intro > p:last-child {
  max-width: 740px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.eyebrow {
  margin: 0;
  color: var(--teal-strong);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.feature-story {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.4fr);
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
  padding-top: clamp(68px, 9vw, 120px);
  padding-bottom: clamp(68px, 9vw, 120px);
  border-top: 1px solid var(--line);
}

.voice-story,
.weather-story { grid-template-columns: minmax(0, 1.15fr) minmax(260px, .75fr); }

.story-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 55px);
  line-height: 1.05;
}

.story-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.feature-points { margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-points li { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 750; }

.story-image { margin: 0; min-width: 0; }

.story-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 760px;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.radio-story .story-image img { object-position: left top; }
.communications-story .story-image img { object-position: center top; }
.weather-story .story-image img { object-position: right top; }

.phone-image { justify-self: center; width: min(100%, 660px); }
.phone-image img { aspect-ratio: 3 / 4; object-position: top center; }

.access-section,
.architecture-section,
.open-section,
.development-section,
.faq-section {
  padding-top: clamp(90px, 12vw, 165px);
  padding-bottom: clamp(90px, 12vw, 165px);
  border-top: 1px solid var(--line);
}

.access-rows { margin-top: 60px; border-top: 1px solid var(--line-strong); }

.access-rows a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-strong);
  text-decoration: none;
}

.access-rows a > span { color: var(--quiet); font: 700 12px ui-monospace, SFMono-Regular, Consolas, monospace; }
.access-rows strong { font-size: 18px; }
.access-rows p { margin: 5px 0 0; color: var(--muted); line-height: 1.5; }
.access-rows b { color: var(--teal-strong); font-size: 12px; }
.access-rows a:hover b { transform: translateX(3px); }

.architecture-section { display: grid; grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr); gap: clamp(50px, 8vw, 130px); }
.architecture-copy > p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.7; }

.architecture-line {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 52px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.architecture-line i { height: 1px; background: var(--line-strong); }

.open-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, .8fr);
  gap: clamp(50px, 8vw, 130px);
  background: var(--paper-soft);
}

.open-section > div:last-child > p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.7; }

.text-link { display: inline-flex; gap: 8px; margin-top: 26px; color: var(--teal-strong); font-weight: 800; text-decoration: none; }

.status-ledger { margin-top: 58px; border-top: 1px solid var(--line-strong); }
.status-ledger > div { display: grid; grid-template-columns: minmax(120px, .28fr) minmax(0, 1fr); gap: 28px; padding: 22px 0; border-bottom: 1px solid var(--line-strong); }
.status-ledger p { margin: 0; color: var(--muted); line-height: 1.6; }

.faq-list { margin-top: 56px; border-top: 1px solid var(--line-strong); }
.faq-list details { border-bottom: 1px solid var(--line-strong); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; cursor: pointer; list-style: none; font-size: 17px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: ">"; flex: 0 0 auto; color: var(--teal-strong); font-size: 18px; transition: transform 220ms ease; }
.faq-list details[open] summary::after { transform: rotate(90deg); }
.faq-list details.is-closing summary::after { transform: rotate(0); }
.faq-answer { display: flow-root; overflow: hidden; }
.faq-list details p { max-width: 780px; margin: -4px 0 26px; color: var(--muted); line-height: 1.65; opacity: 0; transform: translateY(-4px); transition: opacity 180ms ease, transform 220ms ease; }
.faq-list details[open]:not(.is-closing) p { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .faq-list summary::after,
  .faq-list details p { transition: none; }
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  padding-top: clamp(90px, 12vw, 160px);
  padding-bottom: clamp(90px, 12vw, 160px);
  border-top: 1px solid var(--line);
}

.final-cta p:not(.eyebrow) { max-width: 650px; margin: 22px 0 0; color: var(--muted); line-height: 1.6; }
.final-cta .hero-actions { justify-content: flex-end; }

.site-footer {
  padding: 64px clamp(20px, 5vw, 72px) 24px;
  border-top: 1px solid var(--line-strong);
  background: var(--paper);
}

.footer-intro { max-width: 420px; }
.footer-intro p { margin: 20px 0 0; color: var(--muted); line-height: 1.6; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 40px;
  max-width: 760px;
  margin: 58px 0 0 auto;
}

.footer-links div { display: grid; align-content: start; gap: 10px; }
.footer-links strong { margin-bottom: 5px; font-size: 12px; text-transform: uppercase; }
.footer-links a { color: var(--muted); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: var(--ink); }

.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--quiet); font-size: 11px; }

/* Public pages share one footer so navigation and release status remain
   consistent across the landing, setup, and future editorial pages. */
.public-footer { padding-top: 72px; background: #091310; color: #a6b3af; }
.public-footer .footer-main { width: min(1220px, 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr); gap: clamp(60px, 9vw, 140px); }
.public-footer .site-brand { color: #ffffff; }
.public-footer .footer-intro { max-width: 360px; }
.public-footer .footer-intro > span { display: block; margin-top: 28px; padding-top: 16px; border-top: 1px solid #2f423c; color: #78d1c0; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.public-footer .footer-links { max-width: none; margin: 0; }
.public-footer .footer-links strong { color: #ffffff; }
.public-footer .footer-links a { color: #a6b3af; }
.public-footer .footer-links a:hover { color: #ffffff; }
.public-footer .footer-bottom { width: min(1220px, 100%); margin-left: auto; margin-right: auto; border-color: #2f423c; color: #7f8f89; }

/* Setup and directory pages reuse the public visual language without turning
   procedural content into a collection of nested cards. */
.page-hero {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 140px) clamp(20px, 5vw, 72px) clamp(64px, 8vw, 110px);
}

.page-hero h1 { max-width: 1050px; margin: 12px 0 0; font-size: clamp(48px, 8vw, 112px); line-height: .92; }
.page-hero > p:last-child { max-width: 760px; margin: 28px 0 0; color: var(--muted); font-size: 19px; line-height: 1.65; }

.route-index,
.setup-route,
.directory-shell,
.directory-disclaimer {
  width: min(100%, 1400px);
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

.route-index { border-top: 1px solid var(--line-strong); }
.route-index a { display: grid; grid-template-columns: 52px minmax(0, 1fr) auto; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--line-strong); text-decoration: none; }
.route-index a > span { color: var(--quiet); font: 700 12px ui-monospace, monospace; }
.route-index a > b { color: var(--teal-strong); font-size: 12px; }

.setup-route { padding-top: 110px; padding-bottom: 110px; border-top: 1px solid var(--line); }
.setup-route-head { display: grid; grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr); gap: 60px; }
.setup-route-head h2 { margin: 10px 0 0; font-size: clamp(34px, 5vw, 68px); line-height: 1.02; }
.setup-route-head > div:last-child { color: var(--muted); font-size: 17px; line-height: 1.65; }

.steps { margin-top: 58px; border-top: 1px solid var(--line-strong); counter-reset: setup-step; }
.step { counter-increment: setup-step; display: grid; grid-template-columns: 54px minmax(190px, .42fr) minmax(0, 1fr); gap: 26px; padding: 26px 0; border-bottom: 1px solid var(--line-strong); }
.step::before { content: counter(setup-step, decimal-leading-zero); color: var(--quiet); font: 700 12px ui-monospace, monospace; }
.step h3 { margin: 0; font-size: 17px; }
.step-content { color: var(--muted); line-height: 1.65; }
.step-content p { margin: 0; }
.step-content p + p,
.step-content pre { margin-top: 14px; }

pre {
  position: relative;
  margin: 0;
  padding: 16px 54px 16px 16px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font: 12px/1.6 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.step-content code,
.directory-disclaimer code {
  padding: 2px 5px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper-soft);
  color: var(--ink);
  font: 12px ui-monospace, SFMono-Regular, Consolas, monospace;
}

.copy-command {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 46px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper-soft);
  color: var(--ink);
  cursor: pointer;
}

.directory-disclaimer {
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.directory-disclaimer strong { display: block; font-size: 13px; }
.directory-disclaimer p { max-width: 1050px; margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.directory-shell { padding-top: 54px; padding-bottom: 120px; }
.directory-tools { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 10px; align-items: end; }
.directory-tools label { display: grid; gap: 6px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.directory-tools input,
.directory-tools select {
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
}

.server-list { display: grid; gap: 16px; margin-top: 38px; }
.server-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: start;
  gap: 22px 32px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
}

.server-row.is-official { border-top: 3px solid var(--teal); background: color-mix(in srgb, var(--teal-soft) 52%, transparent); }
.server-name { min-width: 0; }
.server-title { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 14px; }
.server-name strong { display: block; font-size: 17px; }
.server-name p { max-width: 720px; margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.server-meta { color: var(--muted); font-size: 12px; }
.server-kind { color: var(--teal-strong); font-size: 10px; font-weight: 850; text-transform: uppercase; }
.server-facts { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px 26px; padding-top: 18px; border-top: 1px solid var(--line); }
.server-fact { display: grid; align-content: start; gap: 6px; min-width: 0; }
.server-fact-label { color: var(--quiet); font-size: 9px; font-weight: 850; text-transform: uppercase; }
.server-links { display: flex; flex-wrap: wrap; gap: 8px 12px; }
.server-links a { color: var(--teal-strong); font-size: 11px; font-weight: 800; text-decoration: none; }
.server-links a:hover { text-decoration: underline; }

.server-state { display: inline-flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 850; text-transform: uppercase; }
.server-state::before { content: ""; width: 3px; height: 22px; background: var(--line-strong); }
.server-state.online::before { background: var(--starboard); }
.server-state.maintenance::before { background: var(--amber); }
.server-state.offline::before { background: var(--port); }
.server-status-cell { display: grid; justify-items: end; gap: 7px; }
.server-open { color: var(--teal-strong); font-size: 12px; font-weight: 850; text-decoration: none; }
.server-open:hover { text-decoration: underline; }
.directory-empty { padding: 42px 0; color: var(--muted); border-bottom: 1px solid var(--line-strong); }

.servers-page { background: #ffffff; }
.servers-page .site-header { background: #ffffff; backdrop-filter: none; }
.servers-page .page-hero { width: min(100%, 1400px); padding-top: clamp(54px, 6vw, 76px); padding-bottom: clamp(58px, 6vw, 82px); }
.servers-page .page-hero h1 { max-width: 900px; color: var(--teal-strong); font-size: clamp(54px, 6.8vw, 92px); }
.servers-page .page-hero > p:last-child { max-width: 700px; }
.servers-page .directory-shell,
.servers-page .directory-disclaimer { width: min(1220px, calc(100% - 48px)); padding-left: 0; padding-right: 0; }
.servers-page .directory-shell { padding-bottom: 48px; }
.servers-page .directory-disclaimer { margin-bottom: clamp(82px, 9vw, 118px); }

.legal-page {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 140px) clamp(20px, 5vw, 72px) 110px;
}

.legal-page > header { padding-bottom: 52px; border-bottom: 1px solid var(--line-strong); }
.legal-page h1 { margin: 10px 0 0; font-size: clamp(58px, 9vw, 104px); line-height: .92; }
.legal-page > header > p:last-child { max-width: 760px; margin: 28px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.legal-page section { display: grid; grid-template-columns: minmax(180px, .4fr) minmax(0, 1fr); gap: 42px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-page h2 { margin: 0; font-size: 17px; }
.legal-page section p { margin: 0; color: var(--muted); line-height: 1.7; }
.legal-page section a { grid-column: 2; width: fit-content; color: var(--teal-strong); font-size: 13px; font-weight: 800; }
.privacy-updated { padding-top: 26px; color: var(--quiet); font-size: 12px; }
.compact-footer { padding-top: 48px; }

@media (max-width: 900px) {
  .site-header { align-items: flex-start; }
  .public-footer .footer-main { grid-template-columns: 1fr; }
  .site-nav { max-width: 62vw; flex-wrap: wrap; gap: 10px 18px; }
  .feature-story,
  .voice-story,
  .weather-story,
  .architecture-section,
  .open-section,
  .final-cta,
  .setup-route-head { grid-template-columns: 1fr; }
  .voice-story .phone-image,
  .weather-story .story-image { order: 2; }
  .feature-story { min-height: 0; }
  .final-cta .hero-actions { justify-content: flex-start; }
  .architecture-line { grid-template-columns: 1fr; gap: 8px; }
  .architecture-line i { width: 1px; height: 22px; margin-left: 12px; }
  .step { grid-template-columns: 42px minmax(150px, .36fr) minmax(0, 1fr); }
  .server-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-page section { grid-template-columns: 1fr; gap: 10px; }
  .legal-page section a { grid-column: 1; }
}

@media (max-width: 620px) {
  .site-header { min-height: 62px; align-items: center; padding: 8px 14px; }
  .public-footer { padding-left: 18px; padding-right: 18px; }
  .public-footer .footer-links { grid-template-columns: 1fr 1fr; }
  .site-brand .wordmark { font-size: 24px; }
  .site-nav a:not([href="setup.html"]):not([href="servers.html"]) { display: none; }
  .site-nav { max-width: none; flex-wrap: nowrap; }
  .hero { min-height: auto; padding-top: 58px; }
  .hero h1 { font-size: clamp(64px, 24vw, 100px); }
  .hero-lead { font-size: 31px; }
  .hero-meta span { width: 50%; padding: 7px 10px; border-bottom: 1px solid var(--line); }
  .hero-meta span:nth-child(odd) { padding-left: 0; border-left: 0; }
  .hero-product img { aspect-ratio: 4 / 5; object-position: 20% top; }
  .feature-story { gap: 38px; }
  .access-rows a,
  .route-index a { grid-template-columns: 38px minmax(0, 1fr); }
  .access-rows a > b,
  .route-index a > b { grid-column: 2; }
  .status-ledger > div { grid-template-columns: 1fr; gap: 8px; }
  .footer-links { margin-left: 0; grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .step { grid-template-columns: 34px minmax(0, 1fr); gap: 14px; }
  .step h3 { grid-column: 2; }
  .step-content { grid-column: 2; }
  .directory-tools { grid-template-columns: 1fr 1fr; }
  .directory-tools label:first-child { grid-column: 1 / -1; }
  .server-row { grid-template-columns: 1fr; padding: 18px; }
  .server-status-cell { justify-items: start; }
  .server-facts { grid-column: 1; gap: 16px; }
  .servers-page .directory-shell,
  .servers-page .directory-disclaimer { width: calc(100% - 32px); }
}
