/* ============================================================
   Site Kit — 华体会体育版 / injury-hth.com.cn
   /assets/site.css
   刊头导航 · 切角面板 · 横向时间轴 · 等宽数字
   ============================================================ */

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

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

body,
h1, h2, h3, h4, h5, h6,
p, figure, figcaption, blockquote, dl, dd { margin: 0; }

img, svg, video, canvas { display: block; max-width: 100%; }

button { font: inherit; color: inherit; }

a { color: inherit; }

ul, ol { list-style: none; }

/* ---------- tokens ---------- */
:root {
  color-scheme: dark;

  --hth-night: #0A1424;
  --hth-ink: #050B16;
  --hth-slate: #16233A;
  --hth-slate-soft: rgba(22, 35, 58, .58);
  --hth-red: #E4233C;
  --hth-red-deep: #C71C32;
  --hth-cyan: #16E0D4;
  --hth-amber: #FF9433;
  --hth-chalk: #F4F7FB;
  --hth-mist: #E6ECF3;
  --hth-gray: #8FA0B6;
  --hth-violet: #7C5CFF;

  --hth-line: rgba(143, 160, 182, .22);
  --hth-line-strong: rgba(143, 160, 182, .42);

  --hth-display: "Barlow Condensed", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --hth-editorial: "Noto Serif SC", "Songti SC", Georgia, "Times New Roman", serif;
  --hth-body: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --hth-numeric: "JetBrains Mono", "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --hth-maxw: 1240px;
  --hth-gutter: clamp(18px, 4vw, 44px);
  --hth-cut: 12px;
  --hth-cut-lg: 22px;
  --hth-ease: cubic-bezier(.22, .61, .36, 1);
  --hth-dur: 240ms;
}

/* ---------- base ---------- */
body {
  min-height: 100vh;
  background-color: var(--hth-night);
  background-image:
    repeating-linear-gradient(90deg, rgba(143, 160, 182, .045) 0 1px, transparent 1px 96px),
    linear-gradient(180deg, #0A1424 0%, #050B16 100%);
  background-attachment: scroll, fixed;
  color: var(--hth-chalk);
  font-family: var(--hth-body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#main-content {
  display: block;
  scroll-margin-top: 148px;
}

:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--hth-cyan);
  outline-offset: 3px;
}

::selection {
  background: rgba(22, 224, 212, .28);
  color: #fff;
}

/* ---------- typography ---------- */
.hth-h1 {
  font-family: var(--hth-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.hth-h2 {
  font-family: var(--hth-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.015em;
}

.hth-h3 {
  font-family: var(--hth-body);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.005em;
}

.hth-lead {
  max-width: 56ch;
  font-family: var(--hth-editorial);
  font-size: 19px;
  line-height: 1.75;
  color: var(--hth-mist);
}

.hth-note {
  max-width: 72ch;
  font-size: 13px;
  line-height: 1.7;
  color: var(--hth-gray);
}

.hth-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hth-numeric);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--hth-gray);
}

.hth-eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--hth-red);
  transform: skewY(-12deg);
}

.hth-num {
  font-family: var(--hth-numeric);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}

.hth-link {
  color: var(--hth-cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 224, 212, .38);
  transition: color 180ms var(--hth-ease), border-color 180ms var(--hth-ease);
}

.hth-link:hover {
  color: #fff;
  border-bottom-color: var(--hth-red);
}

/* ---------- layout ---------- */
.hth-container {
  width: 100%;
  max-width: var(--hth-maxw);
  margin-inline: auto;
  padding-inline: var(--hth-gutter);
}

.hth-section {
  padding-block: clamp(40px, 6vw, 92px);
}

.hth-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.hth-stack {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
}

.hth-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}

.hth-col-4 { grid-column: span 4; }
.hth-col-5 { grid-column: span 5; }
.hth-col-6 { grid-column: span 6; }
.hth-col-7 { grid-column: span 7; }
.hth-col-8 { grid-column: span 8; }
.hth-col-12 { grid-column: span 12; }

.hth-rule {
  position: relative;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent 0, var(--hth-line) 12%, var(--hth-line) 88%, transparent 100%);
}

.hth-rule--slash::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 30px;
  height: 7px;
  background: var(--hth-red);
  transform: skewX(-30deg);
  opacity: .9;
}

.hth-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- skip link ---------- */
.hth-skip {
  position: fixed;
  top: 10px;
  left: 50%;
  z-index: 200;
  padding: 12px 24px;
  background: var(--hth-red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transform: translate(-50%, -180%);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: transform 200ms var(--hth-ease);
}

.hth-skip:focus,
.hth-skip:focus-visible {
  transform: translate(-50%, 0);
}

/* ---------- header ---------- */
.hth-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(5, 11, 22, .9);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--hth-line);
}

