:root {
  --bg: #0e0d16;
  --bg-2: #13121d;
  --panel: #181724;
  --panel-2: #1f1d2e;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.12);
  --text: #f2f0fb;
  --muted: #a39fbd;
  --accent: #8d6bff;
  --accent-2: #b9a6ff;
  --grad: linear-gradient(135deg, #a48bff 0%, #7a55ff 55%, #6a45f5 100%);
  --radius: 16px;
  --font: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; object-fit: contain; }
a { color: var(--accent-2); }
a:hover { color: #fff; }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 6px; }

.wrap { width: min(1140px, 100% - 2.5rem); margin: 0 auto; }

/* Kopf */
.top {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(14, 13, 22, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.top .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: 68px; }
.logo { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--text); font-weight: 800; font-size: 1.2rem; letter-spacing: -0.01em; text-decoration: none; }
.logo img { width: 34px; height: 34px; object-fit: contain; aspect-ratio: 1 / 1; }
.nav { display: flex; gap: 1.4rem; margin-left: 1rem; }
.nav a { color: var(--muted); font-size: 0.95rem; text-decoration: none; }
.nav a:hover { color: var(--text); }
.top-actions { display: flex; gap: 0.6rem; margin-left: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.65rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease, background-color 120ms ease, border-color 120ms ease;
}
.btn svg { width: 1.15rem; height: 1.15rem; }
.btn--main { background: var(--grad); color: #fff; box-shadow: 0 10px 30px rgba(122, 85, 255, 0.35); }
.btn--main:hover { color: #fff; filter: brightness(1.08); transform: translateY(-1px); }
.btn--ghost { background: rgba(255, 255, 255, 0.04); border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.btn--big { min-height: 52px; padding: 0.8rem 1.5rem; font-size: 1.05rem; border-radius: 14px; }

/* Start */
.hero { position: relative; overflow: hidden; padding: 5.5rem 0 4rem; }
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto;
  height: 620px;
  background: radial-gradient(closest-side, rgba(122, 85, 255, 0.35), transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(141, 107, 255, 0.35);
  border-radius: 999px;
  background: rgba(141, 107, 255, 0.1);
  color: var(--accent-2);
  font-size: 0.85rem;
  font-weight: 600;
}
h1 {
  max-width: 14ch;
  margin: 1.2rem auto 1rem;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
h1 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { max-width: 640px; margin: 0 auto; color: var(--muted); font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin-top: 2rem; }
.hero-note { margin-top: 1rem; color: var(--muted); font-size: 0.88rem; }
.shot {
  position: relative;
  margin: 3.5rem auto 0;
  padding: 10px;
  border: 1px solid var(--line-2);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(141, 107, 255, 0.08);
}
.shot { aspect-ratio: 16 / 10; overflow: hidden; }
.shot img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

/* Abschnitte */
section { padding: 5rem 0; }
.section-head { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.section-head h2 { margin: 0 0 0.7rem; font-size: clamp(1.8rem, 3.6vw, 2.6rem); line-height: 1.15; letter-spacing: -0.025em; }
.section-head p { margin: 0; color: var(--muted); }

.features { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); gap: 1rem; }
.feature {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.feature:hover { border-color: rgba(141, 107, 255, 0.35); }
.feature__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(141, 107, 255, 0.15);
  color: var(--accent-2);
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { margin: 0 0 0.4rem; font-size: 1.08rem; }
.feature p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3.5rem; align-items: center; }
.split h2 { margin: 0 0 0.8rem; font-size: clamp(1.8rem, 3.4vw, 2.5rem); line-height: 1.15; letter-spacing: -0.025em; }
.split p { color: var(--muted); }
.checks { display: grid; gap: 0.7rem; margin: 1.5rem 0 2rem; padding: 0; list-style: none; }
.checks li { display: flex; gap: 0.7rem; align-items: flex-start; }
.checks li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: rgba(141, 107, 255, 0.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b9a6ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.checks b { color: var(--text); }
.split .shot { margin: 0; }
.small { color: var(--muted); font-size: 0.85rem; }
.band { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Fragen */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  margin-bottom: 0.7rem;
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 44px;
  padding: 1.05rem 1.3rem;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent-2); font-size: 1.4rem; line-height: 1; transition: transform 150ms ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 0 1.3rem 1.2rem; color: var(--muted); }

.cta {
  padding: 3.5rem 2rem;
  border: 1px solid rgba(141, 107, 255, 0.3);
  border-radius: 24px;
  background: radial-gradient(circle at 50% 0%, rgba(141, 107, 255, 0.28), transparent 60%), var(--panel);
  text-align: center;
}
.cta h2 { margin: 0 0 0.6rem; font-size: clamp(1.7rem, 3.2vw, 2.3rem); letter-spacing: -0.02em; }
.cta p { margin: 0; color: var(--muted); }

/* Fuß */
.foot { padding: 2.5rem 0 3rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.9rem; }
.foot .wrap { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; }
.foot nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.foot a { color: var(--muted); text-decoration: none; }
.foot a:hover { color: var(--text); }

/* Rechtstexte */
.legal { padding: 3.5rem 0 5rem; }
.legal .wrap { max-width: 780px; }
.legal h1 { max-width: none; margin: 0 0 0.4rem; font-size: clamp(2rem, 4vw, 2.8rem); text-align: left; }
.legal .stand { margin: 0 0 2.5rem; color: var(--muted); font-size: 0.9rem; }
.legal h2 { margin: 2.4rem 0 0.6rem; font-size: 1.3rem; letter-spacing: -0.01em; }
.legal h3 { margin: 1.6rem 0 0.4rem; font-size: 1.05rem; }
.legal p, .legal li { color: #cfcbe3; }
.legal ul { padding-left: 1.2rem; }
.legal li { margin-bottom: 0.35rem; }
.legal address { font-style: normal; color: #cfcbe3; }
.legal .box {
  margin: 1.2rem 0;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(141, 107, 255, 0.3);
  border-radius: 12px;
  background: rgba(141, 107, 255, 0.08);
}
.legal .box p { margin: 0; }

@media (max-width: 860px) {
  .nav { display: none; }
  .wrap { width: min(1140px, 100% - 1.75rem); }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split .shot { order: -1; }
  section { padding: 3.5rem 0; }
  .hero { padding: 3.5rem 0 3rem; }
  .top { padding-top: env(safe-area-inset-top, 0); }
  .foot { padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px)); }
  .foot a { padding: 0.35rem 0; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .wrap { width: min(1140px, 100% - 1.25rem); }
  .top .wrap { gap: 0.75rem; min-height: 60px; }
  .top-actions .btn--ghost { display: none; }
  .hero-actions { gap: 0.65rem; }
  .hero-actions .btn { width: 100%; }
  .cta { padding: 2.5rem 1.25rem; }
  .shot:hover { transform: none; }
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-1px) scale(1.02); }
  .logo:hover img { transform: scale(1.06); }
  .shot:hover {
    transform: scale(1.015);
    box-shadow: 0 44px 110px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(141, 107, 255, 0.14);
  }
  .feature:hover {
    transform: translateY(-2px);
    background: var(--panel-2);
  }
}
@media (hover: none) {
  .btn:hover, .btn:active, .logo:hover img, .shot:hover, .feature:hover { transform: none; }
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

.btn:active { transform: translateY(0) scale(0.99); }
.btn--main:hover { filter: brightness(1.1); box-shadow: 0 14px 34px rgba(122, 85, 255, 0.42); }
.btn--ghost:hover { border-color: rgba(185, 166, 255, 0.45); background: rgba(141, 107, 255, 0.12); }

.logo img { transition: transform 0.35s ease; }
.shot { transition: transform 0.45s ease, box-shadow 0.45s ease; }
.feature { transition: border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .logo img, .shot, .feature, .reveal { transition: none !important; }
  .btn:hover, .btn:active, .logo:hover img, .shot:hover, .feature:hover { transform: none; }
  .reveal { opacity: 1; transform: none; }
}
