:root {
  color-scheme: light;
  --background: #f6f3ed;
  --surface: #fffdf9;
  --surface-muted: #ece8df;
  --text: #20241f;
  --muted: #62685f;
  --border: #d8d4ca;
  --accent: #1769d2;
  --accent-dark: #0f4f9f;
  --price-cheapest: #cce5d1;
  --price-low: #e1ecd5;
  --price-typical: #eeeadb;
  --price-high: #f0dac3;
  --price-expensive: #edc5bd;
  --focus: #1769d2;
}

[data-theme="dark"] {
  color-scheme: dark;
  --background: #171916;
  --surface: #20231f;
  --surface-muted: #2b2e29;
  --text: #f0eee8;
  --muted: #b6b9b0;
  --border: #40443d;
  --accent: #72a9f1;
  --accent-dark: #a8ccff;
  --price-cheapest: #29452f;
  --price-low: #354632;
  --price-typical: #45443a;
  --price-high: #55402f;
  --price-expensive: #59322e;
  --focus: #8bbcff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Roboto", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-thickness: 2px;
}

button,
input,
select {
  color: inherit;
  font: inherit;
}

button,
select,
input[type="number"] {
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface);
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 38%, transparent);
  outline-offset: 2px;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.site-header__inner {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 54px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand > span {
  color: var(--accent);
  font-size: 20px;
}

.site-header nav,
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-header nav a,
footer nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.site-header nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.theme-toggle {
  width: 34px;
  height: 34px;
  padding: 0;
  cursor: pointer;
}

main,
footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.price-workspace {
  padding: 28px 0 0;
}

.workspace-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.workspace-heading h1,
.info-page h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(29px, 4.4vw, 46px);
  line-height: 1.07;
  letter-spacing: -0.035em;
}

.workspace-heading p,
.info-page > header p {
  max-width: 700px;
  margin: 10px 0 0;
  color: var(--muted);
}

