@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --background: #07080c;
    --surface: #0d0f15;
    --surface-light: #12151d;

    --text: #f5f7fa;
    --muted: #8b919e;

    --primary: #6d5dfc;
    --primary-light: #8c80ff;

    --border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--text);

    font-family: "Inter", sans-serif;

    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}


/* NAVBAR */

.navbar {
    width: 100%;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6%;

    border-bottom: 1px solid var(--border);

    background: rgba(7, 8, 12, 0.8);

    backdrop-filter: blur(20px);

    position: sticky;
    top: 0;

    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 18px;
    font-weight: 700;
}

.logo-mark {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: var(--primary);

    font-weight: 800;
}

.navbar nav {
    display: flex;
    gap: 32px;

    color: var(--muted);

    font-size: 14px;
}

.navbar nav a {
    transition: 0.2s;
}

.navbar nav a:hover {
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login {
    color: var(--muted);

    font-size: 14px;
}


/* BUTTONS */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 22px;

    border-radius: 10px;

    background: var(--primary);

    font-size: 14px;
    font-weight: 600;

    transition: 0.2s;
}

.button:hover {
    background: var(--primary-light);

    transform: translateY(-1px);
}

.button-small {
    padding: 9px 16px;
}

.button-secondary {
    background: var(--surface-light);

    border: 1px solid var(--border);
}

.button-secondary:hover {
    background: #181b25;
}


/* HERO */

.hero {
    min-height: 720px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 100px 20px;

    position: relative;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    background: var(--primary);

    opacity: 0.12;

    filter: blur(180px);

    border-radius: 50%;

    top: -250px;
}

.hero-content {
    max-width: 850px;

    position: relative;
}

.badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 12px;

    border-radius: 999px;

    background: rgba(109, 93, 252, 0.08);

    border: 1px solid rgba(109, 93, 252, 0.2);

    color: #aaa4ff;

    font-size: 12px;
}

.badge span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--primary);
}

.hero h1 {
    margin-top: 28px;

    font-size: clamp(56px, 8vw, 100px);

    line-height: 0.98;

    letter-spacing: -0.06em;

    font-weight: 800;
}

.hero h1 span {
    color: var(--primary-light);
}

.hero p {
    max-width: 620px;

    margin: 30px auto;

    color: var(--muted);

    font-size: 17px;
}

.hero-actions {
    display: flex;

    justify-content: center;

    gap: 12px;

    margin-top: 35px;
}


/* FEATURES */

.features {
    max-width: 1200px;

    margin: auto;

    padding: 120px 30px;
}

.section-heading {
    max-width: 650px;
}

.section-heading > span,
.eyebrow {
    color: var(--primary-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.15em;
}

.section-heading h2 {
    margin-top: 12px;

    font-size: 42px;

    letter-spacing: -0.04em;

    line-height: 1.1;
}

.section-heading p {
    margin-top: 16px;

    color: var(--muted);
}

.feature-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 50px;
}

.feature-card {
    padding: 30px;

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: 16px;

    transition: 0.25s;
}

.feature-card:hover {
    transform: translateY(-4px);

    border-color: rgba(109, 93, 252, 0.3);
}

.feature-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 10px;

    background: rgba(109, 93, 252, 0.1);

    color: var(--primary-light);
}

.feature-card h3 {
    font-size: 18px;
}

.feature-card p {
    margin-top: 10px;

    color: var(--muted);

    font-size: 14px;
}


/* PLATFORM */

.platform {
    padding: 80px 30px 140px;
}

.platform-box {
    max-width: 1140px;

    margin: auto;

    padding: 60px;

    display: grid;

    grid-template-columns: 1.5fr 1fr;

    gap: 60px;

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: 20px;
}

.platform-box h2 {
    margin-top: 15px;

    max-width: 600px;

    font-size: 42px;

    line-height: 1.1;

    letter-spacing: -0.04em;
}

.platform-box p {
    margin-top: 20px;

    color: var(--muted);

    max-width: 560px;
}

.platform-stats {
    display: flex;

    align-items: center;

    justify-content: space-around;
}

.platform-stats div {
    display: flex;

    flex-direction: column;
}

.platform-stats strong {
    font-size: 32px;
}

.platform-stats span {
    color: var(--muted);

    font-size: 12px;
}


/* FOOTER */

footer {
    padding: 50px 6%;

    border-top: 1px solid var(--border);

    color: var(--muted);

    text-align: center;
}

.footer-logo {
    color: white;

    font-weight: 700;

    margin-bottom: 8px;
}

footer span {
    display: block;

    margin-top: 20px;

    font-size: 12px;
}


/* RESPONSIVE */

@media (max-width: 800px) {

    .navbar nav {
        display: none;
    }

    .login {
        display: none;
    }

    .hero h1 {
        font-size: 60px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .platform-box {
        grid-template-columns: 1fr;

        padding: 35px;
    }

    .platform-stats {
        justify-content: flex-start;

        gap: 40px;
    }

}