:root {
    --navy-950: #050d18;
    --navy-900: #07111f;
    --navy-850: #0a1c32;
    --navy-800: #08244a;
    --cream: #fff8ed;
    --cream-deep: #f5ead9;
    --white: #ffffff;
    --turquoise: #00d4c7;
    --turquoise-dark: #008f86;
    --coral: #ff5a52;
    --yellow: #ffc229;
    --ink: #0b2344;
    --muted: #5f7083;
    --border: rgba(8, 36, 74, 0.16);
    --shadow: 0 24px 80px rgba(3, 13, 27, 0.24);
    --content-width: 1180px;
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--cream);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--cream);
}

img,
svg {
    display: block;
}

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 100;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    border-radius: 0.5rem;
    color: var(--navy-950);
    background: var(--white);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.skip-link:focus-visible {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0.8rem 1rem;
    overflow: visible;
    clip: auto;
    clip-path: none;
}

.hero {
    position: relative;
    min-height: 100svh;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.hero__image,
.hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image {
    z-index: -3;
    object-fit: cover;
    object-position: 58% center;
    animation: hero-image-in 1.4s cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.hero__overlay {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(5, 13, 24, 0.98) 0%, rgba(5, 13, 24, 0.93) 29%, rgba(5, 13, 24, 0.55) 57%, rgba(5, 13, 24, 0.18) 100%),
        linear-gradient(180deg, rgba(5, 13, 24, 0.12) 40%, rgba(5, 13, 24, 0.84) 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, black, transparent 58%);
}

.hero__inner {
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: min(100% - 3rem, var(--content-width));
    min-height: 100svh;
    margin: 0 auto;
    padding: 1.75rem 0 1.5rem;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    animation: hero-item-in 700ms 80ms cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.site-header__logo {
    width: clamp(12rem, 19vw, 17rem);
    height: auto;
}

.site-header__status {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-header__status-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--turquoise);
    box-shadow: 0 0 0 0.35rem rgba(0, 212, 199, 0.12);
}

.hero__content {
    align-self: center;
    width: 100%;
    padding: 4rem 0 2.5rem;
}

.eyebrow,
.section-kicker {
    margin: 0 0 1.1rem;
    color: var(--turquoise);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: hero-item-in 650ms 180ms cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.eyebrow > span {
    width: 2.25rem;
    height: 0.18rem;
    border-radius: 999px;
    background: var(--coral);
}

.hero h1 {
    max-width: none;
    margin: 0;
    font-size: clamp(3.5rem, 6.2vw, 6.4rem);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.92;
    text-wrap: balance;
    animation: hero-item-in 760ms 260ms cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.hero h1 span {
    display: block;
    color: var(--turquoise);
}

.hero__lead {
    max-width: 44rem;
    margin: 1.8rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-weight: 500;
    line-height: 1.65;
    animation: hero-item-in 700ms 360ms cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.2rem;
    animation: hero-item-in 700ms 460ms cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.facebook-button {
    display: inline-flex;
    flex: none;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 3.75rem;
    padding: 0.85rem 1.25rem;
    border: 2px solid transparent;
    border-radius: 0.75rem;
    color: var(--navy-950);
    background: var(--turquoise);
    box-shadow: 0 16px 32px rgba(0, 212, 199, 0.2);
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.facebook-button > svg:first-child {
    width: 1.35rem;
    height: 1.35rem;
}

.facebook-button__arrow {
    width: 1.15rem;
    height: 1.15rem;
    margin-left: 0.15rem;
    transition: transform 180ms ease;
}

.facebook-button:hover {
    background: var(--white);
    box-shadow: 0 20px 42px rgba(0, 212, 199, 0.3);
    transform: translateY(-3px);
}

.facebook-button:hover .facebook-button__arrow {
    transform: translateX(3px);
}

.facebook-button:focus-visible,
.scroll-cue:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

.free-note {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    max-width: 15rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    line-height: 1.45;
}

.free-note svg {
    flex: 0 0 auto;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.08rem;
    color: var(--turquoise);
}

.free-note strong {
    color: var(--white);
}

.scroll-cue {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 0.65rem;
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    animation: hero-item-in 700ms 620ms cubic-bezier(0.2, 0.65, 0.2, 1) both;
    transition: color 160ms ease;
}

.scroll-cue svg {
    width: 1.1rem;
    height: 1.1rem;
    transition: transform 160ms ease;
}

.scroll-cue:hover {
    color: var(--white);
}

.scroll-cue:hover svg {
    transform: translateY(3px);
}

.section {
    position: relative;
    padding: clamp(5.5rem, 9vw, 9rem) 0;
}

.section__inner {
    width: min(100% - 3rem, var(--content-width));
    margin: 0 auto;
}

.workflow {
    background:
        radial-gradient(circle at 88% 8%, rgba(0, 212, 199, 0.11), transparent 24rem),
        var(--cream);
}

.section-heading {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 58rem;
    margin: 0 auto;
    text-align: center;
}

.section-heading .section-kicker {
    margin-bottom: 1.2rem;
}

.section-heading h2,
.audience h2,
.updates h2 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.98;
    text-wrap: balance;
}

.section-heading h2 {
    max-width: 17ch;
}

.section-heading > p:last-child,
.updates__copy > p:last-child {
    max-width: 34rem;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.75;
}

.section-heading > p:last-child {
    max-width: 42rem;
    margin: 1.5rem auto 0;
}

.workflow__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: clamp(4rem, 7vw, 6.5rem) 0 0;
    padding: 0;
    border-top: 1px solid var(--border);
    list-style: none;
}

.workflow__step {
    display: grid;
    gap: 3.25rem;
    padding: 2rem clamp(1.4rem, 3vw, 2.5rem) 0;
    border-left: 1px solid var(--border);
}

.workflow__step:first-child {
    padding-left: 0;
    border-left: 0;
}

.workflow__step:last-child {
    padding-right: 0;
}

.workflow__number {
    color: var(--coral);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.workflow__step h3 {
    margin: 0 0 0.85rem;
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.025em;
}

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

.possibilities {
    isolation: isolate;
    overflow: hidden;
    background: var(--white);
}

.possibilities::before {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: -0.05em;
    content: "∞";
    color: var(--turquoise);
    font-size: clamp(22rem, 42vw, 42rem);
    font-weight: 900;
    line-height: 0.6;
    opacity: 0.055;
    transform: translateY(-48%);
}

.possibilities__inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: clamp(3.5rem, 6vw, 5.5rem);
}

.possibilities__copy {
    max-width: 62rem;
    text-align: center;
}

.possibilities h2 {
    max-width: 18ch;
    margin: 0;
    margin-inline: auto;
    font-size: clamp(2.8rem, 5.5vw, 5.3rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.94;
    text-wrap: balance;
}

.possibilities__copy > p:last-child {
    max-width: 46rem;
    margin: 1.75rem auto 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.75;
}

.possibilities__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    list-style: none;
}

.possibilities__list li {
    padding: 1.8rem clamp(1.5rem, 3vw, 2.75rem);
    border-left: 1px solid var(--border);
}

.possibilities__list li:first-child {
    padding-left: 0;
    border-left: 0;
}

.possibilities__list li:last-child {
    padding-right: 0;
}

.possibilities__format {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--turquoise-dark);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.possibilities__list p {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 750;
    line-height: 1.65;
}

.audience {
    overflow: hidden;
    color: var(--white);
    background: var(--navy-900);
}

.audience::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(90deg, transparent, black 48%, transparent);
}

.audience__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.audience__glow--one {
    top: -12rem;
    right: -8rem;
    width: 34rem;
    height: 34rem;
    background: rgba(0, 212, 199, 0.14);
}

.audience__glow--two {
    bottom: -10rem;
    left: 33%;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 90, 82, 0.1);
}

.audience__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(3rem, 8vw, 8rem);
    align-items: end;
}

