/* ============================================================================
   Scaling Circle — Design System
   Handgeschriebenes CSS, keine externen Requests (DSGVO-freundlich):
   keine Google Fonts, kein CDN, kein Tracking.
   ========================================================================= */

:root {
  /* Flächen */
  --ink:        #07080C;
  --ink-2:      #0C0E15;
  --ink-3:      #12151F;
  --ink-4:      #191D2A;
  --line:       rgba(255, 255, 255, 0.09);
  --line-soft:  rgba(255, 255, 255, 0.05);

  /* Text */
  --txt:        #F4F6FA;
  --txt-2:      #B4BCCC;
  --txt-3:      #7C8598;

  /* Marke — Farben aus dem Scaling-Circle-Logo:
     außen Indigoblau, Mitte Cyanblau, innen Türkis */
  --brand:      #4A55F6;
  --brand-2:    #7EA2FF;
  --brand-3:    #2A87F6;
  --teal:       #2FDCC2;
  --teal-soft:  #8FEFDD;
  --brand-glow: rgba(74, 85, 246, 0.35);

  /* WhatsApp */
  --wa:         #25D366;
  --wa-dark:    #1DA851;

  /* Maße */
  --wrap:       1140px;
  --r-sm:       10px;
  --r:          16px;
  --r-lg:       24px;
  --r-full:     999px;

  --ease:       cubic-bezier(0.22, 1, 0.36, 1);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto,
          "Helvetica Neue", Arial, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--txt);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
}
p { margin: 0; }

::selection { background: var(--brand); color: #fff; }

:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Layout-Helfer ───────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: clamp(64px, 9vw, 116px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 76px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-2));
}

.h2 { font-size: clamp(28px, 4.2vw, 44px); }
.h3 { font-size: clamp(20px, 2.4vw, 25px); font-weight: 750; }

.lead {
  color: var(--txt-2);
  font-size: clamp(16px, 1.6vw, 18.5px);
  line-height: 1.7;
}

.head-block { max-width: 680px; }
.head-block .lead { margin-top: 18px; }

.grad {
  background: linear-gradient(103deg, var(--brand-2) 4%, var(--teal-soft) 52%, var(--brand-2) 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
              background-color 0.22s var(--ease), border-color 0.22s var(--ease);
  white-space: nowrap;
}
.btn svg { flex: none; }

.btn--wa {
  background: var(--wa);
  color: #04220F;
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.6);
}
.btn--wa:hover { background: #32E274; transform: translateY(-2px); }
.btn--wa:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--txt);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255,255,255,0.18); }

.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 17px 32px; font-size: 17px; }

/* ── Navigation ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease),
              backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(7, 8, 12, 0.82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom-color: var(--line);
}
.nav__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 34px; height: 34px; flex: none;
  filter: drop-shadow(0 0 9px rgba(74, 85, 246, 0.45));
}
.brand__name {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.03em;
}
.brand__name span { color: var(--txt-3); font-weight: 600; }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a {
  font-size: 14.5px;
  font-weight: 550;
  color: var(--txt-2);
  transition: color 0.18s;
  position: relative;
}
.nav__links a:hover { color: var(--txt); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--txt);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(7, 8, 12, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0 22px;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a.mobile-link {
  display: block;
  padding: 13px 2px;
  font-size: 16px;
  font-weight: 600;
  color: var(--txt-2);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .btn { width: 100%; margin-top: 18px; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(128px, 17vw, 176px) 0 clamp(64px, 8vw, 92px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 9px;
  border-radius: var(--r-full);
  background: rgba(37, 211, 102, 0.09);
  border: 1px solid rgba(37, 211, 102, 0.28);
  color: #7BEFA8;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.005em;
  margin-bottom: 26px;
}
.badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: pulse 2.4s infinite;
  margin-left: 4px;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero h1 {
  font-size: clamp(35px, 5.4vw, 58px);
  letter-spacing: -0.04em;
  font-weight: 830;
}
.hero__sub {
  margin-top: 24px;
  max-width: 560px;
  color: var(--txt-2);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.68;
}
.hero__cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__trust {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: var(--txt-3);
  font-size: 13.5px;
}
.hero__trust li { display: flex; align-items: center; gap: 7px; }
.hero__trust ul, .hero__trust { list-style: none; padding: 0; margin-top: 26px; }
.tick { color: var(--wa); flex: none; }

/* Hintergrund-Leuchten */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}
.glow--a {
  width: 620px; height: 620px;
  top: -240px; left: -160px;
  background: radial-gradient(circle, rgba(74, 85, 246, 0.30), transparent 68%);
}
.glow--b {
  width: 540px; height: 540px;
  top: 40px; right: -200px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.14), transparent 68%);
}
.grid-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 20%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 20%, #000 30%, transparent 78%);
}

