:root {
    /* Theme */
    --bg: #ffffff;
    --bg-2: #fafafe;
    --card: #ffffff;
    --text: #0f1116;
    --muted: #5b6270;
    --brand: #b00cf7;
    --brand-2: #d15cff;
    --brand-3: #9a00df;

    /* UI */
    --radius: 16px;
    --radius-lg: 22px;
    --border: 1px solid rgba(10, 12, 16, .10);
    --shadow-1: 0 10px 30px rgba(16, 18, 22, .06);
    --shadow-2: 0 20px 60px rgba(16, 18, 22, .10);

    /* Type scale */
    --t--1: clamp(.9rem, .8rem + .2vw, 1rem);
    --t0: clamp(1rem, .9rem + .6vw, 1.125rem);
    --t1: clamp(1.25rem, 1rem + 1.2vw, 1.5rem);
    --t2: clamp(1.6rem, 1.2rem + 2vw, 2.1rem);
    --t3: clamp(2.1rem, 1.4rem + 3.4vw, 3rem);
    --t4: clamp(2.7rem, 1.6rem + 4.8vw, 4rem);

    --maxw: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
    
}

img {
    max-width: 100%;
    display: block;
    height: auto
}

a {
    text-decoration: none;
    color: inherit
}



/* Nav */
.nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: saturate(120%) blur(6px);
    border-bottom: var(--border)
}

.nav .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.brand {
    display: flex;
    gap: 10px;
    align-items: center
}

.brand__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2))
}

.brand__name {
    font-weight: 800;
    letter-spacing: .2px
}

.nav-links {
    display: flex;
    gap: 12px;
    align-items: center
}

.nav-links a {
    padding: 8px 12px;
    border-radius: 10px;
    color: var(--muted)
}

.nav-links a:hover {
    background: #f3eefc
}
.badge .svg-inline--fa{
    height: 1.4em;
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    box-shadow: 0 10px 26px rgba(176, 12, 247, .25)
}

/* Hero */
.hero {
    padding: clamp(56px, 6vw, 96px) 0 24px;
    text-align: center
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(176, 12, 247, .22)
}

.hero h1 {
    font-size: var(--t4);
    letter-spacing: -.02em;
    margin: 18px auto 10px;
    max-width: 800px;
    font-weight: 700;
    font-size: 50px;
}

.hero h1 span {
    color: var(--brand)
}

.hero p {
    max-width: 820px;
    margin: 0 auto 22px;
    color: var(--muted);
    font-size: var(--t0)
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 14px
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    box-shadow: 0 12px 30px rgba(176, 12, 247, .22)
}
.btn-primary:hover{
    color: var(--bg);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    border: var(--border);
    background: #fff;
    font-weight: 700
}
.btn-ghost:hover{
    color: #0f1116;
}
/* Intro */
.intro {
    padding: 36px 0
}

.intro .card {
    background: #fff;
    border: var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-1);
    padding: 22px
}

.intro h2 {
    font-size: var(--t2);
    margin: 0 0 8px
}

.intro h2 span {
    color: var(--brand)
}

.intro p {
    color: var(--muted);
    margin: 0 0 10px
}

/* Agents */
.agents {
    padding: 60px 0;
    background: linear-gradient(180deg, #fff, #f7f6fe)
}

.section-title {
    text-align: center;
    margin-bottom: 18px
}

.section-title h2 {
    font-size: var(--t2);
    margin-bottom: 8px;
    font-weight: 700;
}

.section-title h2 span {
    color: var(--brand)
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px
}

.card {
    background: #fff;
    border: var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 8px 20px rgba(16, 18, 22, .06)
}

.card .icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    color: #fff;
    margin-bottom: 8px
}

.card h3 {
    margin: 0 0 6px;
    font-size: 1.05rem
}

.muted {
    color: var(--muted);
    margin: 0;
}

/* CTA band */
.cta-band {
    padding: 28px 0
}

.band {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    color: #fff;
    border-radius: 18px;
    padding: 20px 22px;
}

