/* ========== RESET & TOKENS ========== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: #141414;
  background:
    linear-gradient(rgba(11, 29, 58, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 29, 58, 0.025) 1px, transparent 1px),
    var(--color-paper);
  background-size: 40px 40px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
ul { list-style: none; padding-left: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; font-size: inherit; border: none; background: none; cursor: pointer; }
address { font-style: normal; }
[hidden] { display: none !important; }

:root {
  --color-deep: #0B1D3A;
  --color-paper: #F5F2EB;
  --color-ink: #0A0A0A;
  --color-gold: #FFB703;
  --color-flame: #E63946;
  --color-green: #2A9D8F;
  --color-slate: #34495E;
  --color-cloud: #EAE6E0;
  --font-serif: Georgia, 'Times New Roman', 'Songti SC', 'Noto Serif SC', serif;
  --font-sans: 'Helvetica Neue', Arial, 'PingFang SC', 'Noto Sans SC', sans-serif;
  --font-mono: 'Roboto Mono', 'SFMono-Regular', Menlo, Consolas, 'Liberation Mono', monospace;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-hard: 6px 6px 0 rgba(10, 10, 10, 0.85);
  --shadow-soft: 4px 4px 0 rgba(10, 10, 10, 0.25);
  --container-max: 1280px;
  --header-gap: 12px;
  --container-pad: 24px;
}

/* ========== BASE TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.28;
  color: var(--color-ink);
  font-weight: 700;
}
h1 { font-size: clamp(30px, 4vw, 42px); }
h2 { font-size: clamp(22px, 2.8vw, 28px); }
h3 { font-size: 20px; }
p + p { margin-top: 0.8em; }
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ========== FOCUS & BUTTONS ========== */
:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn-gold {
  background: var(--color-gold);
  color: var(--color-deep);
  box-shadow: 3px 3px 0 rgba(10, 10, 10, 0.5);
}
.btn-gold:hover, .btn-gold:focus-visible {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 rgba(10, 10, 10, 0.7);
}
.btn-outline {
  background: transparent;
  border-color: rgba(245, 242, 235, 0.65);
  color: var(--color-paper);
  box-shadow: 3px 3px 0 rgba(10, 10, 10, 0.3);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-gold);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 rgba(10, 10, 10, 0.45);
}

/* ========== SKIP LINK & PROGRESS ========== */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  background: var(--color-gold);
  color: var(--color-deep);
  padding: 10px 18px;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transform: translateY(-220%);
  transition: transform 0.3s ease;
}
.skip-link:focus-visible { transform: translateY(0); }
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: rgba(10, 10, 10, 0.08);
}
.scroll-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--color-deep), var(--color-gold));
}

/* ========== HEADER FLOATING CAPSULE ========== */
.site-header {
  position: sticky;
  top: var(--header-gap);
  z-index: 1000;
  max-width: calc(var(--container-max) - 12px);
  margin: 12px auto 0;
  background: var(--color-deep);
  border: 2px solid var(--color-ink);
  border-radius: 48px;
  box-shadow: 6px 6px 0 rgba(10, 10, 10, 0.55);
  overflow: visible;
}
.site-header::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 36px;
  right: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  pointer-events: none;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -6px;
  width: 32px;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--color-gold) 0 4px, transparent 4px 8px);
  border-radius: 4px;
  opacity: 0.9;
  pointer-events: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 16px 8px 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  width: 36px;
  height: 36px;
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.4));
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-cn {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-paper);
  white-space: nowrap;
}
.brand-en {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
}

