:root {
    --bg: #020617;
    --bg-alt: #02091c;
    --card: #020617;
    --border: #111827;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --accent: #2563eb;
    --accent-soft: rgba(37,99,235,0.12);
    --accent-strong: #1e40af;
    --danger: #f97373;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #0b1120, #020617 55%);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

main, footer {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

header {
    width: 100%;
    padding: 0; /* header zelf geen container padding */
}

/* Topbar / nav */

.topbar {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(96,165,250,0.6);
    background: radial-gradient(circle at 30% 30%, #60a5fa, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.logo-text {
    font-weight: 600;
    letter-spacing: 0.03em;
}

nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
}

    nav a {
        color: var(--muted);
    }

        nav a:hover {
            color: var(--text);
        }

.nav-cta {
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.35);
    font-size: 0.85rem;
}

    .nav-cta:hover {
        border-color: rgba(148,163,184,0.6);
    }

/* Hero */

.hero {
    padding: 3rem 0 4rem;
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 900px) {
    .hero {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
        align-items: center;
    }
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.8);
    border: 1px solid rgba(55,65,81,0.7);
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

    .hero-pill span {
        display: inline-flex;
        width: 6px;
        height: 6px;
        border-radius: 999px;
        background: #22c55e;
    }

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

    .hero-title span {
        background: linear-gradient(120deg, #60a5fa, #a855f7);
        -webkit-background-clip: text;
        color: transparent;
    }

.hero-sub {
    font-size: 1.02rem;
    color: var(--muted);
    max-width: 32rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
}

    .btn-primary:hover {
        filter: brightness(1.05);
    }

.btn-ghost {
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.5);
    background: rgba(15,23,42,0.7);
    color: var(--muted);
    font-size: 0.9rem;
    cursor: pointer;
}

    .btn-ghost:hover {
        border-color: rgba(148,163,184,0.8);
        color: var(--text);
    }

.hero-footnote {
    font-size: 0.78rem;
    color: var(--muted);
}

    .hero-footnote b {
        color: #e5e7eb;
    }

/* Hero card */

.hero-card {
    background: radial-gradient(circle at top, rgba(37,99,235,0.18), rgba(15,23,42,1));
    border-radius: 1.25rem;
    border: 1px solid rgba(55,65,81,0.8);
    padding: 1.4rem 1.4rem 1.1rem;
    box-shadow: 0 18px 45px rgba(15,23,42,0.7);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-card-title {
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-card-tag {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.5);
    color: var(--muted);
}

.hero-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    font-size: 0.78rem;
}

.hero-card-item {
    background: rgba(15,23,42,0.9);
    border-radius: 0.75rem;
    border: 1px solid rgba(31,41,55,0.9);
    padding: 0.65rem 0.7rem;
}

.hero-card-label {
    color: var(--muted);
    font-size: 0.75rem;
    margin-bottom: 0.15rem;
}

.hero-card-value {
    font-weight: 600;
    font-size: 0.8rem;
}

.hero-card-foot {
    margin-top: 0.7rem;
    padding-top: 0.6rem;
    border-top: 1px dashed rgba(75,85,99,0.7);
    font-size: 0.75rem;
    color: var(--muted);
}

    .hero-card-foot span {
        color: #a5b4fc;
    }

/* Sections */

main section {
    padding: 2.5rem 0;
}

.section-title {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}

.section-sub {
    font-size: 0.96rem;
    color: var(--muted);
    max-width: 38rem;
}

.cols {
    display: grid;
    gap: 1.4rem;
    margin-top: 1.4rem;
}

@media (min-width: 900px) {
    .cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.card {
    background: linear-gradient(145deg, rgba(15,23,42,0.95), rgba(2,6,23,1));
    border-radius: 1rem;
    border: 1px solid var(--border);
    padding: 1.15rem 1.25rem;
}

    .card h3 {
        font-size: 0.98rem;
        margin-bottom: 0.3rem;
    }

    .card p {
        font-size: 0.88rem;
        color: var(--muted);
        margin-bottom: 0.4rem;
    }

.pill-label {
    display: inline-flex;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    background: rgba(15,23,42,1);
    border: 1px solid rgba(55,65,81,0.8);
    color: var(--muted);
    margin-bottom: 0.6rem;
}

ul {
    padding-left: 1.1rem;
    margin: 0.3rem 0;
}

li {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 0.15rem;
}

/* Integrations */

.integrations-grid {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.3rem;
}

@media (min-width: 700px) {
    .integrations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.integration-group {
    background: rgba(15,23,42,0.9);
    border-radius: 0.9rem;
    border: 1px solid rgba(31,41,55,0.9);
    padding: 0.9rem 1rem;
}

    .integration-group h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .integration-group small {
        font-size: 0.75rem;
        color: var(--muted);
    }

.integration-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.5rem;
}

.integration-tag {
    font-size: 0.78rem;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(75,85,99,0.9);
    color: var(--muted);
}

/* CTA */

.cta {
    background: radial-gradient(circle at top left, rgba(37,99,235,0.25), rgba(15,23,42,1));
    border-radius: 1.25rem;
    border: 1px solid rgba(55,65,81,0.9);
    padding: 1.6rem 1.5rem;
    margin-bottom: 3rem;
}

    .cta h2 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }

    .cta p {
        font-size: 0.9rem;
        color: var(--muted);
        margin-bottom: 1rem;
    }

.cta-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}

    .cta-form input[type="email"] {
        padding: 0.7rem 0.9rem;
        border-radius: 999px;
        border: 1px solid rgba(75,85,99,0.9);
        background: rgba(15,23,42,1);
        color: var(--text);
        min-width: 240px;
        font-size: 0.9rem;
    }

    .cta-form input::placeholder {
        color: #6b7280;
    }

