:root {
    --primary: #087f80;
    --primary-dark: #055f63;

    --cyan: #18a8cc;
    --green: #32d4aa;

    --text: #102d45;
    --text-soft: #5f7382;

    --surface: #ffffff;
    --surface-soft: #f4fbfc;

    --border: #d9e8eb;

    --shadow:
        0 16px 45px
        rgba(21, 61, 75, 0.08);
}


/*
|--------------------------------------------------------------------------
| Basis
|--------------------------------------------------------------------------
*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color:
        var(--text);

    background:
        var(--surface);
}

a {
    color: inherit;
}

.site-container {
    width:
        min(
            calc(100% - 40px),
            1180px
        );

    margin:
        0 auto;
}


/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

.site-header {
    position: sticky;
    top: 0;

    z-index: 100;

    background:
        rgba(
            255,
            255,
            255,
            0.96
        );

    backdrop-filter:
        blur(14px);

    border-bottom:
        1px solid
        rgba(
            217,
            232,
            235,
            0.8
        );
}

.header-inner {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.site-brand {
    display: flex;
    align-items: center;

    gap: 12px;

    text-decoration: none;
}

.site-logo {
    width: 52px;
    height: 52px;

    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    color:
        var(--text);

    font-size: 22px;
    font-weight: 850;
}

.brand-text span {
    margin-top: 1px;

    color:
        var(--primary);

    font-size: 14px;
}

.site-nav {
    display: flex;
    align-items: center;

    gap: 30px;
}

.site-nav > a {
    color:
        var(--text);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.site-nav > a:hover {
    color:
        var(--primary);
}

.site-nav .nav-login {
    min-height: 45px;

    padding:
        0 20px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #098d8c,
            #00aa98
        );

    color:
        #ffffff;
}

.site-nav .nav-login:hover {
    color:
        #ffffff;

    background:
        var(--primary-dark);
}

.nav-login-icon {
    font-size: 10px;
}


/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.hero {
    position: relative;

    overflow: hidden;

    padding:
        78px 0 70px;

    background:
        linear-gradient(
            110deg,
            #eafafa 0%,
            #f4fcfd 48%,
            #e5f8fa 100%
        );
}

.hero-decoration {
    position: absolute;

    border-radius: 50%;

    opacity: 0.42;

    pointer-events: none;
}

.hero-decoration-one {
    width: 170px;
    height: 170px;

    left: -80px;
    top: 110px;

    background:
        #a8eddc;
}

.hero-decoration-two {
    width: 120px;
    height: 120px;

    right: 42%;
    top: 65px;

    background:
        #c6f2ed;
}

.hero-decoration-three {
    width: 145px;
    height: 145px;

    right: -35px;
    top: 130px;

    background:
        #b7eeee;
}

.hero-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 0.95fr);

    align-items: center;

    gap: 66px;
}

.hero-label,
.section-label,
.tech-label {
    display: inline-block;

    margin-bottom: 10px;

    color:
        var(--primary);

    font-size: 13px;
    font-weight: 900;

    letter-spacing:
        0.18em;

    text-transform: uppercase;
}

.hero h1 {
    max-width: 650px;

    margin:
        0 0 18px;

    font-size:
        clamp(
            42px,
            5.2vw,
            66px
        );

    line-height: 1.05;

    letter-spacing:
        -0.045em;
}

.hero-content > p {
    max-width: 630px;

    margin: 0;

    color:
        var(--text-soft);

    font-size: 19px;

    line-height: 1.62;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 28px;
}

.button {
    min-height: 50px;

    padding:
        0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border:
        1px solid
        var(--border);

    border-radius: 14px;

    font-size: 15px;
    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 6px 18px
        rgba(20, 80, 85, 0.06);
}

.button-primary {
    background:
        linear-gradient(
            135deg,
            #0a8e8e,
            #08ad9e
        );

    border-color:
        transparent;

    color:
        #ffffff;
}

.button-primary:hover {
    background:
        var(--primary-dark);
}

.button-light {
    background:
        #ffffff;
}

.button-light:hover {
    background:
        #f6fbfb;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;

    gap:
        15px 24px;

    margin-top: 30px;
}

.hero-point {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color:
        var(--text-soft);

    font-size: 13px;
    font-weight: 650;
}

.hero-point span {
    width: 20px;
    height: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--primary);

    color:
        #ffffff;

    font-size: 11px;
}


/*
|--------------------------------------------------------------------------
| Device preview
|--------------------------------------------------------------------------
*/

.hero-visual {
    position: relative;

    display: flex;
    justify-content: center;
}

