:root {
  color-scheme: light;
  --ink: #171417;
  --muted: #6f6670;
  --paper: #fffafc;
  --pink: #d4147f;
  --teal: #009f9a;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 20% 18%, rgba(212, 20, 127, 0.12), transparent 30%),
    radial-gradient(circle at 80% 82%, rgba(0, 159, 154, 0.12), transparent 30%),
    linear-gradient(135deg, #fffafc 0%, #f8fff9 100%);
  color: var(--ink);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.hero {
  width: min(100%, 680px);
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.logo-wrap {
  width: min(72vw, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eyebrow {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(0.78rem, 2vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 9vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

@media (max-width: 520px) {
  .page-shell {
    padding: 22px;
  }

  .hero {
    gap: 16px;
  }
}
