/* ==========================================================================
   All·AI·Model — The AI Model Price Index
   A financial broadsheet for AI pricing. Warm paper, warm ink, one vermilion.
   ========================================================================== */

@font-face {
  font-family: 'Fraunces';
  src: url('/fonts/fraunces-latin.woff2') format('woff2');
  font-weight: 400 900;
  font-stretch: normal;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2000-206F, U+2074, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'Plex';
  src: url('/fonts/plexsans-latin.woff2') format('woff2');
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2000-206F, U+2074, U+20AC, U+2122, U+2212;
}

:root {
  --paper: #f7f2e7;
  --paper-2: #efe7d5;
  --paper-3: #e7ddc6;
  --ink: #221c14;
  --ink-2: #5d5344;
  --ink-3: #8b7f6c;
  --rule: #d8cfb9;
  --rule-strong: #221c14;
  --accent: #b43a1e;
  --accent-ink: #963218;
  /* Chart palette: emphasis encoding — subject in vermilion, market context in
     warm gray. Identity is carried by per-row direct labels (validated: CVD
     ΔE 24.9 protan, contrast ≥3:1 on paper; neutral context is intentional). */
  --chart-self: #b43a1e;
  --chart-ref: #6f6454;
  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans: 'Plex', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'SF Mono', ui-monospace, 'Cascadia Mono', monospace;
  --measure: 64ch;
  color-scheme: light;
}

[data-theme='dark'] {
  --paper: #211b13;
  --paper-2: #2a2318;
  --paper-3: #352c1e;
  --ink: #eee5d3;
  --ink-2: #b3a68f;
  --ink-3: #857a66;
  --rule: #3d3527;
  --rule-strong: #eee5d3;
  --accent: #e06442;
  --accent-ink: #e8795b;
  --chart-self: #e06442;
  --chart-ref: #9a8d7a;
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --paper: #211b13;
    --paper-2: #2a2318;
    --paper-3: #352c1e;
    --ink: #eee5d3;
    --ink-2: #b3a68f;
    --ink-3: #857a66;
    --rule: #3d3527;
    --rule-strong: #eee5d3;
    --accent: #e06442;
    --accent-ink: #e8795b;
    --chart-self: #e06442;
    --chart-ref: #9a8d7a;
    color-scheme: dark;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  padding: 0 clamp(16px, 4vw, 48px);
}

::selection {
  background: var(--accent);
  color: var(--paper);
}

