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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #090909;
    color: #f5f5f5;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

section {
    padding: 120px 0;
}

h1,
h2 {
    font-weight: 700;
    letter-spacing: -1px;
}

h1{
    font-size: clamp(2.5rem, 8vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 25px;
}

p {
    color: #b4b4b4;
    font-size: 1.1rem;
    max-width: 700px;
}

@media(max-width:768px){

    section{
        padding:90px 0;
    }

    h1{
        font-size: 3rem;
        line-height: 1.15;
        max-width: 100%;
    }

    p{
        font-size:1rem;
    }

}

.highlight {
    background: linear-gradient(90deg,
            #833AB4,
            #C13584,
            #E1306C,
            #FD1D1D,
            #F77737,
            #dc8813);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at center,
            rgba(193, 53, 132, .25),
            rgba(131, 58, 180, .15),
            transparent 70%);
}

.btn {
    display: inline-block;
    margin-top: 35px;
    padding: 16px 34px;
    border-radius: 10px;
    text-decoration: none;
    background: linear-gradient(135deg,
            #833AB4,
            #C13584,
            #E1306C,
            #F77737);
    color: #fff;
    font-weight: 700;
    transition: .3s;
}

.btn:hover {
    transform: translateY(-3px);
}

.grid {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background: #111;
    border: 1px solid #1f1f1f;
    border-radius: 14px;
    padding: 30px;
    transition: .3s;
}

.card:hover {
    border-color: #E1306C;
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(225, 48, 108, .25);
}

.center {
    text-align: center;
}

.center p {
    margin: auto;
}

.cta {
    background:
        radial-gradient(circle at center,
            rgba(225, 48, 108, .18),
            rgba(131, 58, 180, .12),
            transparent 70%);
}

.cta h2 {
    max-width: 900px;
    margin: auto;
    line-height: 1.15;
}

footer {
    border-top: 1px solid #1f1f1f;
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

@media(max-width:768px) {

    section {
        padding: 90px 0;
    }

    h1 {
        line-height: 1.1;
    }

    p {
        font-size: 1rem;
    }

    @media(max-width:768px){

    .container{
        width: 92%;
    }

}

    .fade-in {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.show {
        opacity: 1;
        transform: translateY(0);
    }

    .card:nth-child(1) {
        transition-delay: .1s;
    }

    .card:nth-child(2) {
        transition-delay: .2s;
    }

    .card:nth-child(3) {
        transition-delay: .3s;
    }
}