﻿
:root {
    scroll-behavior: smooth;
    --primary-color: #4154f1;
    --dark-neutral: #1f2937;
    --light-neutral: #f1f5f9;
    --white: #ffffff;
    --muted: #475569;
    --success-green: #10b981;
    --error-red: #ef4444;
}

/* CTA */
.cta {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    padding: 8px 10px;
    border-radius: 12px;
    font-weight: 300;
    background: var(--primary-color);
    color: var(--white);
    border: 0;
    transition: transform .2s ease,opacity .2s ease;
    text-decoration: none;
}

    .cta.alt {
        background: #1f2937;
    }

    .cta:hover {
        transform: translateY(-2px);
        opacity: .92;
        color: var(--white);
    }

/* Utility band */
.info-band {
    background: linear-gradient(135deg, rgba(65,84,241,.08), rgba(65,84,241,.02));
    border: 1px dashed rgba(65,84,241,.25);
    border-radius: 18px;
    padding: 14px 16px;
    color: #334155;
}

/* Side-heading capsule */
.label {
    display: inline-flex;
    align-items: center;
    font-size: .75rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(65,84,241,.08);
    border: 1px solid rgba(65,84,241,.15);
    padding: 4px 10px;
    border-radius: 999px;
}

.orb {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}



    .orb i {
        position: relative;
        font-size: 20px;
        color: var(--primary-color);
    }

/* Typographic helpers */
.section-title {
    color: var(--dark-neutral);
    font-weight: 500;
    font-size: 1.75rem;
    letter-spacing: -.02em;
    margin: .5rem 0 .35rem;
}

.sub {
    color: var(--muted);
}

.measure {
    /* max-width: 62ch; */
}

.container-narrow {
    max-width: 980px;
}

/* Lists */
.check, .xlist {
    list-style: none;
    padding-left: 0;
    margin: .5rem 0 0;
}

    .check li, .xlist li {
        margin: .25rem 0;
        font-size: .85rem;
        color: #334155;
    }

        .check li:before {
            content: "\F26E";
            font-family: bootstrap-icons;
            margin-right: .45rem;
            color: var(--success-green);
        }

        .xlist li:before {
            content: "\F623";
            font-family: bootstrap-icons;
            margin-right: .45rem;
            color: var(--error-red);
        }

/* Pills */
.pills {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin: .75rem 0;
}

.pill {
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: .85rem;
    color: #0f172a;
}

/* Cards */
.feature-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    background: #fff;
    height: 100%;
}

/* Sections */
.section {
    padding: 8px 0;
}

.section--alt {
    padding: 8px 0;
    background: #f8faff;
}

/* Images */
.img-cover {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

.full-bleed {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--light-neutral), #e7ecf7);
}

    .hero h1 {
        color: var(--dark-neutral);
        font-weight: 600;
        letter-spacing: -.02em;
        font-size: 2.3rem;
    }

    .hero .tagline {
        color: #475569;
        font-size: 0.9rem;
    }

/* Grid variety */
.grid-3 {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3,1fr);
}

/* Responsive niceties */
@@media (max-width: 991.98px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }
}

@@media (prefers-reduced-motion: reduce) {
    .cta {
        transition: none;
    }

    [data-aos] {
        transition: none !important;
        transform: none !important;
    }
}

ul {
    padding: 0px !important;
}


