/* Raidnight VZW placeholder — single stylesheet, no external dependencies,
   no webfonts, no network requests beyond this file and the logo. */

:root {
  --bg: #0b0b0d;
  --bg-raised: #14141a;
  --fg: #f2f2f5;      /* 17.4:1 on --bg */
  --fg-muted: #b4b4c0; /* 9.4:1 on --bg  */
  --rule: #2a2a33;
  --link: #f2f2f5;
  --measure: 46rem;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

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

html {
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: clamp(1.5rem, 5vw, 4rem) clamp(1.25rem, 5vw, 2rem);
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  display: flex;
  justify-content: center;
}

.wrap {
  width: 100%;
  max-width: var(--measure);
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 2 * clamp(1.5rem, 5vw, 4rem));
}

/* ---------------------------------------------------------------- hero */

main {
  flex: 1 0 auto;
  padding-bottom: 3rem;
}

/* With this little copy, letting the footer sink to the bottom of a tall
   viewport leaves a large empty band that reads as an unfinished page rather
   than a deliberate one. Centring the hero on viewports tall enough to show it
   comfortably turns that space into composition. Guarded by a height query so
   short and landscape viewports keep the normal top-aligned flow. */
@media (min-height: 700px) {
  main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 6rem;
  }
}

.logo {
  display: block;
  width: auto;
  max-width: min(220px, 60%);
  height: auto;
  margin: 0 0 1.75rem;
}

h1 {
  margin: 0 0 0.25rem;
  font-size: clamp(2.25rem, 1.6rem + 3vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.lede {
  margin: 0 0 2rem;
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.4rem);
  color: var(--fg);
  font-weight: 500;
}

main p {
  margin: 0 0 1.25rem;
  color: var(--fg-muted);
  max-width: 38rem;
}

main p strong { color: var(--fg); font-weight: 600; }

/* ---------------------------------------------------------------- footer */

.site-footer {
  flex: 0 0 auto;
  margin-top: auto;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--fg-muted);
}

.site-footer p { margin: 0 0 0.75rem; }
.site-footer .org strong { color: var(--fg); font-weight: 600; }
.site-footer .copyright { margin-bottom: 0; color: var(--fg-muted); }

.pending {
  color: var(--fg-muted);
  font-style: italic;
}

/* ----------------------------------------------------------------- links */

a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
  border-radius: 2px;
}

a:hover { text-decoration-thickness: 2px; }

a:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
  text-decoration: none;
}

/* ------------------------------------------------------------ preferences */

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

@media print {
  html, body { background: #fff; color: #000; }
  a { color: #000; }
}
