:root {
  color-scheme: dark;
  --bg-deep: #0a0e14;
  --bg-panel: #121820;
  --neon-green: #00ff88;
  --electric-blue: #00d4ff;
  --gold-dot: #ffd700;
  --text-bright: #e6e8ea;
  --text-muted: #8a9199;
  --purple-edge: #7b2ff7;
  --alert-red: #ff4d4f;
  --font-heading: Impact, "Anton", "Arial Narrow", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Noto Sans SC", Inter, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-pill: 0 10px 36px rgba(0, 0, 0, 0.55);
  --glow-green: 0 0 22px rgba(0, 255, 136, 0.4);
  --glow-blue: 0 0 22px rgba(0, 212, 255, 0.4);
  --content-max: 1200px;
  --space-section: clamp(56px, 8vw, 112px);
}

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

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

body {
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(600px 320px at 10% -80px, rgba(0, 212, 255, 0.14) 0%, transparent 70%),
    radial-gradient(560px 300px at 90% -100px, rgba(0, 255, 136, 0.11) 0%, transparent 70%),
    linear-gradient(rgba(230, 232, 234, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 232, 234, 0.024) 1px, transparent 1px);
  background-size: auto, auto, 52px 52px, 52px 52px;
  background-repeat: no-repeat, no-repeat, repeat, repeat;
  color: var(--text-bright);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  display: block;
}

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

a {
  color: var(--electric-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

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

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

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style-position: inside;
}

::selection {
  background: rgba(0, 255, 136, 0.28);
  color: var(--text-bright);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
}

h4 {
  font-size: 1.05rem;
}

.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 28px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  word-wrap: normal;
}

.page-content {
  padding-block: clamp(24px, 4vw, 56px);
}

.prose-container {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 24px;
  color: var(--text-muted);
}

.prose-container p {
  margin-bottom: 1.2em;
}

.prose-container h2,
.prose-container h3 {
  color: var(--text-bright);
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}

.section-chapter {
  position: relative;
  padding-block: var(--space-section);
  overflow: hidden;
}

.section-chapter + .section-chapter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.7), rgba(0, 255, 136, 0.4) 45%, transparent 85%);
  transform: skewX(-28deg);
}

.chapter-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  column-gap: 26px;
  row-gap: 8px;
  margin-bottom: 40px;
}

.chapter-index {
  font-family: var(--font-heading);
  font-size: clamp(3.6rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.01em;
  color: var(--electric-blue);
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .chapter-index {
    background: linear-gradient(115deg, var(--electric-blue) 5%, var(--neon-green) 65%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.chapter-title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--text-bright);
  line-height: 1.08;
  border-left: 4px solid var(--neon-green);
  padding-left: 16px;
}

.chapter-desc {
  grid-column: 2;
  color: var(--text-muted);
  max-width: 64ch;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .chapter-head {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .chapter-desc {
    grid-column: 1;
  }
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.collage-item {
  position: relative;
  min-width: 0;
}

.collage-item--span-4 {
  grid-column: span 4;
}

.collage-item--span-5 {
  grid-column: span 5;
}

.collage-item--span-6 {
  grid-column: span 6;
}

.collage-item--span-7 {
  grid-column: span 7;
}

.collage-item--span-8 {
  grid-column: span 8;
}

.collage-item--full {
  grid-column: 1 / -1;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

@media (max-width: 760px) {
  .grid-12,
  .collage {
    grid-template-columns: 1fr;
  }

  .grid-12 > *,
  .collage .collage-item {
    grid-column: 1 / -1 !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--neon-green);
  color: #0a0e14;
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
  background: #12ff9a;
  color: #0a0e14;
  box-shadow: 0 8px 28px rgba(0, 255, 136, 0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(0, 212, 255, 0.55);
  color: var(--electric-blue);
}

.btn-ghost:hover {
  border-color: var(--electric-blue);
  background: rgba(0, 212, 255, 0.08);
  color: var(--electric-blue);
  box-shadow: var(--glow-blue);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.6;
  border: 1px solid rgba(230, 232, 234, 0.2);
  color: var(--text-muted);
  background: rgba(230, 232, 234, 0.04);
}

.tag--live {
  color: var(--alert-red);
  border-color: rgba(255, 77, 79, 0.45);
  background: rgba(255, 77, 79, 0.08);
}

.tag--live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--alert-red);
  box-shadow: 0 0 8px var(--alert-red);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

.tag--data {
  color: var(--neon-green);
  border-color: rgba(0, 255, 136, 0.35);
  background: rgba(0, 255, 136, 0.06);
}

.tag--gold {
  color: var(--gold-dot);
  border-color: rgba(255, 215, 0, 0.45);
  background: rgba(255, 215, 0, 0.07);
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.breadcrumb li:not(:first-child)::before {
  content: "//";
  color: var(--electric-blue);
  margin-right: 8px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 0;
}

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

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

.image-shell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(0, 212, 255, 0.06) 0%, transparent 40%),
    linear-gradient(315deg, rgba(0, 255, 136, 0.05) 0%, transparent 40%),
    var(--bg-panel);
  border: 1px solid rgba(0, 212, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 10px,
    rgba(0, 212, 255, 0.045) 10px,
    rgba(0, 212, 255, 0.045) 11px
  );
  pointer-events: none;
}

.image-shell[data-placeholder]::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(230, 232, 234, 0.35);
  padding: 16px;
  text-align: center;
  z-index: 1;
}

.ratio-21-9 {
  aspect-ratio: 21 / 9;
}

.ratio-16-9 {
  aspect-ratio: 16 / 9;
}

.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.ratio-1-1 {
  aspect-ratio: 1 / 1;
}

.ratio-3-4 {
  aspect-ratio: 3 / 4;
}

.ratio-9-16 {
  aspect-ratio: 9 / 16;
}

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

.info-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.info-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 4px;
  width: 64px;
  background: linear-gradient(90deg, transparent, var(--electric-blue));
  transition: width 0.25s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), var(--glow-blue);
}

.info-card:hover::after {
  width: 100%;
}

.info-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

.info-card-text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.info-card-link {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.info-card-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.info-card-link:hover::after {
  transform: translateX(4px);
}

.match-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.match-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--neon-green), var(--electric-blue));
}

