:root {
  --bg: #14121c;
  --bg-elevated: #1b1826;
  --border: #2c2740;
  --text: #e7e3f2;
  --text-muted: #a89fc2;
  --accent: #9b7ef0;
  --accent-soft: #6d5aa8;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

header.hero {
  margin-bottom: 3rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0;
}

section {
  margin-bottom: 2.75rem;
}

h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.9rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text);
}

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

li {
  margin-bottom: 0.4rem;
  color: var(--text);
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
}

.muted {
  color: var(--text-muted);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

footer {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

footer p {
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.identifier {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 480px) {
  .wrap {
    padding: 2.75rem 1.25rem 3.5rem;
  }
  h1 {
    font-size: 1.85rem;
  }
}
