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

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #0A0E17;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.018) 1px, transparent 1px);
  background-size: 40px 40px;
  color: #C7CBD1;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
}

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

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

a {
  color: #00F0FF;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.3s ease;
}

a:hover {
  color: #1AF719;
}

ul,
ol {
  list-style: none;
}

main,
#main-content {
  flex: 1 0 auto;
  width: 100%;
  scroll-margin-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Archivo Black", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* ========== CSS VARIABLES ========== */
:root {
  --bg: #0A0E17;
  --surface: #111826;
  --surface-raised: #16202F;
  --neon: #1AF719;
  --blue: #00F0FF;
  --amber: #FFB000;
  --magenta: #FF3D81;
  --text: #C7CBD1;
  --text-dim: #8A919F;
  --text-bright: #FFFFFF;
  --highlight-bg: #0D2B3E;
  --font-head: "Archivo Black", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-data: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
  --header-h: 76px;
  --radius: 18px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
  --container: 1240px;
}

/* ========== CONTAINER & UTILITIES ========== */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.section--tight {
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}

.section__head {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section__index {
  font-family: var(--font-data);
  font-size: 0.875rem;
  color: var(--neon);
  line-height: 1.4;
  padding-bottom: 0.25rem;
  letter-spacing: 0.08em;
}

.section__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.02em;
  flex: 1;
}

.section__line {
  flex: 0 0 5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), transparent);
  margin-bottom: 0.6rem;
}

/* ========== GRID ========== */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2,
.grid--3,
.grid--4 {
  grid-template-columns: 1fr;
}

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

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

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

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: box-shadow 0.3s ease, background 0.3s ease,
    border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.btn--neon {
  background: var(--neon);
  color: #04120A;
  border-color: var(--neon);
  box-shadow: 0 0 14px rgba(26, 247, 25, 0.18);
}

.btn--neon:hover {
  color: #04120A;
  box-shadow: 0 0 28px rgba(26, 247, 25, 0.4);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--blue);
  border-color: rgba(0, 240, 255, 0.45);
}

.btn--ghost:hover {
  background: rgba(0, 240, 255, 0.08);
  color: var(--blue);
  border-color: var(--blue);
}

.btn--sm {
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
}

/* ========== BADGES / TAGS ========== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-family: var(--font-data);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  background: rgba(0, 240, 255, 0.08);
  color: var(--blue);
  border: 1px solid rgba(0, 240, 255, 0.25);
}

.badge[data-level="info"] {
  background: rgba(0, 240, 255, 0.08);
  color: var(--blue);
  border-color: rgba(0, 240, 255, 0.25);
}

.badge[data-level="warn"] {
  background: rgba(255, 176, 0, 0.1);
  color: var(--amber);
  border-color: rgba(255, 176, 0, 0.3);
}

.badge[data-level="danger"] {
  background: rgba(255, 61, 129, 0.1);
  color: var(--magenta);
  border-color: rgba(255, 61, 129, 0.3);
}

.badge[data-level="success"] {
  background: rgba(26, 247, 25, 0.08);
  color: var(--neon);
  border-color: rgba(26, 247, 25, 0.25);
}

.tag {
  display: inline-block;
  padding: 0.2rem 0.625rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dim);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}

/* ========== CARDS ========== */
.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.3s ease;
}

.card:hover {
  border-color: rgba(26, 247, 25, 0.3);
  box-shadow:
    0 0 0 1px rgba(26, 247, 25, 0.1),
    0 10px 36px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-bright);
  font-family: var(--font-body);
  margin-bottom: 0.375rem;
}

.card__desc {
  color: var(--text-dim);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.card__data {
  font-family: var(--font-data);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--neon);
  letter-spacing: -0.02em;
}

/* ========== DATA COMPONENTS ========== */
.data-num {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--neon);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.key-value {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}

.key-value__key {
  color: var(--text-dim);
  font-size: 0.875rem;
}

.key-value__value {
  font-family: var(--font-data);
  color: var(--text-bright);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: right;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dot-color, var(--neon));
  box-shadow: 0 0 8px var(--dot-color, var(--neon));
  flex-shrink: 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  background: var(--surface);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-data);
  font-size: 0.875rem;
  color: var(--text);
}

.data-table th {
  background: var(--highlight-bg);
  color: var(--blue);
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.data-table td {
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  font-variant-numeric: tabular-nums;
}

.data-table tbody tr:hover {
  background: rgba(0, 240, 255, 0.03);
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  margin-bottom: 1.5rem;
  font-family: var(--font-data);
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "◆";
  font-size: 0.4375rem;
  color: var(--neon);
  opacity: 0.6;
}

.breadcrumb__item a {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumb__item a:hover {
  color: var(--neon);
}

.breadcrumb__item[aria-current="page"] {
  color: var(--text-dim);
}

/* ========== IMAGE PLACEHOLDER ========== */
.profile-placeholder {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #111826 0%, #16202F 55%, #0D2B3E 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.profile-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 3px,
    rgba(0, 240, 255, 0.025) 3px 4px
  );
  pointer-events: none;
}

.profile-placeholder::after {
  content: attr(data-initial);
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-data);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 240, 255, 0.16);
  line-height: 1;
}

