:root {
  --bg-deep: #0A1428;
  --bg-stadium: #12315E;
  --acc-green: #C6FF00;
  --acc-orange: #FF6A00;
  --txt-ice: #F0F4FF;
  --txt-steel: #B8C4D0;
  --line-cyan: #2DE2E6;
  --state-grass: #00C853;
  --state-alert: #FF3D00;
  --font-display: 'Noto Sans CJK SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'Inter', 'Noto Sans CJK SC', 'PingFang SC', sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  --rail-w: 264px;
  --ticker-h: 46px;
  --radius: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--txt-ice);
  background:
    radial-gradient(circle at 82% 18%, rgba(45, 226, 230, 0.06), transparent 32%),
    radial-gradient(circle at 6% 78%, rgba(255, 106, 0, 0.05), transparent 28%),
    var(--bg-deep);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.18;
  color: var(--txt-ice);
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--line-cyan);
  text-decoration: none;
}

a:hover {
  color: var(--acc-green);
}

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

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

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input {
  font-family: inherit;
  font-size: inherit;
}

:focus-visible {
  outline: 2px solid var(--acc-green);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--acc-green);
  color: var(--bg-deep);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--bg-stadium);
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

.display-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1.1;
}

.mono {
  font-family: var(--font-mono);
}

.steel {
  color: var(--txt-steel);
}

/* ===== Skip Link ===== */
.skip-link {
  position: fixed;
  top: 8px;
  left: 50%;
  z-index: 300;
  transform: translate(-50%, -400%);
  background: var(--acc-green);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  opacity: 0;
  transition: transform 0.25s var(--ease), opacity 0.25s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

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

/* ===== Header Mobile Base ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-deep);
  border-bottom: 1px solid rgba(45, 226, 230, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

/* ===== Scroll Progress ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 130;
  background: rgba(45, 226, 230, 0.18);
  transform-origin: 0 50%;
  transform: scaleX(var(--scroll-pct, 0));
  pointer-events: none;
}

/* ===== Score Ticker ===== */
.score-ticker {
  position: relative;
  width: 100%;
  order: -1;
  height: 40px;
  background: var(--bg-stadium);
  border-radius: 8px;
  overflow: hidden;
}

.score-ticker__label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: var(--acc-green);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 86% 100%, 0 100%);
}

.score-ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: ticker-slide 34s linear infinite;
}

.score-ticker__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.score-ticker.is-paused .score-ticker__track {
  animation-play-state: paused;
}

@keyframes ticker-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  white-space: nowrap;
  font-size: 13px;
  color: var(--txt-steel);
  border-right: 1px solid rgba(45, 226, 230, 0.18);
}

.ticker-item__league {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--line-cyan);
}

.ticker-item__teams {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--txt-ice);
}

.ticker-item__teams b {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--txt-ice);
  background: rgba(10, 20, 40, 0.7);
  border: 1px solid rgba(45, 226, 230, 0.3);
  border-radius: 4px;
  padding: 1px 6px;
  margin: 0 2px;
}

.ticker-item__live {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--acc-orange);
}

/* ===== Brand ===== */
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--txt-ice);
}

.site-brand:hover {
  color: var(--txt-ice);
}

.site-brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--acc-green);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  font-style: italic;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 78% 100%, 0 100%);
}

.site-brand__text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

/* ===== Nav Toggle ===== */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 52px;
  padding: 8px 12px;
  border: 1px solid rgba(45, 226, 230, 0.35);
  border-radius: 8px;
  transition: border-color 0.25s;
}

.nav-toggle:hover {
  border-color: var(--acc-green);
}

.nav-toggle__line {
  width: 22px;
  height: 2px;
  background: var(--txt-ice);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background 0.3s;
}

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

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

.nav-toggle__text {
  font-size: 10px;
  color: var(--txt-steel);
  letter-spacing: 0.12em;
}

/* ===== Primary Nav ===== */
.primary-nav {
  display: none;
  width: 100%;
}

.primary-nav[data-open="true"] {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: calc(100vh - 90px);
  overflow-y: auto;
  background: var(--bg-stadium);
  border-bottom: 1px solid rgba(45, 226, 230, 0.3);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
  padding: 12px;
}

.primary-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
}

.primary-nav__item {
  margin: 0;
  padding: 0;
}

.primary-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  color: var(--txt-steel);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-left: 3px solid transparent;
  border-radius: 0 8px 8px 0;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.primary-nav__link::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 1px solid var(--line-cyan);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.primary-nav__link:hover {
  color: var(--txt-ice);
  background: rgba(45, 226, 230, 0.08);
  border-left-color: var(--line-cyan);
}

.primary-nav__link[aria-current="page"] {
  color: var(--bg-deep);
  background: var(--acc-green);
  border-left-color: var(--acc-green);
}

