:root {
  --bg: #0b0b0f;
  --bg-raised: #131318;
  --border: #232329;
  --text: #f2f0ec;
  --text-dim: #a8a6ac;
  --amber: #ff9d3d;
  --amber-dim: #b96f24;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

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

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

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site-header {
  border-bottom: 1px solid var(--border);
}

header.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.wordmark {
  display: block;
  height: 32px;
  width: auto;
}

main {
  padding: 56px 0 72px;
}

.hero {
  text-align: center;
  padding-bottom: 48px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.hero p {
  font-size: 19px;
  color: var(--text-dim);
  margin: 0 auto;
  max-width: 520px;
}

.demo-video {
  display: block;
  margin: 40px auto;
  width: min(320px, 100%);
  aspect-ratio: 9 / 16;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--bg-raised);
  object-fit: cover;
}

.badge-row {
  display: flex;
  justify-content: center;
  margin: 32px 0 8px;
}

.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 20px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.appstore-badge:hover {
  border-color: var(--amber-dim);
  text-decoration: none;
}

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 64px 0;
  padding: 0;
  list-style: none;
}

.features li {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  background: var(--bg-raised);
}

.features h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--amber);
}

.features p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
}

.privacy-pitch {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-top: 8px;
  text-align: center;
}

.privacy-pitch h2 {
  font-size: 24px;
  margin: 0 0 12px;
}

.privacy-pitch p {
  color: var(--text-dim);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 12px;
}

footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
  color: var(--text-dim);
  font-size: 14px;
}

footer.site-footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

footer.site-footer nav {
  display: flex;
  gap: 20px;
}

footer.site-footer nav a {
  color: var(--text-dim);
}

footer.site-footer nav a:hover {
  color: var(--amber);
}

article.legal {
  padding: 8px 0 8px;
}

article.legal h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

article.legal h2 {
  font-size: 20px;
  margin-top: 36px;
  color: var(--amber);
}

article.legal p,
article.legal li {
  color: var(--text-dim);
  font-size: 16px;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 52px;
  }

  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}
