/* /assets/site.css */
:root {
  --c-red: #E63946;
  --c-blue: #1D3557;
  --c-silver: #B8B8D0;
  --c-black: #0A0A0A;
  --c-white: #FFFFFF;
  --c-ivory: #F4F4F8;
  --c-dark: #222222;
  --c-gray: #666666;
  --c-cyan: #00C2FF;
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --font-num: "Roboto Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --header-h: 76px;
  --header-h-mobile: 64px;
  --max-width: 1480px;
  --radius: 4px;
  --shadow-panel: 0 24px 60px rgba(0, 0, 0, .35);
  --ease: cubic-bezier(.25, .7, .35, 1);
  --ease-out: cubic-bezier(.2, .9, .3, 1.2);
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

h1,
h2,
h3,
p,
address {
  margin: 0;
  font-style: normal;
}

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
}

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

[hidden] {
  display: none !important;
}

::selection {
  background: var(--c-red);
  color: #fff;
}

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

/* 通用内容结构 */
.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(72px, 10vw, 132px) 0;
}

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

.section-label {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--c-red);
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--c-white);
}

.section-desc {
  max-width: 620px;
  margin-top: 16px;
  color: var(--c-silver);
  font-size: 16px;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
}

.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 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s, border-color .2s, color .2s, box-shadow .2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(230, 57, 70, .22);
}

.btn-primary:hover {
  background: #ff4d59;
  border-color: #ff4d59;
}

.btn-ghost {
  border-color: rgba(184, 184, 208, .4);
  color: var(--c-white);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--c-cyan);
  color: var(--c-cyan);
}

.data-card {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 32px);
  background: linear-gradient(145deg, rgba(29, 53, 87, .74), rgba(10, 10, 10, .82));
  border: 1px solid rgba(184, 184, 208, .16);
  border-radius: 2px;
  box-shadow: var(--shadow-panel);
}

.data-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-red), transparent 38%);
}

.data-card__label {
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--c-silver);
  text-transform: uppercase;
}

.data-card__value {
  display: block;
  margin-top: 8px;
  font-family: var(--font-num);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
  color: var(--c-white);
}

.page-header {
  position: relative;
  padding: clamp(104px, 16vh, 180px) 0 clamp(48px, 6vw, 88px);
}

.page-title {
  margin: 8px 0 24px;
  font-size: clamp(44px, 7vw, 110px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.03em;
  color: var(--c-white);
}

.page-lead {
  max-width: 680px;
  color: var(--c-silver);
  font-size: 17px;
  line-height: 1.7;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin-bottom: 24px;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-gray);
}

.breadcrumbs li + li::before {
  content: "/";
  color: var(--c-gray);
}

.breadcrumbs a {
  color: var(--c-silver);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--c-cyan);
}

.breadcrumbs [aria-current="page"] {
  color: var(--c-white);
}

.content-prose {
  max-width: 780px;
}

.content-prose h2 {
  margin: 2em 0 .5em;
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--c-white);
}

.content-prose p {
  margin: 1em 0;
  color: var(--c-ivory);
}

.content-prose a {
  color: var(--c-cyan);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}

.content-prose a:hover {
  border-color: var(--c-cyan);
}

.media-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(184, 184, 208, .14);
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-black) 78%);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(0, 194, 255, .18) 30.2%, rgba(0, 194, 255, .18) 31%, transparent 31%), linear-gradient(115deg, transparent 68%, rgba(230, 57, 70, .18) 68.2%, rgba(230, 57, 70, .18) 69%, transparent 69%);
  opacity: .6;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 20%, rgba(230, 57, 70, .18), transparent 42%);
}

.media-frame img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.media-frame--square {
  aspect-ratio: 1 / 1;
}

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

.media-frame-caption {
  margin-top: 12px;
  color: var(--c-gray);
  font-size: 13px;
  letter-spacing: .04em;
}

