/* ===========================================================================
   Ewig — Monolith design system
   Graphite black, subtle chrome, Avenir Next. Built to last.
=========================================================================== */
:root {
  --bg: #0c0d0f;
  --bg-soft: #131417;
  --panel: #17181b;
  --panel-deep: #101114;
  --border: #26282c;
  --border-soft: #3d4046;
  --text: #eceef1;
  --muted: #9ba0a8;
  --muted-dim: #62666d;
  --accent: #cfd3d9;
  --radius: 16px;
  --maxw: 1080px;
  --font: "Avenir Next", Avenir, "Nunito Sans", "Segoe UI", -apple-system,
    BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(70% 45% at 50% 0%, #1b1d21 0%, var(--bg) 65%);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Subtle chrome text — close to plain white, with a hint of metal */
.chrome {
  background: linear-gradient(180deg, #ffffff 0%, #eef0f3 55%, #c9cdd4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------------------------------------------------------------------------
   Navigation — centered floating pill, icon only
--------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 30;
  pointer-events: none;
}

.navbar .pill {
  pointer-events: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(19, 20, 23, 0.72);
  backdrop-filter: blur(16px) saturate(130%);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 9px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 50px -20px rgba(0, 0, 0, 0.9);
}

.navbar .mark {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  background: rgba(19, 20, 23, 0.72);
  backdrop-filter: blur(16px) saturate(130%);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 50px -20px rgba(0, 0, 0, 0.9);
  transition: border-color 0.15s ease;
}

.navbar .mark:hover {
  border-color: var(--border-soft);
}

.navbar .mark img {
  height: 26px;
  width: 26px;
  border-radius: 8px;
  display: block;
}

.navbar a.link {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 15px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}

.navbar a.link:hover {
  color: var(--text);
  background: rgba(236, 238, 241, 0.06);
}

.navbar a.link.active {
  color: var(--bg);
  background: linear-gradient(180deg, #ffffff 0%, #c9cdd4 100%);
  font-weight: 600;
}

.navbar a.get {
  pointer-events: auto;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bg);
  background: linear-gradient(180deg, #ffffff 0%, #b9bec6 100%);
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 #fff, 0 8px 22px -8px rgba(232, 234, 238, 0.4);
  transition: transform 0.15s ease;
}

.navbar a.get:hover {
  transform: translateY(-1px);
}

/* ---------------------------------------------------------------------------
   Hero
--------------------------------------------------------------------------- */
.hero {
  text-align: center;
  padding: 168px 0 40px;
}

.hero .kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin: 0 0 22px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  font-weight: 700;
}

.hero p.lede {
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  font-weight: 500;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 34px;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--bg);
  background: linear-gradient(180deg, #ffffff 0%, #b9bec6 100%);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 #fff, 0 16px 40px -14px rgba(232, 234, 238, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-store:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 #fff, 0 20px 46px -12px rgba(232, 234, 238, 0.55);
}

.btn-store svg {
  width: 18px;
  height: 18px;
}

.btn-store .sub {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #45484e;
  margin-top: 1px;
}

.btn-store .lines {
  text-align: left;
  line-height: 1.25;
}

.btn-ghost {
  text-decoration: none;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--muted);
  transition: color 0.15s ease;
}

.btn-ghost:hover {
  color: var(--text);
}

.cta .note {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-dim);
  letter-spacing: 0.02em;
}

.cta .note a {
  color: var(--muted);
}

/* ---------------------------------------------------------------------------
   Screenshot — brushed-metal slab
--------------------------------------------------------------------------- */
.shot {
  margin: 56px auto 0;
  max-width: 1180px;
  padding: 0 24px;
  position: relative;
}

.shot::before {
  content: "";
  position: absolute;
  inset: -60px 60px;
  background: radial-gradient(
    50% 50% at 50% 45%,
    rgba(232, 234, 238, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.shot .slab {
  position: relative;
  border-radius: 18px;
  padding: 3px;
  background: linear-gradient(
    160deg,
    #f2f3f5 0%,
    #6f747c 26%,
    #2c2e33 52%,
    #9ba0a8 80%,
    #45484e 100%
  );
  box-shadow: 0 60px 140px -50px rgba(0, 0, 0, 0.95);
}

.shot .slab .inner {
  background: var(--bg-soft);
  border-radius: 15px;
  padding: 11px;
}

.shot img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 660px;
  display: block;
  border-radius: 9px;
  opacity: 1;
  animation: shot-rise 0.35s ease;
}

@keyframes shot-rise {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fixed-height stage so switching platforms never reflows the page */
.shot .stage {
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shot .slab {
  display: inline-block;
  max-width: 100%;
}

/* Platform switcher under the hero screenshot */
.platform-switch {
  display: flex;
  justify-content: center;
  margin: 36px 0 0;
}

.platform-switch .seg {
  display: inline-flex;
  gap: 4px;
  background: rgba(19, 20, 23, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.platform-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.platform-switch button:hover {
  color: var(--text);
}

.platform-switch button.on {
  color: var(--bg);
  background: linear-gradient(180deg, #ffffff 0%, #c9cdd4 100%);
  font-weight: 600;
  box-shadow: inset 0 1px 0 #fff;
}

@media (max-width: 760px) {
  .shot .stage {
    height: 74vh;
    max-height: 600px;
  }
  .shot img {
    max-height: calc(74vh - 30px);
  }
}

/* ---------------------------------------------------------------------------
   Shared section primitives
--------------------------------------------------------------------------- */
.eyebrow {
  display: block;
  color: var(--muted-dim);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section {
  padding: 96px 0 0;
}

.section-head {
  max-width: 640px;
}

.section-head.center {
  margin: 0 auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0;
}

/* Alternating feature rows */
.feat-row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 56px;
  align-items: center;
  padding-top: 96px;
}

.feat-row.flip .feat-copy {
  order: 2;
}

.feat-copy h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 14px;
}

.feat-copy p {
  color: var(--muted);
  margin: 0 0 14px;
}

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

.feat-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 40px 120px -40px rgba(0, 0, 0, 0.95);
}

.feat-shot.narrow {
  max-width: 380px;
  justify-self: center;
}

/* Checklists */
.checklist {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.checklist li {
  color: var(--muted);
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text);
  font-weight: 700;
}

.checklist li strong {
  color: var(--text);
  font-weight: 600;
}

.checklist li a {
  color: var(--accent);
}

/* Inline code + kbd */
code {
  font-family: "SF Mono", ui-monospace, SFMono-Regular, Menlo, Consolas,
    monospace;
  font-size: 0.88em;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1px 6px;
}

kbd {
  font-family: var(--font);
  font-size: 0.8em;
  background: var(--panel);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  border-radius: 6px;
  padding: 2px 7px;
  color: var(--text);
  white-space: nowrap;
}

/* Terminal / code blocks */
.terminal {
  background: var(--panel-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 40px 120px -40px rgba(0, 0, 0, 0.9);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.terminal-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2f3136;
}

.terminal pre {
  margin: 0;
  padding: 20px;
  overflow-x: auto;
  font-family: "SF Mono", ui-monospace, SFMono-Regular, Menlo, Consolas,
    monospace;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}

.terminal pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: inherit;
}

.terminal .prompt {
  color: var(--text);
}

.terminal .out {
  color: var(--muted-dim);
}

/* Platform cards — engraved plaques */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.card {
  position: relative;
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-deep) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: var(--border-soft);
  transform: translateY(-3px);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card .ico {
  font-size: 22px;
  margin-bottom: 14px;
  display: block;
}

/* Final CTA band */
.cta-band {
  margin-top: 120px;
  border-top: 1px solid var(--border);
  background: radial-gradient(
    80% 100% at 50% 0%,
    rgba(232, 234, 238, 0.06) 0%,
    transparent 70%
  );
  text-align: center;
  padding: 96px 0;
}

.cta-band h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 14px;
}

.cta-band p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 30px;
}

/* ---------------------------------------------------------------------------
   Page header (updates / docs)
--------------------------------------------------------------------------- */
.page-head {
  padding: 150px 0 24px;
}

.page-head h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 12px;
}

.page-head p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 620px;
  margin: 0;
}

/* ---------------------------------------------------------------------------
   Updates / changelog timeline
--------------------------------------------------------------------------- */
.timeline {
  margin: 40px 0 0;
  padding: 0 0 40px;
}

.release {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.release-meta {
  position: sticky;
  top: 96px;
  align-self: start;
}

.version-badge {
  display: inline-block;
  color: var(--bg);
  background: linear-gradient(180deg, #ffffff 0%, #b9bec6 100%);
  box-shadow: inset 0 1px 0 #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 4px 13px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.version-badge.roadmap {
  color: var(--text);
  background: none;
  border: 1px solid var(--border-soft);
  box-shadow: none;
}

.release-date {
  display: block;
  color: var(--muted-dim);
  font-size: 13px;
  font-weight: 500;
}

.release-body li a.email,
.release-body li a {
  color: var(--text);
  text-decoration-color: var(--muted-dim);
  text-underline-offset: 3px;
}

.release-body h2 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 12px;
}

.release-body > p {
  color: var(--muted);
  margin: 0 0 20px;
}

.release-body h3 {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted-dim);
  margin: 28px 0 10px;
}

.release-body ul {
  margin: 0;
  padding-left: 20px;
}

.release-body li {
  color: var(--muted);
  margin-bottom: 8px;
}

.release-body li strong {
  color: var(--text);
  font-weight: 600;
}

/* ---------------------------------------------------------------------------
   Documentation shell
--------------------------------------------------------------------------- */
.docs-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 56px;
  padding-top: 140px;
  padding-bottom: 24px;
}

.docs-nav {
  position: sticky;
  top: 120px;
  align-self: start;
  font-size: 14px;
}

.docs-nav .group {
  color: var(--muted-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 24px 0 8px;
}

.docs-nav .group:first-child {
  margin-top: 0;
}

.docs-nav a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  padding: 5px 10px;
  margin-left: -10px;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}

.docs-nav a:hover {
  color: var(--text);
}

.docs-nav a.active {
  color: var(--bg);
  background: linear-gradient(180deg, #ffffff 0%, #c9cdd4 100%);
  font-weight: 600;
}

.docs-content {
  max-width: 720px;
  padding-bottom: 40px;
}

.docs-content h1 {
  font-size: 2.1rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 12px;
}

.docs-content .hook {
  font-size: 1.1rem;
  color: var(--muted);
  border-left: 3px solid var(--border-soft);
  padding: 2px 0 2px 18px;
  margin: 0 0 36px;
}

.docs-content h2 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 44px 0 12px;
  scroll-margin-top: 110px;
}

.docs-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 30px 0 8px;
  scroll-margin-top: 110px;
}

