:root {
  --uk-blue: #0033a0;
  --uk-white: #ffffff;
  --uk-light-blue: #4a90d9;
  --bg-dark: #0a0f1e;
  --bg-dark-rgb: 10, 15, 30;
  --bg-card: #0d1426;
  --bg-card-hover: #111b35;
  --bg-panel: #0f1930;
  --text-primary: #ffffff;
  --text-secondary: #9eb3d8;
  --text-muted: #5a6e8a;
  --border: #1e2e50;
  --border-strong: #2e4a7f;
  --accent-green: #27ae60;
  --accent-red: #e74c3c;
  --accent-yellow: #f1c40f;
  --accent-cyan: #5cc8ff;
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.34);
  --shadow-glow: 0 0 0 1px rgba(74, 144, 217, 0.22), 0 18px 40px rgba(0, 51, 160, 0.18);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --nav-height: 76px;
  --content-width: 1280px;
  --gutter: 24px;
  --section-gap: 32px;
  --transition-fast: 160ms ease;
  --transition-base: 220ms ease;
  --font-body: "Inter", sans-serif;
  --font-display: "Oswald", sans-serif;
  color-scheme: dark;
}

html[data-theme="light"] {
  --uk-light-blue: #1f5dc5;
  --bg-dark: #eef3fb;
  --bg-dark-rgb: 238, 243, 251;
  --bg-card: #ffffff;
  --bg-card-hover: #f4f8ff;
  --bg-panel: #f7faff;
  --text-primary: #142033;
  --text-secondary: #42587b;
  --text-muted: #7083a0;
  --border: #d5e0f1;
  --border-strong: #aac0e4;
  --shadow-sm: 0 12px 24px rgba(19, 39, 71, 0.08);
  --shadow-md: 0 22px 44px rgba(19, 39, 71, 0.12);
  --shadow-glow: 0 0 0 1px rgba(31, 93, 197, 0.14), 0 18px 40px rgba(31, 93, 197, 0.12);
  color-scheme: light;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(74, 144, 217, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(0, 51, 160, 0.22), transparent 24%),
    linear-gradient(180deg, #0b1120 0%, var(--bg-dark) 42%, #08101f 100%);
  line-height: 1.5;
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at top left, rgba(31, 93, 197, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(74, 144, 217, 0.12), transparent 20%),
    linear-gradient(180deg, #f7fbff 0%, #eef3fb 48%, #e7eef9 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 80%);
  opacity: 0.3;
}

html[data-theme="light"] body::before {
  background-image:
    linear-gradient(rgba(20, 32, 51, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 32, 51, 0.03) 1px, transparent 1px);
  opacity: 0.45;
}

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

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

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

button,
select {
  border: 0;
}

button {
  background: none;
  cursor: pointer;
}

select {
  appearance: none;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

main {
  position: relative;
  z-index: 1;
}

.site-shell,
.page-shell,
.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content-width));
  margin: 0 auto;
}

.page-shell,
.content-wrap {
  padding-top: calc(var(--nav-height) + 32px);
  padding-bottom: 64px;
}

.section {
  margin-bottom: var(--section-gap);
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--uk-light-blue);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--uk-light-blue), transparent);
}

h1,
.display-title,
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
.hero-title {
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 0.95;
}

