/* ============================================================
   Strata — base styles (reset, typography defaults, a11y)
   ============================================================ */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--st-bone);
  color: var(--st-navy);
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.65;
}

/* Homepage keeps the Concept E dark ground behind the hero/stage */
body[data-page="home"] { background: var(--st-midnight); }

h1, h2, h3, h4, p { margin: 0; }

a { color: var(--st-violet); text-decoration: none; }
a:hover { color: var(--st-violet-press); }

img, svg, video { max-width: 100%; height: auto; }

/* Accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--st-violet); color: #fff;
  padding: 12px 20px; border-radius: 0 0 var(--radius-md) 0;
  font-weight: 600; font-size: 15px;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible {
  outline: 2px solid var(--st-cobalt);
  outline-offset: 2px;
  border-radius: 2px;
}
.on-dark :focus-visible, .theme-dark :focus-visible {
  outline-color: var(--st-bone);
}

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

/* Layout primitives */
.container {
  max-width: var(--content);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 100%;
}

/* Type utility classes shared across pages */
.eyebrow-mono {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  border-left: 3px solid var(--st-violet);
  padding-left: 14px;
  margin-bottom: 24px;
  color: var(--st-violet);
  transform-origin: left center;
}
.eyebrow-mono--cobalt { color: var(--st-cobalt); border-left-color: var(--st-cobalt); }

.h-poster {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.94;
  color: var(--st-midnight);
}

.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

.section-inner { max-width: var(--content); margin: 0 auto; }
