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

:root {
  --bg: #0A0C10;
  --bg-panel: #12161D;
  --blue: #0F6FFF;
  --orange: #FF7A00;
  --gold: #C9A227;
  --text: #E6E9F0;
  --text-dim: #A0A8B8;
  --border: #2C3850;
  --hover-bg: rgba(15, 111, 255, 0.15);
  --success: #3DBB75;
  --font-headline: 'Archivo', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
  --font-body: 'Noto Serif SC', 'Source Serif Pro', Georgia, serif;
  --fs-display: clamp(2.5rem, 6vw, 5rem);
  --fs-h1: 2.25rem;
  --fs-h2: 1.75rem;
  --fs-h3: 1.25rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fh: 72px;
  --shell-w: 1200px;
  --gap: 1.5rem;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--fh) + 12px);
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  margin: 0 0 1rem;
  color: var(--text);
  line-height: 1.2;
}

h1 { font-size: var(--fs-h1); font-weight: 800; }
h2 { font-size: var(--fs-h2); font-weight: 700; }
h3 { font-size: var(--fs-h3); font-weight: 600; }

p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; }
ul[class] { list-style: none; }

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

button { font-family: inherit; }

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  white-space: nowrap;
  border: 0;
}

.display {
  font-family: var(--font-headline);
  font-size: var(--fs-display);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dim);
  margin: 0 0 1.5rem;
}

.small {
  font-size: var(--fs-small);
  line-height: 1.5;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 2000;
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: var(--orange);
  color: #0A0C10;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 0.875rem;
  text-decoration: none;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: top 0.2s ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--fh);
  background: transparent;
  color: var(--text);
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.header-progress {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--gold));
  pointer-events: none;
}

.header-shell {
  max-width: var(--shell-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

body.has-scrolled .site-header {
  background: rgba(10, 12, 16, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
}

body.menu-open .site-header {
  background: rgba(10, 12, 16, 0.98);
  border-bottom-color: var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
}

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

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  flex: none;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  clip-path: polygon(0 0, 78% 0, 100% 22%, 100% 100%, 22% 100%, 0 78%);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 1px;
  clip-path: polygon(0 0, 78% 0, 100% 22%, 100% 100%, 22% 100%, 0 78%);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue) 49%, var(--orange) 49%, var(--orange) 100%);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.75);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-sub {
  font-family: var(--font-headline);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.site-nav { margin-left: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover { color: var(--blue); }
.nav-link:hover::before,
.nav-link[aria-current="page"]::before { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--gold); }

.header-access {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 38px;
  padding: 0 1rem;
  background: var(--orange);
  color: #0A0C10;
  font-family: var(--font-headline);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.header-access:hover {
  color: #0A0C10;
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.nav-toggle { display: none; }

.site-footer {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 111, 255, 0.05), transparent 220px), var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 111, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 111, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent 35%, var(--orange) 70%, var(--gold));
  pointer-events: none;
}

.footer-inner {
  position: relative;
  max-width: var(--shell-w);
  margin: 0 auto;
  padding: 3rem 24px 2rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.footer-brand { grid-column: span 5; }
.footer-links { grid-column: span 2; }
.footer-contact { grid-column: span 3; }
.footer-alert { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }

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

.footer-desc {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 36em;
}

.footer-trust {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--text-dim);
}

.footer-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-headline);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-heading::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  transform: rotate(45deg);
  flex: none;
}

.footer-links ul,
.footer-contact ul {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  display: inline-block;
  color: var(--text-dim);
  font-family: var(--font-headline);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.footer-contact li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text);
}

.footer-label {
  font-family: var(--font-headline);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.1rem;
}

.footer-contact span:last-child { color: var(--text-dim); }

.footer-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0.875rem 1rem;
  background: var(--bg-panel);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-left: 4px solid var(--gold);
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.footer-alert::before {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.6);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-headline);
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.footer-bottom p { margin: 0; }

.footer-icp {
  font-family: var(--font-headline);
  color: var(--text-dim);
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(61, 187, 117, 0.55);
  animation: statusPulse 2.2s ease-out infinite;
}

@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 187, 117, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(61, 187, 117, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 187, 117, 0); }
}

.site-main {
  padding-top: var(--fh);
  min-height: 70vh;
}

#main-content {
  scroll-margin-top: calc(var(--fh) + 16px);
}

