@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


:root {

    --background: #fafafa;
    --text: #111827;
    --muted: #64748b;
    --border: #e5e7eb;
    --accent: #2563eb;

}


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


body {

    font-family: Inter, sans-serif;
    background:var(--background);
    color:var(--text);

}


.header {

    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8%;

}


.logo {

    font-size:24px;
    font-weight:600;
    letter-spacing:-0.5px;

}


.logo span {

    font-weight:400;
    color:var(--muted);

}


.status {

    font-size:13px;
    color:var(--muted);

}



.hero {

    min-height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    overflow:hidden;

}


.pattern {

    position:absolute;
    width:600px;
    height:600px;

    background:
    radial-gradient(circle,
    rgba(37,99,235,.15) 1px,
    transparent 1px);

    background-size:35px 35px;

    opacity:.5;

}



.content {

    position:relative;
    max-width:850px;
    padding:40px;

}



.eyebrow {

    text-transform:uppercase;
    letter-spacing:3px;
    font-size:12px;
    color:var(--accent);
    margin-bottom:25px;

}



h1 {

    font-size:clamp(48px,7vw,90px);
    line-height:1;
    letter-spacing:-4px;
    margin-bottom:30px;

}


h1 span {

    background:linear-gradient(
    90deg,
    #2563eb,
    #14b8a6
    );

    -webkit-background-clip:text;
    color:transparent;

}



.description {

    max-width:620px;
    margin:auto;
    font-size:19px;
    line-height:1.7;
    color:var(--muted);

}



.launch {

    display:inline-flex;
    align-items:center;
    gap:12px;

    margin-top:40px;
    padding:14px 24px;

    border:1px solid var(--border);
    border-radius:50px;

    background:white;

    font-size:14px;

}



.dot {

    width:8px;
    height:8px;

    border-radius:50%;
    background:#14b8a6;

}



.principles {

    display:flex;
    gap:25px;
    max-width:1000px;
    margin:60px auto;
    padding:0 30px;

}



.card {

    flex:1;
    padding:35px;

    border:1px solid var(--border);
    background:white;

}



.card h3 {

    margin-bottom:15px;
    font-size:20px;

}



.card p {

    color:var(--muted);
    line-height:1.6;

}



.services {

    text-align:center;
    max-width:850px;
    margin:100px auto;
    padding:0 30px;

}



.services h2 {

    font-size:36px;
    margin-bottom:20px;

}



.services p {

    color:var(--muted);
    line-height:1.7;

}



.service-list {

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;

    margin-top:40px;

}



.service-list span {

    padding:12px 20px;
    border:1px solid var(--border);
    border-radius:30px;
    background:white;

    font-size:14px;

}



footer {

    text-align:center;
    padding:40px;

    color:var(--muted);
    font-size:13px;

}



@media(max-width:700px){

    .header {

        padding:0 25px;

    }


    .principles {

        flex-direction:column;

    }


    h1 {

        letter-spacing:-2px;

    }

}
