/* ===== 设计与重置 ===== */
:root {
  --color-bg: #F5F5F5;
  --color-ink: #111111;
  --color-muted: #555555;
  --color-line: #DDDDDD;
  --color-blue-dark: #0A192F;
  --color-blue: #1E3A5F;
  --color-orange: #FF6B00;
  --color-lime: #39FF14;
  --color-success: #00C853;
  --color-warning: #FFB300;
  --color-white: #FFFFFF;
  --font-heading: 'Archivo Black', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-sub: 'DIN Alternate', 'Bahnschrift', 'Noto Sans SC', sans-serif;
  --font-body: 'Noto Sans SC', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --font-mono: 'Roboto Mono', 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(10,25,47,0.06);
  --shadow-md: 0 8px 24px rgba(10,25,47,0.10);
  --shadow-lg: 0 16px 48px rgba(10,25,47,0.14);
  --container-w: 1320px;
  --section-x: 40px;
  --section-y: 80px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

main {
  display: block;
  min-height: 60vh;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-ink);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
p { margin: 0; }
ul, ol { list-style: none; }

a {
  color: var(--color-orange);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #E85F00;
}

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

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

/* ===== 通用工具类 ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--section-x);
}

.text-muted { color: var(--color-muted); }
.text-sm { font-size: 0.875rem; }
.text-mono { font-family: var(--font-mono); }

/* ===== 章节 ===== */
.section {
  padding: var(--section-y) 0;
}

.section--tight {
  padding: 36px 0;
}

.section--dark {
  background: var(--color-blue-dark);
  color: #fff;
}

.section--dark .section-title {
  color: #fff;
}

.section--dark .text-muted {
  color: rgba(255,255,255,0.6);
}

.section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.section-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-line);
}

.section-index {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-orange);
  white-space: nowrap;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-ink);
  white-space: nowrap;
  margin: 0;
}

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

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

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

.btn-primary {
  background: var(--color-orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,107,0,0.32);
}

.btn-primary:hover {
  background: #E85F00;
  color: #fff;
  box-shadow: 0 8px 22px rgba(255,107,0,0.4);
}

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

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

.btn-sm {
  padding: 7px 16px;
  font-size: 13px;
}

/* ===== 头部 ===== */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 100;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  transition: top 0.25s ease;
  white-space: nowrap;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-orange), #FF8F3D);
  box-shadow: 0 0 8px rgba(255,107,0,0.5);
  z-index: 120;
  pointer-events: none;
}

.header-inner {
  position: relative;
  max-width: var(--container-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 64px;
  padding: 6px 8px 6px 20px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(221,221,221,0.7);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(10,25,47,0.08);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

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

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

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-orange) 0%, #FF8534 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 900;
  border-radius: 12px 4px 12px 12px;
  transform: rotate(-3deg);
  box-shadow: 0 4px 14px rgba(255,107,0,0.32);
  line-height: 1;
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 9px;
  height: 9px;
  background: var(--color-lime);
  border: 2px solid #fff;
  border-radius: 50%;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-name small {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-muted);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-link {
  display: inline-block;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav-link:hover {
  background: rgba(255,107,0,0.1);
  color: var(--color-orange);
  transform: translateY(-1px);
}

.nav-link[aria-current="page"] {
  background: var(--color-orange);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255,107,0,0.32);
}

.nav-cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background: var(--color-bg);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(255,107,0,0.12);
}

.nav-toggle-bar {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: background-color 0.2s ease;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 0.25s ease, top 0.25s ease;
}

.nav-toggle-bar::before { top: -5px; }
.nav-toggle-bar::after { top: 5px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ===== 尾部 ===== */
.site-footer {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,107,0,0.05) 0%, transparent 50%),
    var(--color-blue-dark);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-lime) 100%);
  z-index: 2;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 64px 40px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-meta .brand {
  color: #fff;
}

.footer-meta .brand:hover {
  color: #fff;
}

.brand--light .brand-name small {
  color: rgba(255,255,255,0.5);
}

.footer-slogan {
  margin: 16px 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  max-width: 28em;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-lime);
  box-shadow: 0 0 4px rgba(57,255,20,0.6);
  flex-shrink: 0;
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 4px rgba(57,255,20,0.6); }
  50% { box-shadow: 0 0 10px rgba(57,255,20,0.9); }
}

.status-text {
  white-space: nowrap;
}

.footer-col h3 {
  margin-bottom: 16px;
}

.footer-heading {
  position: relative;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45) !important;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--color-orange);
}

.footer-col a {
  display: block;
  padding: 5px 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.22s ease, padding-left 0.22s ease;
}

.footer-col a:hover {
  color: var(--color-orange);
  padding-left: 4px;
}

.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}

