@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/archivo-normal-600-1.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/archivo-normal-700-2.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/source-sans-3-normal-400-1.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/source-sans-3-normal-600-2.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/source-sans-3-normal-700-3.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-mono-normal-400-1.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-mono-normal-500-2.woff2') format('woff2');
}

:root {
  
  --indigo: #2e3a66;
  --indigo-deep: #1b2340;
  --indigo-soft: #eceff7;
  --brass: #8a5f14;
  --brass-bright: #b8842a;
  --brass-soft: #fbf3e2;

  
  --ink: #171a21;
  --ink-2: #333a47;
  --muted: #565c6b;
  --rule: #dde0e8;
  --rule-strong: #c3c8d4;
  --panel: #f2f3f6;
  --panel-2: #e8eaf0;
  --paper: #ffffff;

  
  --chrome: #1b2340;
  --chrome-deep: #141a30;
  --chrome-rule: rgb(255 255 255 / 0.1);
  --on-chrome: #f2f4fa;
  --on-chrome-2: #c3cbe2;
  --on-chrome-muted: #98a2bd;
  --on-chrome-accent: #e0b25f;

  
  --good: #1f6b45;
  --warn: #8a5a00;
  --on-signal: #ffffff; 

  
  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --step--1: clamp(0.83rem, 0.81rem + 0.11vw, 0.89rem);
  --step-0: clamp(1rem, 0.97rem + 0.15vw, 1.09rem);
  --step-1: clamp(1.2rem, 1.14rem + 0.29vw, 1.37rem);
  --step-2: clamp(1.44rem, 1.34rem + 0.5vw, 1.73rem);
  --step-3: clamp(1.73rem, 1.56rem + 0.83vw, 2.18rem);
  --step-4: clamp(2.07rem, 1.81rem + 1.32vw, 2.75rem);

  
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4.5rem;

  
  --r-1: 3px;
  --r-2: 6px;
  --r-3: 12px;
  --r-4: 20px;
  --shadow-1: 0 1px 2px rgb(23 26 33 / 0.06), 0 2px 8px rgb(23 26 33 / 0.04);
  --shadow-2: 0 2px 6px rgb(23 26 33 / 0.08), 0 12px 28px rgb(23 26 33 / 0.07);

  --wrap: 74rem;
  --measure: 40rem;

  
  --ease-out: cubic-bezier(0.22, 0.68, 0.32, 1);
  --ease-both: cubic-bezier(0.5, 0.05, 0.3, 1);
  --fast: 160ms;
  --mid: 280ms;
  --slow: 620ms;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --indigo: #97a8dc;
    --indigo-deep: #b6c3e9;
    --indigo-soft: #1e2434;
    --brass: #d8a44a;
    --brass-bright: #e8b962;
    --brass-soft: #2a2318;
    --ink: #eef0f5;
    --ink-2: #ccd1dc;
    --muted: #a3abbd;
    --rule: #2c3242;
    --rule-strong: #3c4356;
    --panel: #171b25;
    --panel-2: #1e2331;
    --paper: #10131a;
    --good: #6fcf9b;
    --warn: #e0b25f;
    --on-signal: #10131a;
    --shadow-1: 0 1px 2px rgb(0 0 0 / 0.4), 0 2px 8px rgb(0 0 0 / 0.3);
    --shadow-2: 0 2px 6px rgb(0 0 0 / 0.5), 0 12px 28px rgb(0 0 0 / 0.45);
  }
}

:root[data-theme='dark'] {
  --indigo: #97a8dc;
  --indigo-deep: #b6c3e9;
  --indigo-soft: #1e2434;
  --brass: #d8a44a;
  --brass-bright: #e8b962;
  --brass-soft: #2a2318;
  --ink: #eef0f5;
  --ink-2: #ccd1dc;
  --muted: #a3abbd;
  --rule: #2c3242;
  --rule-strong: #3c4356;
  --panel: #171b25;
  --panel-2: #1e2331;
  --paper: #10131a;
  --good: #6fcf9b;
  --warn: #e0b25f;
  --on-signal: #10131a;
  --shadow-1: 0 1px 2px rgb(0 0 0 / 0.4), 0 2px 8px rgb(0 0 0 / 0.3);
  --shadow-2: 0 2px 6px rgb(0 0 0 / 0.5), 0 12px 28px rgb(0 0 0 / 0.45);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-3);
  text-wrap: balance;
}