h2,
h3,
.section-title,
.card-title {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h2,
.section-title {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

h3,
.card-title {
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.lead,
.section-copy,
.page-subtitle {
  max-width: 70ch;
  color: var(--text-secondary);
  font-size: 1rem;
}

.stat-number,
.metric-value,
.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.stat-label,
.metric-label,
.meta-label {
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-muted {
  color: var(--text-muted);
}

.text-secondary {
  color: var(--text-secondary);
}

.accent-blue {
  color: var(--uk-light-blue);
}

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

.accent-red {
  color: var(--accent-red);
}

.accent-yellow {
  color: var(--accent-yellow);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--nav-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(var(--bg-dark-rgb), 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  padding: 14px 0 12px;
}

.site-nav__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px 20px;
  width: min(calc(100% - (var(--gutter) * 2)), var(--content-width));
  margin: 0 auto;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.site-brand__logo {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(74, 144, 217, 0.32);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 51, 160, 0.5), rgba(74, 144, 217, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--uk-white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-brand__logo-image {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.site-brand__text {
  min-width: 0;
}

.site-brand__eyebrow {
  display: block;
  margin-bottom: 2px;
  color: var(--uk-light-blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-brand__title {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav__menu {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--text-primary);
  border-color: rgba(74, 144, 217, 0.2);
  background: rgba(74, 144, 217, 0.08);
  transform: translateY(-1px);
}

.site-nav__link.is-active {
  color: var(--text-primary);
  border-color: rgba(74, 144, 217, 0.32);
  background: linear-gradient(180deg, rgba(74, 144, 217, 0.22), rgba(0, 51, 160, 0.14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-nav__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(74, 144, 217, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(74, 144, 217, 0.14), rgba(0, 51, 160, 0.08));
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--text-primary);
  border-color: rgba(74, 144, 217, 0.34);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 51, 160, 0.14);
}

html[data-theme="light"] .theme-toggle {
  background: linear-gradient(180deg, rgba(31, 93, 197, 0.08), rgba(31, 93, 197, 0.03));
}

.season-select-wrap {
  position: relative;
  min-width: 116px;
}

.season-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-secondary);
  border-bottom: 2px solid var(--text-secondary);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.season-select,
.input,
.select {
  width: 100%;
  min-height: 44px;
  padding: 0 40px 0 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(13, 20, 38, 0.92);
  color: var(--text-primary);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

.season-select:hover,
.season-select:focus-visible,
.input:hover,
.input:focus-visible,
.select:hover,
.select:focus-visible {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.16);
  outline: none;
}

.hero,
.hero-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(74, 144, 217, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 51, 160, 0.32), rgba(10, 15, 30, 0.88)),
    radial-gradient(circle at top right, rgba(92, 200, 255, 0.18), transparent 36%),
    var(--bg-card);
  box-shadow: var(--shadow-md);
}

.hero::before,
.hero-banner::before {
  content: "";
  position: absolute;
  inset: auto -10% -55% 40%;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.28), transparent 70%);
}

.hero__content,
.hero-banner__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.card,
.panel,
.surface {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%),
    var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.card::after,
.panel::after,
.surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 144, 217, 0.08), transparent 38%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.card:hover,
.card:focus-within,
.panel:hover,
.panel:focus-within,
.surface:hover,
.surface:focus-within {
  transform: translateY(-4px);
  border-color: rgba(74, 144, 217, 0.34);
  background-color: var(--bg-card-hover);
  box-shadow: var(--shadow-glow);
}

.card:hover::after,
.card:focus-within::after,
.panel:hover::after,
.panel:focus-within::after,
.surface:hover::after,
.surface:focus-within::after {
  opacity: 1;
}

.card-header,
.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.card-copy,
.panel-copy {
  color: var(--text-secondary);
}

.card-grid,
.stats-grid,
.dashboard-grid {
  display: grid;
  gap: 20px;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stats-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stats-grid--wide {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.split-grid,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 1fr);
  gap: 24px;
}

.three-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.metric-card,
.stat-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.metric-trend,
.stat-trend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 600;
}

.badge,
.status-badge,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge--blue,
.status-badge--blue {
  border-color: rgba(74, 144, 217, 0.24);
  background: rgba(74, 144, 217, 0.12);
  color: #cfe3ff;
}

.badge--green,
.status-badge--win {
  border-color: rgba(39, 174, 96, 0.22);
  background: rgba(39, 174, 96, 0.12);
  color: #9ff0bf;
}

.badge--red,
.status-badge--loss {
  border-color: rgba(231, 76, 60, 0.24);
  background: rgba(231, 76, 60, 0.12);
  color: #ffbeb6;
}

.badge--yellow,
.status-badge--warning {
  border-color: rgba(241, 196, 15, 0.28);
  background: rgba(241, 196, 15, 0.12);
  color: #ffe98a;
}

.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn:hover,
.btn:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn--primary,
.button--primary {
  background: linear-gradient(135deg, var(--uk-blue), #0f4cd1);
  color: var(--uk-white);
  box-shadow: 0 12px 28px rgba(0, 51, 160, 0.32);
}

.btn--primary:hover,
.btn--primary:focus-visible,
.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 16px 32px rgba(0, 51, 160, 0.4);
}

.btn--secondary,
.button--secondary {
  border-color: rgba(74, 144, 217, 0.24);
  background: rgba(74, 144, 217, 0.08);
  color: var(--text-primary);
}

.btn--ghost,
.button--ghost {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
}

.btn-group,
.button-group,
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn.is-active,
.button.is-active,
.filter-pill.is-active {
  border-color: rgba(74, 144, 217, 0.34);
  background: rgba(74, 144, 217, 0.18);
  color: var(--text-primary);
}

.filter-pill,
.toggle-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 700;
}

.toolbar,
.page-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.export-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.export-buttons--bottom {
  margin-top: 32px;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.stack {
  display: grid;
  gap: 16px;
}

.stack--sm {
  gap: 10px;
}

.stack--lg {
  gap: 24px;
}

.inline-meta,
.meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-secondary);
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
}

