/* base.css — structure, type scale and a11y. Carries no colour of its own. */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 4rem);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.stage { position: relative; z-index: 2; width: min(64rem, 100%); text-align: var(--align, center); }

.status {
  margin: 0 0 clamp(1rem, 3vw, 2rem);
  font-size: 0.8125rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.mark {
  margin: 0;
  font-family: var(--font-mark);
  font-size: clamp(2.75rem, 13vw, 9rem);
  line-height: 0.95;
  letter-spacing: var(--mark-track, -0.02em);
}
.pitch {
  margin: clamp(1.25rem, 3vw, 2rem) 0 0;
  max-width: 46ch;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.55;
  color: var(--muted);
}
.strip {
  display: flex; flex-wrap: wrap;
  gap: 0.5rem clamp(0.75rem, 2vw, 1.5rem);
  justify-content: var(--strip-justify, center);
  margin: clamp(2rem, 5vw, 3.5rem) 0 0; padding: 0; list-style: none;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.cta {
  position: relative;
  display: inline-block;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: 0.9rem 1.6rem;
  font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}

/* Global kill switch. Skins add their own rules for anything that must also
   change state (not merely stop) under reduced motion. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
