:root {
  --bg: #0b1020;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
  --line: rgba(255, 255, 255, 0.12);
  --brand: #7c3aed;
  --brand2: #22c55e;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(124, 58, 237, 0.38), transparent 60%),
    radial-gradient(900px 520px at 80% 18%, rgba(34, 197, 94, 0.22), transparent 55%),
    radial-gradient(800px 520px at 55% 85%, rgba(56, 189, 248, 0.18), transparent 60%),
    var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  background: #111827;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.skip:focus { left: 12px; z-index: 50; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(11, 16, 32, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}
.brand__mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35);
}
.brand__name { font-weight: 800; letter-spacing: 0.2px; }

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav a { color: var(--muted); font-weight: 600; }
.nav a:hover { color: var(--text); text-decoration: none; }
.nav__cta {
  margin-left: 6px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text) !important;
}
.nav__cta:hover { background: rgba(255, 255, 255, 0.10); }

.menuBtn {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
  font-weight: 700;
}
.mobileNav {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobileNav__inner {
  display: grid;
  gap: 10px;
  padding: 14px 0 16px;
}
.mobileNav__inner a {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.hero { padding: 56px 0 24px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 28px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 12px;
}
.kicker::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}
.hero h1 {
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: -0.6px;
}
.lead { color: var(--muted); font-size: 18px; margin: 0 0 18px; }
.lead--tight {
  margin-top: -6px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.55;
}
.lead--tight a { font-weight: 800; text-decoration: none; }
.lead--tight a:hover { text-decoration: underline; }

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 18px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  text-decoration: none !important;
}
.btn:hover { background: rgba(255, 255, 255, 0.10); }
.btn--primary {
  border-color: rgba(124, 58, 237, 0.45);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(34, 197, 94, 0.78));
}
.btn--primary:hover { filter: brightness(1.05); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
}

.trust {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.80);
}
.trust li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 12px 14px;
}

.hero__card { position: relative; }
.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card__top {
  padding: 14px 14px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}
.pill--muted { color: rgba(255, 255, 255, 0.70); }
.card__body { padding: 16px 14px 14px; }
.mockLine {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.10);
  margin: 10px 0;
}
.mockBox {
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.mockRow { display: flex; gap: 10px; align-items: center; margin: 10px 0; }
.dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.18); }
.dot--ok { background: rgba(34, 197, 94, 0.8); }
.dot--warn { background: rgba(251, 191, 36, 0.9); }
.w80 { width: 80%; }
.w70 { width: 70%; }
.w65 { width: 65%; }
.w60 { width: 60%; }
.w55 { width: 55%; }
.card__cta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mini {
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.76);
}
.mini--strong { color: rgba(255, 255, 255, 0.92); }
.hero__note { color: rgba(255, 255, 255, 0.62); margin: 12px 0 0; font-size: 13px; }

.logos { padding: 10px 0 24px; }
.logos__bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.logos__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}
.logos__icon { font-size: 18px; }

.section { padding: 56px 0; }
.section--alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section__head { margin-bottom: 22px; }
.section__head h2 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.2px;
}
.section__head p { margin: 0; color: var(--muted); max-width: 72ch; }

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

.pain-loesung-grid {
  align-items: stretch;
}
.pain-card--solution {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.06);
}
.pain-list {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
}
.pain-list li {
  margin: 0.55rem 0;
  padding-left: 0.15rem;
  line-height: 1.45;
}

#technik code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9em;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.technik-footnote {
  max-width: 72ch;
  margin-top: 8px;
}

.feature, .price {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px;
}
.feature h3, .price h3 { margin: 0 0 10px; }
.feature p { margin: 0; color: rgba(255, 255, 255, 0.78); }

.callout {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.22), rgba(34, 197, 94, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.callout h3 { margin: 0 0 8px; }
.callout p { margin: 0; color: rgba(255, 255, 255, 0.78); max-width: 80ch; }

.price { position: relative; }
.price__tag { margin: 6px 0 12px; color: rgba(255, 255, 255, 0.82); }
.price ul { margin: 0 0 16px; padding-left: 18px; color: rgba(255, 255, 255, 0.78); }
.price li { margin: 8px 0; }
.price--highlight {
  border-color: rgba(124, 58, 237, 0.42);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 55px rgba(124, 58, 237, 0.18);
}
.fineprint { color: rgba(255, 255, 255, 0.65); font-size: 13px; margin-top: 16px; }
.muted { color: rgba(255, 255, 255, 0.68); }

.faq details {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 10px 0;
}
.faq summary { cursor: pointer; font-weight: 900; }
.faq p { margin: 10px 0 0; color: rgba(255, 255, 255, 0.78); }

.form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
}
label { display: grid; gap: 8px; }
label span { font-weight: 900; color: rgba(255, 255, 255, 0.82); }
input, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 16, 32, 0.55);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus { border-color: rgba(124, 58, 237, 0.65); box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15); }
.form__actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.form__hint { margin: 12px 0 0; color: rgba(255, 255, 255, 0.76); font-weight: 700; }

.footer { padding: 26px 0; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer__brand { display: inline-flex; align-items: center; gap: 10px; }
.footer__links { display: flex; gap: 14px; }
.footer__links a { color: rgba(255, 255, 255, 0.74); font-weight: 700; }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .logos__bar { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav { display: none; }
  .menuBtn { display: inline-flex; }
  .grid--2 { grid-template-columns: 1fr; }
  .callout { flex-direction: column; align-items: flex-start; }
}

