:root{
  --bg: #fffdf7;
  --ink: #1e1b22;
  --muted: rgba(30,27,34,.72);

  /* BUNT, neutral */
  --a: #ff595e;  /* korall */
  --b: #ffca3a;  /* gelb */
  --c: #1982ff;  /* blau */
  --d: #00c2a8;  /* türkis */
  --e: #8a5cff;  /* lila */
  --f: #7bdff2;  /* hellblau */

  --card: rgba(255,255,255,.82);
  --stroke: rgba(30,27,34,.14);
  --shadow: 0 18px 60px rgba(20,16,28,.18);
  --radius: 22px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

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

body{
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 450px at 10% -10%, rgba(255,202,58,.28), transparent 60%),
    radial-gradient(900px 450px at 100% 0%, rgba(25,130,255,.20), transparent 55%),
    radial-gradient(700px 420px at 20% 110%, rgba(0,194,168,.18), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}

/* Muster überall */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("pattern.svg");
  background-repeat: repeat;
  background-size: 520px 520px;
  opacity: 0.42;
}

a{ color: inherit; }
.container{ width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left: 14px; top: 14px; width:auto; height:auto; padding:10px 12px;
  background:#fff; border:1px solid var(--stroke); border-radius: 12px; z-index:9999;
}

.topbar{
  position: sticky; top:0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid var(--stroke);
}
.topbar__inner{
  display:flex; gap:16px; align-items:center; justify-content:space-between;
  padding: 12px 0;
}

.brand{ display:flex; gap:12px; align-items:center; }
.brand__logo{
  width:44px; height:44px; border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--stroke);
  box-shadow: 0 10px 25px rgba(25,130,255,.14);
  overflow: hidden;
}
.brand__logo img{
  width: 44px;
  height: 44px;
  display: block;
  object-fit: cover;
  border-radius: 14px;
}

.brand__name{ font-weight: 950; font-size: 18px; line-height: 1.1; }
.brand__tag{ font-size: 12px; color: var(--muted); margin-top: 2px; }

.nav{ display:flex; gap:14px; align-items:center; }
.nav a{
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav a:hover{
  background: rgba(25,130,255,.10);
  border-color: rgba(25,130,255,.18);
}

.navbtn{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.84);
}
.navbtn span{
  display:block; height:2px; width:18px; background: var(--ink);
  margin: 5px auto; border-radius: 2px;
}

.hero{ padding: 34px 0 22px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 22px;
  align-items: start;
}

.pill{
  display:inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,202,58,.26);
  border: 1px solid rgba(255,202,58,.42);
  font-weight: 950;
  font-size: 12px;
}

h1{
  font-size: clamp(30px, 4.2vw, 44px);
  margin: 12px 0 10px;
  line-height: 1.05;
  letter-spacing: -.5px;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.hero__cta{ display:flex; gap:12px; flex-wrap: wrap; margin-bottom: 16px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration:none;
  border: 1px solid rgba(30,27,34,.12);
  background: linear-gradient(135deg, var(--c), var(--b), var(--a));
  color:#0b1020;
  font-weight: 950;
  box-shadow: 0 16px 40px rgba(25,130,255,.14);
}
.btn:hover{ filter: brightness(1.02); transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn--ghost{
  background: rgba(255,255,255,.84);
  color: var(--ink);
  box-shadow: none;
}

.btn--wide{ width: 100%; }

.hero__facts{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.fact{
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--stroke);
}
.fact__k{
  font-size: 11px;
  color: var(--muted);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.fact__v{ margin-top: 4px; font-weight: 900; font-size: 13px; }
.fact__v a{ text-decoration:none; border-bottom: 1px dashed rgba(30,27,34,.25); }

.hero__card .card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.hero__card .card::before{
  content:"";
  position:absolute; inset:-120px -120px auto auto;
  width: 280px; height: 280px;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,202,58,.34), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(0,194,168,.30), transparent 55%),
    radial-gradient(circle at 40% 80%, rgba(25,130,255,.22), transparent 55%),
    radial-gradient(circle at 60% 25%, rgba(138,92,255,.18), transparent 55%);
  transform: rotate(14deg);
}
.card__top{ display:flex; gap:12px; align-items:center; position: relative; }
.badge{
  width: 56px; height: 56px; border-radius: 18px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.90);
  border: 1px solid var(--stroke);
}
.card__title{ font-weight: 950; font-size: 16px; }
.card__sub{ color: var(--muted); font-size: 12px; margin-top: 2px; }