h1 {
  font-size: var(--step-4);
}
h2 {
  font-size: var(--step-2);
  margin-top: var(--s-7);
}
h3 {
  font-size: var(--step-1);
  margin-top: var(--s-6);
}
h4,
h5,
h6 {
  font-size: var(--step-0);
  margin-top: var(--s-5);
  letter-spacing: 0.01em;
}

p,
ul,
ol,
dl,
blockquote,
figure,
table {
  margin: 0 0 var(--s-4);
}

a {
  color: var(--indigo);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--fast) var(--ease-out);
}
a:hover {
  color: var(--brass);
}

strong,
b {
  font-weight: 700;
}

small {
  font-size: var(--step--1);
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

img {
  border-radius: var(--r-2);
}

figure {
  margin-inline: 0;
}
figcaption {
  font-size: var(--step--1);
  color: var(--muted);
  margin-top: var(--s-2);
}

blockquote {
  border-left: 3px solid var(--brass);
  padding: var(--s-1) 0 var(--s-1) var(--s-4);
  margin-inline: 0;
  color: var(--ink-2);
}

code,
kbd,
samp,
pre {
  font-family: var(--font-mono);
  font-size: 0.92em;
}
code {
  background: var(--panel);
  padding: 0.1em 0.35em;
  border-radius: var(--r-1);
}
pre {
  background: var(--panel);
  padding: var(--s-4);
  border-radius: var(--r-2);
  overflow-x: auto;
}

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: var(--s-6) 0;
}

.table-scroll {
  overflow-x: auto;
  margin: 0 0 var(--s-5);
  border: 1px solid var(--rule);
  border-radius: var(--r-3);
  background: var(--paper);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--step--1);
  margin: 0;
}

th,
td {
  padding: var(--s-3) var(--s-4);
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--rule);
}

thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--panel);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-bottom: 1px solid var(--rule-strong);
  white-space: nowrap;
}

tbody tr:last-child td {
  border-bottom: 0;
}
tbody tr:nth-child(even) {
  background: color-mix(in srgb, var(--panel) 45%, transparent);
}
tbody tr {
  transition: background var(--fast) var(--ease-out);
}
tbody tr:hover {
  background: var(--indigo-soft);
}

th[scope='row'] {
  font-weight: 600;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
  border-radius: var(--r-1);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--indigo);
  color: var(--on-signal);
  padding: var(--s-3) var(--s-4);
  z-index: 100;
  border-radius: 0 0 var(--r-2) 0;
}
.skip:focus {
  left: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.prose {
  max-width: var(--measure);
}
.prose > :first-child {
  margin-top: 0;
}

.masthead {
  background: var(--chrome);
  color: var(--on-chrome);
  position: relative;
}

.masthead__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  padding-block: var(--s-4);
  flex-wrap: wrap;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-1);
  letter-spacing: -0.02em;
  color: var(--on-chrome);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
}
.wordmark:hover {
  color: var(--on-chrome-accent);
}
.wordmark__sub {
  font-family: var(--font-mono);
  font-size: 0.6em;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-chrome-muted);
}

.nav {
  display: flex;
  gap: var(--s-5);
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--step--1);
  flex-wrap: wrap;
}
.nav a {
  color: var(--on-chrome-2);
  text-decoration: none;
  font-weight: 600;
  padding-block: var(--s-1);
  border-bottom: 2px solid transparent;
  transition: color var(--fast) var(--ease-out), border-color var(--fast) var(--ease-out);
}
.nav a:hover,
.nav a[aria-current='page'] {
  color: var(--on-chrome);
  border-bottom-color: var(--on-chrome-accent);
}

.typestrip {
  background: var(--chrome-deep);
  border-top: 1px solid var(--chrome-rule);
  overflow-x: auto;
  scrollbar-width: thin;
}
.typestrip ul {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.typestrip a {
  display: block;
  padding: var(--s-3) var(--s-4);
  color: var(--on-chrome-2);
  font-size: var(--step--1);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color var(--fast) var(--ease-out), background var(--fast) var(--ease-out);
}
.typestrip a:hover {
  color: var(--on-chrome);
  background: rgb(255 255 255 / 0.06);
}
.typestrip a[aria-current='page'] {
  color: var(--on-chrome);
  border-bottom-color: var(--on-chrome-accent);
  background: rgb(255 255 255 / 0.05);
}

@media (max-width: 48rem) {
  .nav {
    gap: var(--s-4);
  }
  .nav a,
  .typestrip a {
    padding-block: var(--s-3);
    min-height: 2.75rem;
    display: flex;
    align-items: center;
  }
}

.crumbs {
  padding-block: var(--s-3);
  font-size: var(--step--1);
}
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
}
.crumbs li + li::before {
  content: '/';
  margin-right: var(--s-2);
  color: var(--rule-strong);
}
.crumbs a {
  color: var(--muted);
  text-decoration: none;
}
.crumbs a:hover {
  color: var(--indigo);
  text-decoration: underline;
}
.crumbs [aria-current='page'] {
  color: var(--ink-2);
  font-weight: 600;
}

