/* llamakart.apps.llaps.digital — one stylesheet, light and dark.
 *
 * No framework and no build step beyond the content hash build.py puts in the URL. The site is
 * five pages of prose whose job is to be readable and to load: App Review opens the privacy page
 * on whatever it opens it on, and a page that needs a megabyte of CSS to say "we collect nothing"
 * has misunderstood its own content.
 *
 * Dark is the default reading of `color-scheme: light dark` on a device set to dark, and both are
 * styled rather than one being an afterthought — the game is dark, and a blinding white privacy
 * page reached from it reads as a different company's. */

:root {
  --bg: #ffffff;
  --panel: #f5f5f7;
  --ink: #1c1c1e;
  --ink-dim: #52525b;
  --rule: #e4e4e7;
  --accent: #b45309;
  --accent-ink: #ffffff;
  --measure: 42rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1115;
    --panel: #191c22;
    --ink: #f2f2f4;
    --ink-dim: #a1a1aa;
    --rule: #2a2e36;
    --accent: #f5a524;
    --accent-ink: #1c1c1e;
  }
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 17px/1.65 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrap { width: 100%; max-width: var(--measure); margin: 0 auto; padding: 0 1.25rem; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }

/* Header ------------------------------------------------------------------ */

.sitehead { border-bottom: 1px solid var(--rule); background: var(--panel); }

.sitehead__inner {
  width: 100%; max-width: var(--measure); margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem;
  align-items: baseline; justify-content: space-between;
}

.sitehead__brand {
  font-weight: 700; font-size: 1.05rem; color: var(--ink); text-decoration: none;
}
.sitehead__brand span { font-weight: 400; font-size: 0.85rem; color: var(--ink-dim); }

.sitehead__nav { display: flex; gap: 1rem; font-size: 0.95rem; }

/* Hero -------------------------------------------------------------------- */

.hero { padding: 2.75rem 0 0.5rem; }
.hero h1 { margin: 0; font-size: 2rem; line-height: 1.2; letter-spacing: -0.015em; }
.hero__sub { margin: 0.6rem 0 0; color: var(--ink-dim); font-size: 1.1rem; }

/* Prose ------------------------------------------------------------------- */

main { flex: 1 0 auto; padding-bottom: 3rem; }

.prose { padding-top: 1.25rem; }
.prose h2 {
  margin: 2.25rem 0 0.6rem; font-size: 1.25rem; letter-spacing: -0.01em;
  padding-top: 1.25rem; border-top: 1px solid var(--rule);
}
.prose h3 { margin: 1.6rem 0 0.4rem; font-size: 1.05rem; }
.prose p { margin: 0 0 1rem; }
.prose .meta { color: var(--ink-dim); font-size: 0.9rem; }

.callout {
  margin: 1.5rem 0; padding: 1rem 1.15rem;
  background: var(--panel); border: 1px solid var(--rule);
  border-left: 3px solid var(--accent); border-radius: 8px;
}
.callout p { margin: 0; }

.stored { margin: 0 0 1rem; padding: 0; }
.stored dt { font-weight: 600; margin-top: 0.9rem; }
.stored dd { margin: 0.15rem 0 0; color: var(--ink-dim); }

/* Footer ------------------------------------------------------------------ */

.sitefoot {
  border-top: 1px solid var(--rule); background: var(--panel);
  padding: 1.5rem 0; color: var(--ink-dim); font-size: 0.9rem;
  flex-shrink: 0;
}
.sitefoot__links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.1rem; margin-bottom: 0.6rem; }
.sitefoot p { margin: 0; }

@media (max-width: 30rem) {
  .hero h1 { font-size: 1.6rem; }
  body { font-size: 16px; }
}