/* ========== HERO CUT ========== */
.hero-cut {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: calc(100vh - var(--header-h));
  background: linear-gradient(135deg, #0A0E17 0%, #102A43 100%);
}

.hero-cut__panel {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-cut__panel + .hero-cut__panel {
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--highlight-bg);
  padding-left: clamp(2.5rem, 5vw, 5rem);
}

@media (max-width: 767.98px) {
  .hero-cut {
    grid-template-columns: 1fr;
  }

  .hero-cut__panel + .hero-cut__panel {
    clip-path: none;
    padding-left: clamp(2rem, 5vw, 4rem);
  }
}

/* ========== SKIP LINK ========== */
.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 999;
  padding: 0.625rem 1.375rem;
  background: var(--neon);
  color: #04120A;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform 0.3s ease;
}

.skip-link:hover {
  color: #04120A;
  background: var(--blue);
}

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

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 14, 23, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(0, 240, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--neon), var(--blue));
  box-shadow: 0 0 10px rgba(26, 247, 25, 0.45);
  z-index: 5;
  transition: width 0.1s linear;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2.5rem);
  height: var(--header-h);
}

/* ========== BRAND ========== */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-bright);
  flex-shrink: 0;
}

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

.brand__logo {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 2px solid var(--neon);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(26, 247, 25, 0.06);
}

.brand__logo::before {
  content: "M";
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--neon);
  line-height: 1;
}

.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand__name strong {
  font-family: var(--font-head);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-shadow: 0 0 14px rgba(26, 247, 25, 0.22);
}

.brand__name small {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.brand--footer .brand__logo {
  border-color: var(--blue);
  background: rgba(0, 240, 255, 0.05);
}

.brand--footer .brand__logo::before {
  color: var(--blue);
}

/* ========== NAVIGATION ========== */
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.2vw, 2.25rem);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.nav__link {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0.125rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav__link:hover {
  color: var(--text-bright);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav__link[aria-current="page"] {
  color: var(--blue);
}

.nav__cta {
  white-space: nowrap;
}

/* ========== NAV TOGGLE ========== */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(10, 14, 23, 0.7);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-toggle:hover {
  border-color: rgba(0, 240, 255, 0.7);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.15);
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--neon);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

/* ========== FOOTER ========== */
.site-footer {
  position: relative;
  background-color: #060910;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.018) 1px, transparent 1px);
  background-size: 32px 32px;
  border-top: 1px solid rgba(0, 240, 255, 0.13);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--neon) 20%,
    var(--blue) 50%,
    var(--neon) 80%,
    transparent 100%);
  opacity: 0.5;
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 340px;
  height: 280px;
  background: radial-gradient(circle at bottom right,
    rgba(0, 240, 255, 0.045),
    transparent 65%);
  pointer-events: none;
}

.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: 4rem 0 2.75rem;
}

.footer__brand .brand {
  margin-bottom: 1rem;
}

.footer__about {
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.8;
  max-width: 30em;
  margin-top: 1.25rem;
}

.footer__trust {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--neon);
  background: rgba(26, 247, 25, 0.04);
  color: var(--text-dim);
  font-size: 0.8125rem;
  font-family: var(--font-data);
  line-height: 1.7;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.footer__title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__list li {
  margin-bottom: 0.5rem;
}

.footer__list a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease, padding 0.3s ease;
}

.footer__list a:hover {
  color: var(--neon);
  padding-left: 4px;
}

.footer__list--contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text);
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 0.25rem 0;
}

.footer__label {
  display: inline-block;
  min-width: 2.5rem;
  color: var(--text-dim);
  font-family: var(--font-data);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.footer__note {
  margin-top: 1rem;
  color: var(--text-dim);
  font-size: 0.8125rem;
  line-height: 1.7;
  font-family: var(--font-data);
}

.footer__icp {
  margin-top: 1rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  font-family: var(--font-data);
  letter-spacing: 0.04em;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 0;
  position: relative;
  z-index: 1;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-family: var(--font-data);
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.footer__bottom-inner p {
  margin: 0;
}

/* ========== BACK TO TOP ========== */
.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.4);
  background: rgba(10, 14, 23, 0.88);
  color: var(--blue);
  font-size: 1.25rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease,
    border-color 0.3s ease, box-shadow 0.3s ease;
  line-height: 1;
}

.to-top:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 22px rgba(26, 247, 25, 0.25);
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top__icon {
  display: block;
  font-family: var(--font-data);
}

/* ========== FOCUS ========== */
:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
  border-radius: 4px;
}

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

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 2rem;
    padding: 2.5rem 1.5rem 3rem;
    background: rgba(10, 14, 23, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
    overflow-y: auto;
    border-top: 1px solid rgba(0, 240, 255, 0.12);
  }

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

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav__link {
    display: block;
    padding: 0.875rem 0.25rem;
    font-size: 1.125rem;
  }

  .nav__link::after {
    display: none;
  }

  .nav__link[aria-current="page"] {
    color: var(--neon);
    border-left: 3px solid var(--neon);
    padding-left: 0.75rem;
    background: rgba(26, 247, 25, 0.04);
  }

  .nav__cta {
    margin-top: 0.5rem;
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .container {
    width: min(100% - 2rem, var(--container));
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0 2rem;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .header__inner {
    gap: 0.75rem;
  }

  .brand__name small {
    display: none;
  }
}

/* ========== REDUCED MOTION ========== */
@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;
    transition-delay: 0ms !important;
  }

  .to-top {
    transition: none;
  }

  .site-nav {
    transition: none;
  }
}
