:root {
  color-scheme: light;
  --bg-start: #f8fafc;
  --bg-end: #eef2f7;
  --text-primary: #111827;
  --text-secondary: #374151;
}

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

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

body {
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(160deg, var(--bg-start), var(--bg-end));
  color: var(--text-primary);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
}

.hero {
  width: min(720px, 100%);
  text-align: center;
}

.brand {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.slogan {
  margin: 1rem auto 0;
  max-width: 60ch;
  font-size: clamp(1rem, 2.1vw, 1.25rem);
  line-height: 1.55;
  color: var(--text-secondary);
}

@media (max-width: 480px) {
  .page {
    padding: 1.5rem 1rem;
  }

  .slogan {
    margin-top: 0.875rem;
    line-height: 1.5;
  }
}
