:root {
  color-scheme: light dark;
  --page: oklch(0.975 0.006 251);
  --surface: oklch(0.995 0.002 251);
  --surface-soft: oklch(0.945 0.012 251);
  --ink: oklch(0.19 0.025 251);
  --text: oklch(0.35 0.027 251);
  --muted: oklch(0.48 0.025 251);
  --line: oklch(0.86 0.018 251);
  --brand: oklch(0.58 0.19 251);
  --brand-strong: oklch(0.43 0.17 253);
  --brand-label: oklch(0.43 0.17 253);
  --on-brand: oklch(0.99 0.005 251);
  --header: oklch(0.985 0.004 251 / 0.9);
  --shadow: oklch(0.22 0.04 251 / 0.12);
  --max: 1240px;
  --radius: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --z-header: 20;
  --z-toast: 40;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-synthesis: none;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: oklch(0.145 0.018 251);
    --surface: oklch(0.19 0.022 251);
    --surface-soft: oklch(0.225 0.025 251);
    --ink: oklch(0.95 0.012 251);
    --text: oklch(0.82 0.018 251);
    --muted: oklch(0.68 0.024 251);
    --line: oklch(0.31 0.025 251);
    --brand: oklch(0.68 0.18 251);
    --brand-strong: oklch(0.43 0.17 253);
    --brand-label: oklch(0.78 0.12 251);
    --on-brand: oklch(0.99 0.005 251);
    --header: oklch(0.155 0.018 251 / 0.9);
    --shadow: oklch(0.02 0.02 251 / 0.34);
    --icon-filter: invert(1);
    --tab-icon-filter: invert(1);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--page);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--brand) 70%, white);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: calc(var(--z-toast) + 1);
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--on-brand);
  background: var(--brand-strong);
  border-radius: 6px;
  transform: translateY(-140%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: var(--z-header);
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  width: min(var(--max), calc(100% - 32px));
  height: 64px;
  align-items: center;
  justify-content: space-between;
  margin: 12px auto 0;
  padding: 0 12px 0 16px;
  color: var(--ink);
  background: var(--header);
  border-radius: var(--radius);
  box-shadow: 0 6px 8px var(--shadow);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  transition: background 240ms var(--ease), box-shadow 240ms var(--ease);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 720;
  white-space: nowrap;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border-radius: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.site-nav a:hover {
  color: var(--ink);
  background: var(--surface-soft);
}

.site-nav .nav-download {
  color: var(--on-brand);
  background: var(--brand-strong);
}

.site-nav .nav-download:hover {
  color: var(--on-brand);
  background: color-mix(in oklch, var(--brand-strong) 88%, black);
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  padding: 10px;
  place-items: center;
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
}

.menu-button img,
.site-header .brand img:not([src$="player115-icon.png"]) {
  filter: var(--icon-filter, none);
}

.hero {
  position: relative;
  min-height: calc(100dvh - 96px);
  overflow: hidden;
  isolation: isolate;
  background: oklch(0.15 0.03 251);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgb(2 9 17 / 0.94) 0%, rgb(2 9 17 / 0.74) 42%, rgb(2 9 17 / 0.24) 76%, rgb(2 9 17 / 0.34) 100%),
    linear-gradient(0deg, rgb(2 9 17 / 0.72), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(var(--max), calc(100% - 48px));
  min-height: calc(100dvh - 96px);
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
  padding: 116px 0 70px;
  color: oklch(0.9 0.015 251);
}

.hero-brand {
  margin-bottom: 18px;
  color: oklch(0.79 0.14 251);
  font-size: 18px;
  font-weight: 720;
}

.hero h1 {
  max-width: 1000px;
  margin-bottom: 24px;
  color: oklch(0.98 0.006 251);
  font-size: clamp(42px, 5.4vw, 76px);
  font-weight: 760;
  line-height: 1.12;
}

.hero-content > p:not(.hero-brand) {
  max-width: 650px;
  margin-bottom: 30px;
  color: oklch(0.84 0.018 251);
  font-size: clamp(17px, 1.7vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 680;
  white-space: nowrap;
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--on-brand);
  background: var(--brand-strong);
}

.button-primary img,
.download-action img {
  filter: brightness(0) invert(1);
}

.button-secondary {
  color: oklch(0.98 0.006 251);
  border: 1px solid rgb(255 255 255 / 0.48);
  background: rgb(4 13 24 / 0.42);
}

.overview {
  padding: clamp(74px, 9vw, 124px) 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: end;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--brand-label);
  font-size: 14px;
  font-weight: 720;
}

.overview-copy h2,
.section-heading h2,
.story-copy h2,
.ai-copy h2,
.download-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 740;
}

