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

:root {
  --bg: #000000;
  --teal: #346162;
  --cream: #f1e9db;
  --teal-glow: rgba(52, 97, 98, 0.35);
  --cream-glow: rgba(241, 233, 219, 0.08);
}

html,
body {
  height: 100%;
}

body {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.glow--teal {
  width: 420px;
  height: 420px;
  background: var(--teal-glow);
  top: 10%;
  left: 50%;
  transform: translateX(-60%);
}

.glow--cream {
  width: 300px;
  height: 300px;
  background: var(--cream-glow);
  bottom: 8%;
  right: 10%;
}

.card {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 480px;
  width: 100%;
}

.logo {
  width: min(220px, 55vw);
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 0 40px rgba(52, 97, 98, 0.3));
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(241, 233, 219, 0.7);
  max-width: 320px;
  margin: 0 auto;
}

.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  margin: 2.5rem auto;
}

.footer {
  font-size: 0.75rem;
  color: rgba(241, 233, 219, 0.35);
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .logo {
    margin-bottom: 1.5rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }
}
