:root {
  --bg: #09090b;
  --bg-2: #131318;
  --text: #fafafa;
  --muted: #9ca3af;
  --dim: #d4d4d8;
  --line: rgba(255, 255, 255, 0.08);
  --grad-start: #6366f1;
  --grad-end: #8b5cf6;
}

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

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(ellipse 60% 60% at 18% 22%, rgba(99, 102, 241, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 50% at 82% 78%, rgba(139, 92, 246, 0.18), transparent 60%),
    var(--bg);
  background-attachment: fixed;
}

main {
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 32px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px clamp(20px, 5vw, 64px);
  text-align: center;
  gap: 18px;
}

.dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  box-shadow: 0 8px 40px rgba(99, 102, 241, 0.45);
  margin-bottom: 32px;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text;
  background-clip: text;
}

h1 {
  font-weight: 200;
  font-size: clamp(2.8rem, 8vw, 6rem);
  letter-spacing: -0.02em;
  line-height: 1;
  word-break: break-all;
  max-width: 900px;
}

.lead {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--dim);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.55;
  margin-top: 4px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  margin-top: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.32);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.42);
}

.subnote {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.email-copy {
  color: var(--dim);
  font-weight: 400;
  cursor: text;
  user-select: all;
  -webkit-user-select: all;
}

footer {
  border-top: 1px solid var(--line);
  padding: 20px clamp(20px, 5vw, 64px);
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
}

footer a {
  color: var(--dim);
  text-decoration: none;
}

footer a:hover {
  color: var(--text);
}

@media (max-width: 480px) {
  .dot { width: 40px; height: 40px; margin-bottom: 24px; }
  .cta { padding: 12px 22px; font-size: 0.9rem; }
}

/* ── Impressum / Legal pages ─────────────────────────────────────── */
.legal-page-body { min-height: 100%; padding: 0; }

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px clamp(20px, 5vw, 48px) 48px;
  font-weight: 300;
}

.legal .back {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.18s ease;
}

.legal .back:hover { color: var(--text); }

.legal h1 {
  font-weight: 200;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.legal .legal-meta {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.legal section {
  margin-bottom: 32px;
}

.legal h2 {
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: 0.01em;
}

.legal p {
  color: var(--dim);
  font-size: 0.95rem;
  line-height: 1.65;
}

.legal a {
  color: var(--dim);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.18);
  text-underline-offset: 3px;
}

.legal a:hover {
  color: var(--text);
  text-decoration-color: var(--grad-end);
}

.legal-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}

.legal-footer a {
  color: var(--dim);
  text-decoration: none;
}

.legal-footer a:hover { color: var(--text); }

