:root {
  color-scheme: light dark;
  --bg: #f5f5f7;
  --card: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --accent: #6b3fc4;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101014;
    --card: #1c1c21;
    --ink: #f2f2f4;
    --muted: #98989f;
    --accent: #a87bff;
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  padding: 48px 20px;
}
main { max-width: 680px; margin: 0 auto; }
header { text-align: center; margin-bottom: 40px; }
/* Der Buchstabe é — der Akzent ist der Gegenstand der App: er unterscheidet
   zwei Formen desselben Verbs (préfère / préférerai). Violettes Zeichen auf
   fast schwarzem Grund, dieselbe Paarung wie Icon und Startseite. */
.app-icon {
  width: 84px; height: 84px;
  margin: 0 auto 16px;
  background: linear-gradient(160deg, #2a2140, #0d0b14);
  border-radius: 20px;
  display: grid;
  place-items: center;
}
.app-icon .glyph {
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  color: #a87bff;
}
h1 { font-size: 2rem; letter-spacing: -0.02em; }
.subtitle { color: var(--muted); margin-top: 4px; }
section {
  background: var(--card);
  border-radius: 16px;
  padding: 28px 30px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
}
h2 { font-size: 1.25rem; margin-bottom: 14px; letter-spacing: -0.01em; }
.tldr {
  font-size: 1.05rem; font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}
p { margin-bottom: 12px; }
p:last-child { margin-bottom: 0; }
ul { margin: 14px 0 14px 22px; }
li { margin-bottom: 8px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
footer { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 32px; }
