/* Base typography, layout primitives. */
html { scroll-behavior: smooth; }
@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;
    scroll-behavior: auto !important;
  }
}
body {
  background: var(--st-navy);
  color: var(--st-white-90);
  font-family: var(--st-font-body);
  font-size: var(--st-text-body-large-size);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--st-font-display);
  color: var(--st-white);
  margin: 0 0 var(--st-space-md);
  line-height: 1.15;
}
h1 { font-size: var(--st-text-display-large-size); font-weight: var(--st-text-display-large-weight); letter-spacing: -0.01em; }
h2 { font-size: var(--st-text-headline-large-size); font-weight: var(--st-text-headline-large-weight); letter-spacing: -0.005em; }
h3 { font-size: var(--st-text-headline-medium-size); font-weight: var(--st-text-headline-medium-weight); }
p { margin: 0 0 var(--st-space-md); color: var(--st-white-90); }
a {
  color: var(--st-gold);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--st-gold-light); }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.skip-link.screen-reader-text:focus {
  position: fixed;
  top: var(--st-space-md);
  left: var(--st-space-md);
  z-index: 999;
  width: auto;
  height: auto;
  clip: auto;
  overflow: visible;
  background: var(--st-gold);
  color: var(--st-navy);
  padding: var(--st-space-sm) var(--st-space-lg);
  border-radius: var(--st-radius-button);
  font-weight: 700;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--st-gold);
  outline-offset: 3px;
}
.container {
  max-width: var(--st-max-width);
  margin: 0 auto;
  padding: 0 var(--st-space-lg);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--st-space-xs);
  font-family: var(--st-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--st-gold);
}
.section {
  padding: var(--st-space-4xl) 0;
}
.section-header {
  max-width: 640px;
  margin: 0 0 var(--st-space-2xl);
}
.section-header p {
  color: var(--st-white-60);
  font-size: var(--st-text-body-large-size);
}
.divider {
  border: none;
  border-top: 1px solid var(--st-divider-color);
  margin: 0;
}
.text-muted { color: var(--st-white-60); }
.grid {
  display: grid;
  gap: var(--st-space-lg);
}
@media (min-width: 780px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--st-navy-light);
  border: 1px solid var(--st-navy-mid);
  border-radius: var(--st-radius-card);
  padding: var(--st-space-xl);
}
@media (max-width: 780px) {
  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
  .section { padding: var(--st-space-3xl) 0; }
}