/* Trippl Web-Stub — dark-only wie die App, Outfit als einzige Schrift. */
:root {
  --bg: #0b0e13;
  --fg: #f4f6f8;
  --fg-muted: #9aa3ad;
  --accent: #5eead4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px;
}

.wordmark {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
}

h1 {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}

.lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 52ch;
}

.lead strong { color: var(--fg); font-weight: 600; }

.footer {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding: 24px;
  font-size: 13px;
}

.footer a { color: var(--fg-muted); text-decoration: none; }
.footer a:hover { color: var(--fg); }

.impressum h1 { font-size: 28px; }
.impressum h2 { font-size: 17px; font-weight: 600; margin-top: 8px; }
.impressum p { color: var(--fg-muted); line-height: 1.55; }
.impressum a { color: var(--accent); text-decoration: none; }
