* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #1d2939;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

header {
    background: #ffffff;
    border-bottom: 1px solid #eaecf0;
}

.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #101828;
    font-size: 20px;
    font-weight: 700;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #2563eb;
    color: #ffffff;
    font-size: 17px;
}

.brand-product {
    color: #667085;
    font-weight: 500;
}

.hero {
    padding: 110px 0 100px;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.hero-inner {
    max-width: 780px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    margin-bottom: 25px;
    border-radius: 999px;
    background: #eef4ff;
    color: #3538cd;
    font-size: 14px;
    font-weight: 600;
}

h1 {
    margin: 0;
    color: #101828;
    font-size: clamp(42px, 6vw, 64px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.hero-text {
    max-width: 720px;
    margin: 26px 0 0;
    color: #667085;
    font-size: 20px;
    line-height: 1.65;
}

.section {
    padding: 88px 0;
}

.section-alt {
    background: #f9fafb;
    border-top: 1px solid #f0f1f3;
    border-bottom: 1px solid #f0f1f3;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 46px;
}

.section-heading h2 {
    margin: 0 0 14px;
    color: #101828;
    font-size: 32px;
    letter-spacing: -.8px;
}

.section-heading p {
    margin: 0;
    color: #667085;
    font-size: 17px;
    line-height: 1.7;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    padding: 28px;
    background: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .03);
}

.card-number {
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #eef4ff;
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
}

.card h3 {
    margin: 0 0 10px;
    color: #101828;
    font-size: 18px;
}

.card p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.65;
}

.access {
    max-width: 760px;
}

.access h2 {
    margin: 0 0 18px;
    color: #101828;
    font-size: 32px;
    letter-spacing: -.6px;
}

.access p {
    margin: 0 0 14px;
    color: #667085;
    font-size: 17px;
    line-height: 1.75;
}

footer {
    padding: 30px 0;
    border-top: 1px solid #eaecf0;
    color: #98a2b3;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .hero {
        padding: 72px 0 64px;
    }

    h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-text {
        font-size: 18px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 62px 0;
    }

    .footer-inner {
        flex-direction: column;
        gap: 8px;
    }
}