.cta-caption {
    font-size: 0.76rem;
    color: var(--muted);
    margin-top: 0.4rem;
}

/* Footer */

footer {
    border-top: 1px solid rgba(31,41,55,0.9);
    padding: 1.5rem 1.5rem 2rem;
    font-size: 0.78rem;
    color: var(--muted);
}

.footer-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

    .footer-links a {
        color: var(--muted);
    }

        .footer-links a:hover {
            color: var(--text);
        }

/* MOBILE NAVIGATION */

.mobile-menu-btn {
    display: none;
    font-size: 1.65rem;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
}

nav.nav-desktop {
    display: flex;
}

/* Desktop vs mobiel */
@media (max-width: 860px) {
    nav.nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 900;
}

    .mobile-menu-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }

/* Mobile menu panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 68%;
    max-width: 320px;
    height: 100vh;
    background: #020617;
    border-left: 1px solid rgba(75, 85, 99, 0.4);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    font-size: 1.05rem;
    transition: right 0.35s ease;
    z-index: 999;
}

    .mobile-menu.open {
        right: 0;
    }

    .mobile-menu a {
        color: var(--text);
        text-decoration: none;
    }

        .mobile-menu a:hover {
            color: var(--accent);
        }

.mobile-menu-close {
    font-size: 2rem;
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    margin-bottom: 1rem;
}

/* Sticky header */

header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: linear-gradient( to bottom, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.92) );
    border-bottom: 1px solid rgba(15, 23, 42, 0.8);
}

/* Mobile fine-tuning */

@media (max-width: 700px) {
    .topbar {
        padding: 0.9rem 0;
    }

    main section {
        padding: 2rem 0;
    }

    .hero {
        padding: 2.5rem 0 3rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-sub {
        font-size: 0.96rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-actions .btn-primary,
        .hero-actions .btn-ghost {
            width: 100%;
            justify-content: center;
            text-align: center;
        }

    .cta-form {
        flex-direction: column;
        align-items: stretch;
    }

        .cta-form input[type="email"],
        .cta-form .btn-primary {
            width: 100%;
        }
}
.consent {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.6rem;
    width: 100%;
}

    .consent input {
        transform: translateY(1px);
    }
.hp {
    display: none;
}
/* ROADMAP */

.roadmap {
    display: grid;
    gap: 1.2rem;
    margin-top: 1.4rem;
}

@media (min-width: 900px) {
    .roadmap {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }
}
@media (min-width: 861px) {
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}
.roadmap-card {
    background: linear-gradient(145deg, rgba(15,23,42,0.95), rgba(2,6,23,1));
    border-radius: 1rem;
    border: 1px solid var(--border);
    padding: 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.roadmap-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    gap: 0.75rem;
}

.roadmap-phase {
    display: inline-flex;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.72rem;
    background: rgba(15,23,42,1);
    border: 1px solid rgba(55,65,81,0.8);
    color: var(--muted);
    white-space: nowrap;
}

.roadmap-status {
    display: inline-flex;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.72rem;
    border: 1px solid rgba(75,85,99,0.9);
    color: var(--muted);
    white-space: nowrap;
}

    .roadmap-status.is-building {
        border-color: rgba(34,197,94,0.6);
        color: rgba(34,197,94,0.95);
        background: rgba(34,197,94,0.08);
    }

    .roadmap-status.is-planned {
        border-color: rgba(96,165,250,0.6);
        color: rgba(96,165,250,0.95);
        background: rgba(96,165,250,0.08);
    }

    .roadmap-status.is-future {
        border-color: rgba(168,85,247,0.6);
        color: rgba(168,85,247,0.95);
        background: rgba(168,85,247,0.08);
    }

.roadmap-card h3 {
    font-size: 1rem;
    margin: 0 0 0.35rem;
}

.roadmap-card p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0 0 0.75rem;
}

.roadmap-list {
    padding-left: 1.1rem;
    margin: 0 0 0.9rem;
}

    .roadmap-list li {
        font-size: 0.86rem;
        color: var(--muted);
        margin-bottom: 0.3rem;
    }

.roadmap-goal {
    margin-top: auto;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(75,85,99,0.7);
    font-size: 0.85rem;
    color: var(--muted);
}

.roadmap-footer {
    margin-top: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

    .roadmap-footer h3 {
        margin: 0;
    }

    .roadmap-footer p {
        margin: 0;
        flex: 1 1 320px;
    }