.overview-copy > p:last-child,
.section-heading > p:last-child,
.story-copy > p,
.ai-copy > p,
.download-heading > p {
  max-width: 70ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.overview-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  border-radius: var(--radius);
  background: var(--line);
}

.overview-flow li {
  min-height: 170px;
  padding: 28px;
  background: var(--surface);
}

.overview-flow span {
  display: block;
  margin-bottom: 32px;
  color: var(--brand-label);
  font-size: 14px;
  font-weight: 700;
}

.overview-flow strong {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.5;
}

.capabilities {
  padding: clamp(54px, 7vw, 96px) 0 clamp(90px, 11vw, 150px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 50px;
}

.module-browser {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
}

.module-tabs {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-self: start;
  padding: 8px;
  background: var(--surface-soft);
  border-radius: var(--radius);
}

.module-tabs button {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  gap: 11px;
  padding: 0 12px;
  color: var(--text);
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.module-tabs button:hover {
  color: var(--ink);
  transform: translateX(2px);
}

.module-tabs button[aria-selected="true"] {
  color: var(--on-brand);
  background: var(--brand-strong);
}

.module-tabs img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: var(--tab-icon-filter, none);
}

.module-tabs button[aria-selected="true"] img {
  filter: brightness(0) invert(1);
}

.module-tabs span {
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.module-panels {
  min-width: 0;
}

.module-panel {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  padding: clamp(34px, 5vw, 66px);
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 6px 8px var(--shadow);
}

.module-panel[hidden] {
  display: none;
}

.module-panel.is-active {
  animation: panel-in 460ms var(--ease) both;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.module-index {
  display: block;
  margin-bottom: 18px;
  color: var(--brand-label);
  font-size: 14px;
  font-weight: 720;
}

.module-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 730;
}

.module-copy > p {
  max-width: 64ch;
  margin-bottom: 34px;
  color: var(--muted);
}

.feature-points {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-points li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.feature-points strong {
  color: var(--ink);
  font-size: 14px;
}

.feature-points span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.module-visual {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-soft);
  border-radius: var(--radius);
  box-shadow: 0 5px 8px var(--shadow);
}

.module-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.module-visual-tall img {
  object-position: center top;
}

.media-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: center;
  padding-bottom: clamp(100px, 12vw, 170px);
}

.story-visual {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-soft);
  border-radius: var(--radius);
  box-shadow: 0 6px 8px var(--shadow);
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-facts {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.story-facts div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
}

.story-facts strong {
  color: var(--ink);
}

.story-facts span {
  color: var(--muted);
}

.ai-section {
  padding: clamp(82px, 10vw, 138px) 0;
  background: color-mix(in oklch, var(--brand) 7%, var(--surface));
}

.ai-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(56px, 10vw, 140px);
  align-items: center;
}

.ai-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand-strong);
}

.ai-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.ai-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding: 0;
  list-style: none;
}

.ai-steps li {
  padding: 8px 11px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 13px;
  font-weight: 620;
}

.ai-boundary {
  padding: clamp(28px, 4vw, 48px);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 6px 8px var(--shadow);
}

.ai-boundary h3 {
  margin-bottom: 30px;
  font-size: 22px;
}

.ai-boundary dl {
  display: grid;
  gap: 26px;
  margin: 0;
}

.ai-boundary dl div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
}

.ai-boundary dt {
  color: var(--ink);
  font-weight: 680;
}

.ai-boundary dd {
  margin: 0;
  color: var(--muted);
}

.downloads {
  padding: clamp(90px, 11vw, 150px) 0;
}

.download-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
  gap: clamp(48px, 9vw, 120px);
  align-items: end;
  margin-bottom: 54px;
}

.download-list {
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.download-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 104px;
  gap: 24px;
  align-items: center;
  min-height: 124px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
}

.platform-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--ink);
  border-radius: 8px;
  background: var(--surface-soft);
  font-size: 12px;
  font-weight: 800;
}

.download-name > span {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--brand-label);
  font-size: 12px;
  font-weight: 720;
}

.download-name h3 {
  margin-bottom: 7px;
  font-size: 20px;
}

.download-name p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.download-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  color: var(--on-brand);
  border-radius: 7px;
  background: var(--brand-strong);
  font-size: 14px;
  font-weight: 680;
  white-space: nowrap;
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}

.download-action:hover {
  transform: translateY(-2px);
  background: color-mix(in oklch, var(--brand-strong) 88%, black);
}

.download-action img {
  width: 17px;
  height: 17px;
}