.docs-content p,
.docs-content li {
  color: var(--muted);
}

.docs-content li {
  margin-bottom: 6px;
}

.docs-content strong {
  color: var(--text);
  font-weight: 600;
}

.docs-content a {
  color: var(--text);
  text-decoration-color: var(--muted-dim);
  text-underline-offset: 3px;
}

.docs-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin: 24px 0;
}

.docs-content .terminal {
  margin: 20px 0;
  box-shadow: none;
}

.docs-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0 28px;
}

.docs-content th {
  text-align: left;
  color: var(--muted-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px 8px 0;
  border-bottom: 1px solid var(--border);
}

.docs-content td {
  color: var(--muted);
  padding: 9px 14px 9px 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.docs-content td:first-child {
  white-space: nowrap;
}

/* Callout */
.callout {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-deep) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 16px 18px;
  margin: 20px 0;
}

.callout p {
  margin: 0;
  font-size: 0.95rem;
}

/* Prev / next page navigation */
.docs-pagenav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.docs-pagenav a {
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-deep) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 14px 18px;
  flex: 0 1 48%;
  font-weight: 600;
  transition: border-color 0.15s ease;
}

.docs-pagenav a:hover {
  border-color: var(--border-soft);
}

.docs-pagenav a.next {
  margin-left: auto;
  text-align: right;
}