.hth-header__progress {
  --hth-progress: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  transform: scaleX(var(--hth-progress));
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--hth-cyan) 0%, var(--hth-amber) 100%);
  will-change: transform;
}

.hth-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(8px, 1.4vw, 16px);
  padding-block: clamp(14px, 2vw, 24px) clamp(10px, 1.4vw, 16px);
  transition: padding var(--hth-dur) var(--hth-ease);
}

.hth-header__utility {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hth-utility__link {
  padding: 4px 2px;
  font-family: var(--hth-numeric);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--hth-gray);
  text-decoration: none;
  transition: color 180ms var(--hth-ease);
}

.hth-utility__link:hover { color: var(--hth-cyan); }

.hth-utility__sep {
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hth-line-strong), transparent);
}

.hth-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding-inline: 6px;
  text-decoration: none;
  color: var(--hth-chalk);
}

.hth-brand__name {
  position: relative;
  padding-left: 22px;
  font-family: var(--hth-display);
  font-size: clamp(30px, 4.6vw, 54px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  transition: font-size var(--hth-dur) var(--hth-ease);
}

.hth-brand__name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 62%;
  background: var(--hth-red);
  transform: translateY(-50%) skewX(-12deg);
}

.hth-brand__line {
  font-family: var(--hth-numeric);
  font-size: 11px;
  letter-spacing: .28em;
  color: var(--hth-gray);
}

.hth-nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  justify-self: center;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--hth-line);
  color: var(--hth-chalk);
  font-size: 12px;
  letter-spacing: .18em;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: border-color 180ms var(--hth-ease), color 180ms var(--hth-ease);
}

.hth-nav-toggle:hover {
  border-color: var(--hth-cyan);
  color: var(--hth-cyan);
}

.hth-nav-toggle__bars {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--hth-cyan);
  transition: background 180ms var(--hth-ease);
}

.hth-nav-toggle__bars::before,
.hth-nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: inherit;
  transition: transform 200ms var(--hth-ease);
}

.hth-nav-toggle__bars::before { top: -6px; }
.hth-nav-toggle__bars::after { top: 6px; }

.hth-nav-toggle[aria-expanded="true"] .hth-nav-toggle__bars { background: transparent; }

.hth-nav-toggle[aria-expanded="true"] .hth-nav-toggle__bars::before {
  transform: translateY(6px) rotate(45deg);
}

.hth-nav-toggle[aria-expanded="true"] .hth-nav-toggle__bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hth-nav {
  max-height: none;
  overflow: visible;
}

.hth-nav__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.4vw, 36px);
  margin: 0;
  padding: 0;
}

.hth-nav__item { min-width: 0; }

.hth-nav__link {
  position: relative;
  display: block;
  padding: 8px 2px;
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--hth-mist);
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms var(--hth-ease);
}

.hth-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--hth-cyan);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 200ms var(--hth-ease);
}

.hth-nav__link:hover { color: #fff; }
.hth-nav__link:hover::after { transform: scaleX(1); }

.hth-nav__link[aria-current="page"] { color: #fff; }

.hth-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--hth-red);
}

/* ---------- buttons ---------- */
.hth-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border: 0;
  background: var(--hth-red);
  color: #fff;
  font-family: var(--hth-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-decoration: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background-color 180ms var(--hth-ease), box-shadow 180ms var(--hth-ease), transform 180ms var(--hth-ease);
}

.hth-btn:hover { background: var(--hth-red-deep); }
.hth-btn:active { transform: translateY(1px); }

.hth-btn--ghost {
  background: transparent;
  color: var(--hth-chalk);
  box-shadow: inset 0 0 0 1px var(--hth-line-strong);
}

.hth-btn--ghost:hover {
  background: rgba(22, 224, 212, .08);
  box-shadow: inset 0 0 0 1px rgba(22, 224, 212, .5);
}

.hth-btn--cyan { background: var(--hth-cyan); color: #04121A; }
.hth-btn--cyan:hover { background: #11C4BA; }

.hth-btn__arrow {
  font-family: var(--hth-numeric);
  font-size: 15px;
  line-height: 1;
}

/* ---------- tags ---------- */
.hth-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(143, 160, 182, .12);
  color: var(--hth-mist);
  font-family: var(--hth-numeric);
  font-size: 11px;
  letter-spacing: .14em;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.hth-tag--league { background: rgba(124, 92, 255, .16); color: var(--hth-violet); }
.hth-tag--live { background: rgba(255, 148, 51, .16); color: var(--hth-amber); }

/* ---------- panels ---------- */
.hth-panel {
  position: relative;
  padding: clamp(18px, 2.4vw, 30px);
  background: var(--hth-slate);
  box-shadow: inset 0 1px 0 rgba(143, 160, 182, .16);
  clip-path: polygon(0 0, calc(100% - var(--hth-cut)) 0, 100% var(--hth-cut), 100% 100%, var(--hth-cut) 100%, 0 calc(100% - var(--hth-cut)));
}

.hth-panel--quiet {
  background: var(--hth-slate-soft);
  box-shadow: inset 0 1px 0 rgba(143, 160, 182, .1);
}

.hth-panel--signal {
  background: linear-gradient(150deg, rgba(228, 35, 60, .18) 0%, var(--hth-slate) 58%);
  box-shadow: inset 0 1px 0 rgba(228, 35, 60, .35);
}

/* ---------- stats ---------- */
.hth-stat {
  display: grid;
  gap: 8px;
}

.hth-stat__num {
  font-family: var(--hth-numeric);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--hth-cyan);
  font-variant-numeric: tabular-nums;
}

.hth-stat__unit {
  margin-left: 6px;
  font-size: .3em;
  letter-spacing: .06em;
  color: var(--hth-gray);
  vertical-align: baseline;
}

.hth-stat__label {
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--hth-mist);
}

