:root{
    --qb:#3a2d7d;
    --dp:#633a96;
    --orange:#f58232;
    --ice:#7ed3f0;
    --ink:#171232;
    --muted:#625d76;
    --line:#e8e5f2;
    --white:#fff
}
*{
    box-sizing:border-box
}
html{
    scroll-behavior:smooth
}
body{
    margin:0;
    min-height:100vh;
    background:#f8f7fc;
    color:var(--ink);
    font-family:Rubik,system-ui,sans-serif;
    overflow-x:hidden
}
.glow{
    position:fixed;
    border-radius:999px;
    filter:blur(90px);
    opacity:.18;
    pointer-events:none
}
.glow-a{
    width:430px;
    height:430px;
    background:var(--orange);
    top:-220px;
    right:-100px
}
.glow-b{
    width:520px;
    height:520px;
    background:var(--ice);
    bottom:-300px;
    left:-240px
}
main{
    width:min(1080px,calc(100% - 32px));
    margin:auto;
    padding:5px 0 28px
}
.hero{
    padding:0px 0 30px;
    position:relative
}
.logo{
    width:min(340px,75vw);
    height:auto;
    display:block
}
.eyebrow{
    margin:38px 0 14px;
    color:var(--orange);
    font:700 .78rem/1 'Exo 2',sans-serif;
    letter-spacing:.18em
}
.hero h1{
    margin:0;
    max-width:100%;
    font:700 clamp(2.65rem,4vw,3.6rem)/.96 'Exo 2',sans-serif;
    letter-spacing:-.045em
}
.hero a {
    display: flex;
    margin: 0 auto;
    justify-content: center;
}
.hero h1 span{
    color:var(--qb)
}
.intro{
    max-width:100%;
    margin:26px 0 0;
    font-size:1.08rem;
    line-height:1.75;
    color:var(--muted)
}
.section-heading{
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:20px
}
.section-heading .eyebrow{
    margin:0 0 8px
}
.section-heading h2{
    margin:0;
    font:700 clamp(1.8rem,4vw,2.7rem)/1 'Exo 2',sans-serif
}
.count{
    font-size:.82rem;
    color:var(--muted)
}
.grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px
}
.card{
    position:relative;
    display:flex;
    min-height:270px;
    flex-direction:column;
    padding:30px;
    border:1px solid var(--line);
    border-radius:26px;
    background:rgba(255,255,255,.86);
    box-shadow:0 16px 45px rgba(58,45,125,.08);
    color:inherit;
    text-decoration:none;
    overflow:hidden;
    transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease
}
.card:before{
    content:"";
    position:absolute;
    width:160px;
    height:160px;
    border-radius:50%;
    right:-80px;
    top:-90px;
    background:var(--accent);
    opacity:.13
}
.card:hover,.card:focus-visible{
    transform:translateY(-5px);
    box-shadow:0 24px 60px rgba(58,45,125,.16);
    border-color:var(--accent);
    outline:none
}
.icon{
    display:grid;
    width:54px;
    height:54px;
    place-items:center;
    border-radius:16px;
    background:var(--accent);
    color:white;
    font:700 1.18rem/1 'Exo 2',sans-serif
}
.card h3{
    margin:28px 0 9px;
    font:700 1.5rem/1.1 'Exo 2',sans-serif
}
.card p{
    margin:0;
    max-width:390px;
    line-height:1.6;
    color:var(--muted)
}
.visit{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:auto;
    padding-top:26px;
    font-size:.9rem;
    font-weight:600;
    color:var(--qb)
}
.arrow{
    font-size:1.45rem;
    transition:transform .25s
}
.card:hover .arrow{
    transform:translate(4px,-4px)
}
footer{
    display:grid;
    grid-template-columns:1fr auto;
    gap:8px 24px;
    align-items:center;
    margin-top:62px;
    padding:15px 0 4px;
    border-top:1px solid var(--line);
    color:var(--muted)
}
.footer-logo{
    width:180px
}
.copyright{
    grid-column:2;
    grid-row:1/3;
    margin:0;
    font-size:.82rem
}
footer p{
    margin:0;
    font-size:.88rem
}
@media(max-width:700px){
    main{
        width:min(100% - 24px,1080px);
        padding-top:18px
    }
    .hero{
        padding-bottom:46px
    }
    .hero h1{
        font-size:clamp(2.55rem,14vw,4.2rem)
    }
    .intro{
        font-size:1rem
    }
    .grid{
        grid-template-columns:1fr
    }
    .card{
        min-height:245px;
        padding:26px
    }
    .section-heading{
        align-items:start
    }
    .count{
        margin-top:8px
    }
    footer{
        display:block
    }
    .footer-logo{
        margin-bottom:12px
    }
    .copyright{
        margin-top:16px
    }
}
 @media(prefers-reduced-motion:reduce){
    *{
        scroll-behavior:auto!important;
        transition:none!important
    }
}
 