* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    width: 100%;
    min-height: 100%;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: #fff;
    color: #1A1A1A;
    overflow-x: hidden;
}

.page {
    position: relative;
    display: flex;
    width: 100vw;
    min-height: 100svh;
    overflow: hidden;
    background: #fff;
}

.logo svg {
    width: 100%;
    height: auto;
    display: block;
}

.desktop-curve {
    display: none;
}

.content {
    position: relative;
    z-index: 10;
    flex: 1;
    min-height: calc(100svh - 112px);
    padding: 150px 32px 40px;
    display: flex;
}

.content-inner {
    width: 100%;
    max-width: 526px;
    animation: pageIn 800ms cubic-bezier(.16, 1, .3, 1) both;
}

.mobile-logo {
    width: 220px;
    margin-bottom: 36px;
}

h1 {
    margin: 0;
    max-width: 526px;
    font-size: 46px;
    line-height: 0.9;
    letter-spacing: -0.07em;
    font-weight: 500;
    color: #071A2B;
}

.intro-wrap {
    position: relative;
    margin-top: 32px;
    max-width: 526px;
}

.intro {
    position: relative;
    z-index: 10;
    margin: 0;
    font-size: 25px;
    line-height: 1.22;
    letter-spacing: -0.055em;
    font-weight: 200;
    color: #071A2B;
}

.contact {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: #77736D;
}

    .contact a {
        color: inherit;
        text-decoration: none;
        transition: color 180ms ease;
    }

        .contact a:hover {
            color: #8DD300;
        }

.contact-dot {
    display: none;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #8DD300;
}

.stripes {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 30;
    display: flex;
    height: 112px;
    flex-shrink: 0;
}

.desktop-logo,
.wave {
    display: none;
}

.stripe {
    position: relative;
    display: flex;
    flex: 1;
    height: 100%;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
}

.stripe-label-wrap {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
}

.stripe-label-mobile {
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28em;
}

.stripe-label-desktop {
    display: none;
}

.ventures {
    background: #071A2B;
}

.brands {
    background: #59D000;
}

.media {
    background: #D8FF3E;
}

.text-white {
    color: #fff;
}

.text-dark {
    color: #1A1A1A;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 640px) {
    h1 {
        font-size: 54px;
    }

    .intro {
        font-size: 30px;
    }

    .contact {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .contact-dot {
        display: block;
    }
}

@media (min-width: 1024px) {
    .page {
        height: 100vh;
    }

    .desktop-curve {
        pointer-events: none;
        display: block;
        position: absolute;
        left: 0;
        top: 170px;
        bottom: 0;
        z-index: 0;
        width: calc(100% - 336px + 1px);
        height: calc(100% - 170px);
    }

    .content {
        min-height: 0;
        height: 100%;
        padding: 170px 96px 40px;
    }

    .mobile-logo {
        display: none;
    }

    h1 {
        font-size: 76px;
    }

    .intro {
        font-size: 44px;
    }

    .stripes {
        position: relative;
        inset: auto;
        width: 336px;
        height: 100%;
    }

    .desktop-logo {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 20;
        display: flex;
        width: 336px;
        height: 170px;
        align-items: center;
        justify-content: center;
        padding: 0 50px;
    }

    .wave {
        pointer-events: none;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 10;
        display: block;
        width: 336px;
        height: 240px;
    }

    .stripe {
        width: 112px;
        flex: 0 0 112px;
    }

    .stripe-label-wrap {
        bottom: 30px;
        width: 20px;
        height: 150px;
    }

    .stripe-label-mobile {
        display: none;
    }

    .stripe-label-desktop {
        position: absolute;
        bottom: 0;
        left: 50%;
        display: block;
        transform: translateX(-50%) rotate(180deg);
        writing-mode: vertical-rl;
        text-orientation: mixed;
        white-space: nowrap;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.32em;
    }
}

@media (min-width: 1280px) {
    .content {
        padding-left: 128px;
        padding-right: 128px;
    }
}
