/* ============ RESET & VARIABLES ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-blue: #0E2A5C;
  --electric-blue: #1B4FDB;
  --neon-cyan: #00D4FF;
  --vibrant-orange: #FF6B2C;
  --ink-dark: #0A0E1A;
  --text-primary: #EAF2FF;
  --text-secondary: #A8BAD8;
  --border-rgba: rgba(255, 255, 255, 0.18);
  --success-green: #00E5A0;
  --warning-amber: #FFC700;

  --font-headline: 'Barlow Condensed', 'Noto Sans SC', sans-serif;
  --font-body: 'Noto Sans SC', sans-serif;
  --font-mono: 'IBM Plex Mono', SFMono-Regular, monospace;

  --h1-size: 44px;
  --h2-size: 32px;
  --h3-size: 24px;
  --body-size: 16px;
  --small-size: 13px;

  --content-max: 1360px;
  --header-height: 76px;
  --space-lg: 64px;
  --space-md: 32px;
  --space-sm: 16px;
}

/* ============ BASE ============ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: 1.7;
  background-color: var(--primary-blue);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  color: var(--text-primary);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--neon-cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

p {
  color: var(--text-primary);
}

strong {
  font-weight: 500;
  color: var(--text-primary);
}

code,
pre,
kbd {
  font-family: var(--font-mono);
  font-size: 0.92em;
}

::selection {
  background: var(--neon-cyan);
  color: var(--ink-dark);
}

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

/* ============ LAYOUT UTILITIES ============ */
.content-container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 32px;
}

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

.col-span-1 { grid-column: span 1; }
.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }
.col-span-4 { grid-column: span 4; }
.col-span-5 { grid-column: span 5; }
.col-span-6 { grid-column: span 6; }
.col-span-7 { grid-column: span 7; }
.col-span-8 { grid-column: span 8; }
.col-span-9 { grid-column: span 9; }
.col-span-10 { grid-column: span 10; }
.col-span-11 { grid-column: span 11; }
.col-span-12 { grid-column: span 12; }

.shadow-hard {
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.25);
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink-dark);
  border-bottom: 2px solid var(--border-rgba);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan) 0%, var(--electric-blue) 55%, var(--vibrant-orange) 100%);
  z-index: 1;
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--vibrant-orange));
  z-index: 200;
  pointer-events: none;
  transition: width 0.08s linear;
}

.header-frame {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--electric-blue);
  border: 2px solid var(--neon-cyan);
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: 1px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.brand-code {
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.2;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  counter-reset: nav-index;
}

.nav-item {
  counter-increment: nav-index;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item::before {
  content: counter(nav-index, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1;
  color: var(--neon-cyan);
  opacity: 0.55;
  letter-spacing: 0.5px;
  transition: opacity 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-item:hover::before,
.nav-item:has(a[aria-current="page"])::before,
.nav-item a[aria-current="page"] ~ .nav-item::before {
  opacity: 1;
}

.nav-item a {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-secondary);
  border: 1px solid transparent;
  border-radius: 0;
  transition: color 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  white-space: nowrap;
}

.nav-item a:hover {
  color: var(--text-primary);
  border-color: var(--border-rgba);
  background: rgba(255, 255, 255, 0.04);
}

.nav-item a[aria-current="page"] {
  color: var(--text-primary);
  border-color: var(--border-rgba);
  background: rgba(0, 212, 255, 0.06);
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  transition: width 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-item a:hover::after,
.nav-item a[aria-current="page"]::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--vibrant-orange);
  border: 2px solid var(--vibrant-orange);
  color: var(--ink-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  transition: background 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.header-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
  pointer-events: none;
}

.header-cta:hover {
  background: #ff7a45;
  border-color: #ff7a45;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

.header-cta:hover::after {
  left: 150%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--border-rgba);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 212, 255, 0.05);
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.2s ease;
}

.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);
}

.skip-link {
  position: fixed;
  top: -120px;
  left: 16px;
  z-index: 9999;
  background: var(--vibrant-orange);
  color: var(--ink-dark);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border: 2px solid var(--neon-cyan);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  transition: top 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.skip-link:focus-visible {
  top: 16px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink-dark);
  border-top: 4px solid var(--primary-blue);
  position: relative;
  margin-top: 64px;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--neon-cyan) 0%, var(--electric-blue) 55%, var(--vibrant-orange) 100%);
  z-index: 1;
  pointer-events: none;
}

.footer-frame {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 64px 32px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1.6fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-brand .brand-symbol {
  width: 52px;
  height: 52px;
  font-size: 26px;
  margin-bottom: 4px;
}

.footer-brand-name {
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
  line-height: 1.2;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  line-height: 1.5;
}

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

.footer-heading {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-rgba);
  margin-bottom: 0;
}

.footer-nav-list,
.footer-service-list,
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a,
.footer-service-list a,
.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.4;
  transition: color 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.footer-nav-list a::before,
.footer-service-list a::before,
.footer-contact-list a::before {
  content: '»';
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--neon-cyan);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.footer-nav-list a:hover,
.footer-service-list a:hover,
.footer-contact-list a:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.footer-nav-list a:hover::before,
.footer-service-list a:hover::before,
.footer-contact-list a:hover::before {
  opacity: 1;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-info-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-address {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--border-rgba);
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
}