.tv-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  margin-top: clamp(70px, 9vw, 120px);
  padding: clamp(34px, 5vw, 64px);
  background: var(--surface-soft);
  border-radius: var(--radius);
}

.tv-preview h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 42px);
}

.tv-preview p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.tv-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 6px 8px var(--shadow);
}

.site-footer {
  padding: 58px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 40px;
  align-items: center;
}

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

.footer-note {
  text-align: right;
}

.toast {
  position: fixed;
  z-index: var(--z-toast);
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100vw - 40px));
  padding: 12px 16px;
  color: var(--on-brand);
  border-radius: 7px;
  background: var(--brand-strong);
  box-shadow: 0 6px 8px var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-brand,
  .hero h1,
  .hero-content > p,
  .hero-actions {
    animation: hero-enter 720ms var(--ease) both;
  }

  .hero h1 { animation-delay: 80ms; }
  .hero-content > p { animation-delay: 150ms; }
  .hero-actions { animation-delay: 220ms; }

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

  .reveal[data-reveal="pending"] {
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 620ms var(--ease), transform 620ms var(--ease);
  }

  .reveal[data-reveal="visible"] {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .overview-grid,
  .media-story,
  .ai-grid,
  .download-heading,
  .tv-preview {
    grid-template-columns: 1fr;
  }

  .module-browser {
    grid-template-columns: 1fr;
  }

  .module-tabs {
    flex-direction: row;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .module-tabs::-webkit-scrollbar {
    display: none;
  }

  .module-tabs button {
    width: auto;
    flex: 0 0 auto;
  }

  .module-tabs button:hover {
    transform: none;
  }

  .module-panel {
    grid-template-columns: 1fr;
  }

  .module-visual {
    order: -1;
  }

  .module-visual img {
    height: 100%;
  }

  .module-visual {
    aspect-ratio: 16 / 10;
  }

  .media-story {
    gap: 44px;
  }

  .download-heading {
    gap: 18px;
  }

  .download-item {
    grid-template-columns: 58px minmax(0, 1fr) 96px;
  }

  .download-item details {
    grid-column: 2 / -1;
  }

  .tv-preview {
    gap: 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .hero-content {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    width: calc(100% - 20px);
    height: 58px;
    margin-top: 10px;
  }

  .site-header .brand img {
    width: 32px;
    height: 32px;
  }

  .menu-button {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 8px;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: 0 6px 8px var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    min-height: calc(100dvh - 86px);
  }

  .hero-media img {
    object-position: 70% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgb(2 9 17 / 0.95) 0%, rgb(2 9 17 / 0.72) 64%, rgb(2 9 17 / 0.48) 100%);
  }

  .hero-content {
    min-height: calc(100dvh - 86px);
    justify-content: flex-end;
    padding: 100px 0 52px;
  }

  .hero-brand {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(34px, 10.5vw, 52px);
  }

  .hero h1 br {
    display: none;
  }

  .hero-content > p:not(.hero-brand) {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .overview {
    padding: 72px 0;
  }

  .overview-grid {
    gap: 36px;
  }

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

  .overview-flow li {
    display: grid;
    min-height: 108px;
    grid-template-columns: 76px 1fr;
    gap: 18px;
    align-items: center;
    padding: 22px;
  }

  .overview-flow span {
    margin-bottom: 0;
  }

  .overview-copy h2,
  .section-heading h2,
  .story-copy h2,
  .ai-copy h2,
  .download-heading h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .capabilities {
    padding-top: 38px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .module-panel {
    min-height: 0;
    gap: 30px;
    padding: 18px;
  }

  .module-copy h3 {
    font-size: 28px;
  }

  .module-copy > p {
    margin-bottom: 28px;
  }

  .feature-points li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .media-story {
    padding-bottom: 96px;
  }

  .story-facts div {
    grid-template-columns: 88px 1fr;
  }

  .ai-section {
    padding: 76px 0;
  }

  .ai-grid {
    gap: 46px;
  }

  .ai-boundary {
    padding: 24px;
  }

  .ai-boundary dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .downloads {
    padding: 80px 0;
  }

  .download-item {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    padding: 24px 4px;
  }

  .platform-mark {
    width: 44px;
    height: 44px;
  }

  .download-action {
    grid-column: 1 / -1;
  }

  .download-action {
    width: 100%;
  }

  .tv-preview {
    margin-top: 70px;
    padding: 22px;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }
}

@media (max-width: 350px) {
  .section-shell,
  .hero-content {
    width: calc(100% - 24px);
  }

  .site-header {
    width: calc(100% - 16px);
  }

  .brand span {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .module-tabs {
    margin-inline: -4px;
  }

  .module-tabs button {
    min-height: 46px;
    padding: 0 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