.shell {
  max-width: var(--shell-w);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section--tight {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.section--alt {
  background: linear-gradient(180deg, var(--bg-panel), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: var(--font-headline);
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}

.section-intro {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-dim);
  margin: 0.75rem 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.75rem;
  font-family: var(--font-headline);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  flex: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.7rem;
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-panel);
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: currentColor;
  transform: rotate(45deg);
  flex: none;
}

.tag--blue {
  color: var(--blue);
  border-color: rgba(15, 111, 255, 0.45);
  background: rgba(15, 111, 255, 0.1);
}

.tag--gold {
  color: var(--gold);
  border-color: rgba(201, 162, 39, 0.45);
  background: rgba(201, 162, 39, 0.08);
}

.tag--orange {
  color: var(--orange);
  border-color: rgba(255, 122, 0, 0.45);
  background: rgba(255, 122, 0, 0.08);
}

.grid {
  display: grid;
  gap: var(--gap);
}

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

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.bento > * { grid-column: span 12; }

@media (min-width: 641px) and (max-width: 960px) {
  .bento > .span-4,
  .bento > .span-6,
  .bento > .span-8 { grid-column: span 6; }
  .bento > .span-5,
  .bento > .span-7 { grid-column: span 12; }
}

@media (min-width: 961px) {
  .bento > .span-4 { grid-column: span 4; }
  .bento > .span-5 { grid-column: span 5; }
  .bento > .span-6 { grid-column: span 6; }
  .bento > .span-7 { grid-column: span 7; }
  .bento > .span-8 { grid-column: span 8; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  color: var(--text);
}

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

.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: #2d80ff;
  border-color: #2d80ff;
  color: #fff;
}

.btn-accent {
  background: var(--orange);
  border-color: var(--orange);
  color: #0A0C10;
}

.btn-accent:hover {
  background: #ff8f29;
  border-color: #ff8f29;
  color: #0A0C10;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
}

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

.panel {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.panel--hover {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.panel--hover:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 111, 255, 0.55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(15, 111, 255, 0.1);
  background: linear-gradient(180deg, rgba(15, 111, 255, 0.08), var(--bg-panel));
}

.panel--stacked {
  box-shadow: 8px 8px 0 var(--bg), 9px 9px 0 rgba(44, 56, 80, 0.4);
}

.image-frame {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-panel);
  background-image:
    radial-gradient(circle at 22% 28%, rgba(15, 111, 255, 0.18), transparent 48%),
    linear-gradient(135deg, rgba(15, 111, 255, 0.06), rgba(255, 122, 0, 0.06));
  border: 1px solid var(--border);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44, 56, 80, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 56, 80, 0.22) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}

.image-frame::after {
  content: attr(data-label);
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 0.25rem 0.6rem;
  background: rgba(10, 12, 16, 0.82);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-family: var(--font-headline);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.image-frame:not([data-label])::after { display: none; }

.image-frame--video { aspect-ratio: 16 / 9; }
.image-frame--square { aspect-ratio: 1 / 1; }
.image-frame--portrait { aspect-ratio: 4 / 5; }
.image-frame--wide { aspect-ratio: 21 / 9; }

.breadcrumb { margin-bottom: 1.5rem; }

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-headline);
  font-size: 0.8125rem;
}

.breadcrumb-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb-list li + li::before {
  content: "/";
  color: var(--border);
}

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

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

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

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.tab-btn {
  position: relative;
  appearance: none;
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: var(--text-dim);
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.tab-btn:hover {
  color: var(--text);
  background: rgba(15, 111, 255, 0.08);
}

.tab-btn[aria-selected="true"] {
  color: var(--text);
  border-bottom-color: var(--blue);
  background: rgba(15, 111, 255, 0.12);
}

.tab-panel {
  padding-top: 1.5rem;
}

.tab-panel[hidden] { display: none; }

html.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.has-reveal [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .header-shell { gap: 1rem; }

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

  .nav-toggle:hover {
    border-color: var(--blue);
    color: var(--blue);
  }

  .nav-toggle-line {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s 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);
  }

  .site-nav {
    position: fixed;
    top: var(--fh);
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.75rem 1rem 1.25rem;
    background: rgba(10, 12, 16, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-access { margin-left: auto; }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 0.85rem 0.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(44, 56, 80, 0.5);
  }

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

  .nav-link[aria-current="page"] {
    box-shadow: inset 3px 0 0 var(--orange);
  }

  .footer-inner {
    gap: 1.5rem;
    padding-top: 2.5rem;
  }

  .footer-brand { grid-column: span 12; }
  .footer-links { grid-column: span 6; }
  .footer-contact { grid-column: span 12; }

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

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-alert,
  .footer-bottom { grid-column: auto; }

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

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

@media (max-width: 520px) {
  .header-shell {
    padding: 0 16px;
    gap: 0.75rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-sub { display: none; }

  .header-access {
    padding: 0 0.75rem;
    font-size: 0.75rem;
    height: 36px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  .status-dot { animation: none; }
}
