/* -------------------------
   Base / Theme
-------------------------- */
:root {
    --bg: #070A12;
    --bg2: #0B1022;
    --card: rgba(255, 255, 255, .06);
    --card2: rgba(255, 255, 255, .10);
    --text: #EAF0FF;
    --muted: rgba(234, 240, 255, .72);
    --line: rgba(255, 255, 255, .12);
    --shadow: 0 24px 80px rgba(0, 0, 0, .45);
    --blur: 16px;
    --radius: 18px;

    --accent1: #7C5CFF;
    --accent2: #2DE2E6;
    --accent3: #FF4FD8;
}

[data-theme="light"] {
    --bg: #F7F9FF;
    --bg2: #EEF3FF;
    --card: rgba(0, 0, 0, .05);
    --card2: rgba(0, 0, 0, .08);
    --text: #0E1430;
    --muted: rgba(14, 20, 48, .72);
    --line: rgba(0, 0, 0, .10);
    --shadow: 0 24px 80px rgba(15, 20, 40, .18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
    color: var(--text);
    background:
        radial-gradient(1200px 700px at 10% 0%, rgba(124, 92, 255, .18), transparent 50%),
        radial-gradient(900px 600px at 90% 20%, rgba(45, 226, 230, .14), transparent 45%),
        linear-gradient(180deg, var(--bg), var(--bg2));
    overflow-x: hidden;
}

#bg-canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

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

a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.muted {
    color: var(--muted);
}

.mini {
    font-size: 12px;
    letter-spacing: .2px;
}

.glass {
    background: linear-gradient(180deg, var(--card2), var(--card));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(var(--blur));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 17px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(90deg, rgba(124, 92, 255, 1), rgba(45, 226, 230, 1));
    background-size: 100% 100%;
    background-repeat: no-repeat;
    color: #051028;
    font-weight: 700;
    letter-spacing: .2px;
    cursor: pointer;
    transition: transform .18s ease, filter .18s ease, opacity .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
    filter: saturate(1.05) contrast(1.05);
}

.btn:active {
    transform: translateY(0);
    opacity: .9;
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    color: var(--text);
}

.btn--sm {
    padding: 9px 12px;
    border-radius: 12px;
    font-size: 13px;
}

/* -------------------------
   Topbar
-------------------------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, 0));
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

[data-theme="light"] .topbar {
    background: linear-gradient(180deg, rgba(255, 255, 255, .75), rgba(255, 255, 255, 0));
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand__logo {
    height: 42px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .35));
}

.brand__text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.brand__dim {
    opacity: 0.7;
    font-weight: 700;
}

.brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(124, 92, 255, 1), rgba(255, 79, 216, 1));
    color: #06102C;
}

.nav {
    position: relative;
}

.nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.nav__list a {
    color: var(--muted);
    font-weight: 650;
}

.nav__list a:hover {
    color: var(--text);
    text-decoration: none;
}

.theme {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    border-radius: 14px;
    padding: 9px 12px;
    cursor: pointer;
}

.theme__icon {
    width: 14px;
    height: 14px;
    border-radius: 99px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0));
    border: 1px solid var(--line);
}

/* Mobile nav */
.nav__toggle {
    display: none;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 14px;
    padding: 10px 10px;
    cursor: pointer;
}

.nav__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    margin: 4px 0;
    border-radius: 2px;
}

/* -------------------------
   Hero
-------------------------- */
.hero {
    padding: 58px 0 40px;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 26px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    color: var(--muted);
    font-weight: 650;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--accent2), var(--accent1));
    box-shadow: 0 0 0 6px rgba(45, 226, 230, .10);
}

h1 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    margin: 14px 0 10px;
    letter-spacing: -0.6px;
}

.grad {
    background: linear-gradient(90deg, var(--accent2), var(--accent1), var(--accent3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 58ch;
}

.hero__cta {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.hero__stats {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.stat {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .03);
}

.stat__num {
    font-weight: 900;
    letter-spacing: .2px;
}

.stat__txt {
    color: var(--muted);
    font-size: 13px;
    margin-top: 4px;
}

.card {
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.chip {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
}

.pulse {
    width: 12px;
    height: 12px;
    border-radius: 99px;
    background: rgba(45, 226, 230, 1);
    box-shadow: 0 0 0 0 rgba(45, 226, 230, .35);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 226, 230, .35);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(45, 226, 230, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(45, 226, 230, 0);
    }
}

.card__title {
    margin: 14px 0 12px;
    font-weight: 900;
    letter-spacing: .2px;
    font-size: 16px;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list__row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
}

.kbd {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, .12);
}

[data-theme="light"] .kbd {
    background: rgba(255, 255, 255, .65);
}

.list__mid {
    color: var(--muted);
    font-weight: 650;
}

.badge {
    font-size: 12px;
    font-weight: 900;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
}

.badge--ok {
    background: rgba(45, 226, 230, .14);
}

.badge--warn {
    background: rgba(255, 79, 216, .12);
}

.card__bottom {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.shadowBlob {
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(124, 92, 255, .65), rgba(255, 79, 216, .25), transparent 70%);
    filter: blur(10px);
    z-index: -1;
}

/* -------------------------
   Sections
-------------------------- */
.section {
    padding: 46px 0;
}

.section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.section__head h2 {
    margin: 0;
    font-size: 26px;
    letter-spacing: -0.2px;
}

.section__head p {
    margin: 0;
    color: var(--muted);
    max-width: 62ch;
}

.grid {
    display: grid;
    gap: 14px;
}

.grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature {
    padding: 18px;
    transition: transform .2s ease, background .2s ease;
}

.feature:hover {
    transform: translateY(-2px);
}

.feature__icon {
    font-size: 22px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
}

.feature h3 {
    margin: 12px 0 6px;
}

.feature p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.price {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.price__tag {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--muted);
}

.price__value {
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.3px;
}

.price--featured {
    border: 1px solid rgba(45, 226, 230, .35);
    box-shadow: 0 28px 90px rgba(45, 226, 230, .12);
}

.check {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
}

.check li {
    padding-left: 24px;
    position: relative;
    color: var(--muted);
    margin: 8px 0;
}

.check li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 900;
    color: rgba(45, 226, 230, 1);
}

/* FAQ */
.faq {
    padding: 10px;
}

.faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 14px;
    color: var(--text);
    font-weight: 850;
    cursor: pointer;
    margin: 10px 0;
}

