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

:root {
  --primary: #0b1b3d;
  --primary-deep: #060f27;
  --accent: #00e88f;
  --highlight: #ff6b00;
  --ash: #7a7d7a;
  --moss: #6b8e23;
  --terra: #c77b5d;
  --paper: #f5f0e8;
  --ink: #111111;
  --white: #ffffff;
  --font-head: 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  --font-body: 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  --font-num: 'Roboto Mono', 'SF Mono', Consolas, 'Liberation Mono', monospace;
  --container: 1200px;
  --shadow: 0 10px 28px rgba(11, 27, 61, 0.13);
  --shadow-lg: 0 24px 48px rgba(11, 27, 61, 0.18);
  --time: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--paper);
  background-image: linear-gradient(rgba(11, 27, 61, 0.018) 1px, transparent 1px);
  background-size: 100% 32px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.25;
  color: var(--primary);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

::selection {
  background: var(--accent);
  color: var(--primary);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

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

.main-content {
  display: flow-root;
  min-height: 60vh;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  transform: translateY(-260%);
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  font-size: 15px;
  padding: 12px 22px;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.progress-rail {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
  transition: width 0.08s linear;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(5, 10, 30, 0.22);
}

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

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--white);
}

.brand-glyph {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-num);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  transition: background var(--time);
}

.brand-link:hover .brand-glyph {
  background: var(--highlight);
  color: var(--white);
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-name strong {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-name small {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  transition: color var(--time);
}

.brand-link:hover .brand-name small {
  color: var(--highlight);
}

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

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--time), background var(--time);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 4px;
  background: var(--accent);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.nav-link:hover {
  background: rgba(255, 255, 255, 0.04);
}

.nav-link[aria-current="page"] {
  background: rgba(0, 232, 143, 0.1);
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

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

.nav-toggle {
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  transition: border-color var(--time), background var(--time);
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  border-color: var(--accent);
  background: rgba(0, 232, 143, 0.08);
}

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

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

.ticker-strip {
  position: relative;
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.ticker-strip::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  pointer-events: none;
}

.ticker-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 12px);
  pointer-events: none;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 9px 0 13px;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}

.ticker-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--highlight);
  color: var(--white);
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  padding: 8px 18px 8px 12px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  animation: livePulse 1.8s ease-out infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  80% {
    box-shadow: 0 0 0 9px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.ticker-message {
  flex: 1;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
}

.ticker-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.18);
}

.ticker-score {
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.ticker-region {
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer {
  position: relative;
  margin-top: 96px;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--highlight) 0%, var(--terra) 28%, var(--accent) 72%, transparent 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1.2fr;
  gap: 56px;
  padding: 56px 0 44px;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--white);
}

.footer-tagline {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.footer-trust {
  margin-top: 18px;
  max-width: 44ch;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
  margin-bottom: 16px;
  padding-bottom: 10px;
  position: relative;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--white);
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 4px;
  background: var(--accent);
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 100%, 5px 100%);
}

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

.footer-link {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--time), padding-left var(--time);
}

.footer-link:hover {
  color: var(--accent);
  padding-left: 8px;
}

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

.footer-contact > * + * {
  margin-top: 10px;
}

.footer-email {
  font-family: var(--font-num);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}

.footer-phone {
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.footer-address,
.footer-hours {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.2);
  padding: 14px 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-icp {
  font-family: var(--font-num);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 24px 0;
  font-family: var(--font-num);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ash);
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--time);
}

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

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

.breadcrumb-sep {
  color: rgba(122, 125, 122, 0.5);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  transition: background var(--time), color var(--time), transform var(--time);
}

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

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

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

.btn--accent:hover {
  background: var(--highlight);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  box-shadow: inset 0 0 0 2px rgba(11, 27, 61, 0.4);
}

.btn--ghost:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: none;
}

.btn--light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.btn--light:hover {
  background: var(--accent);
  color: var(--primary);
  box-shadow: none;
}

.section {
  padding: 72px 0;
}

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

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--primary);
}

.section-heading::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 0.9em;
  background: linear-gradient(180deg, var(--accent), var(--highlight));
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
}

.section-lead {
  max-width: 62ch;
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.75);
}

