:root {
  color-scheme: light;
  --bg: #f6f9fd;
  --ink: #10222b;
  --muted: #667780;
  --accent: #1a6dd4;
  --accent-bright: #3b8ef5;
  --soft-blue: #b0d4f7;
  --line: rgba(16, 34, 43, 0.1);
  --card-radius: 18px;
  --card-gap: 12px;
  --shadow: 0 1px 0 rgba(255, 255, 255, 0.96) inset, 0 10px 26px rgba(27, 76, 126, 0.09), 0 2px 7px rgba(16, 34, 43, 0.045);
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--bg); scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(780px 420px at -6% 14%, rgba(176, 212, 247, 0.34), transparent 64%),
    radial-gradient(620px 340px at 104% 18%, rgba(59, 142, 245, 0.1), transparent 66%),
    var(--bg);
}
body.sheet-open { overflow: hidden; }
button, select { font: inherit; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: 68px;
  border-bottom: 1px solid rgba(16, 34, 43, 0.07);
  background: rgba(246, 249, 253, 0.9);
  backdrop-filter: blur(16px) saturate(1.08);
}
.header-inner, .page-shell, .article-shell, .footer-inner {
  width: min(1320px, calc(100% - 32px));
  margin-inline: auto;
}
.header-inner {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}
.wordmark { display: block; width: min(310px, 28vw); text-decoration: none; }
.wordmark img { width: auto; height: 48px; }
.site-nav { display: flex; min-width: 0; align-items: center; gap: 4px; }
.site-nav a, .nav-data-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 11px;
  border-radius: 10px;
  color: #40545e;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--accent); background: rgba(26, 109, 212, 0.07); }
.nav-data-link { border: 1px solid rgba(26, 109, 212, 0.2); color: var(--accent); background: rgba(255, 255, 255, 0.58); }
.nav-data-link:hover { background: white; }
.mobile-menu-button, .mobile-nav { display: none; }