.media-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--c-silver);
  font-size: 12px;
  letter-spacing: .12em;
  background: repeating-linear-gradient(115deg, rgba(184, 184, 208, .05) 0 1px, transparent 1px 18px);
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.tab-button {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  border: 1px solid rgba(184, 184, 208, .22);
  background: transparent;
  color: var(--c-silver);
  font-weight: 700;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.tab-button:hover {
  border-color: var(--c-cyan);
  color: var(--c-white);
}

.tab-button[aria-selected="true"] {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}

.tab-panel {
  padding-top: 24px;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity .6s ease, transform .6s var(--ease-out);
  will-change: opacity, transform;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, .96);
  border-bottom: 1px solid rgba(184, 184, 208, .14);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, transparent 46%, rgba(230, 57, 70, .08) 46%, rgba(230, 57, 70, .08) 46.4%, transparent 46.4%), linear-gradient(115deg, transparent 0%, transparent 78%, rgba(0, 194, 255, .05) 78%, rgba(0, 194, 255, .05) 78.5%, transparent 78.5%);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  z-index: 0;
  width: 3px;
  background: var(--c-red);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: var(--header-h);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 48px);
}

.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-red), var(--c-cyan));
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

.skip-link {
  position: fixed;
  top: -72px;
  left: 16px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--c-red);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border-radius: 0 0 6px 6px;
  transition: top .2s ease;
}

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

.brand {
  position: relative;
  z-index: 53;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  background: var(--c-red);
  clip-path: polygon(0 0, 100% 0, 100% 68%, 18% 100%, 0% 100%);
}

.brand-mark::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 6px;
  width: 15px;
  height: 16px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: skewX(-22deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 5px;
  width: 13px;
  height: 3px;
  background: #fff;
  transform: skewX(-26deg);
  box-shadow: 0 -6px 0 rgba(255, 255, 255, .55), 0 -12px 0 rgba(255, 255, 255, .25);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--c-white);
}

.brand-sub {
  margin-top: 6px;
  font-family: var(--font-num);
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--c-silver);
}

.site-nav {
  position: relative;
  z-index: 51;
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 38px);
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 2px;
  color: var(--c-silver);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  transition: color .2s;
}

.nav-link::before {
  content: attr(data-index);
  font-family: var(--font-num);
  font-size: 10px;
  line-height: 1;
  color: var(--c-cyan);
  opacity: .85;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--c-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s var(--ease);
}

.nav-link:hover {
  color: var(--c-white);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-link[aria-current="page"] {
  color: var(--c-white);
}

.nav-foot {
  display: none;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-silver);
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.live-pulse {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-red);
  animation: livePulse 1.6s infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, .55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(230, 57, 70, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
  }
}

.nav-search,
.nav-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--c-white);
  text-decoration: none;
  font-weight: 700;
  border-radius: 2px;
  transition: border-color .2s, color .2s, background .2s, transform .2s;
}

.nav-search:hover {
  border-color: var(--c-cyan);
  color: var(--c-cyan);
}

.nav-download {
  background: var(--c-red);
  border-color: var(--c-red);
}

.nav-download:hover {
  background: #ff4d59;
  transform: translateY(-2px);
}

.nav-download-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid currentColor;
}

.header-actions {
  position: relative;
  z-index: 52;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 24px;
}

.header-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 184, 208, .22);
  border-radius: 50%;
  color: var(--c-silver);
  text-decoration: none;
  transition: border-color .2s, color .2s, transform .2s;
}

.header-search:hover {
  border-color: var(--c-cyan);
  color: var(--c-cyan);
  transform: rotate(-6deg) scale(1.04);
}

.header-search-icon,
.nav-search-icon {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.header-search-icon::after,
.nav-search-icon::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -2px;
  width: 6px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.header-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--c-red);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 6px 18px rgba(230, 57, 70, .18);
  transition: background .2s, transform .2s, box-shadow .2s;
}

.header-download::before {
  content: "↓";
  font-family: var(--font-num);
  font-size: 14px;
  line-height: 1;
}

.header-download:hover {
  background: #ff4d59;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(230, 57, 70, .26);
}

.header-live {
  color: var(--c-silver);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 53;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 2px;
  background: rgba(255, 255, 255, .02);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-white);
  transition: transform .25s var(--ease), opacity .25s;
}

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