.hth-stat__note {
  font-size: 13px;
  line-height: 1.7;
  color: var(--hth-gray);
}

/* ---------- timeline ticks ---------- */
.hth-ticks {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  border-top: 1px solid var(--hth-line);
  border-bottom: 1px solid var(--hth-line);
  scrollbar-width: thin;
  scrollbar-color: var(--hth-line-strong) transparent;
}

.hth-tick {
  flex: 0 0 auto;
  min-width: 112px;
  padding: 16px 18px 14px;
  scroll-snap-align: start;
  border-left: 1px solid var(--hth-line);
  color: var(--hth-gray);
  text-decoration: none;
  transition: color 220ms var(--hth-ease), background-color 220ms var(--hth-ease);
}

.hth-tick:last-child { border-right: 1px solid var(--hth-line); }

.hth-tick__value {
  display: block;
  font-family: var(--hth-numeric);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--hth-chalk);
  transition: color 220ms var(--hth-ease);
}

.hth-tick__label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .1em;
}

.hth-tick[data-active="true"] {
  color: var(--hth-amber);
  background: rgba(255, 148, 51, .08);
}

.hth-tick[data-active="true"] .hth-tick__value { color: var(--hth-amber); }

/* ---------- tabs ---------- */
.hth-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 1px solid var(--hth-line);
}

.hth-tab {
  appearance: none;
  margin-bottom: -1px;
  padding: 12px 18px 14px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--hth-gray);
  font-family: var(--hth-body);
  font-size: 14px;
  letter-spacing: .06em;
  cursor: pointer;
  transition: color 180ms var(--hth-ease), border-color 180ms var(--hth-ease);
}

.hth-tab:hover { color: var(--hth-mist); }

.hth-tab[aria-selected="true"] {
  color: var(--hth-chalk);
  border-bottom-color: var(--hth-red);
}

.hth-tabpanel { padding-top: clamp(20px, 3vw, 36px); }
.hth-tabpanel[hidden] { display: none; }

/* ---------- media ---------- */
.hth-figure { margin: 0; }

.hth-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #16233A 0%, #050B16 100%);
  clip-path: polygon(0 0, calc(100% - var(--hth-cut)) 0, 100% var(--hth-cut), 100% 100%, var(--hth-cut) 100%, 0 calc(100% - var(--hth-cut)));
}

.hth-media--wide { aspect-ratio: 21 / 9; }
.hth-media--tall { aspect-ratio: 4 / 5; }
.hth-media--square { aspect-ratio: 1 / 1; }

.hth-media__img,
.hth-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hth-media__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(10, 20, 36, .12) 0%, rgba(5, 11, 22, .82) 100%);
  pointer-events: none;
}

.hth-media__ticks {
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background-image: repeating-linear-gradient(90deg, rgba(244, 247, 251, .3) 0 1px, transparent 1px 32px);
  opacity: .55;
  pointer-events: none;
}

.hth-figure__cap {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--hth-gray);
}

/* ---------- breadcrumb ---------- */
.hth-breadcrumb {
  font-size: 13px;
  color: var(--hth-gray);
}

.hth-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.hth-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hth-breadcrumb__item + .hth-breadcrumb__item::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--hth-red);
  transform: rotate(-12deg);
}

.hth-breadcrumb__link {
  color: var(--hth-mist);
  text-decoration: none;
  transition: color 180ms var(--hth-ease);
}

.hth-breadcrumb__link:hover { color: var(--hth-cyan); }

.hth-breadcrumb__current { color: var(--hth-gray); }

/* ---------- footer ---------- */
.hth-footer {
  position: relative;
  margin-top: clamp(48px, 8vw, 120px);
  background: var(--hth-ink);
  border-top: 1px solid var(--hth-line);
  color: var(--hth-mist);
}

.hth-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 108px;
  height: 3px;
  background: var(--hth-red);
  transform: skewX(-30deg);
  transform-origin: 0 0;
}

