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

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

body {
  min-height: 100vh;
  font-family: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  background: #0a1f44;
  padding-top: var(--header-h, 72px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:root {
  --c-navy: #0a1f44;
  --c-orange: #ff6b35;
  --c-green: #39ff14;
  --c-space: #010e21;
  --c-cloud: #f5f7fa;
  --c-gray: #64748b;
  --c-white: #ffffff;
  --c-cyan: #0ff;
  --c-red: #e11d48;
  --font-heading: 'Bebas Neue', 'Impact', 'Arial Black', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Cascadia Mono', Consolas, monospace;
  --container-wide: 1440px;
  --container-main: 1080px;
  --header-h: 72px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --trans: 0.35s var(--ease-out);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--c-white);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.125rem;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--c-orange);
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

strong {
  color: var(--c-white);
  font-weight: 600;
}

::selection {
  background: var(--c-green);
  color: var(--c-space);
}

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

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.container-main {
  width: 100%;
  max-width: var(--container-main);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 2000;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  background: var(--c-green);
  color: var(--c-space);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h, 72px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s var(--ease-out), border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(10, 31, 68, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 24px rgba(1, 14, 33, 0.35);
}

.header-shell {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.brand-block {
  flex-shrink: 0;
}

.brand-link {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  border-radius: 8px;
}

.brand-mark {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--c-white);
}

.brand-mark::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
  vertical-align: middle;
}

.brand-slogan {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gray);
  white-space: nowrap;
}

.header-coords {
  display: none;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  white-space: nowrap;
}

.coord-tag--live {
  color: var(--c-green);
}

.coord-sep {
  color: rgba(255, 255, 255, 0.15);
}

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

.nav-inner {
  display: flex;
  align-items: center;
}

.nav-top {
  display: none;
}

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

.nav-list a {
  position: relative;
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}

.nav-list a:hover {
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-list a[aria-current="page"] {
  color: var(--c-white);
  background: rgba(57, 255, 20, 0.1);
}

.nav-list a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
  transform: translateX(-50%);
}

.header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-icon {
  font-size: 14px;
  line-height: 1;
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1005;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(10, 31, 68, 0.5);
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.nav-toggle:hover {
  border-color: var(--c-green);
  background: rgba(10, 31, 68, 0.9);
}

.toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-white);
  transition: transform 0.35s var(--ease-out), opacity 0.2s ease;
}

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

.nav-toggle[aria-expanded="true"] .toggle-line:nth-child(2) {
  opacity: 0;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--c-green), var(--c-cyan));
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.7);
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--c-orange);
  color: var(--c-space);
}

.btn-primary:hover {
  background: #ff8a55;
  color: var(--c-space);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
  background: rgba(255, 107, 53, 0.08);
}

.btn-outline {
  background: transparent;
  color: var(--c-cyan);
  border-color: rgba(0, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(0, 255, 255, 0.08);
  border-color: var(--c-cyan);
  color: var(--c-cyan);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
}

.btn-lg {
  height: 52px;
  padding-inline: 32px;
  font-size: 16px;
}

.btn-sm {
  height: 36px;
  padding-inline: 16px;
  font-size: 13px;
}

.site-footer {
  position: relative;
  margin-top: 80px;
  background: var(--c-space);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: -120px;
  right: 10%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.16), transparent 70%);
  pointer-events: none;
}

.footer-shell {
  position: relative;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--c-white);
}

.footer-logo::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.8);
}

.footer-about {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  max-width: 36ch;
}

.footer-trust {
  position: relative;
  margin-top: 24px;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(57, 255, 20, 0.22);
  border-radius: 16px;
  background: rgba(57, 255, 20, 0.05);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.6;
}

.trust-dot {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 10px var(--c-green);
  transform: translateY(-50%);
}

.footer-title {
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gray);
}

.footer-nav-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-nav-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.footer-nav-col a:hover {
  color: var(--c-orange);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 12px;
  font-size: 13px;
  color: var(--c-gray);
}

.footer-contact {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.01em;
  line-height: 1.8;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

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

.legal-sep {
  color: rgba(255, 255, 255, 0.2);
}

.footer-copy {
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-gray);
}

.breadcrumb li + li::before {
  content: "/";
  margin-inline: 8px;
  color: rgba(255, 255, 255, 0.2);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: var(--c-orange);
}

.breadcrumb li[aria-current="page"] {
  color: var(--c-green);
}

