:root {
  --rice: #F8F5EF;
  --rock: #4A4A4A;
  --deep-blue: #0B1B2B;
  --moss: #2E6B3E;
  --terra: #B85D3E;
  --neon: #00FF88;
  --silver: #C0C0C0;
  --ink: #1A1A1A;
  --font-head: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --font-body: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --font-data: "Roboto Mono", "Consolas", monospace;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-card: 0 12px 28px rgba(11, 27, 43, .08);
  --shadow-float: 0 18px 40px rgba(11, 27, 43, .16);
  --ease-out: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--rice);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  flex: 1 0 auto;
  min-width: 0;
}

main:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(32px, 5vw, 48px); }
h2 { font-size: clamp(26px, 3.6vw, 36px); }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p {
  margin: 0 0 1em;
}

ul, ol {
  margin: 0 0 1em;
  padding-left: 1.5em;
}

a {
  color: var(--moss);
  text-decoration: none;
  transition: color .2s var(--ease-out);
}

a:hover {
  color: var(--deep-blue);
}

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

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

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

::selection {
  background: rgba(0, 255, 136, .28);
  color: var(--deep-blue);
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--silver);
  border-radius: 8px;
  border: 2px solid var(--rice);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--moss);
}

.container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 24px;
  width: 100%;
}

.section {
  padding-block: clamp(64px, 10vw, 120px);
}

.section--tight {
  padding-block: clamp(40px, 6vw, 72px);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--moss);
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}

.section-head {
  margin-bottom: clamp(32px, 5vw, 56px);
  max-width: 840px;
}

.section-title {
  margin: 12px 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: .01em;
}

.section-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(26, 26, 26, .68);
  max-width: 640px;
}

.article-body {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(26, 26, 26, .82);
}

.article-body p {
  margin-bottom: 1.3em;
}

.article-body h2 {
  margin-top: 1.8em;
  font-size: 28px;
}

.article-body h3 {
  margin-top: 1.5em;
  font-size: 22px;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.3em;
}

.article-body li {
  margin-bottom: .4em;
}

.article-body strong {
  font-weight: 600;
  color: var(--ink);
}

.article-body blockquote {
  margin: 1.6em 0;
  padding: 16px 24px;
  border-left: 3px solid var(--moss);
  background: rgba(46, 107, 62, .06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: rgba(26, 26, 26, .75);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out), box-shadow .25s var(--ease-out), transform .25s var(--ease-out);
}

.btn--primary {
  background: var(--moss);
  color: var(--rice);
}

.btn--primary:hover {
  background: var(--deep-blue);
  color: var(--rice);
  box-shadow: var(--shadow-float);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border-color: var(--silver);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--terra);
  color: var(--terra);
  background: rgba(184, 93, 62, .05);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(46, 107, 62, .22);
  background: rgba(46, 107, 62, .07);
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--moss);
  white-space: nowrap;
}

.chip--live {
  background: rgba(11, 27, 43, .88);
  border-color: rgba(0, 255, 136, .35);
  color: var(--neon);
}

.chip--live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px 1px rgba(0, 255, 136, .65);
  animation: live-pulse 2.2s ease-in-out infinite;
}

.card {
  background: var(--rice);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out), transform .3s var(--ease-out);
}

.card:hover {
  border-color: var(--moss);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.frame {
  position: relative;
  padding: 28px;
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  background: var(--rice);
}

.frame::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
  border: 1px solid rgba(192, 192, 192, .35);
  border-radius: calc(var(--radius-lg) - 7px);
  pointer-events: none;
}

.frame.is-deep {
  background: var(--deep-blue);
  border-color: rgba(248, 245, 239, .14);
  color: rgba(248, 245, 239, .78);
}

.frame.is-deep::before {
  border-color: rgba(248, 245, 239, .18);
}

.stat {
  font-family: var(--font-data);
}

.stat-value {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--deep-blue);
  letter-spacing: -.02em;
}

.stat-value::after {
  content: attr(data-unit);
  margin-left: 4px;
  font-size: .4em;
  font-weight: 400;
  color: var(--moss);
  letter-spacing: 0;
}

.stat-label {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(26, 26, 26, .6);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-data);
  font-size: 14px;
  line-height: 1.5;
  background: var(--rice);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(192, 192, 192, .3);
}

.data-table thead th {
  background: rgba(11, 27, 43, .06);
  font-weight: 600;
  color: var(--deep-blue);
  letter-spacing: .05em;
  border-bottom: 1px solid var(--silver);
}

.data-table tbody tr {
  transition: background-color .2s var(--ease-out);
}

