:root {
    --brand: #6d5efc;
    --brand-light: #8b7cff;
    --accent: #22d3ee;
    --ink: #0b0b14;
    --surface: #14141f;
    --line: rgba(255, 255, 255, 0.08);
    --text: #e6e6f0;
    --muted: #8a8aa0;
    --radius: 18px;
    --max: 1080px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ink);
    color: var(--text);
    font: 16px/1.65 system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Sfeerlicht achter de bovenkant van de pagina. */
body::before {
    content: '';
    position: fixed;
    inset: -30% 0 auto;
    height: 70vh;
    background: radial-gradient(60% 50% at 50% 0%, rgba(109, 94, 252, 0.28), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--brand-light);
}

h1,
h2,
h3 {
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}

h1 {
    font-size: clamp(2.1rem, 5vw, 3.4rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

p {
    margin: 0 0 16px;
}

.lead {
    font-size: 1.125rem;
    color: #b9b9cc;
    max-width: 60ch;
}

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

/* --- Kop --- */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(11, 11, 20, 0.78);
    border-bottom: 1px solid var(--line);
}

header .wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    font-size: 15px;
}

nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

nav a {
    color: #b9b9cc;
    text-decoration: none;
    font-size: 0.9rem;
}

nav a:hover {
    color: #fff;
}

@media (max-width: 720px) {
    nav .hide-sm {
        display: none;
    }
}

/* --- Knoppen --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: filter 0.15s, background 0.15s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: #fff;
    box-shadow: 0 8px 30px -10px rgba(109, 94, 252, 0.9);
}

.btn-primary:hover {
    filter: brightness(1.12);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--text);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* --- Secties --- */
section {
    padding: 88px 0;
    /* Voorkomt dat de vaste kop de titel bedekt na een sprong naar een anker. */
    scroll-margin-top: 80px;
}

section.tight {
    padding: 56px 0;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(109, 94, 252, 0.16);
    border: 1px solid rgba(109, 94, 252, 0.35);
    color: var(--brand-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero {
    padding-top: 72px;
    text-align: center;
}

.hero .lead {
    margin-inline: auto;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}

.cta-note {
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--muted);
}

/* --- Bewegende demo: de advertenties verdwijnen echt --- */
.demo {
    position: relative;
    max-width: 760px;
    /* Vaste hoogte: anders verspringt de pagina zodra de advertenties dichtklappen. */
    min-height: 632px;
    margin: 56px auto 0;
    text-align: left;
    background: var(--surface);
    border: 1px solid rgba(109, 94, 252, 0.3);
    border-radius: 20px;
    padding: 0 0 78px;
    overflow: hidden;
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8);
}

.browser {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.browser .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.browser .dot.r {
    background: #ff5f57;
}

.browser .dot.y {
    background: #febc2e;
}

.browser .dot.g {
    background: #28c840;
}

.browser .url {
    margin-left: 10px;
    flex: 1;
    padding: 5px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-size: 0.8rem;
}

.rows {
    padding: 14px 16px 0;
}

.row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px;
    border-radius: 12px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.row .thumb {
    width: 48px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.row .lines {
    flex: 1;
}

.row .lines i {
    display: block;
    height: 7px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.14);
    margin-bottom: 6px;
}

.row .lines i:last-child {
    width: 45%;
    margin-bottom: 0;
}

.row .eur {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.row.real .thumb {
    background: linear-gradient(135deg, rgba(109, 94, 252, 0.55), rgba(34, 211, 238, 0.35));
}

.row.ad {
    background: rgba(251, 191, 36, 0.09);
    border: 1px dashed rgba(251, 191, 36, 0.4);
}

.tag {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.18);
    color: #fbbf24;
    white-space: nowrap;
}

/* De drie advertenties klappen kort na elkaar dicht en komen daarna weer terug. */
@keyframes wegfilteren {

    0%,
    24% {
        max-height: 64px;
        opacity: 1;
        transform: none;
        margin-bottom: 8px;
        padding-top: 11px;
        padding-bottom: 11px;
        border-width: 1px;
    }

    34%,
    90% {
        max-height: 0;
        opacity: 0;
        transform: translateX(-24px);
        margin-bottom: 0;
        padding-top: 0;
        padding-bottom: 0;
        border-width: 0;
    }

    100% {
        max-height: 64px;
        opacity: 1;
        transform: none;
        margin-bottom: 8px;
        padding-top: 11px;
        padding-bottom: 11px;
        border-width: 1px;
    }
}

.row.ad {
    animation: wegfilteren 9s cubic-bezier(.4, 0, .2, 1) infinite;
}

.row.a2 {
    animation-delay: .2s;
}

.row.a3 {
    animation-delay: .4s;
}

@keyframes balkIn {

    0%,
    30% {
        opacity: 0;
        transform: translate(-50%, 14px);
    }

    40%,
    88% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    96%,
    100% {
        opacity: 0;
        transform: translate(-50%, 14px);
    }
}

.bar-demo {
    position: absolute;
    left: 50%;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 14px;
    background: rgba(11, 11, 20, 0.96);
    border: 1px solid rgba(109, 94, 252, 0.45);
    box-shadow: 0 14px 40px -12px rgba(0, 0, 0, 0.8);
    font-size: 0.82rem;
    white-space: nowrap;
    animation: balkIn 9s ease infinite;
}

.bar-demo b {
    background: linear-gradient(135deg, var(--brand-light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bar-demo .count {
    padding: 2px 9px;
    border-radius: 999px;
    background: rgba(109, 94, 252, 0.24);
    color: #c7c0ff;
    font-weight: 700;
}

/* Wie beweging liever uit heeft, krijgt het eindresultaat gewoon te zien. */
@media (prefers-reduced-motion: reduce) {

    .row.ad,
    .bar-demo {
        animation: none;
    }

    .row.ad {
        display: none;
    }

    .bar-demo {
        transform: translateX(-50%);
    }
}

/* --- Kaarten --- */
.grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 40px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}

.card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.card p {
    color: #a8a8bd;
    font-size: 0.95rem;
    margin: 0;
}

.icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(109, 94, 252, 0.16);
    border: 1px solid rgba(109, 94, 252, 0.3);
    margin-bottom: 14px;
}

.icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--brand-light);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* --- Prijzen --- */
.price-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
}