a {
  color: inherit;
  text-decoration-color: var(--ink-3);
  text-underline-offset: 2px;
}
a:hover {
  color: var(--accent-ink);
  text-decoration-color: currentColor;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

code,
.mono {
  font-family: var(--mono);
  font-size: 0.86em;
  background: var(--paper-2);
  padding: 1px 5px;
  border-radius: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 14px;
  z-index: 99;
}
.skip:focus {
  left: 8px;
}

/* --------------------------------------------------------------------------
   Masthead
   -------------------------------------------------------------------------- */

.masthead {
  max-width: 1200px;
  margin: 0 auto;
}

.masthead-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 2px;
  border-bottom: 1px solid var(--rule);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.masthead-top a {
  color: inherit;
}
.masthead-sync {
  text-align: right;
}

.masthead-brand {
  text-align: center;
  padding: clamp(18px, 3.5vw, 34px) 0 clamp(10px, 2vw, 18px);
}

.wordmark {
  font-family: var(--serif);
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(40px, 7.5vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-decoration: none;
  color: var(--ink);
}
.wordmark:hover {
  color: var(--ink);
}
.wordmark-dot {
  color: var(--accent);
  font-weight: 400;
  padding: 0 0.02em;
}

.tagline {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.masthead-nav {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 34px);
  border-top: 1px solid var(--rule-strong);
  border-bottom: 3px double var(--rule-strong);
  padding: 9px 0;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.masthead-nav a {
  text-decoration: none;
  color: var(--ink-2);
}
.masthead-nav a:hover {
  color: var(--accent-ink);
}
.masthead-nav a[aria-current='page'] {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.night-toggle {
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: var(--ink-3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.night-toggle:hover {
  color: var(--accent-ink);
}
.night-toggle::before {
  content: '◐ ';
}

/* --------------------------------------------------------------------------
   Ticker
   -------------------------------------------------------------------------- */

.ticker {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  padding: 8px 0;
}
.ticker-track {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: ticker 70s linear infinite;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker {
    overflow-x: auto;
  }
  .ticker-track {
    animation: none;
  }
}

.tick {
  display: flex;
  gap: 8px;
  align-items: baseline;
  text-decoration: none;
  white-space: nowrap;
  font-size: 12.5px;
}
.tick-name {
  font-weight: 600;
}
.tick-price {
  font-variant-numeric: tabular-nums;
  color: var(--ink-2);
}
.tick-sep {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}

/* --------------------------------------------------------------------------
   Main content shell
   -------------------------------------------------------------------------- */

main {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 55vh;
}

/* Deck — the editorial opening */

.deck {
  padding: clamp(30px, 5.5vw, 64px) 0 clamp(22px, 4vw, 44px);
  max-width: 900px;
}
.deck h1 {
  font-family: var(--serif);
  font-weight: 640;
  font-variation-settings: 'opsz' 100;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.deck h1 em {
  font-style: italic;
  color: var(--accent);
}
.deck p {
  margin-top: 18px;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--ink-2);
  max-width: var(--measure);
}

/* Today's board — three ruled newspaper columns */

.board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(28px, 4vw, 52px);
}
.board-col {
  padding: 18px 22px 22px;
  border-left: 1px solid var(--rule);
}
.board-col:first-child {
  border-left: none;
  padding-left: 2px;
}
.board h2 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 4px;
}
.board-rubric {
  font-size: 11.5px;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.board ol {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  counter-reset: board;
}
.board li {
  counter-increment: board;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: 'name name' 'prov note';
  padding: 7px 0;
  border-top: 1px dotted var(--rule);
  font-size: 13.5px;
}
.board li:first-child {
  border-top: none;
}
.board li > a {
  grid-area: name;
  font-weight: 600;
  text-decoration: none;
}
.board li > a::before {
  content: counter(board) '  ';
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink-3);
  font-size: 12px;
}
.board li > a:hover {
  text-decoration: underline;
}
.board-prov {
  grid-area: prov;
  color: var(--ink-3);
  font-size: 12px;
}
.board-note {
  grid-area: note;
  justify-self: end;
  font-variant-numeric: tabular-nums;
  color: var(--ink-2);
  font-size: 12.5px;
}

/* --------------------------------------------------------------------------
   Toolbar, chips, pills
   -------------------------------------------------------------------------- */

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px 22px;
  padding: 4px 0 12px;
}

#q {
  font: inherit;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--rule-strong);
  padding: 6px 2px;
  min-width: min(320px, 80vw);
}
#q::placeholder {
  color: var(--ink-3);
}
#q:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.toolbar-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--rule);
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
}
.pill:has(input:checked) {
  border-color: var(--accent);
  color: var(--accent-ink);
  background: color-mix(in srgb, var(--accent) 9%, transparent);
}
.pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toolbar-count {
  margin-left: auto;
  font-size: 12px;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 18px;
  padding: 8px 0 14px;
  border-top: 1px dotted var(--rule);
  font-size: 12.5px;
}
.chip {
  font: inherit;
  letter-spacing: 0.04em;
  background: none;
  border: none;
  padding: 2px 0;
  color: var(--ink-2);
  cursor: pointer;
}
.chip:hover {
  color: var(--accent-ink);
}
.chip.is-on {
  color: var(--ink);
  font-weight: 600;
  box-shadow: inset 0 -2px var(--accent);
}

/* --------------------------------------------------------------------------
   The price table
   -------------------------------------------------------------------------- */

.index {
  margin-bottom: clamp(36px, 5vw, 64px);
}

