:root {
  --deep-gray: #1A1A1A;
  --slate-gray: #2B2D31;
  --slate-elevated: #33353A;
  --fluorescent-green: #39FF14;
  --orange-start: #FF6B00;
  --orange-end: #FF8C00;
  --white: #FFFFFF;
  --light-gray: #B0B0B0;
  --muted-text: rgba(176, 176, 176, 0.72);
  --divider-gray: #3A3A3A;
  --red-alert: #FF3B30;
  --yellow-card: #FFD60A;
  --font-headline: Impact, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-data: "Roboto Mono", "Cascadia Code", "SF Mono", Menlo, Consolas, "Courier New", monospace;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
  --shell-max: 1440px;
  --shell-pad: clamp(16px, 4vw, 48px);
  --header-top: 16px;
  --header-h: 68px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-1: 0 4px 20px rgba(0, 0, 0, 0.45);
  --shadow-2: 0 10px 40px rgba(0, 0, 0, 0.55);
  --outline-focus: 2px solid var(--fluorescent-green);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms;
  --dur-mid: 350ms;
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--deep-gray);
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--dur-fast) ease, background-color var(--dur-fast) ease,
              border-color var(--dur-fast) ease, opacity var(--dur-fast) ease,
              box-shadow var(--dur-fast) ease, transform var(--dur-fast) ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 0.45em;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }

p {
  margin: 0 0 1.2em;
}

code, pre, kbd {
  font-family: var(--font-data);
}

:focus-visible {
  outline: var(--outline-focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -48px;
  left: 16px;
  z-index: 200;
  background: var(--fluorescent-green);
  color: var(--deep-gray);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(57, 255, 20, 0.35);
  transition: top var(--dur-fast) ease;
}
.skip-link:focus-visible {
  top: 16px;
  outline: var(--outline-focus);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: var(--header-top);
  z-index: 100;
  margin-top: var(--header-top);
  padding: 0 var(--shell-pad);
}

.header-inner {
  position: relative;
  max-width: var(--shell-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--header-h);
  padding: 8px 8px 8px 20px;
  background: rgba(43, 45, 49, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--divider-gray);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-1);
  transition: box-shadow var(--dur-mid) ease, border-color var(--dur-mid) ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--white);
}
.brand:hover {
  color: var(--white);
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  box-shadow: 0 2px 12px rgba(255, 107, 0, 0.35);
}
.brand-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 9px solid var(--deep-gray);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-headline);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
}

.brand-sub {
  font-family: var(--font-data);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fluorescent-green);
}

.site-nav {
  margin-left: auto;
}

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

.nav-item {
  list-style: none;
}

.nav-link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  color: var(--light-gray);
  white-space: nowrap;
}
.nav-link:hover {
  background: rgba(57, 255, 20, 0.08);
  color: var(--white);
}
.nav-link[aria-current="page"] {
  background: var(--fluorescent-green);
  color: var(--deep-gray);
  font-weight: 700;
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.4);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  color: var(--deep-gray);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 3px 14px rgba(255, 107, 0, 0.3);
  flex-shrink: 0;
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.42);
  color: var(--deep-gray);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--slate-gray);
  border: 1px solid var(--divider-gray);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
.nav-toggle:hover {
  border-color: rgba(57, 255, 20, 0.5);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur-fast) ease, opacity var(--dur-fast) ease, background-color var(--dur-fast) ease;
}

.nav-toggle[aria-expanded="true"] {
  border-color: var(--fluorescent-green);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--fluorescent-green);
}
.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(-7px) rotate(-45deg);
  background: var(--fluorescent-green);
}

.site-footer {
  position: relative;
  margin-top: clamp(48px, 8vw, 96px);
  background-color: #141414;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(120deg, var(--fluorescent-green), var(--orange-start) 55%, transparent 85%);
  z-index: 1;
}
.site-footer::after {
  content: "PERFECT SPORTS";
  position: absolute;
  right: -0.02em;
  bottom: -0.12em;
  font-family: var(--font-headline);
  font-size: clamp(90px, 14vw, 200px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.028);
  letter-spacing: 0.02em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) var(--shell-pad) 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 2fr) repeat(2, 1fr) minmax(200px, 1.6fr);
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 40px);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: var(--font-headline);
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 4px;
}