.footer-copyright,
.footer-icp {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.footer-icp {
  color: rgba(232, 242, 255, 0.5);
}

/* ============ PAGE HERO ============ */
.page-hero {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 80px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 2px solid var(--border-rgba);
}

.page-title {
  font-family: var(--font-headline);
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.page-intro {
  max-width: 640px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding: 20px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
}

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

.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  margin: 0 10px;
  color: var(--text-secondary);
  opacity: 0.5;
}

.breadcrumb-item a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

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

.breadcrumb-item [aria-current="page"] {
  color: var(--text-primary);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary {
  background: var(--vibrant-orange);
  border-color: var(--vibrant-orange);
  color: var(--ink-dark);
  font-weight: 700;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
  pointer-events: none;
}

.btn-primary:hover {
  background: #ff7a45;
  border-color: #ff7a45;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

.btn-primary:hover::after {
  left: 150%;
}

.btn-outline {
  background: transparent;
  border-color: var(--border-rgba);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 212, 255, 0.06);
}

/* ============ FILTER ============ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0;
}

.filter-btn {
  padding: 9px 20px;
  border: 2px solid var(--border-rgba);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.filter-btn:hover {
  border-color: var(--neon-cyan);
  color: var(--text-primary);
}

.filter-btn[aria-pressed="true"] {
  background: var(--electric-blue);
  border-color: var(--electric-blue);
  color: var(--text-primary);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

/* ============ SECTION INDEX ============ */
.section-index {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-rgba);
}

.section-index-code {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--neon-cyan);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 3px 10px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.section-index-title {
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

/* ============ META TAG ============ */
.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 2px solid var(--border-rgba);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-secondary);
  background: var(--ink-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-tag[data-state="active"] {
  border-color: var(--success-green);
  color: var(--success-green);
}

.meta-tag[data-state="warning"] {
  border-color: var(--warning-amber);
  color: var(--warning-amber);
}

/* ============ IMAGE FRAME ============ */
.image-frame {
  position: relative;
  border: 2px solid var(--border-rgba);
  background: var(--primary-blue);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
}

.image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.image-frame[data-ratio="4/3"] {
  aspect-ratio: 4 / 3;
}

.image-frame[data-ratio="1/1"] {
  aspect-ratio: 1 / 1;
}

.image-frame[data-ratio="21/9"] {
  aspect-ratio: 21 / 9;
}

/* ============ LEGEND ============ */
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 16px 20px;
  border: 2px solid var(--border-rgba);
  background: rgba(10, 14, 26, 0.4);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid var(--border-rgba);
  flex-shrink: 0;
}

.legend-dot[data-color="cyan"] {
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
}

.legend-dot[data-color="orange"] {
  background: var(--vibrant-orange);
  border-color: var(--vibrant-orange);
}

.legend-dot[data-color="green"] {
  background: var(--success-green);
  border-color: var(--success-green);
}

.legend-dot[data-color="blue"] {
  background: var(--electric-blue);
  border-color: var(--electric-blue);
}

/* ============ SPEED LINE ============ */
.speed-line {
  display: block;
  width: 100%;
  height: 2px;
  border: none;
  background: linear-gradient(90deg, var(--neon-cyan) 0%, var(--electric-blue) 50%, var(--vibrant-orange) 100%);
  opacity: 0.6;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 8px;
    background: var(--ink-dark);
    border-bottom: 2px solid var(--border-rgba);
    box-shadow: 0 12px 0 rgba(0, 0, 0, 0.25);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    z-index: 90;
  }

  .primary-nav[data-open] {
    display: block;
  }

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

  .nav-item {
    width: 100%;
    gap: 8px;
  }

  .nav-item::before {
    margin-left: 8px;
    font-size: 11px;
  }

  .nav-item a {
    flex: 1;
    padding: 14px 12px;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid var(--border-rgba);
  }

  .nav-item:last-child a {
    border-bottom: none;
  }

  .nav-item a[aria-current="page"] {
    background: rgba(0, 212, 255, 0.08);
    border-color: transparent;
  }

  .header-cta {
    display: none;
  }

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

@media (max-width: 768px) {
  .header-frame {
    padding: 0 16px;
    min-height: 68px;
  }

  .brand-symbol {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

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

  .content-container {
    padding: 0 16px;
  }

  .page-hero {
    padding: 48px 16px 32px;
  }

  .footer-frame {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px 32px;
  }

  .footer-bottom-inner {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .grid-12 {
    grid-template-columns: 1fr;
  }

  .col-span-1,
  .col-span-2,
  .col-span-3,
  .col-span-4,
  .col-span-5,
  .col-span-6,
  .col-span-7,
  .col-span-8,
  .col-span-9,
  .col-span-10,
  .col-span-11,
  .col-span-12 {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .brand-code {
    display: none;
  }

  .header-right {
    gap: 8px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  :root {
    --h1-size: 34px;
    --h2-size: 26px;
    --h3-size: 20px;
  }
}

/* ============ REDUCED MOTION ============ */
@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;
  }

  .scroll-progress {
    transition: none;
  }

  .header-cta::after,
  .btn-primary::after {
    display: none;
  }
}