.band h3 {
    margin: 0;
    font-size: var(--t1)
}

.band .actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.btn-light {
    background: #fff;
    color: var(--text);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800
}
.btn-light:hover{
    color: #000;
}
/* Differentiators */
.diff {
    padding: 60px 0;
    background: var(--bg)
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px
}

.diff .card:hover {
    box-shadow: 0 16px 30px rgba(176, 12, 247, .12);
    border-color: rgba(176, 12, 247, .45)
}

.badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-weight: 700;
    color: var(--brand);
    padding-bottom: 10px;
    font-size: 16px;
    padding-left: 0 !important;
}

.diff .card {
    transition: .18s border-color ease, .18s box-shadow ease
}

/* Approach timeline */
.approach {
    padding: 30px 0;
    background: linear-gradient(180deg, #fff, #f8f5ff)
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px
}

.step {
    background: #fff;
    border: var(--border);
    border-radius: 16px;
    padding: 18px;
    position: relative
}

.step .num {
    position: absolute;
    top: -12px;
    left: 16px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    color: #fff;
    border-radius: 999px;
    font-weight: 800;
    font-size: .9rem;
    box-shadow: 0 8px 18px rgba(176, 12, 247, .25);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center
}

.step h4 {
    margin: 16px 0 6px
}

.step p {
    margin: 0;
    color: var(--muted)
}

/* Benefits */
.benefits {
    padding: 60px 0
}

.benefit h3 {
    margin: 0;
    font-size: 18px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px
}

.benefit {
    background: #fff;
    border: var(--border);
    border-radius: 16px;
    padding: 18px
}

.benefit .tick {
    color: var(--brand);
    margin-right: 8px
}

/* Final CTA */
.final-cta {
    padding: 56px 0 80px;
    text-align: center
}

.final-cta .panel {
    background: linear-gradient(180deg, rgba(176, 12, 247, .08), rgba(176, 12, 247, .02));
    border: 1px solid rgba(176, 12, 247, .35);
    border-radius: 22px;
    padding: 26px 22px
}

.final-cta h2 {
    font-size: var(--t2);
    margin: 0 0 8px
}

.final-cta p {
    color: var(--muted);
    margin: 0 0 14px
}

/* Footer */
.footer {
    padding: 24px 0 60px;
    text-align: center;
    color: var(--muted);
    border-top: var(--border);
    background: linear-gradient(180deg, #fff, #fafafe)
}

.intro-split {
    padding: 60px 0;
    background: var(--bg);
}

.intro-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.intro-image {
    flex: 1 1 45%;
    min-width: 300px;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-1);
}

.intro-content {
    flex: 1 1 50%;
}

.intro-content h2 {
    font-size: var(--t2);
    margin: 0 0 10px;
    line-height: 1.2;
    font-weight: 700;
    font-size: 32px;
}

.intro-content h2 span {
    color: var(--brand);
}

.intro-content p {
    color: var(--muted);
    margin: 0 0 12px;
}

.intro-content .cta-row {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


/* Responsive */
@media (max-width:1024px) {
    .diff-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .steps {
        grid-template-columns: repeat(2, 1fr)
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:680px) {
    .nav .inner {
        height: 60px
    }

    .nav-links {
        display: none
    }

    .hero h1 {
        font-size: var(--t3)
    }

    .diff-grid,
    .steps,
    .benefit-grid {
        grid-template-columns: 1fr
    }

    .band {
        justify-content: center;
        text-align: center
    }

    .intro-wrap {
        flex-direction: column;
        text-align: center;
    }

    .intro-image,
    .intro-content {
        flex: 1 1 100%;
    }

    .intro-image img {
        max-width: 480px;
        margin: 0 auto 20px;
    }

    .intro-split,
    .agents,
    .approach,
    .diff,
    .benefits {
        padding: 20px 0;
    }

    .final-cta {
        padding: 20px 0 20px;
    }
    .hero {
        padding: clamp(28px, 6vw, 96px) 0 24px;
    }
    .hero h1{
        font-size: 28px;
    }  
}