.footer-logo-sub {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--fluorescent-green);
  margin: 0 0 14px;
}

.footer-about {
  font-size: 14px;
  color: var(--light-gray);
  margin: 0;
}

.footer-heading {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--divider-gray);
  position: relative;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 28px;
  height: 2px;
  background: var(--fluorescent-green);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-list a {
  display: inline-block;
  padding: 4px 0;
  color: var(--light-gray);
  font-size: 14px;
  line-height: 1.5;
}
.footer-list a:hover {
  color: var(--fluorescent-green);
}

.footer-contact-item {
  color: var(--light-gray);
  font-size: 13px;
  line-height: 1.6;
  padding: 2px 0;
}

.footer-divider {
  border: 0;
  border-top: 1px solid var(--divider-gray);
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
}

.footer-trust {
  font-size: 13px;
  color: var(--muted-text);
  margin: 0 0 6px;
}

.footer-note {
  font-size: 13px;
  color: var(--muted-text);
  margin: 0 0 16px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  font-size: 12px;
  color: #707070;
}

.copyright,
.icp {
  font-family: var(--font-data);
}

.content-shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 var(--shell-pad);
}

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

.section {
  position: relative;
  padding: clamp(40px, 7vw, 88px) 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fluorescent-green);
  margin-bottom: 16px;
}
.section-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--fluorescent-green);
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  max-width: 640px;
  color: var(--light-gray);
  font-size: 15px;
  margin-bottom: 24px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.grid {
  display: grid;
  gap: clamp(16px, 2.4vw, 28px);
}
.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)); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur-fast) ease, box-shadow var(--dur-fast) ease,
              background-color var(--dur-fast) ease, border-color var(--dur-fast) ease,
              color var(--dur-fast) ease;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--fluorescent-green);
  color: var(--deep-gray);
  box-shadow: 0 4px 18px rgba(57, 255, 20, 0.28);
}
.btn-primary:hover {
  background: #4bff2e;
  color: var(--deep-gray);
  box-shadow: 0 8px 26px rgba(57, 255, 20, 0.4);
}

.btn-ghost {
  background: transparent;
  border-color: var(--divider-gray);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--fluorescent-green);
  color: var(--fluorescent-green);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--divider-gray);
  background: var(--slate-gray);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--light-gray);
  white-space: nowrap;
}

.tag-hot {
  border: none;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  color: var(--deep-gray);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(255, 107, 0, 0.25);
}

.tag-live {
  border-color: rgba(57, 255, 20, 0.4);
  background: rgba(57, 255, 20, 0.1);
  color: var(--fluorescent-green);
}
.tag-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fluorescent-green);
  animation: tag-pulse 1.5s ease-in-out infinite;
}

@keyframes tag-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.65); }
}

.badge-red,
.badge-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 30px;
  border-radius: 4px;
  font-family: var(--font-data);
  font-size: 10px;
  font-weight: 700;
}

.badge-red {
  background: var(--red-alert);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(255, 59, 48, 0.4);
}

.badge-yellow {
  background: var(--yellow-card);
  color: var(--deep-gray);
  box-shadow: 0 2px 8px rgba(255, 214, 10, 0.35);
}

.card {
  position: relative;
  background: var(--slate-gray);
  border: 1px solid var(--divider-gray);
  border-radius: var(--radius-md);
  padding: clamp(16px, 2vw, 24px);
  transition: border-color var(--dur-mid) ease, transform var(--dur-mid) ease,
              box-shadow var(--dur-mid) ease, background-color var(--dur-mid) ease;
}
.card:hover {
  border-color: rgba(57, 255, 20, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.card-title {
  font-family: var(--font-headline);
  font-size: 17px;
  margin: 0 0 8px;
}

.card-text {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.65;
  margin: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--fluorescent-green);
}
.card-link:hover {
  color: var(--white);
}

.status-panel {
  position: relative;
  background: linear-gradient(150deg, #202226 0%, #26282c 60%, #1d1f22 100%);
  border: 1px solid var(--divider-gray);
  border-radius: var(--radius-md);
  padding: 18px 20px 20px;
  overflow: hidden;
}
.status-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fluorescent-green), var(--orange-start));
  opacity: 0.85;
}