main {
  display: block;
  padding-bottom: var(--s-8);
}

.section {
  padding-block: var(--s-7);
}
.section--panel {
  background: var(--panel);
  border-block: 1px solid var(--rule);
}

.footer {
  background: var(--chrome);
  color: var(--on-chrome-2);
  padding-block: var(--s-7) var(--s-5);
  font-size: var(--step--1);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: var(--s-6);
}
.footer h2 {
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--on-chrome-accent);
  margin: 0 0 var(--s-3);
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-2);
}
.footer a {
  color: var(--on-chrome-2);
  text-decoration: none;
}
.footer a:hover {
  color: var(--on-chrome);
  text-decoration: underline;
}
.footer__base {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--chrome-rule);
  color: var(--on-chrome-muted);
  max-width: 58rem;
}
.footer__base p {
  margin-bottom: var(--s-2);
}

.grid {
  display: grid;
  gap: var(--s-4);
  list-style: none;
  margin: 0 0 var(--s-5);
  padding: 0;
}
.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}
.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.layout-aside {
  display: grid;
  gap: var(--s-6);
  align-items: start;
}
@media (min-width: 60rem) {
  .layout-aside {
    grid-template-columns: minmax(0, 1fr) 17rem;
  }
}

.hero {
  background:
    radial-gradient(120% 130% at 12% -10%, color-mix(in srgb, var(--indigo) 12%, transparent), transparent 60%),
    var(--panel);
  border-bottom: 1px solid var(--rule);
  padding-block: var(--s-7) var(--s-6);
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 var(--s-3);
}
.hero h1 {
  margin-bottom: var(--s-4);
  max-width: 20ch;
}
.hero__lede {
  font-size: var(--step-1);
  color: var(--ink-2);
  max-width: 46rem;
  margin-bottom: 0;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
  margin-top: var(--s-5);
  padding: 0;
  list-style: none;
}
.hero__stats div {
  display: grid;
}
.hero__stats b {
  font-family: var(--font-mono);
  font-size: var(--step-2);
  font-weight: 500;
  color: var(--indigo);
  line-height: 1.1;
}
.hero__stats span {
  font-size: var(--step--1);
  color: var(--muted);
}

.rail {
  --rail-line: var(--rule-strong);
  margin: 0 0 var(--s-6);
  padding: var(--s-5) 0 var(--s-2);
  position: relative;
}
.rail__label {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--s-4);
}
.rail ol {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  position: relative;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: var(--s-2);
}

.rail ol::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0.44rem;
  height: 2px;
  background: linear-gradient(90deg, var(--rail-line), color-mix(in srgb, var(--rail-line) 40%, transparent));
  border-radius: 2px;
}
.rail li {
  flex: 1 1 0;
  min-width: 5.2rem;
  text-align: center;
  position: relative;
}
.rail a {
  display: block;
  padding-top: 1.35rem;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.25;
  transition: color var(--mid) var(--ease-out);
}

.rail a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.62rem;
  height: 0.62rem;
  margin-left: -0.31rem;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--rail-line);
  transition:
    transform var(--mid) var(--ease-out),
    background var(--mid) var(--ease-out),
    border-color var(--mid) var(--ease-out);
}
.rail a:hover {
  color: var(--indigo);
}
.rail a:hover::before {
  border-color: var(--indigo);
  transform: scale(1.25);
}
.rail [aria-current='page'] {
  color: var(--ink);
}
.rail [aria-current='page']::before {
  background: var(--brass);
  border-color: var(--brass);
  transform: scale(1.45);
}

.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-3);
  padding: var(--s-4) var(--s-5);
  display: grid;
  gap: var(--s-2);
  align-content: start;
  text-decoration: none;
  color: inherit;
  transition:
    transform var(--mid) var(--ease-out),
    box-shadow var(--mid) var(--ease-out),
    border-color var(--mid) var(--ease-out);
}
a.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: var(--indigo);
}
.card h3,
.card h2 {
  margin: 0;
  font-size: var(--step-1);
  color: var(--indigo);
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--step--1);
}
.card__count {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--brass);
}

