:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --border: #2a2a2a;
  --text: #d8d8d8;
  --muted: #777;
  --accent: #ffffff;
  --link: #a0a0a0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ── */

header {
  padding: 4rem 0 2.5rem;
}

header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

header .tagline {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Sections ── */

.section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.section p {
  color: var(--text);
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

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

/* ── Tags ── */

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.1rem;
}

.tag {
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

/* ── Contact ── */

.contact-line {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-line a {
  color: var(--link);
  text-decoration: none;
}

.contact-line a:hover { color: var(--accent); }

/* ── Footer ── */

footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

footer .copyright {
  font-size: 0.78rem;
  color: var(--muted);
}

footer a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
}

footer a:hover { color: var(--text); }

/* ── Privacy page ── */

.prose h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin: 2rem 0 0.6rem;
}

.prose h2:first-child { margin-top: 0; }

.prose p {
  font-size: 0.93rem;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.prose ul {
  margin: 0.5rem 0 0.85rem 1.2rem;
}

.prose li {
  font-size: 0.93rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.back-link {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 2rem;
}

.back-link:hover { color: var(--text); }

/* ── Responsive ── */

@media (max-width: 480px) {
  header { padding: 2.5rem 0 2rem; }
  header h1 { font-size: 1.5rem; }
  .section { padding: 2rem 0; }
  footer { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
}