.table-scroll {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.price-table thead th {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-2);
  text-align: left;
  padding: 8px 12px 6px;
  border-bottom: 2px solid var(--rule-strong);
  white-space: nowrap;
}
.price-table thead th small {
  font-weight: 400;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.price-table th[data-sort] {
  cursor: pointer;
}
.price-table th[data-sort]:hover {
  color: var(--accent-ink);
}
.price-table th[aria-sort]::after {
  content: ' ▾';
  color: var(--accent);
  font-size: 10px;
}
.price-table th[aria-sort='ascending']::after {
  content: ' ▴';
}

.price-table tbody td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--rule);
  vertical-align: baseline;
}
.price-table tbody tr:hover {
  background: var(--paper-2);
}

.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
th.num {
  text-align: right;
}

.td-model {
  min-width: 200px;
}
.td-model > a {
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.td-model > a:hover {
  text-decoration: underline;
}
.td-provider {
  display: block;
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: 1px;
}

.new-flag {
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--accent);
  padding: 1.5px 5px;
  margin-left: 8px;
  vertical-align: 2px;
}

.td-cmp,
.th-cmp {
  width: 30px;
  padding-right: 0 !important;
}
.cmp {
  accent-color: var(--accent);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.caps {
  display: inline-flex;
  gap: 4px;
}
.cap {
  font-size: 9.5px;
  font-weight: 600;
  border: 1px solid var(--rule);
  color: var(--ink-2);
  width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
  cursor: help;
}
.cap-r {
  border-color: var(--accent);
  color: var(--accent-ink);
}

.table-empty {
  padding: 40px 0;
  text-align: center;
  color: var(--ink-2);
  font-style: italic;
  font-family: var(--serif);
  font-size: 17px;
}

/* --------------------------------------------------------------------------
   Compare bar (sticky) & compare page
   -------------------------------------------------------------------------- */

.compare-bar[hidden] {
  display: none;
}
.compare-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--paper);
  border: 2px solid var(--rule-strong);
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--ink) 18%, transparent);
  padding: 10px 18px;
  font-size: 13px;
  z-index: 50;
}
.compare-bar a {
  font-weight: 700;
  color: var(--accent-ink);
  text-decoration: none;
}
.compare-bar button {
  font: inherit;
  font-size: 12px;
  background: none;
  border: none;
  color: var(--ink-3);
  cursor: pointer;
  text-decoration: underline;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  margin-bottom: 56px;
}
.compare-table thead th {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 640;
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid var(--rule-strong);
  vertical-align: bottom;
  min-width: 150px;
}
.compare-table thead th a {
  text-decoration: none;
}
.compare-table tbody th {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-2);
  text-align: left;
  padding: 9px 14px;
  border-bottom: 1px solid var(--rule);
  white-space: nowrap;
}
.compare-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--rule);
  text-align: left !important;
}
.compare-table td.best {
  color: var(--accent-ink);
  font-weight: 700;
}
.compare-table td.best::after {
  content: ' ●';
  font-size: 8px;
  vertical-align: 2px;
}

/* --------------------------------------------------------------------------
   Page scaffolding (heads, crumbs, prose)
   -------------------------------------------------------------------------- */