.bingo-balls {
    position: fixed;
    z-index: 30;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 600ms ease;
}

.bingo-balls.is-ready {
    opacity: 1;
}

.bingo-balls canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.section-kicker--light {
    color: var(--turquoise);
}

.audience__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    list-style: none;
}

.audience__list li {
    position: relative;
    padding: 1.15rem 0 1.15rem 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 800;
}

.audience__list li::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    content: "";
    background: var(--turquoise);
    transform: translateY(-50%);
}

.updates {
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 52%),
        var(--turquoise);
}

.updates::before {
    position: absolute;
    right: -9rem;
    bottom: -12rem;
    width: 31rem;
    height: 31rem;
    border: 5.5rem solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    content: "";
}

.updates::after {
    position: absolute;
    top: -10rem;
    left: -8rem;
    width: 24rem;
    height: 24rem;
    border: 4.5rem solid rgba(8, 36, 74, 0.06);
    border-radius: 50%;
    content: "";
}

.updates__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2.25rem;
    text-align: center;
}

.updates .section-kicker {
    color: var(--navy-800);
}

.updates__copy {
    max-width: 54rem;
}

.updates h2 {
    max-width: 15ch;
    margin-inline: auto;
}

.updates__copy > p:last-child {
    max-width: 38rem;
    margin: 1.5rem auto 0;
    color: rgba(5, 13, 24, 0.72);
}