.checklist{ margin: 14px 0 0; padding: 0; list-style: none; position: relative; }
.checklist li{
  padding-left: 28px;
  margin: 10px 0;
  color: rgba(30,27,34,.88);
  line-height: 1.35;
}
.checklist li::before{
  content:"";
  width: 18px; height: 18px;
  border-radius: 7px;
  position:absolute;
  margin-left: -28px;
  background: linear-gradient(135deg, var(--d), var(--b), var(--c));
  box-shadow: 0 10px 24px rgba(0,194,168,.14);
}
.card__note{
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(123,223,242,.20);
  border: 1px solid rgba(123,223,242,.30);
  font-size: 13px;
  color: rgba(30,27,34,.86);
}

.section{ padding: 30px 0; }
.section--soft{
  background: rgba(255,255,255,.55);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}
.section--accent{
  background:
    radial-gradient(900px 420px at 12% 20%, rgba(255,202,58,.24), transparent 55%),
    radial-gradient(900px 420px at 92% 65%, rgba(25,130,255,.18), transparent 55%),
    rgba(255,255,255,.24);
  border-top: 1px solid var(--stroke);
}

h2{ margin: 0 0 14px; font-size: 26px; letter-spacing: -.3px; }
h3{ margin: 0 0 8px; font-size: 16px; }
p{ margin: 0 0 10px; color: var(--muted); line-height: 1.6; }

.grid2{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.tile{
  background: rgba(255,255,255,.82);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 14px 42px rgba(20,16,28,.08);
}
.tile--glass{
  background: rgba(255,255,255,.66);
  backdrop-filter: blur(10px);
}

.steps{ margin: 10px 0 0; padding-left: 18px; color: rgba(30,27,34,.88); }
.steps li{ margin: 8px 0; }

.bullets{ margin: 10px 0 0; padding-left: 18px; color: rgba(30,27,34,.88); }
.bullets li{ margin: 8px 0; }

.form{ display:grid; gap: 10px; }
label{ display:grid; gap: 6px; font-weight: 950; font-size: 13px; color: rgba(30,27,34,.92); }
input, textarea{
  width: 100%;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(30,27,34,.18);
  background: rgba(255,255,255,.90);
  outline: none;
  font: inherit;
  color: var(--ink);
}
input:focus, textarea:focus{
  border-color: rgba(25,130,255,.50);
  box-shadow: 0 0 0 4px rgba(25,130,255,.14);
}
.consent{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-weight: 750;
  color: rgba(30,27,34,.88);
}
.consent input{ width: 18px; height: 18px; margin-top: 2px; }

.hp{ display:none; }

.small{ font-size: 12px; color: var(--muted); }
.links{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.linkpill{
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(30,27,34,.15);
  background: rgba(255,255,255,.72);
}

.footer{
  border-top: 1px solid var(--stroke);
  padding: 18px 0 26px;
  background: rgba(255,255,255,.60);
}
.footer__inner{ display:flex; justify-content:space-between; gap: 12px; flex-wrap: wrap; }
.footer__links{ display:flex; gap: 12px; }
.footer a{ text-decoration:none; border-bottom: 1px dashed rgba(30,27,34,.22); }

@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__facts{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .navbtn{ display:inline-block; }
  .nav.nav--open{
    display:flex;
    position: absolute;
    right: 20px; top: 66px;
    flex-direction: column;
    padding: 12px;
    background: rgba(255,255,255,.94);
    border: 1px solid var(--stroke);
    border-radius: 18px;
    box-shadow: 0 22px 70px rgba(20,16,28,.18);
  }
}
