/**
 * Stylesheet for the localized static landing pages (/de/, /pt/).
 *
 * These are standalone marketing pages, not part of the React app build — they exist only to be
 * crawled and to hand the visitor off to the tool at https://logorig.com/. They deliberately do
 * not import the app's own tokens.css (that file also defines the light theme, interaction
 * states, and dozens of component-specific tokens the app needs and this page does not); instead
 * a handful of dark-palette values are inlined here by hand, sampled from tokens.css's
 * `@media (prefers-color-scheme: dark)` block, so the page reads as the same product without
 * pulling in the whole design system. Kept plain and typographically sober on purpose: no
 * gradients, no emoji, no illustration, no animation — this is a document, not the app.
 */

:root {
  --surface-0: #242424;
  --border: #383838;
  --text-h: #fff;
  --text: rgba(255, 255, 255, 0.7);
  --text-tertiary: rgba(255, 255, 255, 0.45);
  --accent: #5b8def;
  --radius: 5px;
  --sans: system-ui, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--surface-0);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.55;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

header.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.brand {
  color: var(--text-h);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.cta {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

h1 {
  color: var(--text-h);
  font-size: 28px;
  line-height: 1.25;
  margin: 0 0 16px;
}

h2 {
  color: var(--text-h);
  font-size: 18px;
  margin: 40px 0 12px;
}

p,
li,
dd {
  font-size: 15px;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

dl {
  margin: 0;
}

dt {
  color: var(--text-h);
  font-weight: 600;
  margin-top: 20px;
}

dd {
  margin: 4px 0 0;
}

a {
  color: var(--accent);
}

.langs {
  margin-top: 56px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
}

.langs a {
  margin-right: 12px;
}

footer.bottom {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-tertiary);
}
