:root {
  --bg-deep: #0A0E0C;
  --bg-panel: #111A15;
  --bg-elevated: #1B2A20;
  --primary-forest: #1D6B43;
  --primary-bright: #2E9E63;
  --gold: #D4AF37;
  --gold-soft: #E8C96A;
  --clay: #C67B5C;
  --slate: #A8B8A8;
  --cream: #F5F0E6;
  --font-head: "Space Grotesk", "Noto Sans SC", sans-serif;
  --font-body: "Inter", "Noto Sans SC", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", monospace;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --text-display: clamp(2.5rem, 6vw, 5rem);
  --text-h1: clamp(2rem, 4vw, 3.5rem);
  --text-h2: clamp(1.5rem, 3vw, 2.5rem);
  --text-h3: clamp(1.2rem, 2vw, 1.8rem);
  --header-top: 68px;
}

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

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

body {
  min-height: 100vh;
  background-color: var(--bg-deep);
  background-image:
    linear-gradient(rgba(29, 107, 67, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
}

img,
svg {
  display: block;
}

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

ul,
ol {
  list-style: none;
}

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

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

.wrap {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.section {
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.section--tight {
  padding-block: 1.5rem;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: var(--text-h2);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.prose {
  max-width: 72ch;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.9;
}

.prose p + p {
  margin-top: 1em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #0A0E0C;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.22);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

.btn--outline {
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

.btn--outline:hover {
  background: rgba(212, 175, 55, 0.14);
  border-color: var(--gold-soft);
}

.panel {
  position: relative;
  background: linear-gradient(180deg, rgba(27, 42, 32, 0.8), rgba(17, 26, 21, 0.92));
  border: 1px solid rgba(168, 184, 168, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 2.5vw, 2rem);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.data-card {
  position: relative;
  overflow: hidden;
  background: rgba(17, 26, 21, 0.82);
  border: 1px solid rgba(168, 184, 168, 0.1);
  border-radius: var(--radius-md);
  border-top: 2px solid var(--primary-forest);
  padding: 1.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.data-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  border-color: rgba(212, 175, 55, 0.3);
}

.data-card--gold {
  border-top-color: var(--gold);
}

.metric {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--cream);
}

.metric--gold {
  color: var(--gold);
}

.metric__delta {
  font-size: 0.8em;
  color: var(--primary-bright);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(29, 107, 67, 0.18);
  border: 1px solid rgba(46, 158, 99, 0.3);
  color: var(--primary-bright);
  font-family: var(--font-mono);
  font-size: 0.74rem;
}

.chip--gold {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--gold-soft);
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.breadcrumb {
  padding-block: 1.25rem;
}

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--slate);
  opacity: 0.5;
}

.breadcrumb a {
  color: var(--slate);
  font-size: 0.85rem;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb [aria-current="page"] {
  color: var(--gold);
  font-weight: 600;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.stadium-frame {
  position: relative;
  min-height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 20%, rgba(212, 175, 55, 0.14), transparent 30%),
    linear-gradient(135deg, #111A15, #1B2A20 55%, #0A0E0C);
  border: 1px solid rgba(168, 184, 168, 0.14);
}

.stadium-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(212, 175, 55, 0.04) 0 2px, transparent 2px 32px);
  opacity: 0.7;
}

.stadium-frame--wide {
  min-height: 420px;
}

.stadium-frame__label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(10, 14, 12, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-soft);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #0A0E0C;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  --nav-offset: 132px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10, 14, 12, 0.88), rgba(10, 14, 12, 0.78));
  border-bottom: 1px solid rgba(168, 184, 168, 0.12);
  transition: background 0.3s ease, border-color 0.3s ease;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-header.scrolled {
  background: rgba(10, 14, 12, 0.96);
  border-bottom-color: rgba(212, 175, 55, 0.32);
}

.nav-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
  z-index: 1001;
}

.site-header__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand__badge {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 25%, #2E9E63, #1D6B43 55%, #0A0E0C 100%);
  border: 1px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 6px 18px rgba(29, 107, 67, 0.35), inset 0 0 12px rgba(212, 175, 55, 0.08);
  overflow: hidden;
}

.brand__icon {
  width: 28px;
  height: 28px;
}

.brand__copy {
  display: grid;
  line-height: 1.15;
}

.brand__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.brand__sub {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--gold-soft);
  letter-spacing: 0.14em;
}

.nav-search {
  position: relative;
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  align-items: center;
  background: rgba(17, 26, 21, 0.88);
  border: 1px solid rgba(168, 184, 168, 0.22);
  border-radius: 999px;
  padding: 3px 3px 3px 14px;
  min-height: 42px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.nav-search:focus-within {
  border-color: var(--primary-bright);
  box-shadow: 0 0 0 3px rgba(46, 158, 99, 0.18);
}

.nav-search__icon {
  width: 18px;
  height: 18px;
  flex: none;
  margin-right: 0.45rem;
  opacity: 0.8;
}

.nav-search__input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--cream);
  font-size: 0.875rem;
}

.nav-search__input::placeholder {
  color: rgba(245, 240, 230, 0.45);
}

.nav-search__voice {
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.1);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-search__voice svg {
  width: 18px;
  height: 18px;
}

.nav-search__voice:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--gold-soft);
}

