:root {
  color-scheme: dark;
  --bg: #08090a;
  --hairline: rgba(255, 255, 255, 0.09);
  --text: #eceeed;
  --muted: rgba(236, 238, 237, 0.58);
  --mint: #9fc4b6;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 44rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
}

h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.7rem, 4vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.meta {
  margin: 0 0 2.5rem;
  font-size: 0.78rem;
  color: rgba(236, 238, 237, 0.4);
}

h2 {
  margin: 2.5rem 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--mint);
}

p,
li {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.68;
  color: var(--muted);
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

li {
  margin-bottom: 0.7rem;
}

strong {
  font-weight: 500;
  color: var(--text);
}

footer {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.footer-home-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.footer-home-btn:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
  }
}
