/* Palette et typographie de DESIGN.md — mêmes tokens que l'app, pour qu'une
   page ouverte depuis le Play Store ressemble à ce qu'on vient d'installer.
   Fond #050505, accent chalk-lime #C8FF3D, Barlow (OFL). */
:root {
  --chalk: #050505;
  --surface: #101010;
  --ink: #ECEBE7;
  --muted-ink: #8A8A8A;
  --label-ink: #9A9A9A;
  --hairline: #222222;
  --accent: #C8FF3D;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  padding: 0 16px 64px;
  background: var(--chalk);
  color: var(--ink);
  font-family: Barlow, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
}

main { max-width: 42rem; margin: 0 auto; }

header { padding: 48px 0 24px; border-bottom: 1px solid var(--hairline); margin-bottom: 32px; }

h1, h2, h3 {
  font-family: "Barlow Semi Condensed", Barlow, system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: 38px; margin: 0 0 8px; }
h2 { font-size: 26px; margin: 48px 0 8px; }
h3 { font-size: 20px; margin: 32px 0 4px; }

/* Micro-labels capitales, token `label` de DESIGN.md. */
.label {
  font-family: Barlow, system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--label-ink);
  margin: 0;
}

.lede { color: var(--muted-ink); margin: 0; }

a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(200, 255, 61, 0.35); }
a:hover { border-bottom-color: var(--accent); }

/* Un seul aplat d'accent par écran (DESIGN.md) : c'est celui-ci. */
.cta {
  display: inline-block;
  background: var(--accent);
  color: var(--chalk);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 4px;
  border: 0;
}

.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 24px 0;
}

ul { padding-left: 20px; }
li { margin: 6px 0; }

table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px 10px 0; border-bottom: 1px solid var(--hairline); vertical-align: top; }
th { color: var(--label-ink); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

/* Ce qui reste à remplir avant publication : impossible à manquer. */
.todo {
  background: rgba(255, 77, 61, 0.12);
  border: 1px solid #FF4D3D;
  border-radius: 3px;
  padding: 0 4px;
  font-weight: 700;
}

.langs { display: flex; gap: 16px; flex-wrap: wrap; margin: 0 0 24px; font-size: 15px; }
.langs span { color: var(--muted-ink); }

footer { margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--hairline); color: var(--muted-ink); font-size: 15px; }
