:root {
  color-scheme: light;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #050816;
  background: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(30, 128, 255, 0.08),
      transparent 34rem
    ),
    #ffffff;
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero {
  display: flex;
  min-height: calc(100vh - 72px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.logo {
  display: block;
  width: min(560px, 78vw);
  max-width: 100%;
  height: auto;
}

.tagline {
  margin: 32px 0 0;
  color: #334155;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.01em;
}

.subtagline {
  margin: 10px 0 0;
  color: #64748b;
  font-size: clamp(15px, 1.5vw, 18px);
}

.footer {
  padding: 24px;
  text-align: center;
  color: #94a3b8;
  font-size: 13px;
}

@media (max-width: 640px) {
  .logo {
    width: min(360px, 86vw);
  }

  .tagline {
    margin-top: 28px;
  }
}