@media (prefers-reduced-motion: no-preference) {
  .grid > li,
  .grid > .card {
    animation: rise var(--slow) var(--ease-out) both;
  }
  .grid > :nth-child(1) { animation-delay: 0ms; }
  .grid > :nth-child(2) { animation-delay: 70ms; }
  .grid > :nth-child(3) { animation-delay: 140ms; }
  .grid > :nth-child(4) { animation-delay: 200ms; }
  .grid > :nth-child(5) { animation-delay: 250ms; }
  .grid > :nth-child(6) { animation-delay: 290ms; }
  .grid > :nth-child(n + 7) { animation-delay: 320ms; }
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: var(--r-4);
  border: 1px solid var(--rule-strong);
  color: var(--muted);
  background: var(--paper);
  white-space: nowrap;
}
.chip--verified {
  color: var(--good);
  border-color: color-mix(in srgb, var(--good) 45%, transparent);
  background: color-mix(in srgb, var(--good) 8%, transparent);
}
.chip--archive {
  color: var(--brass);
  border-color: color-mix(in srgb, var(--brass) 45%, transparent);
  background: var(--brass-soft);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  list-style: none;
  margin: 0 0 var(--s-4);
  padding: 0;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  list-style: none;
  margin: 0 0 var(--s-5);
  padding: 0;
}
.pills a {
  display: inline-block;
  padding: var(--s-2) var(--s-4);
  border: 1px solid var(--rule);
  border-radius: var(--r-4);
  background: var(--paper);
  color: var(--ink-2);
  font-size: var(--step--1);
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color var(--fast) var(--ease-out),
    color var(--fast) var(--ease-out),
    background var(--fast) var(--ease-out);
}
.pills a:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: var(--indigo-soft);
}
.pills a[aria-current='page'] {
  background: var(--indigo);
  border-color: var(--indigo);
  color: var(--on-signal);
}

.picks td:first-child,
.picks th:first-child {
  width: 3.2rem;
  text-align: center;
}
.pick {
  font-family: var(--font-mono);
  font-size: var(--step-0);
  font-weight: 500;
  color: var(--brass);
}
.picks .product {
  font-weight: 600;
}
.picks .brandcell {
  white-space: nowrap;
  color: var(--muted);
}
.picks .blurb {
  color: var(--muted);
  max-width: 34rem;
}

.note {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--brass);
  background: var(--brass-soft);
  border-radius: 0 var(--r-2) var(--r-2) 0;
  padding: var(--s-4) var(--s-5);
  margin: 0 0 var(--s-5);
  font-size: var(--step--1);
  color: var(--ink-2);
}
.note > :last-child {
  margin-bottom: 0;
}
.note strong {
  color: var(--ink);
}

.note--plain {
  border-left-color: var(--indigo);
  background: var(--indigo-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-0);
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r-2);
  border: 1px solid var(--indigo);
  background: var(--indigo);
  color: var(--on-signal);
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--fast) var(--ease-out),
    box-shadow var(--fast) var(--ease-out),
    background var(--fast) var(--ease-out);
}
.btn:hover {
  color: var(--on-signal);
  background: var(--indigo-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-1);
}
.btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn--ghost {
  background: transparent;
  color: var(--indigo);
}
.btn--ghost:hover {
  background: var(--indigo-soft);
  color: var(--indigo);
}

.embed {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0 0 var(--s-5);
  border-radius: var(--r-3);
  overflow: hidden;
  background: var(--panel-2);
}
.embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lede {
  font-size: var(--step-1);
  color: var(--ink-2);
}

.meta-line {
  font-size: var(--step--1);
  color: var(--muted);
  margin: 0 0 var(--s-5);
}

.stack > * + * {
  margin-top: var(--s-4);
}

.index-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-1);
}
.index-list a {
  display: block;
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-2);
  text-decoration: none;
  color: var(--ink-2);
  transition: background var(--fast) var(--ease-out);
}
.index-list a:hover {
  background: var(--indigo-soft);
  color: var(--indigo);
}

.aside {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: var(--r-3);
  padding: var(--s-4) var(--s-5);
}
.aside h2 {
  font-size: var(--step-0);
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-2);
  font-size: var(--step--1);
}

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