.nav-search__hint {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 0.75rem;
  color: var(--gold-soft);
  background: var(--bg-elevated);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  display: none;
}

.nav-search__hint:not(:empty) {
  display: block;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-panel);
  border: 1px solid rgba(212, 175, 55, 0.4);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: none;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.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-nav {
  position: relative;
  background: rgba(17, 26, 21, 0.35);
  border-top: 1px solid rgba(168, 184, 168, 0.08);
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  min-height: 52px;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav__list::-webkit-scrollbar {
  display: none;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  color: var(--slate);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav__link:hover {
  color: var(--cream);
  background: rgba(29, 107, 67, 0.3);
}

.site-nav__link[aria-current="page"] {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
}

.site-nav__index {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--primary-bright);
  opacity: 0.9;
}

.site-nav__link[aria-current="page"] .site-nav__index {
  color: var(--gold);
}

.site-footer {
  position: relative;
  margin-top: clamp(3.5rem, 8vw, 7rem);
  background: linear-gradient(180deg, #0A0E0C, #07100B 70%);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 2.5rem;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 2rem;
}

.brand--footer {
  margin-bottom: 1rem;
}

.site-footer__trust {
  max-width: 42ch;
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.7;
}

.site-footer__note {
  margin-top: 0.9rem;
  color: rgba(168, 184, 168, 0.6);
  font-size: 0.8rem;
  border-left: 2px solid var(--gold);
  padding-left: 0.8rem;
  border-radius: 2px;
}

.site-footer__title {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}

.site-footer__nav {
  display: grid;
  gap: 0.55rem;
}

.site-footer__navlink {
  color: var(--slate);
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.site-footer__navlink:hover {
  color: var(--gold-soft);
  padding-left: 4px;
}

.site-footer__contact {
  display: grid;
  gap: 0.6rem;
}

.site-footer__contactline {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer__bottom {
  background: rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(168, 184, 168, 0.12);
}

.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding-block: 1rem 0.9rem;
}

.site-footer__copyright,
.site-footer__icp {
  color: var(--slate);
  font-size: 0.8rem;
}

.site-footer__legal {
  margin-left: auto;
  display: flex;
  gap: 1rem;
}

.site-footer__legal a {
  color: var(--slate);
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.site-footer__legal a:hover {
  color: var(--gold);
}

@media (max-width: 1000px) {
  .site-header {
    --nav-offset: 70px;
  }

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

  .nav-search {
    flex: 0 1 220px;
  }

  .site-nav {
    position: fixed;
    top: var(--nav-offset);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    background: linear-gradient(180deg, rgba(10, 14, 12, 0.99), rgba(17, 26, 21, 0.99));
    border-top: 0;
    padding: 0.5rem 1rem 2.5rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.28s ease, visibility 0s linear 0.28s;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding-top: 1rem;
    min-height: auto;
  }

  .site-nav__link {
    font-size: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 16px;
  }

  .site-nav__index {
    font-size: 0.8rem;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__legal {
    margin-left: 0;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .site-header {
    --nav-offset: 64px;
  }

  .brand__title {
    font-size: 1rem;
  }

  .brand__sub {
    display: none;
  }

  .brand__badge {
    width: 40px;
    height: 40px;
  }

  .brand__icon {
    width: 24px;
    height: 24px;
  }

  .nav-search {
    padding-left: 10px;
    flex: 0 1 150px;
  }

  .nav-search__icon {
    display: none;
  }

  .nav-search__input {
    font-size: 0.8rem;
  }

  .nav-search__voice {
    width: 34px;
    height: 34px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__bottom-inner {
    justify-content: flex-start;
  }
}

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