.device-preview {
    position: relative;

    width: 100%;
    max-width: 500px;

    padding: 14px;

    background:
        linear-gradient(
            145deg,
            #26333b,
            #111b22
        );

    border:
        3px solid
        #46525a;

    border-radius:
        34px;

    box-shadow:
        0 34px 70px
        rgba(
            17,
            45,
            58,
            0.25
        );

    transform:
        rotate(3deg);
}

.device-preview-camera {
    position: absolute;

    top: 7px;
    left: 50%;

    width: 6px;
    height: 6px;

    transform:
        translateX(-50%);

    background:
        #66757d;

    border-radius: 50%;
}

.device-preview-screen {
    min-height: 355px;

    padding: 17px;

    background:
        linear-gradient(
            145deg,
            #087e89,
            #057578
        );

    border-radius:
        22px;
}

.preview-topbar {
    min-height: 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color:
        #ffffff;

    font-weight: 800;
}

.preview-brand img {
    width: 38px;
    height: 38px;

    object-fit: contain;
}

.preview-sentence {
    min-height: 58px;

    padding:
        0 16px;

    display: flex;
    align-items: center;

    margin-bottom: 14px;

    border-radius: 12px;

    background:
        #ffffff;

    color:
        #83969c;

    font-size: 14px;
    font-style: italic;
}

.preview-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 10px;
}

.preview-card {
    min-height: 105px;

    padding: 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 7px;

    background:
        #ffffff;

    border-radius:
        12px;

    color:
        var(--text);

    text-align: center;

    box-shadow:
        0 5px 14px
        rgba(
            0,
            0,
            0,
            0.08
        );
}

.preview-icon {
    font-size: 27px;
}

.preview-card strong {
    font-size: 13px;
}

.hero-note {
    position: absolute;

    right: -15px;
    bottom: 4px;

    width: 125px;

    padding:
        20px 15px;

    display: flex;
    flex-direction: column;

    gap: 4px;

    background:
        #c9f5dd;

    border-radius:
        28px 28px 28px 8px;

    color:
        #21594f;

    font-size: 13px;

    transform:
        rotate(-5deg);

    box-shadow:
        var(--shadow);
}

.hero-note strong {
    font-size: 15px;
}


/*
|--------------------------------------------------------------------------
| Algemene secties
|--------------------------------------------------------------------------
*/

.section {
    padding:
        78px 0;
}

.section-heading {
    max-width:
        620px;
}

.section-heading-wide {
    max-width:
        760px;

    margin-bottom: 34px;
}

.section-heading h2 {
    margin:
        0 0 14px;

    font-size:
        clamp(
            32px,
            4vw,
            46px
        );

    line-height: 1.08;

    letter-spacing:
        -0.035em;
}

.section-heading p {
    margin: 0;

    color:
        var(--text-soft);

    font-size: 17px;

    line-height: 1.65;
}

.inline-link {
    margin-top: 22px;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding:
        11px 16px;

    background:
        #e4f7f5;

    border-radius:
        12px;

    color:
        var(--primary);

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;
}


/*
|--------------------------------------------------------------------------
| Project
|--------------------------------------------------------------------------
*/

.project-layout {
    display: grid;

    grid-template-columns:
        1fr
        0.9fr;

    gap: 65px;

    align-items: center;
}

.project-features {
    padding:
        18px;

    display: flex;
    flex-direction: column;

    gap: 9px;

    border:
        1px solid
        var(--border);

    border-radius:
        18px;

    background:
        #ffffff;

    box-shadow:
        var(--shadow);
}

.project-feature {
    padding:
        12px 14px;

    display: flex;
    align-items: center;

    gap: 16px;
}

.project-feature-icon {
    width: 58px;
    height: 58px;

    flex:
        0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        #e0f5f4;

    font-size: 24px;
}

.project-feature h3 {
    margin:
        0 0 3px;

    font-size: 15px;
}

.project-feature p {
    margin: 0;

    color:
        var(--text-soft);

    font-size: 13px;

    line-height: 1.5;
}


/*
|--------------------------------------------------------------------------
| Mogelijkheden
|--------------------------------------------------------------------------
*/

.possibilities-section {
    background:
        linear-gradient(
            180deg,
            #f7fcfd,
            #edf9fb
        );
}

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 18px;
}

.feature-card {
    min-height: 230px;

    padding: 24px;

    border:
        1px solid
        var(--border);

    border-radius:
        18px;

    background:
        #ffffff;

    box-shadow:
        0 8px 25px
        rgba(
            30,
            70,
            80,
            0.05
        );
}

.feature-icon {
    width: 56px;
    height: 56px;

    margin-bottom: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 22px;
    font-weight: 850;
}