/* Kreis-Visual */
.orbit {
  position: relative;
  aspect-ratio: 1;
  width: min(100%, 460px);
  margin-inline: auto;
}
.orbit__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(126, 162, 255, 0.20);
  border-radius: 50%;
}
.orbit__ring--2 { inset: 13%; border-color: rgba(47, 220, 194, 0.14); }

/* Logo als Mittelpunkt des Hero-Visuals */
.orbit__logo {
  position: absolute;
  inset: 26%;
  width: auto;
  height: auto;
  filter: drop-shadow(0 0 42px rgba(74, 85, 246, 0.55))
          drop-shadow(0 0 20px rgba(47, 220, 194, 0.28));
  animation: breathe 7s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.035); }
}

.orbit__spin {
  position: absolute;
  inset: 0;
  animation: spin 34s linear infinite;
}
.orbit__spin--2 { inset: 14%; animation-duration: 26s; animation-direction: reverse; }
.orbit__spin--3 { inset: 28%; animation-duration: 19s; }
@keyframes spin { to { transform: rotate(360deg); } }

.orbit__node {
  position: absolute;
  top: -1px; left: 50%;
  width: 12px; height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(74, 85, 246, 0.16), 0 0 18px 2px var(--brand-glow);
}
.orbit__node--wa { background: var(--wa); box-shadow: 0 0 0 4px rgba(37,211,102,0.16), 0 0 18px 2px rgba(37,211,102,0.4); }
.orbit__node--b { top: auto; bottom: -1px; }
.orbit__node--c { top: 50%; left: -1px; margin-top: -6px; margin-left: 0; }

.orbit__chip {
  position: absolute;
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: rgba(18, 21, 31, 0.92);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 620;
  color: var(--txt-2);
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 12px 34px -14px rgba(0,0,0,0.8);
  animation: float 6s ease-in-out infinite;
}
.orbit__chip--1 { top: 8%;  left: -6%; }
.orbit__chip--2 { top: 42%; right: -10%; animation-delay: -2s; }
.orbit__chip--3 { bottom: 9%; left: 4%; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* ── Laufband ────────────────────────────────────────────────────────────── */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
  padding: 15px 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: slide 38s linear infinite;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 42px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--txt-3);
  white-space: nowrap;
}
.marquee__track span::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.7;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ── Karten ──────────────────────────────────────────────────────────────── */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  position: relative;
  padding: 28px 26px;
  border-radius: var(--r-lg);
  background: linear-gradient(168deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 85, 246, 0.4);
  box-shadow: 0 26px 60px -30px rgba(74, 85, 246, 0.55);
}
.card:hover::after { opacity: 1; }

.card__icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74, 85, 246, 0.13);
  border: 1px solid rgba(74, 85, 246, 0.26);
  color: var(--brand-2);
  margin-bottom: 18px;
}
.card__icon--wa {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.28);
  color: #56E08C;
}
.card h3 { font-size: 18px; font-weight: 750; margin-bottom: 9px; letter-spacing: -0.02em; }
.card p { color: var(--txt-2); font-size: 14.8px; line-height: 1.66; }

/* ── Ablauf / Schritte ───────────────────────────────────────────────────── */
.steps { counter-reset: step; position: relative; }
.step {
  position: relative;
  padding: 30px 26px 28px;
  border-radius: var(--r-lg);
  background: var(--ink-2);
  border: 1px solid var(--line);
}
.step__num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--brand), var(--brand-3));
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 18px;
  box-shadow: 0 8px 22px -8px var(--brand-glow);
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--txt-2); font-size: 14.8px; }