.hth-footer__axis {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 7vw, 96px);
  overflow: hidden;
  padding: 16px var(--hth-gutter);
  border-bottom: 1px solid var(--hth-line);
}

.hth-axis__seg {
  position: relative;
  padding-top: 10px;
  font-family: var(--hth-numeric);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--hth-gray);
  white-space: nowrap;
}

.hth-axis__seg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 7px;
  background: var(--hth-amber);
}

.hth-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2.2fr);
  gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(36px, 5vw, 72px) clamp(28px, 3.5vw, 48px);
}

.hth-footer__brand {
  display: grid;
  align-content: start;
  gap: 10px;
}

.hth-footer__name {
  font-family: var(--hth-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--hth-chalk);
}

.hth-footer__tagline {
  font-family: var(--hth-numeric);
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--hth-amber);
}

.hth-footer__season {
  margin-top: 6px;
  max-width: 40ch;
}

.hth-footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(20px, 3vw, 36px);
  align-content: start;
}

.hth-footer__col { min-width: 0; }

.hth-footer__coltitle {
  margin-bottom: 14px;
  font-family: var(--hth-numeric);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--hth-cyan);
}

.hth-footer__links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.hth-footer__link {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  font-size: 14px;
  color: var(--hth-mist);
  text-decoration: none;
  transition: color 180ms var(--hth-ease), border-color 180ms var(--hth-ease);
}

.hth-footer__link:hover {
  color: #fff;
  border-bottom-color: var(--hth-red);
}

.hth-footer__meta {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  padding-top: clamp(24px, 3vw, 40px);
  border-top: 1px solid var(--hth-line);
}

.hth-footer__caliber { max-width: 78ch; }

.hth-footer__contact {
  font-size: 14px;
  color: var(--hth-mist);
  word-break: break-word;
}

.hth-footer__address {
  font-size: 14px;
  color: var(--hth-gray);
}

.hth-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  margin-top: 4px;
}

.hth-footer__icp {
  font-family: var(--hth-numeric);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--hth-gray);
}

.hth-footer__copy {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--hth-gray);
}

/* ---------- reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    transition: opacity 320ms var(--hth-ease), transform 320ms var(--hth-ease);
  }

  .hth-motion [data-reveal] {
    opacity: 0;
    transform: translateY(16px);
  }

  .hth-motion [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ---------- responsive ---------- */
@media (min-width: 901px) and (max-width: 1080px) {
  .hth-nav__list {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .hth-nav__list::-webkit-scrollbar { display: none; }
  .hth-nav__item { flex: 0 0 auto; }
}

@media (min-width: 1081px) {
  .hth-header[data-condensed="true"] .hth-header__inner {
    position: relative;
    gap: 0;
    padding-block: 10px;
  }

  .hth-header[data-condensed="true"] .hth-header__utility { display: none; }
  .hth-header[data-condensed="true"] .hth-brand__line { display: none; }

  .hth-header[data-condensed="true"] .hth-brand__name {
    padding-left: 15px;
    font-size: 26px;
  }

  .hth-header[data-condensed="true"] .hth-brand__name::before { width: 8px; }

  .hth-header[data-condensed="true"] .hth-nav {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .hth-header[data-condensed="true"] .hth-nav__list { gap: 18px; }

  .hth-header[data-condensed="true"] .hth-nav__link {
    padding-block: 6px;
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .hth-nav-toggle { display: inline-flex; }

  .hth-nav {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 280ms var(--hth-ease), opacity 200ms var(--hth-ease);
  }

  .hth-nav[data-open="true"] {
    max-height: 70vh;
    overflow-y: auto;
    opacity: 1;
  }

  .hth-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .hth-nav__link {
    padding: 15px 4px;
    border-top: 1px solid var(--hth-line);
    font-size: 16px;
  }

  .hth-nav__link::after {
    left: 4px;
    right: auto;
    width: 28px;
    bottom: 8px;
  }

  .hth-col-4,
  .hth-col-5,
  .hth-col-6,
  .hth-col-7,
  .hth-col-8 { grid-column: 1 / -1; }

  .hth-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }

  .hth-footer__inner { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 560px) {
  body { font-size: 15px; }

  .hth-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hth-col-4,
  .hth-col-5,
  .hth-col-6,
  .hth-col-7,
  .hth-col-8,
  .hth-col-12 { grid-column: 1 / -1; }

  .hth-brand__name { padding-left: 16px; }
  .hth-brand__name::before { width: 9px; }
  .hth-brand__line { letter-spacing: .18em; }

  .hth-tick { min-width: 96px; padding: 14px 14px 12px; }

  .hth-footer__axis { gap: 24px; }

  .hth-legal { gap: 6px 14px; }
}

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

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

  .hth-tick { scroll-snap-type: none; }
}