.status-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--divider-gray);
}

.status-panel-label {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light-gray);
}

.data-number {
  font-family: var(--font-data);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--fluorescent-green);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  font-size: 13px;
  color: var(--light-gray);
}
.breadcrumb a {
  color: var(--fluorescent-green);
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb-sep {
  color: var(--divider-gray);
  font-family: var(--font-data);
}
.breadcrumb-current {
  color: var(--light-gray);
}

.img-frame {
  position: relative;
  overflow: hidden;
  background: var(--slate-gray);
  border: 1px solid var(--divider-gray);
  border-radius: var(--radius-md);
  aspect-ratio: 16 / 9;
}
.img-frame > img,
.img-frame > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms var(--ease-out);
}
.img-frame:hover > img,
.img-frame:hover > picture > img {
  transform: scale(1.04);
}
.img-frame::after {
  content: "PERFECT SPORTS";
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 10px;
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: var(--radius-pill);
  background: rgba(26, 26, 26, 0.82);
  font-family: var(--font-data);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--fluorescent-green);
  z-index: 1;
}
.img-frame-21 { aspect-ratio: 21 / 9; }
.img-frame-4-3 { aspect-ratio: 4 / 3; }
.img-frame-1-1 { aspect-ratio: 1 / 1; }

.spotlight-section {
  position: relative;
}
.spotlight-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 520px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.spotlight-section::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.spotlight-section > * {
  position: relative;
  z-index: 1;
}

.flow-line {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(260deg, transparent, rgba(57, 255, 20, 0.6) 30%, var(--orange-start) 70%, transparent);
}
.flow-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  width: 120px;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  transform: skewX(-20deg);
  animation: flow-scan 2.8s ease-in-out infinite;
}

@keyframes flow-scan {
  0% { left: -100px; }
  100% { left: 110%; }
}

.deco-band {
  height: 4px;
  border-radius: var(--radius-pill);
  background: repeating-linear-gradient(
    -45deg,
    var(--fluorescent-green),
    var(--fluorescent-green) 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.4;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.back-top {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  background: var(--slate-gray);
  border: 1px solid var(--divider-gray);
  color: var(--fluorescent-green);
  font-family: var(--font-data);
  font-size: 18px;
  line-height: 1;
  box-shadow: var(--shadow-1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity var(--dur-mid) ease, transform var(--dur-mid) ease,
              visibility var(--dur-mid) ease, background-color var(--dur-fast) ease,
              color var(--dur-fast) ease, border-color var(--dur-fast) ease;
}
.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top:hover {
  background: var(--fluorescent-green);
  border-color: var(--fluorescent-green);
  color: var(--deep-gray);
}

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

@media (max-width: 960px) {
  .site-header {
    top: 8px;
  }
  .header-inner {
    padding: 8px 8px 8px 16px;
    border-radius: var(--radius-md);
    min-height: 60px;
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin-left: 0;
    display: block;
    padding: 16px;
    background: var(--slate-gray);
    border: 1px solid var(--divider-gray);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    transition: opacity var(--dur-fast) ease, transform var(--dur-fast) ease,
                visibility var(--dur-fast) ease;
  }
  .site-nav[data-open] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav-link {
    padding: 12px 16px;
    font-size: 16px;
    text-align: left;
  }
  .nav-toggle {
    display: flex;
  }
  .header-cta {
    margin-left: auto;
  }
  .split-layout {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

@media (max-width: 640px) {
  .header-cta {
    display: none;
  }
  .nav-toggle {
    margin-left: auto;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .brand-mark::after {
    border-left-width: 8px;
    border-top-width: 5px;
    border-bottom-width: 5px;
  }
  .brand-name {
    font-size: 18px;
  }
  .brand-sub {
    font-size: 8px;
    letter-spacing: 0.18em;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@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;
    transition-delay: 0ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .flow-line::after {
    animation: none;
  }
  .tag-live::before {
    animation: none;
  }
}