.footer-contact li {
  padding: 3px 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  padding-top: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.footer-copy,
.footer-icp {
  margin: 0;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-legal a {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.legal-divider {
  opacity: 0.4;
}

/* ===== 面包屑与页头 ===== */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 20px 0 0;
  font-size: 13px;
  color: var(--color-muted);
}

.breadcrumb a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

.breadcrumb-sep {
  color: #BBBBBB;
}

.page-titlebar {
  padding: 48px 0 20px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--color-ink);
  position: relative;
}

.page-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-ink);
  margin: 0;
}

.page-lead {
  max-width: 56ch;
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ===== 网格 ===== */
.grid {
  display: grid;
  gap: 24px;
}

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

/* ===== 卡片与数据 ===== */
.panel {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.panel--dark {
  background: var(--color-blue);
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
}

.panel--accent {
  border-top: 3px solid var(--color-orange);
}

.data-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.data-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-orange);
}

.data-card--dark {
  background: var(--color-blue-dark);
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
}

.data-card--dark::before {
  background: var(--color-lime);
}

.data-kpi {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.data-card--dark .data-kpi {
  color: var(--color-lime);
}

.kpi-label {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 4px;
}

.data-card--dark .kpi-label {
  color: rgba(255,255,255,0.55);
}

/* ===== 徽章 ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.7;
  white-space: nowrap;
}

.badge--live {
  background: var(--color-blue-dark);
  color: var(--color-lime);
}

.badge--ok {
  background: rgba(0,200,83,0.12);
  color: #007A3D;
}

.badge--warn {
  background: rgba(255,179,0,0.14);
  color: #8A6A00;
}

.badge--hot {
  background: var(--color-orange);
  color: #fff;
}

/* ===== 图片容器 ===== */
.img-frame {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.img-frame::after {
  content: "IMG";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  background:
    linear-gradient(135deg, transparent 45%, rgba(255,255,255,0.08) 45%, rgba(255,255,255,0.08) 50%, transparent 50%),
    linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.05) 45%, rgba(255,255,255,0.05) 50%, transparent 50%);
  background-size: 24px 24px;
}

.img-frame--hero {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
}

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

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

/* ===== 手风琴 ===== */
[data-accordion] {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

[data-accordion-item] {
  border-bottom: 1px solid var(--color-line);
}

[data-accordion-item]:last-child {
  border-bottom: none;
}

[data-accordion-toggle] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 24px;
  background: var(--color-white);
  border: none;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-ink);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

[data-accordion-toggle]:hover {
  background: rgba(255,107,0,0.04);
}

[data-accordion-toggle]::after {
  content: "+";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,107,0,0.1);
  color: var(--color-orange);
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

[data-accordion-item][data-open] > [data-accordion-toggle]::after {
  transform: rotate(45deg);
  background: var(--color-orange);
  color: #fff;
}

[data-accordion-panel] {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

[data-accordion-panel] > *:last-child {
  padding: 0 24px 22px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== 显现动画 ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

/* ===== 响应式 ===== */
@media (max-width: 1280px) {
  :root {
    --section-x: 32px;
  }
}

@media (max-width: 1200px) {
  .nav-link {
    padding: 9px 10px;
    font-size: 13px;
  }
  .nav-cta {
    padding: 9px 16px;
    font-size: 13px;
    margin-left: 4px;
  }
  .header-inner {
    gap: 12px;
    padding-left: 16px;
  }
}

@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  .section-title {
    font-size: 28px;
  }
  .section {
    --section-y: 60px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-meta {
    grid-column: 1 / -1;
    padding-bottom: 8px;
  }
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 8px;
    padding: 0 12px;
  }
  .header-inner {
    min-height: 56px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin-left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 12px;
  }
  .site-nav[data-open] {
    display: flex;
  }
  .nav-link {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 15px;
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 6px;
    justify-content: center;
    width: 100%;
  }
  .section-head {
    flex-wrap: wrap;
    gap: 8px 12px;
  }
  .section-title {
    white-space: normal;
  }
  .section-head::after {
    flex: 0 1 60px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-x: 20px;
    --section-y: 48px;
  }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.25rem; }
  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
  .brand-name {
    font-size: 16px;
  }
  .brand-name small {
    font-size: 9px;
    letter-spacing: 0.16em;
  }
  .header-inner {
    gap: 8px;
    padding-left: 12px;
  }
  .scroll-progress {
    height: 2px;
  }
  .footer-inner {
    padding: 48px 20px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px 0;
  }
  .footer-meta {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
  .page-titlebar {
    padding-top: 32px;
    margin-bottom: 28px;
  }
  .page-title {
    font-size: 26px;
  }
  .panel,
  .data-card {
    padding: 20px;
  }
  [data-accordion-toggle] {
    padding: 15px 16px;
  }
  [data-accordion-panel] > *:last-child {
    padding: 0 16px 16px;
  }
}

/* ===== 可访问性 ===== */
:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

@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;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .status-dot {
    animation: none;
  }
  .btn:hover,
  .nav-link:hover {
    transform: none;
  }
}
