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

html {
  font-size: 16px;
}

body {
  background-color: #f8f7f5;
  color: #1a1a1a;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Layout ─────────────────────────────────────────── */

.wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 4rem;
}

.inner {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

/* ── Wordmark ────────────────────────────────────────── */

.wordmark {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 3.5rem;
}

/* ── Hero ────────────────────────────────────────────── */

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}

h1 strong {
  font-weight: 700;
}

.tagline {
  font-size: 1.125rem;
  color: #555;
  font-weight: 400;
  margin-bottom: 2.75rem;
}

/* ── Features ────────────────────────────────────────── */

.features {
  list-style: none;
  margin: 0 auto 2.75rem;
  max-width: 320px;
  text-align: left;
}

.features li {
  font-size: 0.9375rem;
  color: #555;
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.features li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #bbb;
}

/* ── Divider ─────────────────────────────────────────── */

.rule {
  width: 2.5rem;
  border: none;
  border-top: 1px solid #d0cdc8;
  margin: 0 auto 2.75rem;
}

/* ── Beta notice ─────────────────────────────────────── */

.beta-notice {
  font-size: 0.875rem;
  color: #777;
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto;
}

.beta-notice strong {
  color: #444;
  font-weight: 600;
}

/* ── Footer ──────────────────────────────────────────── */

footer {
  text-align: center;
  padding: 1.75rem 1.5rem 2.25rem;
  border-top: 1px solid #e8e5e0;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.8125rem;
  color: #888;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #1a1a1a;
}

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 480px) {
  .wrapper {
    padding: 4rem 1.25rem 3rem;
    align-items: flex-start;
    padding-top: 5rem;
  }

  .inner {
    text-align: left;
  }

  .wordmark {
    margin-bottom: 3rem;
  }

  .rule {
    margin-left: 0;
  }

  .features {
    margin-left: 0;
    max-width: 100%;
  }

  .beta-notice {
    margin-left: 0;
  }
}
