:root {
  --thuispas-purple: #7169e0;
  --thuispas-purple-dark: #5a52c9;
  --ink: #1c1b29;
  --ink-soft: #4a4860;
  --paper: #fdfcff;
  --paper-dim: #f3f1fb;
  --line: #e3e0f4;
  --max-width: 40rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

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

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.wordmark .dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--thuispas-purple);
  display: inline-block;
}

header.site {
  margin-bottom: 2.5rem;
}

h1 {
  font-size: 1.9rem;
  letter-spacing: -0.02em;
  margin: 1.5rem 0 0.25rem;
}

h2 {
  font-size: 1.2rem;
  margin: 2.2rem 0 0.6rem;
  letter-spacing: -0.01em;
}

p, li {
  color: var(--ink-soft);
  font-size: 1rem;
}

.meta {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

a {
  color: var(--thuispas-purple-dark);
}

.hero {
  text-align: center;
  padding: 0.5rem 0 2rem;
}

.app-icon {
  width: 96px;
  height: 96px;
  border-radius: 22%;
  box-shadow: 0 10px 28px rgba(28, 27, 41, 0.14);
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin: 0 0 0.2rem;
}

.tagline {
  color: var(--thuispas-purple-dark);
  font-weight: 600;
  margin: 0;
}

.letter {
  max-width: 30rem;
  margin: 1.5rem auto 2rem;
}

.letter p {
  margin: 0 0 1rem;
}

.letter p:last-child {
  margin-bottom: 0;
}

.beta {
  text-align: center;
  margin: 2rem 0 2.5rem;
}

.beta-note {
  font-size: 0.85rem;
  margin: 0.75rem 0 0;
}

.button {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 0.75rem;
  background: var(--thuispas-purple);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.button:hover {
  background: var(--thuispas-purple-dark);
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-list a {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--paper-dim);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.card-list a:hover {
  border-color: var(--thuispas-purple);
}

.card-list span {
  display: block;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

footer.site {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.85rem;
}

footer.site a {
  color: inherit;
}