.page-head {
  padding: clamp(28px, 4.5vw, 52px) 0 20px;
  max-width: 820px;
}
.page-head h1 {
  font-family: var(--serif);
  font-weight: 640;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.page-head p {
  margin-top: 14px;
  color: var(--ink-2);
  max-width: var(--measure);
}
.page-sub .group-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.crumbs {
  padding-top: 22px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}
.crumbs a {
  color: var(--ink-2);
}
.crumbs-tail {
  padding: 10px 0 48px;
  font-size: 13px;
}

.section-head {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 6px;
  margin-bottom: 14px;
}
.section-head small {
  color: var(--ink-3);
  letter-spacing: 0.06em;
}

.prose {
  max-width: 720px;
  padding-bottom: 64px;
}
.prose p {
  margin-top: 16px;
  font-size: 15.5px;
}

/* --------------------------------------------------------------------------
   Model page
   -------------------------------------------------------------------------- */

.model-page {
  padding-bottom: 24px;
}

.model-head {
  padding: 18px 0 8px;
  max-width: 860px;
}
.model-head h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.014em;
}
.model-sub {
  margin-top: 10px;
  color: var(--ink-2);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.model-desc {
  margin-top: 12px;
  font-size: 16px;
  max-width: var(--measure);
  color: var(--ink-2);
}

.rate-card {
  margin: 26px 0 34px;
}
.rates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.rate {
  padding: 16px 18px 18px 0;
  border-right: 1px solid var(--rule);
  margin-right: 18px;
}
.rate:last-child {
  border-right: none;
}
.rate-k {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.rate-v {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-weight: 640;
  font-size: clamp(24px, 3vw, 36px);
  font-variant-numeric: lining-nums;
  letter-spacing: -0.01em;
}

.model-cols {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  margin-bottom: 40px;
}

.chart {
  margin: 0 0 26px;
}
.chart figcaption {
  font-size: 12.5px;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.chart svg {
  width: 100%;
  height: auto;
  display: block;
}
.bar {
  fill: var(--chart-ref);
}
.bar-self {
  fill: var(--chart-self);
}
.bar-label {
  font-family: var(--sans);
  font-size: 11.5px;
  fill: var(--ink-2);
}
.bar-label-self {
  font-weight: 700;
  fill: var(--ink);
}
.bar-value {
  font-family: var(--sans);
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
  fill: var(--ink);
}
.baseline {
  stroke: var(--rule-strong);
  stroke-width: 1;
}

.specs {
  border-top: 1px solid var(--rule);
}
.spec {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13.5px;
}
.spec dt {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 2px;
}
.spec dd {
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.calculator {
  margin-top: 30px;
}
.calc-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-2);
}
.calc-row input {
  font: inherit;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  width: 76px;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--rule-strong);
  padding: 3px 4px;
  text-align: right;
}
.calc-row input:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.calc-result {
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-2);
}
.calc-result output {
  font-family: var(--serif);
  font-weight: 640;
  font-size: 30px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.also-listed {
  margin: 8px 0 26px;
}
.listings {
  list-style: none;
  padding: 0;
  columns: 3 240px;
  column-gap: 40px;
}
.listings li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px dotted var(--rule);
  break-inside: avoid;
  font-size: 13.5px;
}
.listings li a {
  font-weight: 600;
  text-decoration: none;
}
.listings li a:hover {
  text-decoration: underline;
}
.listing-price {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
  color: var(--ink-2);
  font-size: 12.5px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Provider directory
   -------------------------------------------------------------------------- */

.directory-page {
  padding-bottom: 56px;
}
.directory-group {
  margin-bottom: 34px;
}
.directory {
  list-style: none;
  padding: 0;
  columns: 3 260px;
  column-gap: 48px;
}
.directory li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 0;
  break-inside: avoid;
  font-size: 14px;
}
.directory li a {
  font-weight: 600;
  text-decoration: none;
}
.directory li a:hover {
  text-decoration: underline;
  color: var(--accent-ink);
}
.directory li::after {
  content: '';
  order: 1;
  flex: 1;
  border-bottom: 1px dotted var(--rule);
  margin: 0 2px 3px;
}
.dir-count {
  order: 2;
  font-size: 12px;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Colophon
   -------------------------------------------------------------------------- */

.colophon {
  max-width: 1200px;
  margin: 30px auto 0;
  border-top: 3px double var(--rule-strong);
  padding: 22px 2px 40px;
}
.colophon-inner {
  max-width: 640px;
  font-size: 12.5px;
  color: var(--ink-2);
}
.colophon-brand {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 8px;
}
.colophon p + p {
  margin-top: 8px;
}
.colophon-meta {
  color: var(--ink-3);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .board {
    grid-template-columns: 1fr;
  }
  .board-col {
    border-left: none;
    border-top: 1px solid var(--rule);
    padding: 16px 2px;
  }
  .board-col:first-child {
    border-top: none;
  }
  .model-cols {
    grid-template-columns: 1fr;
  }
  .rates {
    grid-template-columns: repeat(2, 1fr);
  }
  .rate:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 720px) {
  .th-cache,
  .th-cutoff {
    display: none;
  }
  .masthead-top {
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }
  .masthead-sync {
    text-align: center;
  }
  .toolbar-count {
    margin-left: 0;
    width: 100%;
  }
}