.docs-pagenav .dir {
  display: block;
  color: var(--muted-dim);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 3px;
}

/* ---------------------------------------------------------------------------
   Footer
--------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 80px;
  padding: 48px 0 40px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}

.footer-cols .about img {
  height: 34px;
  width: 34px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.footer-cols .about p {
  color: var(--muted-dim);
  font-size: 13px;
  max-width: 260px;
  margin: 0;
}

.footer-cols h4 {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 12px;
}

.footer-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-cols li {
  margin-bottom: 8px;
}

.footer-cols a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s ease;
}

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

.footer-base {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer .copy {
  color: var(--muted-dim);
  font-size: 13px;
}

.site-footer nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  margin-left: 20px;
  transition: color 0.15s ease;
}

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

/* ---------------------------------------------------------------------------
   Legal pages
--------------------------------------------------------------------------- */
.legal {
  padding: 140px 0 24px;
  max-width: 760px;
}

.legal h1 {
  font-size: 2.2rem;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 6px;
}

.legal .updated {
  color: var(--muted-dim);
  font-size: 14px;
  margin: 0 0 40px;
}

.legal h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 40px 0 10px;
  letter-spacing: -0.015em;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal a {
  color: var(--text);
  text-decoration-color: var(--muted-dim);
  text-underline-offset: 3px;
}

/* Obfuscated contact email: assembled by JS, not selectable */
a.email {
  color: var(--text);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.legal .back {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.legal .back:hover {
  color: var(--text);
}

/* ---------------------------------------------------------------------------
   Responsive
--------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .feat-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .feat-row,
  .feat-row.flip {
    padding-top: 76px;
  }
  .feat-row.flip .feat-copy {
    order: 0;
  }
  .docs-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
  .docs-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 2px 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }
  .docs-nav .group {
    display: none;
  }
  .docs-nav a {
    margin-left: 0;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
  .platform-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .navbar {
    padding: 0 14px;
  }
  .navbar a.get {
    padding: 9px 14px;
    font-size: 12.5px;
  }
  .navbar a.link {
    padding: 7px 11px;
    font-size: 12.5px;
  }
}

@media (max-width: 600px) {
  .navbar a.link:not(.active) {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 140px;
  }
  .page-head {
    padding-top: 130px;
  }
  .docs-layout {
    padding-top: 120px;
  }
  .legal {
    padding-top: 120px;
  }
  .release {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 36px 0;
  }
  .release-meta {
    position: static;
  }
  .platform-grid {
    grid-template-columns: 1fr;
  }
  .docs-pagenav {
    flex-direction: column;
  }
  .docs-pagenav a.next {
    margin-left: 0;
    text-align: left;
  }
  .docs-content table {
    display: block;
    overflow-x: auto;
  }
  .docs-content td:first-child {
    white-space: normal;
  }
}