.source-mark {
  flex: 0 0 auto;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.controls {
  display: grid;
  grid-template-columns: minmax(210px, 1.4fr) repeat(3, minmax(110px, .65fr)) auto;
  gap: 14px;
  margin: 24px 0 14px;
  align-items: end;
}

.controls > label:not(.check-control) {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.controls select,
.controls input[type="number"] {
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
}

.input-with-unit {
  position: relative;
  display: block;
}

.input-with-unit input {
  padding-right: 82px !important;
}

.input-with-unit small {
  position: absolute;
  top: 50%;
  right: 10px;
  overflow: hidden;
  max-width: 74px;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.check-control {
  display: flex;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 7px;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
}

.overview {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(360px, 1.2fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}

.current-reading {
  padding: 22px 24px;
  border-right: 1px solid var(--border);
  border-left: 4px solid var(--accent);
}

.current-reading p,
.current-reading > span,
.current-reading time {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.current-reading__value {
  display: flex;
  margin: 3px 0 4px;
  align-items: baseline;
  gap: 8px;
}

.current-reading__value strong {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-unit {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.day-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.day-summary > div {
  padding: 22px 18px;
  border-right: 1px solid var(--border);
}

.day-summary > div:last-child {
  border-right: 0;
}

.day-summary dt {
  color: var(--muted);
  font-size: 13px;
}

.day-summary dd {
  margin: 6px 0 0;
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.day-summary time {
  color: var(--muted);
  font-size: 12px;
}

.cheapest-block {
  display: flex;
  grid-column: 1 / -1;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cheapest-block h2 {
  margin: 0;
  font-size: 16px;
}

.cheapest-block p {
  display: flex;
  margin: 4px 0 0;
  align-items: baseline;
  gap: 8px;
}

.cheapest-block fieldset {
  display: flex;
  margin: 0;
  padding: 0;
  border: 0;
  gap: 2px;
}

.cheapest-block legend {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
}

.cheapest-block label,
.interval-switch label {
  cursor: pointer;
}

.cheapest-block input,
.interval-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cheapest-block label span,
.interval-switch label span {
  display: block;
  padding: 6px 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
}

.cheapest-block input:checked + span,
.interval-switch input:checked + span {
  border-color: var(--border);
  background: var(--surface-muted);
  color: var(--text);
  font-weight: 700;
}

.data-notes {
  display: flex;
  padding: 8px 2px 0;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 12px;
}

.ad-reserve {
  display: flex;
  min-height: 90px;
  margin: 22px 0;
  border-block: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
}

.data-section {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.section-heading {
  display: flex;
  margin-bottom: 16px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2,
.explainers h2,
.info-page h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.view-controls,
.tabs,
.interval-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tabs {
  border-bottom: 1px solid var(--border);
}

.tabs button {
  padding: 7px 10px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.tabs button[aria-selected="true"] {
  border-bottom-color: var(--accent);
  color: var(--text);
  font-weight: 700;
}

.price-chart,
.history-chart {
  position: relative;
  width: 100%;
  min-height: 280px;
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.history-chart {
  min-height: 190px;
}

.chart-plot {
  display: grid;
  width: 100%;
  grid-template-columns: 52px minmax(0, 1fr);
}

.price-chart .chart-plot {
  height: 278px;
  min-height: 278px;
}

.chart-plot > svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.history-chart .chart-plot {
  height: 164px;
  min-height: 158px;
  flex: 1 1 164px;
}

.chart-y-axis {
  position: relative;
  min-width: 0;
  color: var(--muted);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.chart-y-axis span {
  position: absolute;
  right: 8px;
  transform: translateY(-50%);
  line-height: 1;
  white-space: nowrap;
}

.chart-bar {
  fill: var(--price-typical);
  transition: opacity 160ms ease, fill 160ms ease;
}

.chart-bar:hover {
  opacity: .72;
}

.chart-bar.price-cheapest { fill: var(--price-cheapest); }
.chart-bar.price-low { fill: var(--price-low); }
.chart-bar.price-typical { fill: var(--price-typical); }
.chart-bar.price-high { fill: var(--price-high); }
.chart-bar.price-expensive { fill: var(--price-expensive); }
.chart-bar.is-current { stroke: var(--accent); stroke-width: 2; }

.chart-zero {
  stroke: var(--muted);
  stroke-dasharray: 3 3;
  stroke-width: 1;
}

.chart-grid {
  stroke: var(--border);
  stroke-width: 1;
}

.chart-label,
.chart-tooltip {
  fill: var(--text);
  font-family: inherit;
  font-size: 11px;
}

.chart-tooltip {
  font-size: 12px;
  font-weight: 700;
}

.chart-scale {
  display: flex;
  margin-left: 52px;
  padding-top: 6px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

.history-chart {
  display: flex;
  flex-direction: column;
}

.history-axis {
  display: grid;
  min-height: 26px;
  margin-left: 52px;
  padding: 4px 5px 6px;
  align-items: end;
  color: var(--muted);
  font-size: 10px;
  line-height: 1;
}

.history-axis span {
  overflow: visible;
  text-align: center;
  white-space: nowrap;
}

.price-legend {
  display: grid;
  grid-template-columns: auto 150px auto 1fr;
  margin-top: 10px;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.price-legend__scale {
  display: grid;
  height: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 2px;
  grid-template-columns: repeat(5, 1fr);
}

.price-legend__scale i {
  display: block;
}

.price-legend__scale .price-cheapest { background: var(--price-cheapest); }
.price-legend__scale .price-low { background: var(--price-low); }
.price-legend__scale .price-typical { background: var(--price-typical); }
.price-legend__scale .price-high { background: var(--price-high); }
.price-legend__scale .price-expensive { background: var(--price-expensive); }

.price-legend small {
  font-size: 11px;
  text-align: right;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.precision-control {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.precision-control select {
  min-height: 32px;
  padding: 4px 28px 4px 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

th,
td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

td:last-child,
th:last-child {
  text-align: right;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr.is-current td {
  font-weight: 700;
}

tbody tr.is-current td:first-child {
  border-left: 3px solid var(--accent);
}

.hour-toggle {
  display: inline-flex;
  padding: 2px 0;
  border: 0;
  background: transparent;
  align-items: center;
  gap: 8px;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.hour-toggle:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hour-chevron {
  display: inline-block;
  width: 12px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1;
  transition: transform 140ms ease;
}

.hour-toggle[aria-expanded="true"] .hour-chevron {
  transform: rotate(90deg);
}

.hour-detail[hidden] {
  display: none;
}

.hour-detail > td {
  padding: 0;
  background: var(--surface-muted);
}

.quarter-list {
  padding: 4px 14px 6px 42px;
}

.quarter-list > div {
  display: grid;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  grid-template-columns: 1fr auto;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.quarter-list > div:last-child {
  border-bottom: 0;
}

.quarter-price {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

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

.price-cell {
  background: var(--surface);
}

.hour-row.price-cheapest td {
  background: color-mix(in srgb, var(--price-cheapest) 72%, var(--surface));
}

.hour-row.price-low td {
  background: color-mix(in srgb, var(--price-low) 72%, var(--surface));
}

.hour-row.price-typical td {
  background: color-mix(in srgb, var(--price-typical) 72%, var(--surface));
}

.hour-row.price-high td {
  background: color-mix(in srgb, var(--price-high) 72%, var(--surface));
}

.hour-row.price-expensive td {
  background: color-mix(in srgb, var(--price-expensive) 72%, var(--surface));
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 42px;
}

.comparison-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style-position: inside;
}

.comparison-list li {
  border-bottom: 1px solid var(--border);
}

.comparison-list a {
  display: inline-flex;
  width: calc(100% - 24px);
  padding: 8px 0;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  text-decoration: none;
}

.comparison-list strong {
  font-size: 14px;
}

.comparison-callout {
  max-width: 440px;
  margin: 12px 0 0;
  color: var(--muted);
}

.explainers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 30px 0 46px;
  border-top: 1px solid var(--border);
  gap: 30px 34px;
}

.explainers article {
  padding-top: 14px;
  border-top: 2px solid var(--text);
}

.explainers p,
.info-page p {
  margin: 8px 0 0;
  color: var(--muted);
}

footer {
  display: flex;
  padding: 28px 0 40px;
  border-top: 1px solid var(--border);
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

footer p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.info-page {
  max-width: 760px;
  min-height: 70vh;
  padding: 56px 0 80px;
}

.info-page section {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--border);
}

.page-language {
  display: grid;
  width: min(220px, 100%);
  gap: 5px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.page-language select {
  min-height: 42px;
  padding: 8px 10px;
}

.comparison-page {
  padding-top: 34px;
}

.comparison-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.comparison-heading h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.comparison-heading p {
  max-width: 720px;
  margin: 9px 0 0;
  color: var(--muted);
}

.comparison-workspace {
  margin: 28px 0 42px;
  border-top: 2px solid var(--text);
}

.comparison-toolbar {
  display: grid;
  grid-template-columns: minmax(250px, 1.6fr) repeat(3, minmax(130px, .6fr));
  gap: 14px;
  padding: 18px 0;
  align-items: end;
}

.comparison-toolbar label {
  display: grid;
  min-width: 0;
  gap: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.comparison-toolbar input,
.comparison-toolbar select {
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface);
}

.comparison-date-tabs {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.comparison-date-tabs button {
  min-width: 150px;
  padding: 10px 18px 9px;
  border: 0;
  border-right: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.comparison-date-tabs button[aria-selected="true"] {
  box-shadow: inset 0 -3px 0 var(--accent-dark);
  font-weight: 700;
}

.comparison-date-tabs time {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
}

.comparison-table {
  min-width: 760px;
  font-variant-numeric: tabular-nums;
}

.comparison-table thead th {
  background: var(--surface-muted);
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.comparison-table thead button {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.comparison-table th[aria-sort="ascending"] button::after {
  content: "  ↑";
}

.comparison-table th[aria-sort="descending"] button::after {
  content: "  ↓";
}

.comparison-table tbody tr:not(.comparison-divider):hover > * {
  background: color-mix(in srgb, var(--surface-muted) 58%, var(--surface));
}

.comparison-table tbody th a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.comparison-table tbody th small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.comparison-table td:nth-child(n + 2):nth-child(-n + 5),
.comparison-table thead th:nth-child(n + 2):nth-child(-n + 5) {
  text-align: right;
}

.comparison-table .is-unavailable {
  color: var(--muted);
}

.comparison-divider th {
  padding-top: 22px;
  border-bottom: 2px solid var(--border);
  background: var(--background);
  font-size: 13px;
}

.comparison-freshness {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.comparison-method {
  max-width: 760px;
  padding: 24px 0 52px;
  border-top: 1px solid var(--border);
}

.comparison-method h2 {
  margin: 0 0 8px;
}

.comparison-method p {
  margin: 7px 0;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 24px;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-content: center;
  text-align: center;
}

.error-page p,
.error-page h1 {
  margin: 0 0 12px;
}

.price-flash {
  animation: price-flash 180ms ease;
}

@keyframes price-flash {
  from { opacity: .45; }
  to { opacity: 1; }
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 50px;
  }

  .site-header nav a:nth-child(n + 3) {
    display: none;
  }

  .price-workspace {
    padding-top: 20px;
  }

  .workspace-heading {
    display: block;
  }

  .workspace-heading h1 {
    font-size: 31px;
  }

  .workspace-heading p {
    font-size: 14px;
    line-height: 1.4;
  }

  .source-mark {
    display: none;
  }

  .controls {
    grid-template-columns: 1.4fr .6fr;
    margin-top: 18px;
  }

  .check-control {
    min-height: 40px;
  }

  .overview {
    grid-template-columns: 1fr;
  }

  .current-reading {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .current-reading p,
  .current-reading__value {
    grid-column: 1 / -1;
  }

  .current-reading__value strong {
    font-size: 48px;
  }

  .current-reading > span {
    text-align: right;
  }

  .day-summary > div {
    padding: 12px 10px;
  }

  .day-summary dd {
    font-size: 20px;
  }

  .cheapest-block {
    padding: 13px 14px;
  }

  .data-notes {
    display: none;
  }

  .ad-reserve {
    min-height: 76px;
    margin: 18px 0;
  }

  .section-heading,
  .view-controls {
    align-items: flex-start;
  }

  .view-controls {
    flex-direction: column;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .explainers {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-page {
    padding-top: 22px;
  }

  .comparison-heading {
    display: block;
  }

  .comparison-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-search {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .site-header__inner,
  main,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header nav {
    gap: 12px;
  }

  .workspace-heading h1 {
    font-size: 28px;
  }

  .controls {
    gap: 10px;
  }

  .controls > label:not(.check-control) {
    font-size: 12px;
  }

  .controls select,
  .controls input[type="number"] {
    min-height: 40px;
    padding: 7px 8px;
    font-size: 14px;
  }

  .current-reading {
    padding: 13px 14px;
  }

  .current-reading__value strong {
    font-size: 43px;
  }

  .day-summary dt {
    font-size: 11px;
  }

  .day-summary dd {
    font-size: 18px;
  }

  .cheapest-block {
    display: block;
  }

  .cheapest-block fieldset {
    margin-top: 9px;
  }

  .data-section {
    padding: 24px 0;
  }

  .section-heading {
    display: block;
  }

  .view-controls {
    margin-top: 12px;
  }

  .price-chart {
    min-height: 230px;
  }

  .chart-plot {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .price-chart .chart-plot {
    height: 228px;
    min-height: 228px;
  }

  .chart-y-axis span {
    right: 6px;
  }

  .chart-scale,
  .history-axis {
    margin-left: 44px;
  }

  .price-legend {
    grid-template-columns: auto minmax(100px, 1fr) auto;
  }

  .price-legend small {
    grid-column: 1 / -1;
    text-align: left;
  }

  .explainers {
    grid-template-columns: 1fr;
  }

  .comparison-toolbar {
    gap: 10px;
  }

  .comparison-date-tabs {
    overflow-x: auto;
  }

  .comparison-date-tabs button {
    min-width: 125px;
    padding-inline: 12px;
  }

  footer {
    display: block;
  }

  footer nav {
    margin-top: 18px;
  }
}

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