/* ========== NAV ========== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(245, 242, 235, 0.82);
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.nav-link:hover, .nav-link:focus-visible {
  color: var(--color-gold);
  background: rgba(255, 183, 3, 0.12);
}
.nav-link[aria-current="page"] {
  background: var(--color-gold);
  color: var(--color-deep);
  box-shadow: 2px 2px 0 rgba(10, 10, 10, 0.55);
}
.nav-cta { margin-left: 4px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(245, 242, 235, 0.4);
  border-radius: 50%;
  background: rgba(245, 242, 235, 0.06);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  border-color: var(--color-gold);
  background: rgba(255, 183, 3, 0.14);
}
.nav-toggle-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-paper);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.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(-6px) rotate(-45deg); }

/* ========== FOOTER ========== */
.site-footer {
  position: relative;
  background: var(--color-deep);
  color: rgba(245, 242, 235, 0.82);
  border-top: 3px solid var(--color-ink);
  margin-top: 56px;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 24%, rgba(255, 183, 3, 0.07) 0 1px, transparent 1px 22px),
    radial-gradient(circle at 12% 78%, rgba(42, 157, 143, 0.06) 0 1.5px, transparent 1.5px 18px);
  background-size: 44px 44px, 60px 60px;
  pointer-events: none;
}
.footer-gauge {
  position: relative;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--color-gold) 0 10px, transparent 10px 20px);
  border-bottom: 2px solid var(--color-ink);
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-block: 48px 40px;
}
.footer-identity { display: flex; flex-direction: column; gap: 10px; max-width: 34em; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; }
.footer-brand .brand-mark { width: 30px; height: 30px; }
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-paper);
}
.footer-about { font-size: 14px; color: rgba(245, 242, 235, 0.68); }
.trust-statement {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245, 242, 235, 0.5);
  border-left: 3px solid var(--color-gold);
  padding-left: 12px;
}
.footer-heading {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 14px;
}
.footer-contact a, .footer-link-list a {
  font-size: 14px;
  color: rgba(245, 242, 235, 0.78);
  transition: color 0.2s ease;
}
.footer-contact a:hover, .footer-link-list a:hover { color: var(--color-gold); }
.footer-phone, .footer-email { margin: 0 0 6px; }
.footer-address { font-size: 13px; color: rgba(245, 242, 235, 0.55); margin-top: 8px; }
.footer-link-list { display: grid; gap: 8px; }
.footer-link-list a { display: inline-block; transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-link-list a:hover { padding-left: 4px; }
.footer-meta {
  position: relative;
  border-top: 1px solid rgba(245, 242, 235, 0.14);
  background: rgba(10, 10, 10, 0.35);
}
.footer-meta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  padding-block: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(245, 242, 235, 0.5);
}

/* ========== PAGE HERO FRAME ========== */
.page-hero {
  position: relative;
  background:
    radial-gradient(circle at 88% 22%, rgba(255, 183, 3, 0.16) 0, transparent 42%),
    var(--color-deep);
  color: var(--color-paper);
  border: 3px solid var(--color-ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard);
  padding: clamp(28px, 5vw, 54px);
  margin-bottom: 40px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 183, 3, 0.38);
  border-radius: 10px;
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 72px;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--color-gold) 0 6px, transparent 6px 10px);
  border-radius: 6px;
  pointer-events: none;
}
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.page-hero-label::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-flame);
  border-radius: 2px;
}
.page-hero-title {
  margin-top: 10px;
  color: var(--color-paper);
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.18;
  max-width: 18em;
}
.hero-meta {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(245, 242, 235, 0.68);
}

/* ========== BREADCRUMBS & SECTIONS ========== */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-slate);
  margin-bottom: 20px;
}
.breadcrumbs a {
  color: var(--color-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.breadcrumbs a:hover { color: var(--color-gold); text-decoration-color: var(--color-deep); }
.crumb-sep { opacity: 0.55; }
.breadcrumbs [aria-current="page"] { color: var(--color-deep); font-weight: 700; text-decoration: none; }
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(22px, 2.8vw, 28px);
  margin-bottom: 16px;
}
.section-title::before {
  content: "";
  width: 6px;
  height: 26px;
  background: var(--color-gold);
  border-radius: 2px;
}
.section-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-slate);
  margin-bottom: 20px;
}