.faq__chev {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    transition: transform .18s ease;
}

.faq__a {
    display: none;
    padding: 0 14px 14px;
    color: var(--muted);
    line-height: 1.6;
}

.faq__q[aria-expanded="true"] .faq__chev {
    transform: rotate(225deg);
}

.faq__q[aria-expanded="true"]+.faq__a {
    display: block;
}

/* Contact */
.contact__panel {
    padding: 18px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 12px 0;
}

label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .03);
    color: var(--text);
    outline: none;
}

[data-theme="light"] input,
[data-theme="light"] select,
[data-theme="light"] textarea {
    background: rgba(255, 255, 255, .72);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(45, 226, 230, .55);
    box-shadow: 0 0 0 4px rgba(45, 226, 230, .10);
}

.infoList {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.infoRow {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .03);
}

.infoKey {
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

.infoVal {
    font-weight: 800;
}

.divider {
    height: 1px;
    background: var(--line);
    margin: 16px 0;
}

.quick {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 26px 0 34px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

[data-theme="light"] .footer {
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.footer__links {
    display: flex;
    gap: 14px;
}

.footer__links a {
    color: var(--muted);
    font-weight: 700;
}

/* Toast */
.toast {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: min(420px, 92vw);
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, var(--card2), var(--card));
    box-shadow: var(--shadow);
    backdrop-filter: blur(var(--blur));
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
    color: var(--text);
    z-index: 80;
}

.toast--show {
    transform: translateY(0);
    opacity: 1;
}

.block {
    padding: 20px;
    line-height: 1.7;
}

/* -------------------------
   Responsive
-------------------------- */
@media (max-width: 980px) {
    .hero__inner {
        grid-template-columns: 1fr;
    }

    .hero__stats {
        grid-template-columns: 1fr;
    }

    .grid--3 {
        grid-template-columns: 1fr;
    }

    .grid--2 {
        grid-template-columns: 1fr;
    }

    .section__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand {
        min-width: auto;
    }
}

@media (max-width: 860px) {
    .nav__toggle {
        display: inline-block;
    }

    .nav__list {
        position: absolute;
        right: 0;
        top: 54px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px;
        width: min(320px, 92vw);
        border-radius: 18px;
        border: 1px solid var(--line);
        background: linear-gradient(180deg, var(--card2), var(--card));
        backdrop-filter: blur(var(--blur));
        box-shadow: var(--shadow);

        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity .18s ease, transform .18s ease;
    }

    .nav__list.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav__list a {
        padding: 10px 12px;
        border-radius: 14px;
    }

    .nav__list a:hover {
        background: rgba(255, 255, 255, .04);
    }
}

.install-tabs {
    display: flex;
    gap: 10px;
    padding: 6px;
    background: rgba(0, 0, 0, .25);
    border-radius: 18px;
    border: 1px solid var(--line);
    width: fit-content;
    margin-bottom: 10px;
}


.install-tab {
    appearance: none;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 11px 17px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
    font-weight: 700;
    color: rgba(234, 240, 255, 0.75);

    transition: background .2s, color .2s;
}

.install-tab:hover {
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
}

.install-tab:focus,
.install-tab:focus-visible {
    outline: none;
    box-shadow: none;
}

.install-tab.active {
    background: linear-gradient(90deg, var(--accent2), var(--accent1));
    background-repeat: no-repeat;
    color: #000;
}

.install-section {
    display: none;
}

.install-section.active {
    display: block;
}

.install-card {
    background: linear-gradient(180deg, var(--card2), var(--card));
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
}

.cmd {
    background: rgba(0, 0, 0, .45);
    border-radius: 14px;
    padding: 14px;
    margin-top: 10px;
    cursor: pointer;
    position: relative;
    transition: background .2s;
}

.cmd:hover {
    background: rgba(0, 0, 0, .6);
}

.cmd code {
    color: #2de2e6;
    font-family: monospace;
    font-size: 14px;
}

.cmd span {
    position: absolute;
    right: 14px;
    bottom: 10px;
    font-size: 11px;
    opacity: .6;
}

.cmd.copied span {
    content: "✓ Kopiert";
    opacity: 1;
    color: #2de2e6;
}

.copy-toast {
    position: fixed;
    bottom: 22px;
    right: 22px;
    padding: 12px 16px;
    border-radius: 14px;
    background: linear-gradient(90deg, var(--accent2), var(--accent1));
    color: #000;
    font-weight: 800;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease;
    z-index: 999;
}

.copy-toast.show {
    opacity: 1;
    transform: translateY(0);
}