/* Blepper marketing site — hand-written CSS, no build step, no framework, no web fonts.
   Mobile-first. Contrast checked against WCAG AA (4.5:1 body, 3:1 large text). */

:root {
  --bg: #fbf7f0;
  --bg-raised: #fffdf9;
  --text: #1c1917;
  --text-muted: #57534e;
  --accent: #a63d17;
  --border: #e5ddd0;
  --tongue: #e8859b;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #16130f;
    --bg-raised: #211d18;
    --text: #f5f0e8;
    --text-muted: #b9afa3;
    --accent: #f0a868;
    --border: #332d26;
    --tongue: #e8859b;
  }
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main { flex: 1; }

main, .site-header, .site-footer {
  width: 100%;
  max-width: 46rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Header */

.site-header { padding-block: 1.5rem; }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  /* 44px minimum touch target */
  min-height: 44px;
}

.wordmark span { color: var(--text); }

.mark { flex: none; }

/* Hero */

.hero { padding-block: 2rem 3rem; }

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 8vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1rem; }

.lede {
  max-width: 34rem;
  color: var(--text-muted);
  font-size: 1.125rem;
}

.fineprint {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* "Coming soon" markers — deliberately not links. No store listings exist yet. */

.status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block: 1.5rem 1.25rem;
}

/* The page's only action while there is nothing to download. */

.action { margin-bottom: 0.5rem; }

.action a {
  color: var(--accent);
  text-underline-offset: 0.2em;
  /* Padding on an inline element grows the hit area without shifting the line box. */
  padding-block: 0.5rem;
}

.pill {
  display: inline-block;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-raised);
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
}

/* Footer */

.site-footer { padding-block: 2rem 2.5rem; }

.site-footer p { margin-bottom: 0; }