.primary-nav__link[aria-current="page"]::before {
  background: var(--bg-deep);
  border-color: var(--bg-deep);
}

/* ===== Rail Note ===== */
.rail-note {
  display: none;
}

.rail-note__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acc-green);
  animation: pulse 2s ease-in-out infinite;
}

.rail-note__text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--txt-steel);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(198, 255, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(198, 255, 0, 0);
  }
}

/* ===== Desktop Header ===== */
@media (min-width: 1180px) {
  html {
    scroll-padding-top: 64px;
  }

  body {
    padding-left: var(--rail-w);
    padding-top: var(--ticker-h);
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--rail-w);
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    padding: 32px 20px 24px;
    border-bottom: none;
    border-right: 1px solid rgba(45, 226, 230, 0.35);
    overflow-y: auto;
    box-shadow: none;
  }

  .site-header::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(45, 226, 230, 0.05) 14px 15px);
    pointer-events: none;
  }

  .site-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 120px;
    background: var(--acc-orange);
    clip-path: polygon(0 0, 100% 8%, 100% 92%, 0 100%);
    pointer-events: none;
  }

  .scroll-progress {
    left: var(--rail-w);
  }

  .score-ticker {
    position: fixed;
    top: 0;
    left: var(--rail-w);
    right: 0;
    width: auto;
    height: var(--ticker-h);
    margin: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(45, 226, 230, 0.35);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  }

  .site-header__bar {
    display: block;
    width: 100%;
    margin-bottom: 8px;
  }

  .nav-toggle {
    display: none;
  }

  .site-brand {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(45, 226, 230, 0.2);
  }

  .primary-nav {
    display: block;
    position: static;
    width: 100%;
    max-height: none;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .primary-nav__list {
    gap: 4px;
  }

  .primary-nav__link {
    padding: 11px 14px;
  }

  .rail-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
  }
}

/* ===== Main / Container ===== */
.site-main {
  display: block;
  width: 100%;
  min-height: 60vh;
  padding: 28px 16px 56px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .site-main {
    padding: 40px 32px 64px;
  }
}

@media (min-width: 1180px) {
  .site-main {
    padding: 56px 48px 80px;
  }

  .display-title {
    font-size: 56px;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s, color 0.25s;
}

.btn--primary {
  background: var(--acc-green);
  color: var(--bg-deep);
}

.btn--primary:hover {
  color: var(--bg-deep);
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(45, 226, 230, 0.5);
  color: var(--txt-ice);
}

.btn--ghost:hover {
  border-color: var(--acc-green);
  background: rgba(45, 226, 230, 0.08);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  margin-bottom: 16px;
}

.breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--txt-steel);
}

.breadcrumb__list li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb__list li + li::before {
  content: '›';
  margin-right: 6px;
  color: var(--line-cyan);
}

.breadcrumb a {
  color: var(--txt-steel);
  text-decoration: none;
}

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

.breadcrumb [aria-current="page"] {
  color: var(--txt-ice);
}

/* ===== Section Head ===== */
.section-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.section-head__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bg-deep);
  background: var(--acc-orange);
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.section-head__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.15;
  margin: 0;
}

.section-head__more {
  margin-left: auto;
  font-size: 13px;
  color: var(--line-cyan);
  text-decoration: none;
}

.section-head__more:hover {
  color: var(--acc-green);
}

/* ===== Cards ===== */
.card {
  background: var(--bg-stadium);
  border: 1px solid rgba(45, 226, 230, 0.22);
  border-radius: 14px;
  padding: 20px;
  color: var(--txt-ice);
  transition: border-color 0.25s, transform 0.25s;
}

.card:hover {
  border-color: rgba(45, 226, 230, 0.6);
  transform: translateY(-3px);
}

.card--accent {
  border-top: 3px solid var(--acc-green);
}

.card--warm {
  border-top: 3px solid var(--acc-orange);
}

.card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 8px;
}

.card__text {
  font-size: 14px;
  color: var(--txt-steel);
  margin: 0;
}

/* ===== Grid ===== */
.grid {
  display: grid;
  gap: 20px;
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

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

@media (min-width: 900px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Data Chip / Live Badge ===== */
.data-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(45, 226, 230, 0.4);
  color: var(--line-cyan);
  background: rgba(10, 20, 40, 0.6);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--acc-green);
  background: rgba(198, 255, 0, 0.1);
  border: 1px solid rgba(198, 255, 0, 0.4);
  padding: 3px 10px;
  border-radius: 999px;
}

.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acc-green);
  animation: pulse 1.6s ease-out infinite;
}

/* ===== Image Frame ===== */
.img-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, transparent 30%, rgba(45, 226, 230, 0.05) 30% 32%, transparent 32% 48%, rgba(45, 226, 230, 0.05) 48% 50%, transparent 50%),
    radial-gradient(circle at 72% 28%, rgba(255, 106, 0, 0.12), transparent 52%),
    var(--bg-stadium);
  border: 1px solid rgba(45, 226, 230, 0.25);
  border-radius: 14px;
  overflow: hidden;
}