.facebook-button--dark {
    color: var(--white);
    background: var(--navy-900);
    box-shadow: var(--shadow);
}

.facebook-button--dark:hover {
    color: var(--navy-950);
    background: var(--white);
}

.site-footer {
    padding: 2.5rem 0;
    color: rgba(255, 255, 255, 0.62);
    background: var(--navy-950);
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: min(100% - 3rem, var(--content-width));
    margin: 0 auto;
}

.site-footer img {
    width: 11rem;
    height: auto;
}

.site-footer p {
    margin: 0;
    font-size: 0.85rem;
}

.js .reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition:
        opacity 650ms ease,
        transform 650ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.js .workflow__step:nth-child(2) {
    transition-delay: 100ms;
}

.js .workflow__step:nth-child(3) {
    transition-delay: 200ms;
}

@keyframes hero-image-in {
    from {
        opacity: 0.4;
        transform: scale(1.06);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes hero-item-in {
    from {
        opacity: 0;
        transform: translateY(1.5rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .hero__overlay {
        background:
            linear-gradient(90deg, rgba(5, 13, 24, 0.97) 0%, rgba(5, 13, 24, 0.88) 46%, rgba(5, 13, 24, 0.36) 100%),
            linear-gradient(180deg, rgba(5, 13, 24, 0.1) 25%, rgba(5, 13, 24, 0.88) 100%);
    }

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

    .section-heading,
    .audience__inner,
    .updates__inner {
        grid-template-columns: 1fr;
    }

    .possibilities__list {
        grid-template-columns: 1fr;
        border-bottom: 0;
    }

    .possibilities__list li,
    .possibilities__list li:first-child,
    .possibilities__list li:last-child {
        display: grid;
        grid-template-columns: 7.5rem minmax(0, 1fr);
        gap: 1.5rem;
        align-items: baseline;
        padding: 1.35rem 0;
        border-bottom: 1px solid var(--border);
        border-left: 0;
    }

    .possibilities__format {
        margin-bottom: 0;
    }

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

    .workflow__step,
    .workflow__step:first-child,
    .workflow__step:last-child {
        grid-template-columns: 3rem 1fr;
        gap: 1rem;
        padding: 1.75rem 0;
        border-bottom: 1px solid var(--border);
        border-left: 0;
    }

    .workflow__step:last-child {
        border-bottom: 0;
    }

    .updates__inner {
        align-items: center;
    }
}

@media (max-width: 640px) {
    .hero__image {
        object-position: 67% center;
    }

    .hero__overlay {
        background:
            linear-gradient(180deg, rgba(5, 13, 24, 0.72) 0%, rgba(5, 13, 24, 0.88) 37%, rgba(5, 13, 24, 0.98) 100%),
            linear-gradient(90deg, rgba(5, 13, 24, 0.92), rgba(5, 13, 24, 0.28));
    }

    .hero__inner,
    .section__inner,
    .site-footer__inner {
        width: min(100% - 2rem, var(--content-width));
    }

    .hero__inner {
        padding-top: 1.25rem;
    }

    .site-header__status {
        font-size: 0;
    }

    .site-header__status::after {
        content: "Binnenkort";
        font-size: 0.68rem;
    }

    .site-header__logo {
        width: 11.5rem;
    }

    .hero__content {
        align-self: center;
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: clamp(3.05rem, 15vw, 4.35rem);
        line-height: 0.94;
    }

    .hero__lead {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 1rem;
    }

    .facebook-button {
        width: 100%;
        padding-inline: 1rem;
        font-size: 0.88rem;
    }

    .free-note {
        max-width: none;
    }

    .scroll-cue {
        display: none;
    }

    .section {
        padding: 5.2rem 0;
    }

    .section-heading h2,
    .possibilities h2,
    .audience h2,
    .updates h2 {
        font-size: clamp(2.35rem, 12vw, 3.45rem);
    }

    .possibilities__inner {
        gap: 3.5rem;
    }

    .possibilities__list li,
    .possibilities__list li:first-child,
    .possibilities__list li:last-child {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.25rem 0;
    }

    .workflow__steps {
        margin-top: 3.5rem;
    }

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

    .updates::before {
        right: -18rem;
    }

    .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }

    .bingo-balls {
        display: none;
    }
}