.match-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.match-league {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.match-time {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--electric-blue);
  letter-spacing: 0.04em;
  font-weight: 700;
}

.match-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

.match-team {
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.match-score {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-bright);
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-sm);
  padding: 4px 14px;
  letter-spacing: 0.04em;
}

.data-tile {
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.07), rgba(0, 255, 136, 0.03));
  border-left: 3px solid var(--neon-green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 22px;
}

.data-value {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--neon-green);
  margin: 0 0 6px;
}

.data-label {
  color: var(--text-muted);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}

.filter-btn:hover {
  border-color: var(--electric-blue);
  color: var(--text-bright);
}

.filter-btn.is-active,
.filter-btn[aria-pressed="true"] {
  background: var(--electric-blue);
  border-color: var(--electric-blue);
  color: #0a0e14;
  font-weight: 700;
  box-shadow: var(--glow-blue);
}

[hidden] {
  display: none !important;
}

.diag-line {
  height: 3px;
  background: linear-gradient(90deg, var(--neon-green), var(--electric-blue) 60%, transparent);
  transform: skewX(-18deg);
  transform-origin: left center;
}

.speed-plate {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.12), rgba(0, 212, 255, 0.05));
  border-left: 3px solid var(--neon-green);
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  padding: 18px 22px;
}

.door-edge {
  position: relative;
}

.door-link {
  position: absolute;
  right: 6px;
  bottom: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.6;
  text-decoration: none;
  padding: 4px 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: opacity 0.2s, color 0.2s, border-color 0.2s;
}

.door-link:hover {
  opacity: 1;
  color: var(--neon-green);
  border-color: rgba(0, 255, 136, 0.5);
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1300;
  background: var(--neon-green);
  color: #0a0e14;
  padding: 10px 20px;
  border-radius: 0 0 14px 14px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:hover {
  color: #0a0e14;
}

.skip-link:focus-visible {
  top: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
  box-shadow: 0 0 14px rgba(0, 255, 136, 0.65);
  z-index: 1200;
  pointer-events: none;
  transition: width 0.08s linear;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 1000;
  padding: 0 16px;
}

.nav-shell {
  max-width: calc(var(--content-max) + 32px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 10px 8px 14px;
  background: rgba(10, 14, 20, 0.72);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.32);
  border-radius: 999px;
  box-shadow: var(--shadow-pill);
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  text-decoration: none;
}

.brand-ball {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #0a0e14 45%, #00ff88 130%);
  border: 1px solid rgba(0, 255, 136, 0.8);
  box-shadow: 0 0 16px rgba(0, 255, 136, 0.55), inset 0 0 6px rgba(0, 0, 0, 0.6);
  font-size: 20px;
  line-height: 1;
  color: #fff;
  user-select: none;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--text-bright);
  line-height: 1;
  text-transform: uppercase;
}

.brand-text em {
  font-style: normal;
  color: var(--neon-green);
  font-size: 0.68em;
  vertical-align: super;
  letter-spacing: 0.1em;
}

.brand:hover .brand-text em {
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.7);
}

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

.site-nav a {
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.site-nav a:hover {
  color: var(--text-bright);
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: #0a0e14;
  background: var(--neon-green);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.nav-toggle:hover {
  border-color: var(--electric-blue);
  background: rgba(0, 212, 255, 0.12);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-bright);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.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) {
  opacity: 0;
}

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

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

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(10, 14, 20, 0.98);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s linear 0.24s;
    pointer-events: none;
  }

  .site-nav[data-open] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.24s ease, transform 0.24s ease;
    pointer-events: auto;
  }

  .site-nav a {
    text-align: center;
    padding: 14px 16px;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0c1219 0%, #0a0e14 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-edge) 0%, var(--electric-blue) 35%, var(--neon-green) 70%, transparent 100%);
}

.site-footer::after {
  content: "⚽";
  position: absolute;
  right: -30px;
  bottom: -70px;
  font-size: 240px;
  line-height: 1;
  color: var(--electric-blue);
  opacity: 0.03;
  transform: rotate(-10deg);
  pointer-events: none;
  user-select: none;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.7fr) minmax(0, 0.7fr) minmax(0, 1.1fr);
  gap: 40px;
  padding-block: 64px 48px;
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-muted);
  max-width: 36ch;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-trust {
  color: var(--text-bright);
  font-weight: 600;
  border-left: 3px solid var(--neon-green);
  padding-left: 12px;
  font-size: 0.9rem;
  max-width: 36ch;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--electric-blue);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.25);
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col nav a,
.footer-col > a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 4px 0;
  transition: color 0.15s, padding-left 0.15s;
}

.footer-col nav a:hover,
.footer-col > a:hover {
  color: var(--neon-green);
  padding-left: 6px;
}

.footer-contact-line {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  word-break: break-all;
  max-width: 32ch;
}

.footer-bottom {
  background: #070b10;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 18px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-motto {
  color: var(--neon-green);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block-start: 48px;
  }

  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

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

@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;
  }

  .scroll-progress {
    transition: none;
  }

  .tag--live::before {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