.img-frame::before {
  content: 'SPORTS STATUS';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(176, 196, 208, 0.3);
}

.img-frame--tall {
  aspect-ratio: 4 / 5;
}

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

.img-frame > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Accordion ===== */
.accordion__item {
  border: 1px solid rgba(45, 226, 230, 0.25);
  border-radius: 10px;
  background: var(--bg-stadium);
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  color: var(--txt-ice);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  text-align: left;
}

.accordion__trigger::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--acc-green);
  transition: transform 0.3s var(--ease);
}

.accordion__trigger[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  color: var(--txt-steel);
  font-size: 14px;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.accordion__content.is-open {
  max-height: 480px;
  padding: 0 16px 14px;
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  background: var(--bg-stadium);
  border-top: 1px solid rgba(45, 226, 230, 0.35);
  margin-top: 64px;
  padding: 48px 16px 28px;
  color: var(--txt-ice);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--acc-green), var(--line-cyan) 40%, var(--acc-orange));
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 40px;
}

/* ===== Footer Calendar ===== */
.footer-calendar__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-calendar__label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  background: var(--acc-green);
  color: var(--bg-deep);
  border-radius: 4px;
}

.footer-calendar__range {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--txt-steel);
}

.footer-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

@media (max-width: 639px) {
  .footer-calendar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.calendar-day {
  border: 1px solid rgba(45, 226, 230, 0.2);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
  background: linear-gradient(160deg, rgba(18, 49, 94, 0.85), rgba(10, 20, 40, 0.6));
}

.calendar-day--today {
  border-color: var(--acc-green);
  box-shadow: inset 0 0 0 1px rgba(198, 255, 0, 0.35);
}

.calendar-day__dow {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--txt-steel);
}

.calendar-day__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--txt-ice);
  line-height: 1.4;
}

.calendar-day__league {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  margin-top: 4px;
  color: var(--line-cyan);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Footer Subscribe ===== */
.footer-subscribe {
  position: relative;
  padding: 24px;
  background: linear-gradient(135deg, rgba(198, 255, 0, 0.06), transparent 40%), var(--bg-deep);
  border: 1px solid rgba(45, 226, 230, 0.22);
  border-radius: 16px;
  overflow: hidden;
}

.footer-subscribe::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 106, 0, 0.7) 50%);
  pointer-events: none;
}

.footer-subscribe__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 8px;
}

.footer-subscribe__desc {
  font-size: 14px;
  color: var(--txt-steel);
  margin-bottom: 16px;
}

.footer-subscribe__row {
  display: flex;
  gap: 8px;
}

.footer-subscribe__input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  background: var(--bg-stadium);
  border: 1px solid rgba(45, 226, 230, 0.35);
  border-radius: 8px;
  color: var(--txt-ice);
  font-family: var(--font-body);
  font-size: 14px;
}

.footer-subscribe__input::placeholder {
  color: rgba(176, 196, 208, 0.55);
}

.footer-subscribe__btn {
  padding: 10px 18px;
  background: var(--acc-green);
  color: var(--bg-deep);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  transition: filter 0.2s, transform 0.2s;
}

.footer-subscribe__btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.footer-subscribe__msg {
  margin-top: 10px;
  min-height: 20px;
  font-size: 13px;
  color: var(--acc-green);
}

/* ===== Footer Meta ===== */
.site-footer__meta {
  border-top: 1px solid rgba(45, 226, 230, 0.25);
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  display: grid;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-brand__mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--acc-orange);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
}

.footer-brand__name {
  font-weight: 700;
  font-size: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: var(--txt-steel);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--acc-green);
}

.footer-contact {
  font-size: 12px;
  color: var(--txt-steel);
  font-family: var(--font-mono);
}

.footer-trust {
  grid-column: 1 / -1;
  max-width: 720px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--txt-steel);
  line-height: 1.7;
}

.footer-icp {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--txt-steel);
  font-size: 12px;
  border-top: 1px dashed rgba(45, 226, 230, 0.2);
  padding-top: 16px;
}

@media (min-width: 900px) {
  .site-footer__top {
    grid-template-columns: 1.4fr 1fr;
  }

  .site-footer__meta {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: left;
  }

  .footer-brand {
    justify-content: flex-start;
  }

  .footer-links {
    justify-content: center;
  }

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

@media (min-width: 1180px) {
  .site-footer {
    padding: 64px 32px 28px;
  }
}

/* ===== Reduced Motion ===== */
@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;
  }

  .score-ticker {
    overflow-x: auto;
  }

  .score-ticker__track {
    animation: none;
  }

  .rail-note__dot,
  .live-badge::before {
    animation: none;
    box-shadow: none;
  }

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