html, body {
  margin: 0;
  min-height: 100%;
  background: #0a0a0f;
  color: #e4e4e7;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  padding: 64px 24px;
  box-sizing: border-box;
}

main {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
}

h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
}

.intro {
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: #a1a1aa;
  font-size: 1.05rem;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

p {
  margin: 0;
  color: #c4c4cc;
  font-size: 1rem;
}

a {
  color: #a78bfa;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.back-link {
  display: inline-block;
  margin-bottom: 32px;
  color: #a78bfa;
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  text-decoration: underline;
}