:root {
  --bg-top: #0a1228;
  --bg-bottom: #12244e;
  --ink: #f5f8ff;
  --muted: #aab9d7;
  --accent: #ffc440;
  --line: rgba(120, 160, 235, .55);
  --chip: rgba(20, 40, 85, .75);
}

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

html { color-scheme: dark; }

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(ellipse 70% 45% at 50% 45%, rgba(60, 120, 230, .28), transparent 70%),
              linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  background-color: var(--bg-top);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

.net {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 16px 40px;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  color: var(--accent);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.domain {
  font-size: clamp(1.4rem, 7vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--line);
}
.domain span { color: var(--accent); white-space: nowrap; }

.tagline {
  color: var(--muted);
  font-size: clamp(1.05rem, 2.6vw, 1.45rem);
  font-weight: 300;
  margin-top: 20px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 16px 30px;
  border-radius: 999px;
  background: var(--accent);
  color: #111a2e;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 196, 64, .22);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(255, 196, 64, .32); }
.cta:focus-visible { outline: 3px solid var(--ink); outline-offset: 4px; }

.facts {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}
.facts li {
  border: 1.5px solid var(--line);
  background: var(--chip);
  border-radius: 14px;
  padding: 12px 18px;
  color: var(--muted);
  font-size: .92rem;
  min-width: 190px;
}
.facts strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.uses { margin-top: 48px; max-width: 640px; }
.uses h2 {
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.uses p { color: var(--muted); }

.de {
  margin-top: 36px;
  font-size: .85rem;
  color: var(--muted);
  opacity: .8;
}

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px 16px 28px;
  font-size: .78rem;
  color: var(--muted);
  opacity: .7;
}

@media (max-width: 480px) {
  .facts li { min-width: 0; width: 100%; }
  .cta { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .cta { transition: none; }
}

footer a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
footer a:hover { color: var(--ink); }
.legal-links { margin-top: 6px; }

/* Impressum / Datenschutz */
.legal main {
  display: block;
  text-align: left;
  max-width: 720px;
  padding: 48px 16px 64px;
}
.legal h1 { font-size: clamp(1.35rem, 6vw, 1.8rem); margin: 40px 0 6px; overflow-wrap: anywhere; hyphens: auto; }
.legal p { overflow-wrap: anywhere; }
.legal h1:first-of-type { margin-top: 12px; }
.legal h2 { font-size: 1.05rem; color: var(--accent); margin: 26px 0 6px; }
.legal p { color: var(--muted); margin-bottom: 10px; }
.legal a { color: var(--ink); text-underline-offset: 3px; overflow-wrap: anywhere; }
.legal .note { font-size: .85rem; opacity: .8; }
.legal .back a { color: var(--accent); text-decoration: none; font-weight: 600; }