.data-table tbody tr:hover {
  background: rgba(0, 255, 136, .045);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tab {
  padding: 10px 22px;
  border: 1px solid var(--silver);
  border-radius: var(--radius-pill);
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background-color .2s var(--ease-out), color .2s var(--ease-out), border-color .2s var(--ease-out);
}

.tab:hover {
  border-color: var(--moss);
  color: var(--moss);
}

.tab[aria-selected="true"] {
  background: var(--moss);
  border-color: var(--moss);
  color: var(--rice);
}

.faq-item {
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  background: var(--rice);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .25s var(--ease-out);
}

.faq-item[data-open] {
  border-color: var(--moss);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}

.faq-toggle::after {
  content: '+';
  font-family: var(--font-data);
  font-size: 24px;
  font-weight: 400;
  color: var(--moss);
  line-height: 1;
  transition: transform .3s var(--ease-out);
}

.faq-item[data-open] .faq-toggle::after {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: max-height .4s var(--ease-out), padding-bottom .4s var(--ease-out);
}

.faq-panel p {
  color: rgba(26, 26, 26, .72);
  line-height: 1.8;
}

.faq-item[data-open] .faq-panel {
  max-height: 600px;
  padding-bottom: 24px;
}

.breadcrumb {
  margin-bottom: 16px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(26, 26, 26, .55);
}

.breadcrumb li + li::before {
  content: '/';
  color: var(--silver);
}

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

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

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

.img-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--deep-blue);
  box-shadow: inset 0 0 0 1px rgba(248, 245, 239, .22);
}

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

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

.img-frame--corners::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: 28px;
  height: 28px;
  border-top: 2px solid var(--neon);
  border-left: 2px solid var(--neon);
  border-top-left-radius: 10px;
  z-index: 2;
}

.img-frame--corners::after {
  content: '';
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-bottom: 2px solid var(--neon);
  border-right: 2px solid var(--neon);
  border-bottom-right-radius: 10px;
  z-index: 2;
}

.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 22% 28%, rgba(0, 255, 136, .3) 0 2px, transparent 3px),
    radial-gradient(circle at 64% 22%, rgba(248, 245, 239, .35) 0 1.5px, transparent 3px),
    radial-gradient(circle at 78% 60%, rgba(184, 93, 62, .28) 0 1.5px, transparent 3px),
    radial-gradient(circle at 36% 72%, rgba(0, 255, 136, .22) 0 2px, transparent 4px),
    radial-gradient(circle at 90% 38%, rgba(248, 245, 239, .3) 0 1px, transparent 2px),
    radial-gradient(circle at 12% 82%, rgba(192, 192, 192, .28) 0 1px, transparent 2px),
    linear-gradient(140deg, #0B1B2B 0%, #112c44 48%, #0B1B2B 100%);
}

.img-placeholder::after {
  content: attr(data-img-placeholder);
  position: relative;
  z-index: 1;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .22em;
  color: rgba(248, 245, 239, .72);
  border: 1px solid rgba(248, 245, 239, .28);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  background: rgba(11, 27, 43, .42);
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: var(--moss);
  color: var(--rice);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(calc(-100% - 16px));
  transition: transform .25s var(--ease-out);
}

.skip-link:focus {
  transform: none;
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--deep-blue);
  z-index: 1000;
  pointer-events: none;
}

.scroll-progress::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--scroll-p, 0%);
  background: linear-gradient(90deg, var(--moss), var(--neon));
}

.site-header {
  position: relative;
  background: var(--rice);
  border-top: 3px solid var(--deep-blue);
  border-bottom: 1px solid var(--silver);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.header-ruler {
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 10px;
  pointer-events: none;
  opacity: .85;
}

.header-ruler--left {
  left: 12px;
}

.header-ruler--right {
  right: 12px;
}

.header-ruler::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    var(--silver) 0,
    var(--silver) 2px,
    transparent 2px,
    transparent 7px
  );
}

.header-ruler--right::before {
  left: auto;
  right: 0;
}

.brand {
  position: relative;
  z-index: 320;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: block;
}

.mark-orbit {
  fill: none;
  stroke: var(--silver);
  stroke-width: 1.1;
}

.mark-track {
  fill: none;
  stroke: var(--moss);
  stroke-width: 1.3;
}

.mark-core {
  fill: var(--deep-blue);
}

.mark-ball {
  fill: var(--neon);
}

.mark-star {
  fill: var(--terra);
}

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

.brand-name {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink);
}

.brand-sub {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--moss);
  text-transform: uppercase;
  margin-top: 3px;
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(248, 245, 239, .97);
  background-image: radial-gradient(rgba(11, 27, 43, .07) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s var(--ease-out), visibility .35s var(--ease-out);
}

.site-nav[data-open] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.nav-list li {
  width: 100%;
  text-align: center;
}

.nav-list a {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s var(--ease-out);
}

.nav-list a:hover {
  color: var(--deep-blue);
}

.nav-list a[aria-current="page"] {
  color: var(--deep-blue);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--silver);
  border-radius: var(--radius-pill);
  background: var(--rice);
  cursor: pointer;
  position: relative;
  z-index: 310;
  transition: border-color .2s var(--ease-out);
}

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

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--deep-blue);
  transition: transform .3s var(--ease-out), opacity .2s var(--ease-out);
}

