* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    width: 100%;
    height: 100vh;
    background: #050505;
    color: white;
    font-family: "Manrope", sans-serif;
    overflow: hidden;
    position: relative;
}

.hero-icon {
    position: absolute;
    right: 10vw;
    top: 50%;
    max-width: 40vw;
    transform: translateY(-50%);
    z-index: 1;
}

.glow {
    position: absolute;
    width: 520px;
    height: 520px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 140, 255, .75), rgba(79, 140, 255, .25) 38%, transparent 72%);
    filter: blur(75px);
    z-index: 0;
}

.icon {
    position: relative;
    width: clamp(220px, 20vw, 340px);
    height: clamp(220px, 20vw, 340px);
    border-radius: 22.37%;
    object-fit: cover;
    z-index: 1;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}

.container {
    position: relative;
    z-index: 2;
    width: min(600px, 45vw);
    height: 100vh;
    margin-left: 10vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: clamp(4rem, 9vw, 7rem);
    font-weight: 800;
    letter-spacing: -.07em;
    line-height: .95;
}

.subtitle {
    margin-top: 30px;
    max-width: 520px;
    color: #b8b8b8;
    font-size: 1.25rem;
    line-height: 1.7;
}

.links {
    margin-top: 50px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.button {
    position: relative;
    padding: 15px 26px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
}

.primary {
    background: white;
    color: black;
}

.secondary {
    color: white;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .04);
    transition: .25s;
}

.secondary:hover {
    background: rgba(255, 255, 255, .1);
}

.badge {
    position: absolute;
    top: -14px;
    right: -28px;
    padding: 5px 12px;
    border-radius: 10px;
    background: #4f8cff;
    color: white;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .02em;
    transform: rotate(8deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}

@media (max-width: 1200px) {
    .hero-icon {
        right: 3vw;
    }

    .container {
        width: 50vw;
    }

    .icon {
        width: 270px;
        height: 270px;
    }

    .glow {
        width: 430px;
        height: 430px;
    }
}

@media (max-width: 900px) {
    .hero-icon {
        right: -100px;
        opacity: .18;
    }

    .container {
        width: auto;
        max-width: 600px;
        margin-left: 32px;
        margin-right: 32px;
    }
}

@media (max-width: 600px) {
    .hero-icon {
        display: none;
    }

    .container {
        margin-left: 24px;
        margin-right: 24px;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .links {
        flex-direction: column;
        align-items: flex-start;
    }

    .button {
        padding: 14px 22px;
    }
}