:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29, 29, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.92), transparent 34rem),
    linear-gradient(180deg, #fbfbfd 0%, var(--bg) 62%, #ececf0 100%);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 64px);
}

.hero {
  width: min(980px, 100%);
  text-align: center;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 64px);
}

.brand {
  margin: 0 0 clamp(22px, 3vw, 34px);
  color: var(--muted);
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h1 {
  max-width: 11.5ch;
  margin: 0 auto;
  font-size: clamp(3.5rem, 10vw, 8.4rem);
  font-weight: 650;
  line-height: 0.93;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.hero::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: clamp(34px, 5vw, 52px) auto 0;
  background: var(--line);
}

@media (max-width: 640px) {
  h1 {
    max-width: 10ch;
    letter-spacing: -0.065em;
  }

  .brand {
    letter-spacing: 0.26em;
  }
}