/* ── Split (Ja / Nein) ───────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.panel {
  padding: 32px 30px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--ink-2);
}
.panel--yes {
  background: linear-gradient(165deg, rgba(37, 211, 102, 0.07), var(--ink-2) 62%);
  border-color: rgba(37, 211, 102, 0.22);
}
.panel h3 { font-size: 19px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.panel ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.panel li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--txt-2);
  line-height: 1.6;
}
.panel li strong { color: var(--txt); font-weight: 650; }
.mark {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.mark--yes { background: rgba(37, 211, 102, 0.15); color: var(--wa); }
.mark--no  { background: rgba(255, 255, 255, 0.07); color: var(--txt-3); }

/* ── Regeln ──────────────────────────────────────────────────────────────── */
.rules {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.rule { background: var(--ink-2); padding: 26px 24px; }
.rule__n { font-size: 12px; font-weight: 800; color: var(--brand-2); letter-spacing: 0.14em; }
.rule h3 { font-size: 16.5px; margin: 10px 0 8px; font-weight: 720; }
.rule p { font-size: 14.2px; color: var(--txt-2); }

/* ── Host / Transparenz ──────────────────────────────────────────────────── */
.host {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding: clamp(30px, 4vw, 48px);
  border-radius: var(--r-lg);
  background: linear-gradient(150deg, var(--ink-3), var(--ink-2) 70%);
  border: 1px solid var(--line);
}
.host__portrait {
  aspect-ratio: 4 / 4.4;
  border-radius: var(--r);
  background:
    radial-gradient(circle at 50% 32%, rgba(74,85,246,0.28), transparent 60%),
    var(--ink-4);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-3);
  font-size: 13px;
  text-align: center;
  padding: 20px;
}
.host__initials {
  font-size: clamp(40px, 6vw, 62px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.9);
}
.quote {
  margin-top: 22px;
  padding: 18px 22px;
  border-left: 2px solid var(--brand);
  background: rgba(74, 85, 246, 0.07);
  border-radius: 0 var(--r) var(--r) 0;
  color: var(--txt-2);
  font-size: 15px;
  line-height: 1.7;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.faq details[open] { border-color: rgba(74, 85, 246, 0.4); background: var(--ink-3); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 650;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 11px; height: 11px;
  border-right: 2px solid var(--txt-3);
  border-bottom: 2px solid var(--txt-3);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform 0.28s var(--ease), border-color 0.28s;
}
.faq details[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
  border-color: var(--brand-2);
}
.faq .faq__body { padding: 0 22px 22px; color: var(--txt-2); font-size: 15px; line-height: 1.72; }
.faq .faq__body a { color: var(--brand-2); text-decoration: underline; text-underline-offset: 3px; }

/* ── CTA-Band ────────────────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: clamp(24px, 3vw, 34px);
  padding: clamp(44px, 6vw, 72px) clamp(24px, 5vw, 62px);
  background: linear-gradient(140deg, #101A47 0%, #0B1230 45%, var(--ink-2) 100%);
  border: 1px solid rgba(74, 85, 246, 0.3);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  top: -55%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(74, 85, 246, 0.34), transparent 65%);
  pointer-events: none;
}
.cta-band__rings {
  position: absolute;
  inset: auto 0 -70% 0;
  height: 420px;
  pointer-events: none;
  opacity: 0.5;
}
.cta-band__rings i {
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50%;
}
.cta-band h2 { position: relative; font-size: clamp(28px, 4.4vw, 46px); }
.cta-band p {
  position: relative;
  margin: 18px auto 0;
  max-width: 540px;
  color: var(--txt-2);
  font-size: 17px;
}
.cta-band .btn { position: relative; margin-top: 32px; }
.cta-band__note { position: relative; margin-top: 18px; font-size: 13.5px; color: var(--txt-3); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  padding: 56px 0 34px;
  margin-top: clamp(64px, 8vw, 104px);
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-soft);
}
.footer__blurb { max-width: 360px; margin-top: 14px; color: var(--txt-3); font-size: 14.5px; }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__links a { font-size: 14.5px; color: var(--txt-2); }
.footer__links a:hover { color: var(--txt); }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: space-between;
  color: var(--txt-3);
  font-size: 13.5px;
}

/* ── Rechtstexte ─────────────────────────────────────────────────────────── */
.legal-hero {
  padding: clamp(118px, 15vw, 150px) 0 clamp(36px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.crumbs { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--txt-3); margin-bottom: 16px; }
.crumbs a:hover { color: var(--txt); }
.legal-hero h1 { font-size: clamp(30px, 4.6vw, 46px); }
.legal-hero p { margin-top: 12px; color: var(--txt-3); font-size: 14.5px; }

.legal { max-width: 780px; margin-inline: auto; padding-bottom: 40px; }
.legal h2 {
  font-size: 20px;
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.02em;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 16.5px; margin: 26px 0 8px; font-weight: 700; }
.legal p, .legal li { color: var(--txt-2); font-size: 15px; line-height: 1.75; }
.legal p + p { margin-top: 12px; }
.legal ul { margin: 12px 0; padding-left: 20px; display: grid; gap: 7px; }
.legal a { color: var(--brand-2); text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.legal .box {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
}
.legal .box p { color: var(--txt); }
.legal .box .name { font-weight: 750; font-size: 16.5px; }
.legal .todo {
  background: rgba(255, 176, 32, 0.07);
  border: 1px dashed rgba(255, 176, 32, 0.45);
  border-radius: var(--r);
  padding: 16px 20px;
  margin: 16px 0;
  color: #FFCE7A;
  font-size: 14px;
}
.legal .todo strong { color: #FFDDA6; }

/* ── Scroll-Animation ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rules   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .orbit { width: min(78%, 340px); }
  .host { grid-template-columns: 1fr; }
  .host__portrait { max-width: 260px; aspect-ratio: 1; }
}

@media (max-width: 860px) {
  .calls { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .cta-strip .btn { width: 100%; }
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .burger { display: flex; }
  .grid--3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .rules { grid-template-columns: 1fr; }
  /* Themen-Chips würden hier das Logo überlagern – die Themen stehen
     ohnehin direkt darunter im Laufband. */
  .orbit__chip { display: none; }
  .orbit { width: min(70%, 300px); }
  .hero__cta .btn { width: 100%; }
  .footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ── Live-Calls ──────────────────────────────────────────────────────────── */
.calls {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(30px, 4.5vw, 60px);
  align-items: center;
  padding: clamp(30px, 4vw, 52px);
  border-radius: var(--r-lg);
  background:
    radial-gradient(700px 320px at 12% -10%, rgba(74, 85, 246, 0.18), transparent 70%),
    linear-gradient(155deg, var(--ink-3), var(--ink-2) 72%);
  border: 1px solid rgba(74, 85, 246, 0.30);
}
.calls__note { margin-top: 16px; font-size: 13.5px; color: var(--txt-3); }
.calls .btn { margin-top: 26px; }

.calls__topics { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.calls__topic {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  font-size: 15.5px;
  font-weight: 620;
  letter-spacing: -0.015em;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.calls__topic:hover { border-color: rgba(74, 85, 246, 0.45); background: rgba(74, 85, 246, 0.07); }
.calls__topic svg { flex: none; color: var(--brand-2); }
.calls__rotate {
  margin-top: 4px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--txt-3);
  padding-left: 4px;
}
.calls__rotate span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; flex: none; margin-top: 1px;
  background: rgba(47, 220, 194, 0.14); color: var(--teal);
}

/* ── Zwischen-CTA ────────────────────────────────────────────────────────── */
.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(24px, 3vw, 34px) clamp(24px, 3.5vw, 40px);
  border-radius: var(--r-lg);
  background: linear-gradient(120deg, rgba(74, 85, 246, 0.14), rgba(47, 220, 194, 0.07) 70%, transparent);
  border: 1px solid rgba(74, 85, 246, 0.28);
}
.cta-strip h3 { font-size: clamp(19px, 2.3vw, 24px); font-weight: 780; }
.cta-strip p { margin-top: 7px; color: var(--txt-2); font-size: 15px; }

/* ── Fixierter CTA auf kleinen Screens ───────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 95;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom, 0px));
  background: rgba(7, 8, 12, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.sticky-cta .btn { width: 100%; }
.sticky-cta__note {
  display: block;
  text-align: center;
  font-size: 11.5px;
  color: var(--txt-3);
  margin-top: 7px;
}

/* Muss nach der Basisregel stehen, sonst gewinnt dort das display:none */
@media (max-width: 860px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 88px; }
}