.empty-state,
.error-state,
.loading-state {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 220px;
  padding: 32px 24px;
  text-align: center;
  border: 1px dashed rgba(74, 144, 217, 0.24);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.empty-state p,
.error-state p,
.loading-state p {
  max-width: 42ch;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.skeleton {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 40%,
    rgba(255, 255, 255, 0.16) 50%,
    rgba(255, 255, 255, 0.08) 60%,
    transparent 100%
  );
  animation: skeleton-pulse 1.4s ease infinite;
}

.skeleton--title {
  width: 40%;
  height: 24px;
}

.skeleton--text {
  width: 100%;
  height: 14px;
}

.skeleton--stat {
  width: 70%;
  height: 44px;
}

.skeleton--card {
  width: 100%;
  height: 180px;
}

@keyframes skeleton-pulse {
  to {
    transform: translateX(100%);
  }
}

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

.scroll-x {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--border-strong) transparent;
}

.scroll-x::-webkit-scrollbar {
  height: 10px;
}

.scroll-x::-webkit-scrollbar-track {
  background: transparent;
}

.scroll-x::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(74, 144, 217, 0.24);
}

.link-card {
  display: block;
  height: 100%;
}

.link-card:hover .card,
.link-card:focus-visible .card {
  transform: translateY(-4px);
  border-color: rgba(74, 144, 217, 0.34);
  box-shadow: var(--shadow-glow);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.hide-mobile {
  display: initial;
}

.show-mobile {
  display: none;
}

@media (max-width: 768px) {
  :root {
    --nav-height: auto;
    --gutter: 18px;
    --section-gap: 24px;
  }

  .site-nav {
    height: auto;
    padding: 12px 0;
  }

  .site-nav__inner {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
  }

  .site-nav__menu,
  .site-nav__controls,
  .site-nav__links {
    width: 100%;
  }

  .site-nav__menu {
    display: flex;
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav__links {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .site-nav__link {
    white-space: nowrap;
  }

  .site-nav__controls {
    justify-content: space-between;
  }

  .season-select-wrap {
    flex: 1;
    max-width: 180px;
  }

  .page-shell,
  .content-wrap {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .section-header,
  .page-header,
  .toolbar,
  .page-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .split-grid,
  .two-column,
  .three-column {
    grid-template-columns: 1fr;
  }

  .card,
  .panel,
  .surface,
  .hero,
  .hero-banner {
    padding: 18px;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

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

  .export-buttons {
    justify-content: flex-start;
  }

  .hide-mobile {
    display: none !important;
  }

  .show-mobile {
    display: initial !important;
  }
}

@media (max-width: 480px) {
  :root {
    --gutter: 14px;
  }

  body {
    font-size: 0.95rem;
  }

  .site-brand {
    gap: 10px;
  }

  .site-brand__logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.1rem;
  }

  .site-brand__logo-image {
    width: 27px;
    height: 27px;
  }

  .site-brand__title {
    font-size: 1.1rem;
  }

  .site-brand__eyebrow {
    font-size: 0.62rem;
  }

  h1,
  .hero-title {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .stat-number,
  .metric-value,
  .hero-stat-value {
    font-size: clamp(1.8rem, 12vw, 2.5rem);
  }

  .card-grid,
  .stats-grid--compact,
  .stats-grid--wide {
    grid-template-columns: 1fr;
  }

  .btn,
  .button,
  .season-select,
  .input,
  .select {
    width: 100%;
  }

  .btn-group,
  .button-group,
  .filter-bar,
  .export-buttons {
    width: 100%;
  }

  .site-nav__controls {
    align-items: stretch;
    flex-direction: column;
  }

  .season-select-wrap {
    max-width: none;
  }
}
