* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(88, 166, 255, 0.18), transparent 32rem),
        radial-gradient(circle at bottom right, rgba(163, 113, 247, 0.16), transparent 28rem),
        #070a12;
    color: #e6edf3;
}

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

.hero {
    min-height: 72vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    margin: 0 0 18px;
    color: #58a6ff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.22em;
}

h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(2.7rem, 8vw, 6.4rem);
    line-height: 0.95;
    letter-spacing: -0.08em;
}

.tagline {
    margin: 28px 0 0;
    color: #ffffff;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 650;
}

.description {
    max-width: 720px;
    margin: 22px 0 0;
    color: #9da7b3;
    font-size: 1.1rem;
    line-height: 1.75;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

.primary {
    background: #e6edf3;
    color: #070a12;
}

.secondary {
    border: 1px solid rgba(230, 237, 243, 0.22);
    color: #e6edf3;
}

.section {
    padding: 56px 0 34px;
    border-top: 1px solid rgba(230, 237, 243, 0.12);
}

.section h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.05em;
}

.section p {
    max-width: 780px;
    color: #9da7b3;
    font-size: 1.08rem;
    line-height: 1.75;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 34px 0 20px;
}

.card {
    min-height: 190px;
    padding: 24px;
    border: 1px solid rgba(230, 237, 243, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(16px);
}

.card h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
}

.card p {
    margin: 0;
    color: #9da7b3;
    line-height: 1.65;
}

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

    .hero {
        min-height: 78vh;
    }

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