@charset "UTF-8";
/* 乐竞CN 全站共享样式 /assets/site.css */

:root {
  --primary-bg: #0b1b3d;
  --light-bg: #f5f7fb;
  --accent-green: #00ffa3;
  --accent-orange: #ff6b35;
  --wine: #7a2440;
  --indigo: #3d3b70;
  --text-primary: #181a2e;
  --text-secondary: #5a5d78;
  --border: #dfe3f0;
  --font-headline: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', Menlo, Consolas, monospace;
  --ticker-h: 36px;
  --nav-h: 58px;
  --container-w: 1200px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-pill: 999px;
}

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

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

body {
  margin: 0;
  padding-top: var(--ticker-h);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--light-bg);
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

main {
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-headline);
  line-height: 1.2;
  color: var(--text-primary);
}

::selection {
  background: var(--accent-green);
  color: var(--primary-bg);
}

:focus-visible {
  outline: 3px solid var(--accent-orange);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  top: var(--ticker-h);
  left: 18px;
  z-index: 3000;
  background: var(--accent-green);
  color: var(--primary-bg);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(0, 255, 163, 0.4);
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

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

.container,
.data-ticker__inner,
.masthead__inner,
.navrow__inner,
.footer__grid,
.footer__bottom-inner,
.breadcrumb {
  width: calc(100% - 48px);
  max-width: var(--container-w);
  margin-inline: auto;
}

.site-header {
  position: relative;
  background: var(--light-bg);
}

.data-ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--ticker-h);
  z-index: 2000;
  display: flex;
  align-items: center;
  background: var(--primary-bg);
  border-bottom: 2px solid rgba(0, 255, 163, 0.35);
  box-shadow: 0 2px 14px rgba(11, 27, 61, 0.3);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.data-ticker__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(245, 247, 251, 0.75);
}

.data-ticker__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 700;
}

.data-ticker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: ticker-pulse 1.8s ease-out infinite;
}

@keyframes ticker-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 163, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(0, 255, 163, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 163, 0);
  }
}

.data-ticker__label {
  color: rgba(245, 247, 251, 0.5);
}

.data-ticker__count {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-green);
}

.data-ticker__cycle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.data-ticker__status {
  color: rgba(245, 247, 251, 0.65);
}

.data-ticker__sep {
  color: rgba(245, 247, 251, 0.3);
}

.data-ticker__timer {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-green);
}

.data-ticker__unit {
  color: rgba(245, 247, 251, 0.55);
}

.data-ticker__link {
  color: rgba(245, 247, 251, 0.6);
  border-bottom: 1px dashed rgba(245, 247, 251, 0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.data-ticker__link:hover {
  color: var(--accent-green);
  border-color: var(--accent-green);
}

.data-ticker.is-urgent {
  border-bottom-color: rgba(255, 107, 53, 0.7);
}

.data-ticker.is-urgent .data-ticker__timer {
  color: var(--accent-orange);
  animation: ticker-blink 0.8s steps(2) infinite;
}

@keyframes ticker-blink {
  50% {
    opacity: 0.25;
  }
}

.data-ticker.is-flash {
  box-shadow: inset 0 -2px 0 var(--accent-green), 0 0 22px rgba(0, 255, 163, 0.35);
}

.masthead {
  background: var(--light-bg);
}

.masthead__inner {
  padding: 18px 0 16px;
  text-align: center;
}

.masthead__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 6px;
}

.masthead__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.masthead__aside {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  text-align: left;
}

.masthead__aside--right {
  text-align: right;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.brand__mark {
  font-family: var(--font-headline);
  font-size: clamp(42px, 6vw, 62px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--primary-bg);
}

.brand__mark em {
  font-style: normal;
  color: var(--primary-bg);
  background: var(--accent-green);
  border-radius: 10px;
  padding: 0 8px;
  margin-left: 2px;
}

.brand__sub {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
}

.navrow {
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
}

.navrow__inner {
  position: relative;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-list__item {
  position: relative;
}

.nav-list__link {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  transition: color 0.2s;
}

.nav-list__link::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--accent-green);
  transition: left 0.25s ease, right 0.25s ease;
}

.nav-list__link:hover {
  color: var(--primary-bg);
}

.nav-list__link:hover::after {
  left: 0;
  right: 0;
}

.nav-list__link[aria-current="page"] {
  color: var(--primary-bg);
}

.nav-list__link[aria-current="page"]::after {
  left: 0;
  right: 0;
  background: var(--accent-orange);
}

.refresh-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-orange);
  color: #fff;
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.32);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.refresh-btn:hover {
  transform: translateY(-50%) scale(1.04);
  filter: brightness(1.06);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.42);
}

