:root {
  --dark: #341f1a;
  --dark-alt: #2a1917;
  --cream: #fff8e7;
  --accent: #91b2dd;
  --muted: #d9c9a3;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--dark);
  color: var(--cream);
  font-family: 'Azeret Mono', monospace;
  min-height: 100%;
}

a {
  color: var(--accent);
}

.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px;
}

/* ---- Landing page ---- */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}

.watermark {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 480px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.07;
  user-select: none;
  pointer-events: none;
}

.wordmark {
  position: relative;
  font-family: 'Elsie Swash Caps', cursive;
  font-size: 72px;
  color: var(--accent);
  margin: 0;
}

.tagline {
  position: relative;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
}

.description {
  position: relative;
  margin-top: 32px;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.85;
}

.store-badges {
  position: relative;
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid rgba(145, 178, 221, 0.35);
  color: var(--muted);
}

.store-badge .label {
  font-size: 13px;
  font-weight: 600;
}

.store-badge .sublabel {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}

footer {
  position: relative;
  margin-top: 56px;
  display: flex;
  gap: 20px;
  font-size: 13px;
  flex-wrap: wrap;
  justify-content: center;
}

footer a {
  color: var(--cream);
  opacity: 0.75;
  text-decoration: underline;
}

/* ---- Legal pages ---- */

.legal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 248, 231, 0.1);
}

.legal-header a.back {
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.75;
}

.legal-header h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0;
}

.legal-body {
  padding: 32px 24px 80px;
}

.legal-body p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 248, 231, 0.9);
}

.legal-body h2 {
  font-family: 'Azeret Mono', monospace;
  font-weight: 600;
  font-size: 15px;
  margin-top: 28px;
  margin-bottom: 6px;
  color: var(--cream);
}

.legal-body .updated {
  opacity: 0.6;
  font-size: 13px;
}