/* ========== FILTER BAR ========== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: fit-content;
  padding: 5px;
  background: var(--color-cloud);
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 rgba(10, 10, 10, 0.25);
  margin-bottom: 24px;
}
.filter-chip {
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-slate);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.filter-chip:hover, .filter-chip:focus-visible { color: var(--color-deep); background: rgba(11, 29, 58, 0.08); }
.filter-chip.is-active {
  background: var(--color-deep);
  color: var(--color-paper);
  box-shadow: 2px 2px 0 rgba(10, 10, 10, 0.35);
}

/* ========== CARDS & METRICS ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.metric-card {
  display: block;
  position: relative;
  background: var(--color-paper);
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-md);
  box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.25);
  padding: 18px 18px 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 7px 7px 0 rgba(10, 10, 10, 0.35);
  border-color: var(--color-gold);
}
.metric-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-slate);
  margin-bottom: 6px;
}
.metric-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--color-deep);
}
.metric-delta-up { color: var(--color-green); }
.metric-delta-down { color: var(--color-flame); }
.metric-note { font-size: 13px; color: var(--color-slate); margin-top: 6px; }

/* ========== TAGS ========== */
.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border: 1.5px solid var(--color-ink);
  border-radius: 999px;
  background: var(--color-cloud);
  color: var(--color-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tag-live { background: var(--color-flame); color: #fff; }
.tag-hot { background: var(--color-gold); color: var(--color-deep); }
.tag-done { background: var(--color-green); color: #fff; }

/* ========== TABLE ========== */
.table-core {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-paper);
  font-size: 14px;
}
.table-core th {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: left;
  padding: 10px 14px;
  background: var(--color-deep);
  color: var(--color-paper);
  border-right: 1px solid rgba(245, 242, 235, 0.18);
  border-bottom: 2px solid var(--color-gold);
}
.table-core td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(52, 73, 94, 0.25);
  border-right: 1px solid rgba(52, 73, 94, 0.12);
}
.table-core tbody tr:nth-child(even) { background: var(--color-cloud); }
.table-core tbody tr:last-child td { border-bottom: none; }
.table-core tbody tr:hover { background: rgba(255, 183, 3, 0.1); }
.table-core .num { font-family: var(--font-mono); text-align: right; }

/* ========== STATUS PANEL ========== */
.status-panel {
  position: sticky;
  top: 110px;
  background: var(--color-deep);
  color: var(--color-paper);
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard);
  padding: 16px 18px;
}
.panel-item {
  display: grid;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(245, 242, 235, 0.14);
}
.panel-item:first-child { padding-top: 4px; }
.panel-item:last-child { padding-bottom: 4px; border-bottom: none; }
.panel-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245, 242, 235, 0.5);
}
.panel-value {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gold);
}
.panel-value small { font-size: 12px; color: rgba(245, 242, 235, 0.6); }

/* ========== HORIZONTAL BAND ========== */
.band-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin-inline: calc(var(--container-pad) * -1);
  padding-inline: var(--container-pad);
  padding-block: 4px 16px;
  -webkit-overflow-scrolling: touch;
}
.band-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.band-track > .metric-card {
  width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 32px;
  align-items: start;
}

/* ========== DIVIDERS ========== */
.diagonal-divider {
  height: 12px;
  border: none;
  margin-block: 20px;
  background: repeating-linear-gradient(-45deg, var(--color-gold) 0 4px, transparent 4px 14px);
  background-size: 20px 20px;
  opacity: 0.75;
}
.section-split {
  height: 24px;
  border: none;
  margin-block: 32px;
  background: var(--color-ink);
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 70%);
}

/* ========== IMAGE FRAME ========== */
.image-frame {
  position: relative;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 183, 3, 0.12) 0, transparent 42%),
    var(--color-deep);
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-md);
  box-shadow: 5px 5px 0 rgba(10, 10, 10, 0.3);
  overflow: hidden;
  color: rgba(245, 242, 235, 0.4);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
}
.image-frame::before {
  content: "IMG";
  position: absolute;
  top: 8px;
  left: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  opacity: 0.85;
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 20px, rgba(255, 183, 3, 0.05) 20px 22px),
    repeating-linear-gradient(0deg, transparent 0 20px, rgba(255, 183, 3, 0.05) 20px 22px);
  pointer-events: none;
}
.image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== REVEAL MOTION ========== */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal="visible"] { opacity: 1; transform: none; }
.diagonal-divider[data-reveal], .section-split[data-reveal] {
  transform: scaleX(0.35);
  transform-origin: left center;
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.diagonal-divider[data-reveal="visible"], .section-split[data-reveal="visible"] {
  transform: scaleX(1);
  opacity: 1;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--color-deep);
    border: 2px solid var(--color-ink);
    border-radius: 20px;
    box-shadow: var(--shadow-hard);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
  .main-nav[data-open] { display: flex; animation: navIn 0.25s ease; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-link { border-radius: 12px; text-align: center; font-size: 16px; padding-block: 12px; }
  .nav-cta { margin: 10px 0 0; }
  .content-layout { grid-template-columns: 1fr; }
  .status-panel { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-identity { grid-column: 1 / -1; }
}
@keyframes navIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 640px) {
  .container { --container-pad: 16px; padding-inline: 16px; }
  .site-header { margin-inline: 8px; }
  .header-inner { padding: 8px 12px 8px 16px; gap: 10px; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-cn { font-size: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; padding-block: 32px 24px; }
  .footer-meta-inner { flex-direction: column; align-items: flex-start; }
  .band-viewport { margin-inline: -16px; padding-inline: 16px; }
}
@media (max-width: 480px) {
  .brand-en { 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;
  }
  .main-nav[data-open] { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .diagonal-divider[data-reveal], .section-split[data-reveal] { transform: none; transition: none; }
}
