:root {
  /* light grey surface, blue-grey ink — all text meets WCAG AA on --bg */
  --bg: #edeef0;
  --fg: #2b3a45; /* 10.1:1 on --bg */
  --muted: #58666f; /* 5.1:1 on --bg */
  --accent: #45647d; /* 5.4:1 on --bg */
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1b2228;
    --fg: #dde5ec; /* 13.8:1 on --bg */
    --muted: #7d8f9c; /* 5.2:1 on --bg */
    --accent: #8fb0c9; /* 7.4:1 on --bg */
  }
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  font-size: 17px;
}

.splash {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
}

.splash h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.splash h1::after {
  content: "";
  display: block;
  width: 2rem;
  height: 3px;
  margin: 1.25rem auto 0;
  background: var(--accent);
}

.tagline {
  margin: 1.25rem 0 0;
  color: var(--muted);
}

.contact {
  margin: 2rem 0 0;
  font-size: 0.95rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