.page-shell { padding: 30px 0 60px; }
.page-heading { margin-bottom: 18px; }
.eyebrow {
  margin: 0 0 7px;
  color: var(--accent);
  font: 700 0.68rem "IBM Plex Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; font-size: clamp(2.05rem, 4vw, 2.9rem); line-height: 1.04; letter-spacing: -0.042em; }
.page-heading h1 { display: flex; flex-wrap: wrap; align-items: baseline; gap: 9px; }
.vendor-total { color: var(--accent); font: 700 clamp(0.9rem, 2vw, 1.08rem) "IBM Plex Mono", monospace; letter-spacing: 0; }
.heading-lede { max-width: 780px; margin: 9px 0 0; color: #40545e; font-size: 0.94rem; line-height: 1.55; }
.data-status { margin: 5px 0 0; color: var(--muted); font-size: 0.78rem; }
.catalog-disclosure { margin: -3px 0 13px; padding: 10px 13px; border-left: 3px solid var(--accent); border-radius: 0 10px 10px 0; color: #53666f; background: rgba(232, 243, 255, 0.72); font-size: 0.77rem; line-height: 1.5; }

.filter-toggle { display: none; }
.filters {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr auto;
  align-items: end;
  gap: 12px 16px;
  padding: 14px 16px 16px;
  margin-bottom: 15px;
  border: 1px solid rgba(26, 109, 212, 0.11);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(238, 246, 255, 0.64));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.78);
}
.filter { display: grid; gap: 6px; min-width: 0; }
.filter label { color: #53666f; font-size: 0.8rem; font-weight: 750; }
.filter select {
  width: 100%;
  min-height: 48px;
  padding: 0 42px 0 14px;
  color: var(--ink);
  font-weight: 700;
  background: white;
  border: 1px solid rgba(16, 34, 43, 0.15);
  border-radius: 11px;
}
.result-count { padding-bottom: 13px; color: var(--muted); font-size: 0.82rem; font-weight: 700; white-space: nowrap; }

.grid-shell { overflow: visible; }
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: var(--card-gap);
}
.vendor-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 258px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  padding: 14px 15px 15px;
  border: 1px solid rgba(26, 109, 212, 0.14);
  border-radius: var(--card-radius);
  background:
    radial-gradient(130% 76% at 6% 0%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0) 63%),
    radial-gradient(75% 70% at 100% 0%, rgba(111, 181, 255, 0.16), transparent 72%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.86));
  box-shadow: var(--shadow);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.vendor-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent);
}
.vendor-card:hover { transform: translateY(-2px); border-color: rgba(26, 109, 212, 0.24); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.98) inset, 0 15px 34px rgba(27, 76, 126, 0.13), 0 3px 8px rgba(16, 34, 43, 0.05); }
.vendor-card.best {
  border-color: rgba(26, 109, 212, 0.3);
  background:
    radial-gradient(130% 80% at 4% 0%, rgba(255, 255, 255, 0.95), transparent 62%),
    linear-gradient(155deg, rgba(232, 242, 255, 0.98), rgba(244, 249, 255, 0.94));
  box-shadow: inset 3px 0 0 #15518f, 0 1px 0 rgba(255, 255, 255, 0.98) inset, 0 13px 30px rgba(26, 109, 212, 0.13);
}
.vendor-card-head { display: flex; min-height: 27px; align-items: flex-start; justify-content: space-between; gap: 10px; }
.vendor-name { min-width: 0; margin: 0; font-size: 1.05rem; line-height: 1.18; font-weight: 800; letter-spacing: -0.018em; }
.vendor-name a { text-decoration: none; }
.vendor-name a:hover { color: var(--accent); }
.rating { flex: 0 0 auto; margin-top: 1px; padding: 1px 7px; border: 1px solid var(--soft-blue); border-radius: 999px; color: var(--accent); background: #eef6ff; font-weight: 800; font-size: 0.7rem; }
.facts { min-height: 43px; color: var(--muted); font-size: 0.73rem; line-height: 1.35; font-weight: 650; }
.facts span { display: block; }
.payment-fact { display: -webkit-box !important; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.price-row { display: flex; min-height: 31px; align-items: baseline; gap: 8px; margin-top: 2px; }
.price { margin: 0; color: var(--accent); font-size: 1.48rem; line-height: 1; font-weight: 800; font-variant-numeric: tabular-nums; }
.original { color: #7b8a92; font-size: 0.72rem; }
.discount { min-height: 17px; color: var(--accent); font: 700 0.7rem/1.3 "IBM Plex Mono", monospace; overflow-wrap: anywhere; }
.card-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2px 10px; color: var(--muted); font-size: 0.71rem; font-weight: 650; }
.card-spacer { flex: 1; }
.buy-button {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 16px;
  border-radius: 11px;
  color: white;
  background: linear-gradient(100deg, #1a6dd4, #3b8ef5);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 7px 15px rgba(26, 109, 212, 0.18);
}
.buy-button:hover { background: #155db6; }
.view-all {
  width: 100%;
  min-height: 46px;
  margin-top: 14px;
  border: 1px solid rgba(26, 109, 212, 0.24);
  border-radius: 12px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  cursor: pointer;
}
.view-all:hover { background: white; }
.empty { padding: 40px; border: 1px dashed var(--soft-blue); border-radius: 16px; color: var(--muted); text-align: center; background: rgba(255, 255, 255, 0.54); }

.route-explorer { margin-top: 54px; padding-top: 28px; border-top: 1px solid rgba(26, 109, 212, 0.14); }
.route-explorer > h2 { margin: 0 0 15px; font-size: clamp(1.55rem, 3vw, 2.1rem); letter-spacing: -0.035em; }
.route-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.route-card {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 17px;
  border: 1px solid rgba(26, 109, 212, 0.14);
  border-radius: 15px;
  color: var(--ink);
  background: radial-gradient(80% 120% at 100% 0%, rgba(83, 159, 242, 0.14), transparent 72%), rgba(255, 255, 255, 0.72);
  box-shadow: 0 7px 18px rgba(27, 76, 126, 0.06);
  font-weight: 750;
  text-decoration: none;
}
.route-card span:last-child { color: var(--accent); font-size: 1.2rem; }
.route-card:hover { border-color: rgba(26, 109, 212, 0.3); background-color: white; }

.filter-sheet { display: none; }

.article-shell { padding: 38px 0 74px; }
.article-hero { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr); align-items: end; gap: 40px; padding: 14px 0 28px; }
.article-hero h1 { max-width: 850px; }
.article-lede { max-width: 790px; margin: 15px 0 0; color: #40545e; font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.62; }
.evidence-status {
  padding: 18px;
  border: 1px solid rgba(26, 109, 212, 0.16);
  border-radius: 17px;
  background: radial-gradient(95% 100% at 100% 0%, rgba(87, 165, 247, 0.18), transparent 72%), rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}
.evidence-status span { display: block; color: var(--accent); font: 700 0.66rem "IBM Plex Mono", monospace; letter-spacing: 0.1em; text-transform: uppercase; }
.evidence-status strong { display: block; margin-top: 8px; font-size: 1.05rem; line-height: 1.35; }
.evidence-status p { margin: 8px 0 0; color: var(--muted); font-size: 0.78rem; line-height: 1.45; }
.summary-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 8px 0 30px; }
.summary-card {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(26, 109, 212, 0.15);
  border-radius: 17px;
  background:
    radial-gradient(100% 120% at 100% 0%, rgba(82, 162, 247, 0.16), transparent 68%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 247, 255, 0.82));
  box-shadow: var(--shadow);
}
.summary-card h2 { margin: 0; font-size: 1.08rem; line-height: 1.25; }
.summary-card p { margin: 9px 0 0; color: #53666f; font-size: 0.88rem; line-height: 1.55; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: 36px; }
.article-body { display: grid; gap: 16px; }
.article-section {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(26, 109, 212, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.77);
  box-shadow: 0 9px 24px rgba(27, 76, 126, 0.06);
}
.article-section h2 { margin: 0 0 13px; font-size: clamp(1.28rem, 2.5vw, 1.7rem); letter-spacing: -0.028em; }
.article-section h3 { margin: 22px 0 8px; font-size: 1.05rem; }
.article-section p, .article-section li { color: #40545e; font-size: 0.94rem; line-height: 1.7; }
.article-section p { margin: 0 0 13px; }
.article-section p:last-child { margin-bottom: 0; }
.article-section ul { display: grid; gap: 8px; margin: 10px 0 0; padding-left: 20px; }
.article-subsection { padding-top: 2px; }
.evidence-callout { margin-top: 18px; padding: 15px 17px; border-left: 3px solid var(--accent); border-radius: 0 12px 12px 0; color: #40545e; background: #eef6ff; font-size: 0.87rem; line-height: 1.6; }
.table-scroll { overflow-x: auto; margin-top: 16px; border: 1px solid rgba(26, 109, 212, 0.13); border-radius: 13px; }
table { width: 100%; border-collapse: collapse; min-width: 600px; background: white; font-size: 0.85rem; }
th, td { padding: 13px 14px; border-bottom: 1px solid rgba(16, 34, 43, 0.08); text-align: left; vertical-align: top; line-height: 1.45; }
thead th { color: var(--accent); background: #eef6ff; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.05em; }
tbody th { color: var(--ink); width: 22%; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
.article-rail { position: sticky; top: 88px; display: grid; gap: 14px; }
.rail-card {
  padding: 18px;
  border: 1px solid rgba(26, 109, 212, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 22px rgba(27, 76, 126, 0.06);
}
.rail-card h2 { margin: 0 0 12px; font-size: 1rem; }
.rail-card ol { display: grid; gap: 12px; margin: 0; padding-left: 20px; }
.rail-card li { padding-left: 2px; color: var(--muted); font-size: 0.78rem; line-height: 1.4; }
.rail-card li a { display: block; color: #29424e; font-weight: 700; text-decoration: none; }
.rail-card li a:hover { color: var(--accent); text-decoration: underline; }
.rail-card li span { display: block; margin-top: 3px; }
.rail-card nav { display: grid; }
.rail-card nav a { display: flex; min-height: 42px; align-items: center; justify-content: space-between; gap: 10px; border-bottom: 1px solid rgba(16, 34, 43, 0.07); color: #40545e; font-size: 0.83rem; font-weight: 700; text-decoration: none; }
.rail-card nav a:last-child { border-bottom: 0; }
.rail-card nav a:hover { color: var(--accent); }

.site-footer { border-top: 1px solid rgba(26, 109, 212, 0.13); background: rgba(235, 245, 255, 0.58); }
.footer-inner { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 28px 60px; padding: 36px 0 25px; }
.footer-brand img { width: auto; height: 42px; }
.footer-brand p { margin: 9px 0 0; color: var(--muted); font-size: 0.8rem; }
.footer-nav { display: flex; flex-wrap: wrap; align-content: start; gap: 5px 16px; }
.footer-nav a { color: #40545e; font-size: 0.78rem; font-weight: 700; text-decoration: none; }
.footer-nav a:hover { color: var(--accent); text-decoration: underline; }
.attribution { grid-column: 1 / -1; margin: 0; padding-top: 20px; border-top: 1px solid rgba(26, 109, 212, 0.12); color: var(--muted); font-size: 0.76rem; }
.attribution a { color: var(--accent); font-weight: 700; }

.consent {
  position: fixed;
  z-index: 40;
  right: 16px;
  bottom: 16px;
  max-width: 390px;
  padding: 15px;
  border: 1px solid rgba(26, 109, 212, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 55px rgba(16, 34, 43, 0.18);
}
.consent p { margin: 0 0 12px; font-size: 0.86rem; line-height: 1.45; }
.consent button { min-height: 40px; padding: 0 14px; border-radius: 9px; font-weight: 750; cursor: pointer; }
.consent .decline { border: 1px solid var(--line); background: white; }
.consent .accept { margin-left: 6px; border: 1px solid var(--accent); color: white; background: var(--accent); }
.not-found { width: min(680px, calc(100% - 32px)); margin: 12vh auto; padding: 30px; text-align: center; }
.not-found img { width: min(360px, 100%); height: 64px; margin: 0 auto 30px; }
.not-found p { color: var(--muted); }
.primary-link { display: inline-flex; min-height: 44px; align-items: center; margin-top: 10px; padding: 0 18px; border-radius: 11px; color: white; background: var(--accent); font-weight: 800; text-decoration: none; }

select:focus-visible, button:focus-visible, .buy-button:focus-visible, a:focus-visible {
  outline: 3px solid rgba(26, 109, 212, 0.3);
  outline-offset: 2px;
}

@media (min-width: 1280px) {
  .vendor-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1120px) {
  .wordmark { width: min(280px, 30vw); }
  .site-nav a { padding-inline: 8px; font-size: 0.77rem; }
  .article-layout { grid-template-columns: minmax(0, 1fr) 290px; gap: 24px; }
}

@media (max-width: 959px) {
  .header-inner { gap: 12px; }
  .site-nav { overflow-x: auto; scrollbar-width: none; }
  .site-nav::-webkit-scrollbar { display: none; }
  .nav-data-link { display: none; }
  .article-hero { grid-template-columns: 1fr; gap: 18px; }
  .evidence-status { max-width: 620px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-rail { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 720px) and (max-width: 959px) {
  .vendor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 719px) {
  .site-header, .header-inner { min-height: 58px; }
  .header-inner { grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
  .wordmark { width: min(276px, calc(100vw - 92px)); }
  .wordmark img { max-width: 100%; height: 42px; }
  .site-nav, .nav-data-link { display: none; }
  .mobile-menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 4px;
    border: 1px solid rgba(26, 109, 212, 0.17);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.74);
  }
  .mobile-menu-button span[aria-hidden="true"] { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--ink); }
  .mobile-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    width: min(100% - 24px, 520px);
    max-height: min(70vh, 520px);
    overflow-y: auto;
    margin: 0 auto 10px;
    padding: 9px;
    border: 1px solid rgba(26, 109, 212, 0.14);
    border-radius: 14px;
    background: white;
    box-shadow: 0 16px 38px rgba(16, 34, 43, 0.14);
  }
  .mobile-nav a { display: flex; min-height: 44px; align-items: center; padding: 0 11px; border-radius: 9px; color: #40545e; font-size: 0.82rem; font-weight: 750; text-decoration: none; }
  .mobile-nav a[aria-current="page"] { color: var(--accent); background: #eef6ff; }
  .page-shell { padding-top: 23px; }
  .page-heading h1 { display: block; font-size: clamp(1.9rem, 9vw, 2.45rem); }
  .title-separator { display: none; }
  .vendor-total { display: block; margin-top: 8px; font-size: 0.92rem; }
  .heading-lede { font-size: 0.88rem; line-height: 1.5; }
  .filters { display: none; }
  .filter-toggle {
    display: flex;
    width: 100%;
    min-height: 60px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 13px;
    padding: 0 16px;
    border: 1px solid rgba(26, 109, 212, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 7px 18px rgba(27, 76, 126, 0.06);
    font-weight: 800;
  }
  .filter-toggle span:last-child { color: var(--accent); font-size: 0.74rem; font-weight: 700; }
  .filter-sheet {
    position: fixed;
    inset: auto 0 0;
    display: block;
    width: 100%;
    max-width: none;
    max-height: min(78dvh, 640px);
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(26, 109, 212, 0.13);
    border-bottom: 0;
    border-radius: 24px 24px 0 0;
    color: var(--ink);
    background: rgba(250, 252, 255, 0.99);
    box-shadow: 0 -24px 64px rgba(16, 34, 43, 0.2);
  }
  .filter-sheet:not([open]) { display: none; }
  .filter-sheet::backdrop { background: rgba(16, 34, 43, 0.42); backdrop-filter: blur(2px); }
  .filter-sheet[open] { animation: sheet-enter 180ms cubic-bezier(0.2, 0.78, 0.2, 1); }
  .filter-sheet-frame { display: grid; max-height: inherit; grid-template-rows: auto minmax(0, 1fr) auto; }
  .filter-sheet-header {
    position: relative;
    display: grid;
    min-height: 64px;
    grid-template-columns: 1fr 44px;
    align-items: center;
    padding: 14px 12px 8px 16px;
    border-bottom: 1px solid rgba(16, 34, 43, 0.08);
  }
  .sheet-grip { position: absolute; top: 7px; left: 50%; width: 36px; height: 4px; transform: translateX(-50%); border-radius: 99px; background: rgba(16, 34, 43, 0.18); }
  .filter-sheet-header h2 { margin: 4px 0 0; font-size: 1.08rem; letter-spacing: -0.02em; }
  .sheet-close { width: 44px; height: 44px; border: 0; border-radius: 12px; background: rgba(16, 34, 43, 0.055); font-size: 1.35rem; }
  .filter-sheet-body { display: grid; gap: 14px; overflow-y: auto; overscroll-behavior: contain; padding: 14px 16px 18px; }
  .filter-sheet-body select { min-height: 48px; }
  .filter-sheet-footer {
    display: grid;
    grid-template-columns: minmax(92px, auto) minmax(0, 1fr);
    gap: 10px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(16, 34, 43, 0.08);
    background: rgba(250, 252, 255, 0.98);
  }
  .filter-sheet-footer button { min-height: 48px; border-radius: 12px; font-weight: 800; }
  .clear-filters { border: 1px solid rgba(16, 34, 43, 0.14); background: white; }
  .apply-filters { border: 1px solid var(--accent); color: white; background: var(--accent); }
  .vendor-grid { grid-template-columns: 1fr; gap: 10px; }
  .vendor-card { min-height: 242px; }
  .route-explorer { margin-top: 42px; }
  .route-grid { grid-template-columns: 1fr; }
  .article-shell { padding-top: 26px; }
  .article-hero { padding-top: 5px; }
  .summary-grid { grid-template-columns: 1fr; }
  .summary-card { min-height: 0; }
  .article-rail { grid-template-columns: 1fr; }
  .article-section { border-radius: 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 22px; }
  .footer-brand img { max-width: 280px; }
  .attribution { grid-column: auto; }
  .consent { right: 10px; bottom: 10px; left: 10px; max-width: none; }
}

@keyframes sheet-enter {
  from { transform: translateY(28px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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