@media (max-width: 760px) {
    .price-grid {
        grid-template-columns: 1fr;
    }
}

.plan {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.plan.featured {
    border-color: rgba(109, 94, 252, 0.5);
    background: linear-gradient(160deg, rgba(109, 94, 252, 0.12), rgba(34, 211, 238, 0.05)), var(--surface);
}

.plan .amount {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 6px 0 2px;
}

.plan ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 24px;
    display: grid;
    gap: 10px;
}

.plan li {
    display: flex;
    gap: 10px;
    font-size: 0.94rem;
    color: #b9b9cc;
}

.plan li::before {
    content: '✓';
    color: var(--brand-light);
    font-weight: 800;
    flex-shrink: 0;
}

.plan .btn {
    margin-top: auto;
    justify-content: center;
}

/* --- Privacy-blok --- */
.highlight {
    background: linear-gradient(160deg, rgba(109, 94, 252, 0.14), rgba(34, 211, 238, 0.06));
    border: 1px solid rgba(109, 94, 252, 0.3);
    border-radius: 24px;
    padding: 44px;
    text-align: center;
}

/* --- Veelgestelde vragen --- */
details {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 10px;
}

details[open] {
    border-color: rgba(109, 94, 252, 0.35);
}

summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    color: var(--brand-light);
    font-weight: 800;
}

details[open] summary::after {
    content: '−';
}

details p {
    margin: 12px 0 0;
    color: #a8a8bd;
    font-size: 0.95rem;
}

/* --- Voet --- */
footer {
    border-top: 1px solid var(--line);
    padding: 40px 0;
    color: var(--muted);
    font-size: 0.88rem;
}

footer .links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

footer a {
    color: #b9b9cc;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

.disclaimer {
    max-width: 70ch;
    line-height: 1.6;
}

/* --- Tekstpagina's (privacy, voorwaarden) --- */
.doc {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 24px 88px;
}

.doc h1 {
    font-size: 2rem;
}

.doc h2 {
    font-size: 1.25rem;
    margin-top: 40px;
}

.doc table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.92rem;
}

.doc th,
.doc td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.doc th {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.doc ul {
    padding-left: 20px;
    color: #b9b9cc;
}

.doc li {
    margin-bottom: 8px;
}

.callout {
    border-left: 3px solid var(--brand);
    background: rgba(109, 94, 252, 0.08);
    padding: 14px 18px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    color: #c7c0ff;
}

.steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 14px;
    text-align: left;
}

.steps li {
    counter-increment: step;
    display: flex;
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 18px;
}

.steps li::before {
    content: counter(step);
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
}

code {
    background: rgba(255, 255, 255, 0.07);
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.88em;
}