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

:root {
  --bg: #0b0d12;
  --surface: #141821;
  --text: #e8ebf0;
  --muted: #9aa3b2;
  --accent: #7fd4a3;
  --border: #232a38;
}

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

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

a:hover {
  text-decoration: underline;
}

/* ---- Landing ---- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 2rem;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 26rem;
}

.hero-text .logo {
  height: 64px;
  width: auto;
  margin-bottom: 1.25rem;
  display: block;
}

.hero-text h1 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.hero-text .tagline {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-text .blurb {
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.hero-text .note {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 1.5rem;
}

.badge {
  display: inline-block;
  background: var(--accent);
  color: #0b0d12;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
}

.badge:hover {
  text-decoration: none;
  filter: brightness(1.1);
}

.hero-shot img {
  height: min(80vh, 640px);
  width: auto;
  display: block;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.footer {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---- Privacy page ---- */

.email span:nth-child(odd) {
  display: none;
}

.email {
  color: var(--accent);
}

.doc {
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.doc header {
  margin-bottom: 2rem;
}

.doc h1 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.doc .date {
  color: var(--muted);
  font-size: 0.9rem;
}

.doc h2 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.5rem;
}

.doc p,
.doc li {
  color: var(--muted);
}

.doc strong {
  color: var(--text);
}

.doc ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 3rem 1.5rem 5rem;
  }

  .footer {
    position: static;
    padding-top: 2rem;
  }
}