.refresh-btn__icon {
  display: inline-block;
  line-height: 1;
  transition: transform 0.5s ease;
}

.refresh-btn:hover .refresh-btn__icon {
  transform: rotate(200deg);
}

.refresh-btn__timer {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 1px 8px;
}

.refresh-btn__suffix {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #ffe6dd;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.nav-toggle:hover {
  border-color: var(--accent-green);
  color: var(--primary-bg);
  box-shadow: 0 4px 12px rgba(11, 27, 61, 0.06);
}

.nav-toggle__bars {
  display: inline-flex;
  flex-direction: column;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  margin: 2px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-footer {
  background: var(--primary-bg);
  color: rgba(245, 247, 251, 0.78);
  font-size: 14px;
  line-height: 1.75;
}

.footer__grid {
  padding: 60px 0 48px;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1.05fr 1.15fr;
  gap: 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer__logo {
  font-family: var(--font-headline);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.footer__logo em {
  font-style: normal;
  color: var(--accent-green);
}

.footer__desc {
  max-width: 34em;
  font-size: 13px;
  color: rgba(245, 247, 251, 0.65);
}

.footer__trust {
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid var(--accent-orange);
  border-radius: 0 14px 14px 0;
  font-size: 13px;
  color: rgba(245, 247, 251, 0.85);
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  background: var(--accent-orange);
  color: #fff;
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.28);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.footer__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 8px 26px rgba(255, 107, 53, 0.4);
}

.footer__cta-icon {
  line-height: 1;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__title {
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 247, 251, 0.4);
  margin-bottom: 4px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: rgba(245, 247, 251, 0.84);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--accent-green);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__contact-item {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: rgba(245, 247, 251, 0.8);
}

.footer__contact-label {
  flex: 0 0 auto;
  min-width: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245, 247, 251, 0.4);
  padding-top: 2px;
}

.footer__note {
  margin-top: 2px;
  font-size: 12px;
  color: rgba(245, 247, 251, 0.45);
}

.footer__bottom {
  border-top: 1px solid rgba(245, 247, 251, 0.12);
}

.footer__bottom-inner {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: rgba(245, 247, 251, 0.45);
}

.footer__legal {
  display: flex;
  gap: 22px;
}

.footer__legal a {
  color: rgba(245, 247, 251, 0.6);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--accent-green);
}

.section {
  padding: 88px 0;
}

.section--light {
  background: var(--light-bg);
}

.section--white {
  background: #fff;
}

.section--dark {
  background: var(--primary-bg);
  color: rgba(245, 247, 251, 0.85);
}

.section--wine {
  background: var(--wine);
  color: rgba(255, 255, 255, 0.9);
}

.section--indigo {
  background: var(--indigo);
  color: rgba(255, 255, 255, 0.9);
}

.section__head {
  max-width: 820px;
  margin-bottom: 36px;
}

.section__index {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-orange);
  margin-bottom: 10px;
}

.section--dark .section__index,
.section--wine .section__index,
.section--indigo .section__index {
  color: var(--accent-green);
}

.section__title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.section--dark .section__title,
.section--wine .section__title,
.section--indigo .section__title {
  color: #fff;
}

.section__lead {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 56ch;
}

.section--dark .section__lead,
.section--wine .section__lead,
.section--indigo .section__lead {
  color: rgba(245, 247, 251, 0.72);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}

.btn--primary {
  background: var(--accent-orange);
  color: #fff;
  box-shadow: 0 5px 16px rgba(255, 107, 53, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 107, 53, 0.4);
}

.btn--green {
  background: var(--accent-green);
  color: var(--primary-bg);
  box-shadow: 0 5px 16px rgba(0, 255, 163, 0.3);
}

.btn--green:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 255, 163, 0.38);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text-primary);
}

.btn--ghost:hover {
  border-color: var(--accent-green);
  color: var(--primary-bg);
  transform: translateY(-2px);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--border);
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.tag--green {
  background: rgba(0, 255, 163, 0.12);
  border-color: transparent;
  color: #087a52;
}

.tag--orange {
  background: rgba(255, 107, 53, 0.13);
  border-color: transparent;
  color: var(--accent-orange);
}

.tag--outline {
  background: transparent;
  border-style: dashed;
}

.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(11, 27, 61, 0.06);
}

.panel--dark {
  background: var(--primary-bg);
  border-color: transparent;
  box-shadow: 0 14px 36px rgba(11, 27, 61, 0.18);
  color: rgba(245, 247, 251, 0.85);
}