.feature-card h3 {
    margin:
        0 0 8px;

    font-size: 20px;
}

.feature-card p {
    margin: 0;

    color:
        var(--text-soft);

    font-size: 14px;

    line-height: 1.6;
}

.feature-blue {
    background:
        #f6fbff;
}

.feature-blue .feature-icon {
    background:
        #bfeaff;

    color:
        #0076b0;
}

.feature-green {
    background:
        #f5fff9;
}

.feature-green .feature-icon {
    background:
        #c9f1d6;

    color:
        #158653;
}

.feature-yellow {
    background:
        #fffaf0;
}

.feature-yellow .feature-icon {
    background:
        #ffe1a6;

    color:
        #b97600;
}

.feature-purple {
    background:
        #fcf8ff;
}

.feature-purple .feature-icon {
    background:
        #dfc8ff;

    color:
        #7c42b5;
}


/*
|--------------------------------------------------------------------------
| Tech&Bytes
|--------------------------------------------------------------------------
*/

.tech-section {
    padding:
        42px 0;

    background:
        linear-gradient(
            110deg,
            #075c67,
            #007d80,
            #087478
        );

    color:
        #ffffff;
}

.tech-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.tech-content {
    max-width: 690px;
}

.tech-label {
    color:
        #9ce8df;
}

.tech-content h2 {
    margin:
        0 0 10px;

    font-size: 34px;
}

.tech-content p {
    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            0.82
        );

    line-height: 1.65;
}

.tech-brand {
    min-width: 320px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 18px;
}

.tech-logo {
    width: 95px;
    height: 95px;

    object-fit: contain;
}

.tech-brand-text {
    display: flex;
    flex-direction: column;
}

.tech-brand-text strong {
    font-size: 30px;
}

.tech-brand-text span {
    margin-top: 3px;

    color:
        rgba(
            255,
            255,
            255,
            0.82
        );

    font-size: 14px;
}


/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/

.site-footer {
    padding:
        22px 0;

    border-top:
        1px solid
        var(--border);

    background:
        #ffffff;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-left,
.footer-links {
    display: flex;
    align-items: center;

    gap: 12px;
}

.footer-left {
    color:
        var(--text-soft);

    font-size: 12px;
}

.footer-links a {
    color:
        var(--text-soft);

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}

.footer-links a:hover {
    color:
        var(--primary);
}


/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 950px) {

    .hero-grid,
    .project-layout {
        grid-template-columns:
            1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content > p,
    .section-heading {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-points {
        justify-content: center;
    }

    .device-preview {
        max-width: 560px;
    }

    .feature-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .tech-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .tech-brand {
        min-width: 0;

        justify-content: flex-start;
    }
}


@media (max-width: 700px) {

    .site-container {
        width:
            min(
                calc(100% - 28px),
                1180px
            );
    }

    .site-nav > a:not(.nav-login) {
        display: none;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .brand-text span {
        font-size: 12px;
    }

    .site-logo {
        width: 44px;
        height: 44px;
    }

    .hero {
        padding:
            55px 0;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-content > p {
        font-size: 16px;
    }

    .device-preview {
        transform: none;
    }

    .hero-note {
        display: none;
    }

    .preview-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .feature-grid {
        grid-template-columns:
            1fr;
    }

    .section {
        padding:
            60px 0;
    }

    .footer-inner,
    .footer-left,
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-divider {
        display: none;
    }

    .tech-brand-text strong {
        font-size: 24px;
    }
}

/*
|--------------------------------------------------------------------------
| KOMI ontwikkelstatus
|--------------------------------------------------------------------------
*/

.development-banner {
    padding:
        12px 0;

    background:
        #fff8df;

    border-bottom:
        1px solid
        #f2dda0;
}

.development-banner-inner {
    display: flex;
    align-items: center;

    gap: 14px;
}

.development-status-icon {
    width: 44px;
    height: 44px;

    flex:
        0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        #ffffff;

    border-radius:
        12px;

    font-size: 21px;
}

.development-status-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 2px;
}

.development-status-content strong {
    color:
        #463a1b;

    font-size: 15px;
}

.development-status-content span {
    color:
        #766538;

    font-size: 13px;

    line-height: 1.45;
}

.development-status-badge {
    flex-shrink: 0;

    padding:
        7px 12px;

    background:
        #ffc857;

    color:
        #443515;

    border-radius:
        999px;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing:
        0.04em;
}

@media (max-width: 700px) {

    .development-banner-inner {
        align-items:
            flex-start;

        flex-wrap:
            wrap;
    }

    .development-status-content {
        min-width:
            calc(
                100% - 60px
            );
    }

    .development-status-badge {
        margin-left:
            58px;
    }
}