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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Poppins,sans-serif;
    background:#07111f;
    color:white;
    line-height:1.6;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top left,#3b82f640,transparent 45%),
    radial-gradient(circle at bottom right,#14b8a640,transparent 45%);
    z-index:-1;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 10%;
    backdrop-filter:blur(12px);
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(7,17,31,.75);
}

.logo{
    display:flex;
    align-items:center;
}

.logo a{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo img{
    height:70px;
    width:auto;
    display:block;
    object-fit:contain;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    transition:.25s;
}

nav a:hover{
    color:#60a5fa;
}

.hero{
    max-width:1100px;
    margin:auto;
    padding:90px 10%;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
    min-height:85vh;
}

.hero h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:25px;
}

.gradient{
    background:linear-gradient(90deg,#60a5fa,#34d399);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.introhead{
    font-size:30px;
    font-weight:600;
    margin-bottom:18px;
}

.tagline{
    font-size:24px;
    font-weight:500;
    margin-bottom:18px;
}

.hero p{
    font-size:18px;
    color:#cbd5e1;
    margin-bottom:40px;
}

.buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:16px 32px;
    border-radius:999px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    cursor:pointer;
}

.primary{
    background:linear-gradient(90deg,#2563eb,#10b981);
    color:white;
}

.secondary{
    border:1px solid rgba(255,255,255,.25);
    color:white;
}

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

.card{
    background:rgba(255,255,255,.06);
    padding:35px;
    border-radius:24px;
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.08);
}

.card h3{
    margin-bottom:18px;
}

.card ul{
    padding-left:20px;
    color:#d6d6d6;
}

.card p{
    color:#d6d6d6;
}

section{
    padding:90px 10%;
}

.section-title{
    font-size:42px;
    text-align:center;
    margin-bottom:20px;
}

.section-sub{
    text-align:center;
    color:#cbd5e1;
    margin-bottom:60px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.feature{
    background:rgba(255,255,255,.05);
    padding:30px;
    border-radius:20px;
    transition:.3s;
}

.feature:hover{
    transform:translateY(-6px);
}

.feature h3{
    margin-bottom:15px;
}

.feature p{
    color:#d6d6d6;
}

.feature a{
    color:#60a5fa;
    text-decoration:none;
    font-weight:600;
}

.feature a:hover{
    text-decoration:underline;
}

.form-wrapper{
    width:100%;
    max-width:900px;
    margin:auto;
    background:white;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 30px 70px rgba(0,0,0,.35);
}

.form-wrapper iframe{
    width:100%;
    min-height:900px;
    border:0;
    display:block;
}

input,
textarea,
select{
    width:100%;
    padding:14px;
    margin-bottom:20px;
    border-radius:10px;
    border:none;
    font-size:16px;
}

footer{
    padding:50px;
    text-align:center;
    color:#94a3b8;
}

footer img{
    height:60px;
    margin:20px auto;
    display:block;
}

footer p{
    margin-bottom:18px;
}

footer a{
    color:#94c5ff;
    text-decoration:none;
    margin:0 8px;
}

footer a:hover{
    text-decoration:underline;
}

.linkedin{
    display:inline-block;
    margin-top:18px;
    color:white;
    background:#0A66C2;
    text-decoration:none;
    padding:14px 28px;
    border-radius:999px;
    font-weight:600;
}

@media(max-width:900px){

    .logo img{
        height:56px;
    }

    .hero{
        grid-template-columns:1fr;
        text-align:center;
    }

    .buttons{
        justify-content:center;
    }

    .hero h1{
        font-size:42px;
    }

    nav{
        flex-direction:column;
        gap:20px;
    }

    nav div:last-child{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
    }

    nav a{
        margin:8px 12px;
    }
}

@media(max-width:768px){

    .form-wrapper iframe{
        min-height:1200px;
    }

    .section-title{
        font-size:34px;
    }

    .introhead{
        font-size:24px;
    }

    .tagline{
        font-size:20px;
    }
}
.edition-selector{
    display:flex;
    align-items:center;
    gap:24px;
    margin:16px 0 24px;
}

.edition-option{
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    user-select:none;
}

.edition-option input{
    margin:0;
    vertical-align:middle;
}