:root {
  --bg: #0c0d11;
  --panel: #15161c;
  --text: #f3f3f6;
  --muted: #9a9eac;
  --red: #ff4a5e;
  --blue: #4a7bff;
  --border: #24262f;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  padding-inline: 16px;
}

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding-block: 56px 88px;
}

header.hero {
  text-align: center;
  padding-block: 32px 8px;
}

.logo-badge {
  display: inline-flex;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 0 0 1px var(--border), 0 12px 32px -12px rgba(74, 123, 255, 0.35);
}
.logo-badge .half { width: 50%; height: 100%; }
.logo-badge .half.left { background: var(--red); }
.logo-badge .half.right { background: var(--blue); }

h1.brand {
  font-family: "Bebas Neue", "Manrope", sans-serif;
  font-size: 3.4rem;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  text-wrap: balance;
}

.tagline {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.links a {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.links a:hover { border-color: var(--blue); transform: translateY(-1px); }
.links a:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px clamp(20px, 5vw, 32px) 8px;
  margin-top: 22px;
}

section h2 {
  font-family: "Bebas Neue", "Manrope", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  margin-top: 0;
}

section p, section li { color: var(--text); font-size: 0.98rem; max-width: 62ch; }
section a { color: var(--blue); }

footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 52px;
}

nav.legal-nav {
  text-align: center;
  margin: 36px 0 0;
  font-size: 0.9rem;
}
nav.legal-nav a {
  color: var(--muted);
  text-decoration: underline;
  margin: 0 10px;
}
nav.legal-nav a:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

.doc h1 {
  font-family: "Bebas Neue", "Manrope", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.doc .updated { color: var(--muted); font-size: 0.85rem; margin-bottom: 32px; }
.doc h2 {
  font-family: "Bebas Neue", "Manrope", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin-top: 32px;
}
.doc p, .doc li { max-width: 66ch; }
.doc a { color: var(--blue); }

@media (max-width: 420px) {
  h1.brand { font-size: 2.6rem; }
}