.grid {
  display: grid;
  gap: 28px;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel {
  position: relative;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
  transition: transform var(--time), box-shadow var(--time);
}

.panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.page-hero {
  position: relative;
  padding: 88px 0 76px;
  background:
    linear-gradient(125deg, transparent 42%, rgba(0, 232, 143, 0.05) 42%, rgba(0, 232, 143, 0.05) 44%, transparent 44%),
    linear-gradient(65deg, transparent 60%, rgba(255, 255, 255, 0.04) 60%, rgba(255, 255, 255, 0.04) 63%, transparent 63%),
    var(--primary);
  color: var(--white);
  overflow: hidden;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  pointer-events: none;
}

.page-hero::before {
  top: 24px;
  left: 24px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
}

.page-hero::after {
  right: 24px;
  bottom: 24px;
  border-right: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
}

.page-hero h1 {
  max-width: 18em;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--white);
}

.page-hero p {
  max-width: 60ch;
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 18px 8px 14px;
  border: 1px solid rgba(0, 232, 143, 0.35);
  background: rgba(0, 232, 143, 0.1);
  color: var(--accent);
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
}

.hero-scale {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 14px);
  pointer-events: none;
}

.media-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

.media-frame::after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.media-frame--tall::after {
  padding-bottom: 75%;
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  clip-path: inherit;
  pointer-events: none;
}

.media-frame img,
.media-frame video,
.media-frame canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry {
  max-width: 72ch;
  margin-inline: auto;
}

.entry > * + * {
  margin-top: 1em;
}

.entry h1,
.entry h2,
.entry h3,
.entry h4 {
  margin-top: 1.5em;
  margin-bottom: 0.35em;
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--primary);
}

.entry h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.entry h2 {
  padding-left: 14px;
  border-left: 5px solid var(--accent);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
}

.entry h3 {
  font-size: 1.3rem;
}

.entry p,
.entry ul,
.entry ol,
.entry blockquote {
  line-height: 1.75;
}

.entry a {
  color: var(--primary);
  font-weight: 600;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.entry a:hover {
  color: var(--highlight);
  text-decoration-color: var(--highlight);
}

.entry ul,
.entry ol {
  padding-left: 1.5em;
}

.entry li + li {
  margin-top: 0.4em;
}

.entry code {
  font-family: var(--font-num);
  font-size: 0.9em;
  background: rgba(11, 27, 61, 0.06);
  padding: 0.2em 0.45em;
}

.entry blockquote {
  border-left: 4px solid var(--accent);
  background: rgba(11, 27, 61, 0.04);
  padding: 14px 22px;
  color: rgba(17, 17, 17, 0.8);
}

.entry hr {
  margin: 2.5em 0;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(11, 27, 61, 0.25), transparent);
}

.spy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0 28px;
}

.spy-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(11, 27, 61, 0.14);
  background: rgba(245, 240, 232, 0.8);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--time), color var(--time), border-color var(--time);
}

.spy-nav a:hover {
  border-color: var(--accent);
}

.spy-nav a[data-spy-active] {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

@media (max-width: 1060px) {
  .nav-link {
    padding: 10px 10px;
    font-size: 14px;
  }

  .brand-name strong {
    font-size: 18px;
  }

  .ticker-region {
    display: none;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 48px 0 40px;
  }

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

@media (max-width: 860px) {
  html {
    scroll-padding-top: 110px;
  }

  .header-inner {
    min-height: 68px;
    gap: 16px;
  }

  .brand-glyph {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

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

  .brand-name small {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 120;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 24px 22px;
    background: var(--primary);
    border-bottom: 3px solid var(--accent);
    box-shadow: var(--shadow-lg);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .nav-link {
    padding: 14px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 16px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link[aria-current="page"] {
    border-left: 4px solid var(--accent);
    background: linear-gradient(90deg, rgba(0, 232, 143, 0.16), transparent);
    clip-path: none;
    padding-left: 16px;
  }

  .section {
    padding: 48px 0;
  }
}

@media (max-width: 700px) {
  .ticker-inner {
    gap: 10px;
    padding: 7px 0 11px;
  }

  .ticker-live {
    padding: 6px 14px 6px 9px;
    font-size: 10px;
  }

  .live-dot {
    width: 6px;
    height: 6px;
  }

  .ticker-message {
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ticker-divider,
  .ticker-score,
  .ticker-region {
    display: none;
  }
}

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

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

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

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .page-hero {
    padding: 56px 0 56px;
  }

  .page-hero::before,
  .page-hero::after {
    width: 22px;
    height: 22px;
    top: 14px;
    left: 14px;
  }

  .page-hero::after {
    right: 14px;
    bottom: 14px;
    left: auto;
  }
}

@media (max-width: 380px) {
  .brand-name small {
    display: none;
  }

  .brand-name strong {
    font-size: 16px;
  }

  .brand-link {
    gap: 10px;
  }
}

@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;
  }
}
