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

:root {
  --text: #1a1a1a;
  --muted: #666;
  --bg: #fafafa;
  --border: #dedede;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

body {
  min-height: 100vh;
  display: grid;
  align-items: center;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  padding: 3rem 1.5rem;
}

.wrap {
  width: min(100%, 680px);
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

h1 {
  max-width: 620px;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.05;
  font-weight: 650;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
}

p {
  max-width: 560px;
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

footer {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted);
}