.panel--wine {
  background: var(--wine);
  border-color: transparent;
  box-shadow: 0 14px 36px rgba(122, 36, 64, 0.25);
  color: rgba(255, 255, 255, 0.92);
}

.panel--indigo {
  background: var(--indigo);
  border-color: transparent;
  box-shadow: 0 14px 36px rgba(61, 59, 112, 0.28);
  color: rgba(255, 255, 255, 0.92);
}

.panel__index {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
  margin-bottom: 10px;
}

.panel--dark .panel__index,
.panel--wine .panel__index,
.panel--indigo .panel__index {
  color: var(--accent-green);
}

.panel__title {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}

.data-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-family: var(--font-mono);
}

.data-chip__value {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-bg);
}

.data-chip__unit {
  font-size: 13px;
  color: var(--text-secondary);
}

.data-chip--on-dark .data-chip__value {
  color: var(--accent-green);
}

.data-chip--on-dark .data-chip__unit {
  color: rgba(245, 247, 251, 0.6);
}

.data-chip--orange .data-chip__value {
  color: var(--accent-orange);
}

.media-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--indigo), var(--primary-bg));
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(245, 247, 251, 0.7);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 255, 163, 0.16) 1px, transparent 1px);
  background-size: 16px 16px;
}

.media-frame::after {
  content: "图像占位";
  position: relative;
  z-index: 1;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: rgba(11, 27, 61, 0.55);
  border: 1px solid rgba(0, 255, 163, 0.3);
  font-size: 12px;
}

.media-frame[data-caption]:not([data-caption=""])::after {
  content: attr(data-caption);
}

.media-frame--portrait {
  aspect-ratio: 3 / 4;
}

.media-frame--wide {
  aspect-ratio: 21 / 9;
}

.media-frame--short {
  aspect-ratio: 4 / 3;
}

.grid {
  display: grid;
  gap: 26px;
}

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

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

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

.breadcrumb {
  padding: 22px 0 2px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

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

.breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  color: rgba(11, 27, 61, 0.25);
}

.breadcrumb__link {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.breadcrumb__link:hover {
  color: var(--accent-orange);
}

.breadcrumb__item[aria-current="page"] {
  color: var(--text-primary);
  font-weight: 700;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--border);
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}

.filter-btn:hover {
  border-color: var(--accent-green);
  color: var(--primary-bg);
}

.filter-btn.is-active {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: var(--primary-bg);
  box-shadow: 0 5px 14px rgba(0, 255, 163, 0.3);
}

.prose {
  max-width: 72ch;
  font-size: 16px;
  line-height: 1.85;
}

.prose p {
  margin-bottom: 1.15em;
}

.prose h2 {
  font-size: 26px;
  margin: 1.8em 0 0.5em;
}

.prose h3 {
  font-size: 20px;
  margin: 1.6em 0 0.4em;
}

.prose ul,
.prose ol {
  margin-bottom: 1.15em;
  padding-left: 1.3em;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  margin-bottom: 0.4em;
}

.prose a {
  color: var(--accent-orange);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 107, 53, 0.35);
  transition: border-color 0.2s, color 0.2s;
}

.prose a:hover {
  color: var(--primary-bg);
  border-color: var(--accent-green);
}

.is-hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .container,
  .data-ticker__inner,
  .masthead__inner,
  .navrow__inner,
  .footer__grid,
  .footer__bottom-inner,
  .breadcrumb {
    width: calc(100% - 32px);
  }

  .data-ticker__link {
    display: none;
  }

  .masthead__aside {
    display: none;
  }

  .masthead__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .masthead__inner {
    padding: 14px 0 12px;
  }

  .masthead__kicker {
    letter-spacing: 0.2em;
  }

  .brand__mark {
    font-size: clamp(34px, 8vw, 44px);
  }

  .brand__sub {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .navrow__inner {
    width: 100%;
    padding: 0 16px;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .refresh-btn {
    position: static;
    transform: none;
    padding: 7px 14px;
    font-size: 12px;
  }

  .refresh-btn:hover {
    transform: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    display: none;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 36px rgba(11, 27, 61, 0.12);
  }

  .site-nav[data-open] {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 16px;
  }

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

  .nav-list__item:last-child {
    border-bottom: 0;
  }

  .nav-list__link {
    display: block;
    padding: 15px 4px;
    font-size: 15px;
  }

  .nav-list__link::after {
    display: none;
  }

  .nav-list__link[aria-current="page"] {
    color: var(--accent-orange);
    padding-left: 12px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }
}

@media (max-width: 640px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .refresh-btn__text {
    display: none;
  }
}

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

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