.nav-toggle.is-active .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--rock);
  color: var(--rice);
}

.site-footer a {
  color: rgba(248, 245, 239, .82);
  text-decoration: none;
  transition: color .22s var(--ease-out);
}

.site-footer a:hover {
  color: var(--neon);
}

.footer-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.footer-orbit--one {
  top: -90px;
  right: -70px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(192, 192, 192, .16);
  box-shadow: inset 0 0 60px rgba(0, 255, 136, .05);
}

.footer-orbit--one::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 255, 136, .22);
}

.footer-orbit--one::after {
  content: '';
  position: absolute;
  inset: 88px;
  border-radius: 50%;
  background: rgba(0, 255, 136, .07);
}

.footer-orbit--two {
  bottom: -60px;
  left: 8%;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(192, 192, 192, .12);
}

.footer-orbit--two::before {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px dotted rgba(248, 245, 239, .25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-block: clamp(56px, 8vw, 88px) 48px;
}

.footer-brand-col,
.footer-col {
  min-width: 0;
}

.footer-brand-col {
  max-width: 480px;
}

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

.brand--footer .brand-name {
  color: var(--rice);
}

.brand--footer .brand-sub {
  color: rgba(248, 245, 239, .55);
}

.brand--footer .mark-track {
  stroke: var(--neon);
}

.brand--footer .mark-core {
  fill: var(--rice);
}

.brand--footer .mark-ball {
  fill: var(--terra);
}

.brand--footer .mark-star {
  fill: var(--neon);
}

.footer-brief {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(248, 245, 239, .66);
  margin-bottom: 18px;
}

.footer-trust {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(248, 245, 239, .52);
  border-left: 2px solid var(--neon);
  padding-left: 12px;
  max-width: 400px;
}

.footer-title {
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--neon);
  text-transform: uppercase;
  margin: 0 0 18px;
}

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

.footer-list li {
  margin-bottom: 4px;
}

.footer-list a {
  position: relative;
  display: inline-block;
  padding: 5px 0;
  font-size: 15px;
}

.footer-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--neon);
  transition: width .25s var(--ease-out);
}

.footer-list a:hover::after {
  width: 100%;
}

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

.footer-contact li {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(248, 245, 239, .78);
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 22px 28px;
  border-top: 1px solid rgba(192, 192, 192, .22);
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: .02em;
  color: rgba(248, 245, 239, .52);
}

.footer-bottom p {
  margin: 0;
}

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

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

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.75); }
}

@media (min-width: 992px) {
  .site-nav {
    position: static;
    inset: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    background: transparent;
    background-image: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }

  .nav-list {
    flex-direction: row;
    gap: 4px;
  }

  .nav-list li {
    width: auto;
  }

  .nav-list a {
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .03em;
    color: rgba(26, 26, 26, .82);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 100%;
    bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: var(--moss);
    transition: right .28s var(--ease-out);
  }

  .nav-list a:hover::after {
    right: 14px;
  }

  .nav-list a[aria-current="page"]::after {
    right: 14px;
  }

  .nav-list a[aria-current="page"]::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 8px 2px rgba(0, 255, 136, .5);
    transform: translateX(-50%);
  }

  .nav-toggle {
    display: none;
  }
}

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

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

@media (max-width: 991.98px) {
  .site-nav::before {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(46, 107, 62, .25);
    pointer-events: none;
  }

  .site-nav::after {
    content: 'OPENMATCH / DATA PORTAL';
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-data);
    font-size: 10px;
    letter-spacing: .3em;
    color: rgba(74, 74, 74, .45);
    white-space: nowrap;
  }
}

@media (max-width: 767.98px) {
  .header-ruler {
    display: none;
  }

  .grid {
    gap: 16px;
  }

  .footer-orbit--one {
    width: 180px;
    height: 180px;
    right: -50px;
    top: -50px;
  }

  .footer-orbit--two {
    display: none;
  }
}

@media (max-width: 599.98px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 56px 40px;
  }
}

@media (max-width: 991.98px) and (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-block: 56px 40px;
  }
}

@media (min-width: 1280px) {
  .header-ruler--left::after {
    content: 'OPENMATCH';
    position: absolute;
    top: 6px;
    left: 5px;
    writing-mode: vertical-rl;
    font-family: var(--font-data);
    font-size: 8px;
    letter-spacing: .4em;
    line-height: 1;
    color: rgba(74, 74, 74, .6);
    text-transform: uppercase;
  }

  .header-ruler--right::after {
    content: 'DATA*06';
    position: absolute;
    bottom: 6px;
    right: 5px;
    writing-mode: vertical-rl;
    font-family: var(--font-data);
    font-size: 8px;
    letter-spacing: .3em;
    line-height: 1;
    color: rgba(74, 74, 74, .55);
    text-transform: uppercase;
  }
}

@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: 0s !important;
    scroll-behavior: auto !important;
  }

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