:root {
    color-scheme: dark;
    font-family:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    background: #0b1020;
    color: #f5f7fb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, #1c2955 0, transparent 38rem),
        #0b1020;
}

.container {
    width: min(100% - 2rem, 68rem);
    margin: 0 auto;
    padding: 5rem 0 2rem;
}

.header {
    max-width: 44rem;
    margin-bottom: 3rem;
}

.eyebrow {
    margin: 0 0 0.6rem;
    color: #9eb1ff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(2.7rem, 8vw, 5rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.subtitle {
    margin: 1.25rem 0 0;
    color: #aeb8cc;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.card {
    position: relative;
    min-height: 17rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid #27314a;
    border-radius: 1.4rem;
    background: rgba(19, 27, 48, 0.82);
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.16);
}

.icon {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border: 1px solid #394766;
    border-radius: 0.9rem;
    background: #17213a;
    font-size: 1.35rem;
    font-weight: 700;
}

.card h2 {
    margin: 0;
    font-size: 1.3rem;
}

.card p {
    margin: 0.65rem 0 0;
    color: #9ba7be;
    line-height: 1.55;
}

.status {
    margin-top: auto;
    width: fit-content;
    padding: 0.4rem 0.7rem;
    border: 1px solid #36425d;
    border-radius: 999px;
    color: #8996af;
    font-size: 0.78rem;
    font-weight: 600;
}

footer {
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid #202a40;
    color: #6f7c94;
    font-size: 0.85rem;
}

@media (max-width: 760px) {
    .container {
        padding-top: 3rem;
    }

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

    .card {
        min-height: 14rem;
    }
}