.nav-scrim {
  display: none;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) 0 32px;
  background: #05070c;
  border-top: 1px solid rgba(184, 184, 208, .14);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(29, 53, 87, .55) 0%, transparent 42%), radial-gradient(circle at 82% 12%, rgba(230, 57, 70, .16), transparent 34%);
}

.footer-glow {
  position: absolute;
  left: 18%;
  top: -80px;
  width: 260px;
  height: 260px;
  background: var(--c-blue);
  filter: blur(90px);
  opacity: .4;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, .9fr) minmax(0, .9fr) minmax(0, 1.2fr);
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand {
  max-width: 440px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo-mark {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  background: var(--c-red);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 18% 100%, 0% 100%);
}

.footer-logo-mark::before {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 4px;
  width: 12px;
  height: 2px;
  background: #fff;
  transform: skewX(-26deg);
  box-shadow: 0 -5px 0 rgba(255, 255, 255, .6), 0 -10px 0 rgba(255, 255, 255, .3);
}

.footer-logo-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--c-white);
}

.footer-about {
  margin-top: 20px;
  color: var(--c-silver);
  font-size: 15px;
  line-height: 1.7;
}

.footer-trust {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(184, 184, 208, .14);
  color: var(--c-gray);
  font-size: 13px;
  line-height: 1.7;
}

.footer-col,
.footer-col-nav,
.footer-col-legal,
.footer-col-contact {
  min-width: 0;
}

.footer-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--c-white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-title::before {
  content: "";
  width: 10px;
  height: 2px;
  background: var(--c-red);
}

.footer-links {
  list-style: none;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  position: relative;
  padding-left: 14px;
  color: var(--c-silver);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  background: var(--c-cyan);
  opacity: .7;
  transform: rotate(45deg);
}

.footer-links a:hover {
  color: var(--c-white);
  padding-left: 18px;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--c-silver);
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: .08em;
}

.footer-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-cyan);
  animation: cyanPulse 2s infinite;
}

@keyframes cyanPulse {
  50% {
    opacity: .45;
  }
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--c-silver);
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact-item::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  background: var(--c-red);
  transform: rotate(45deg);
}

.footer-note {
  margin-top: 16px;
  padding-left: 12px;
  border-left: 2px solid var(--c-red);
  color: var(--c-gray);
  font-size: 12px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(184, 184, 208, .14);
}

.footer-copy,
.footer-icp {
  color: var(--c-gray);
  font-size: 13px;
}

.footer-icp {
  font-family: var(--font-num);
}

.footer-legal-tag a {
  color: var(--c-silver);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}

.footer-legal-tag a:hover {
  color: var(--c-cyan);
}

/* Responsive */
@media (min-width: 992px) and (max-width: 1299px) {
  .header-inner {
    gap: 20px;
    padding-inline: 24px;
  }

  .nav-list {
    gap: 20px;
  }

  .nav-link {
    font-size: 14px;
  }

  .header-actions {
    gap: 10px;
    margin-left: 16px;
  }

  .header-download {
    padding: 9px 14px;
    font-size: 13px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-sub {
    font-size: 9px;
  }
}

@media (max-width: 991px) {
  .header-inner {
    min-height: var(--header-h-mobile);
    gap: 16px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions .header-search,
  .header-actions .header-download,
  .header-actions .header-live {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 51;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(88vw, 400px);
    padding: calc(var(--header-h-mobile) + 28px) 28px 36px;
    background: var(--c-blue);
    box-shadow: -18px 0 50px rgba(0, 0, 0, .35);
    transform: translateX(102%);
    visibility: hidden;
    overflow-y: auto;
    transition: transform .3s var(--ease-out), visibility .3s;
  }

  .site-nav[data-open] {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 12px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 17px;
  }

  .nav-link::before {
    font-size: 11px;
  }

  .nav-foot {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
    padding-top: 28px;
  }

  .nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: block;
    background: rgba(5, 7, 12, .72);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s;
  }

  body.nav-open .nav-scrim {
    opacity: 1;
    visibility: visible;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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