.tech-grid {
  position: relative;
  background-color: var(--c-navy);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.speed-stripes {
  position: relative;
  overflow: hidden;
}

.speed-stripes::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  right: -10%;
  bottom: -50%;
  background: repeating-linear-gradient(
    115deg,
    transparent 0 20px,
    rgba(255, 107, 53, 0.08) 20px 22px,
    transparent 22px 44px
  );
  transform: rotate(-6deg);
  pointer-events: none;
}

.dash-card {
  position: relative;
  background: linear-gradient(160deg, rgba(1, 14, 33, 0.85), rgba(10, 31, 68, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.dash-card:hover {
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 12px 40px rgba(1, 14, 33, 0.5);
  transform: translateY(-4px);
}

.dash-card__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gray);
}

.dash-card__value {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--c-green);
}

.dash-card--orange .dash-card__value {
  color: var(--c-orange);
}

.dash-card--cyan .dash-card__value {
  color: var(--c-cyan);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .metric-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

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

.grid-cols-2,
.grid-cols-3,
.grid-cols-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 36px);
}

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

.chip,
.chip-data {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}

.chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
}

.chip-data {
  background: rgba(57, 255, 20, 0.12);
  border: 1px solid rgba(57, 255, 20, 0.25);
  color: var(--c-green);
}

.chip::before,
.chip-data::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.section {
  padding-block: clamp(48px, 8vw, 96px);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}

.section-title {
  position: relative;
  margin: 0;
  padding-left: 16px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 4px;
  border-radius: 4px;
  background: var(--c-orange);
}

.page-intro {
  position: relative;
  padding: clamp(40px, 8vw, 80px) 0 clamp(32px, 6vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-intro::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 60px;
  height: 3px;
  border-radius: 99px;
  background: var(--c-orange);
}

.page-kicker {
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-green);
}

.page-title {
  margin: 0;
  max-width: 18ch;
}

.page-desc {
  margin-top: 16px;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.7);
}

.index-board {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(1, 14, 33, 0.5);
}

.index-board__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.85);
  transition: background-color 0.3s ease, transform 0.3s var(--ease-out);
}

.index-board__item:hover {
  background: rgba(57, 255, 20, 0.06);
  transform: translateX(4px);
}

.index-board__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-orange);
}

.media-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-space);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(1, 14, 33, 0.45));
  pointer-events: none;
}

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

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

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

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

.pulse-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(57, 255, 20, 0.6);
  animation: pulse-ring 1.6s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.prose {
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.82);
}

.prose h2 {
  margin-top: 2em;
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition-delay: var(--reveal-delay, 0ms);
}

body.nav-locked {
  overflow: hidden;
}

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

  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  }

  .footer-brand {
    grid-column: auto;
  }

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

  .footer-contact {
    grid-column: 1 / 2;
  }

  .footer-legal {
    grid-column: 2 / 3;
    justify-content: flex-end;
  }

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

@media (min-width: 640px) and (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (min-width: 992px) and (max-width: 1279px) {
  .header-shell {
    gap: 12px;
  }

  .nav-list a {
    padding-inline: 10px;
    font-size: 13px;
  }

  .header-actions .btn {
    padding-inline: 16px;
  }

  .brand-slogan {
    display: none;
  }
}

@media (min-width: 1200px) {
  .header-coords {
    display: flex;
  }
}

@media (max-width: 991px) {
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    width: min(340px, 88vw);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: calc(var(--header-h, 72px) + 20px) 24px 28px;
    overflow-y: auto;
    background:
      linear-gradient(rgba(57, 255, 20, 0.04), rgba(57, 255, 20, 0.04)),
      linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
      var(--c-space);
    background-size: auto, 28px 28px, 28px 28px, auto;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -20px 0 50px rgba(1, 14, 33, 0.6);
    transform: translateX(105%);
    transition: transform 0.5s var(--ease-out);
  }

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

  .nav-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--c-gray);
  }

  .nav-status {
    color: var(--c-orange);
  }

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

  .nav-list a {
    padding: 12px 18px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
  }

  .nav-list a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-list a[aria-current="page"] {
    color: var(--c-green);
    background: rgba(57, 255, 20, 0.08);
  }

  .nav-list a[aria-current="page"]::after {
    display: none;
  }

  .nav-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
  }

  .nav-cta-btn {
    width: 100%;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .brand-slogan {
    display: none;
  }
}

@media (max-width: 479px) {
  .brand-mark {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .pulse-dot::after {
    animation: none;
  }

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