:root {
    --navy: #160b2e;
    --navy2: #2e1065;
    --blue: #7c3aed;
    --cyan: #a855f7;
    --purple: #9333ea;
    --ink: #1e1033;
    --muted: #6b5f78;
    --line: #eadcff;
    --soft: #faf7ff;
    --white: #fff;

    --shadow:
        0 22px 70px
        rgba(91, 33, 182, 0.11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, sans-serif;
    background: #fff;
    overflow-x: hidden;
}

a {
    transition: 0.25s;
}

h1,
h2,
h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: -1px;
}

p {
    line-height: 1.8;
}

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


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 780px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 28%,
            rgba(168, 85, 247, 0.38),
            transparent 27%
        ),
        radial-gradient(
            circle at 12% 80%,
            rgba(124, 58, 237, 0.22),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #160b2e 0%,
            #4c1d95 52%,
            #241044 100%
        );

    padding: 145px 0 80px;
}

.hero:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;

    background:
        linear-gradient(
            transparent,
            #fff
        );

    opacity: 0.08;
}


/* =========================================
   HERO ORBS
========================================= */

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
    opacity: 0.55;
}

.hero-orb-one {
    width: 330px;
    height: 330px;

    background:
        radial-gradient(
            circle,
            #c084fc,
            transparent 65%
        );

    left: -180px;
    top: 160px;
}

.hero-orb-two {
    width: 500px;
    height: 500px;

    background:
        radial-gradient(
            circle,
            #7c3aed,
            transparent 62%
        );

    right: -250px;
    bottom: -260px;
}


/* =========================================
   HERO GRID
========================================= */

.hero-grid {
    display: grid;
    grid-template-columns:
        1.02fr
        0.98fr;

    align-items: center;
    gap: 70px;

    position: relative;
    z-index: 2;
}

.hero-copy {
    color: #fff;
}


/* =========================================
   HERO TYPOGRAPHY
========================================= */

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 10px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    font-weight: 800;

    color: #c084fc;
}

.pulse-dot {
    width: 7px;
    height: 7px;

    background: #a855f7;
    border-radius: 50%;

    box-shadow:
        0 0 0 6px
        rgba(168, 85, 247, 0.12);

    animation: pulse 1.8s infinite;
}

.hero h1 {
    font-size: clamp(
        42px,
        5.1vw,
        70px
    );

    line-height: 1.06;
    margin: 20px 0 22px;
    max-width: 720px;
}

.hero h1 span,
.section-heading span,
.section-head-center span,
.definition-copy h2 span,
.process-intro h2 span,
.cta-content h2 span {
    background:
        linear-gradient(
            90deg,
            #c084fc,
            #7c3aed
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    font-size: 15px;
    color: #ddd0ee;
    max-width: 650px;
    margin-bottom: 30px;
}


/* =========================================
   HERO ACTIONS
========================================= */

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 14px 20px;

    border-radius: 12px;

    text-decoration: none;
    font-weight: 800;
    font-size: 12px;

    border: 1px solid transparent;
}

.btn-primary {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #a855f7
        );

    box-shadow:
        0 12px 30px
        rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 17px 35px
        rgba(124, 58, 237, 0.4);
}

.btn-ghost {
    color: #f1e8ff;

    border-color:
        rgba(255, 255, 255, 0.18);

    background:
        rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background:
        rgba(255, 255, 255, 0.13);

    transform: translateY(-3px);
}


/* =========================================
   HERO PROOF
========================================= */

.hero-proof {
    display: flex;
    gap: 30px;
    margin-top: 45px;
}

.hero-proof > div {
    border-left:
        1px solid
        rgba(255, 255, 255, 0.18);

    padding-left: 14px;
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    font-size: 11px;
    color: #fff;
}

.hero-proof span {
    font-size: 10px;
    color: #c7b8d8;
    margin-top: 5px;
}


/* =========================================
   DEFINITION VISUAL - PURPLE
========================================= */

.definition-visual {
    height: 430px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.orbit {
    position: absolute;
    border: 1px dashed #c4b5fd;
    border-radius: 50%;
    animation: spin 18s linear infinite;
}

.orbit-a {
    width: 300px;
    height: 300px;
}

.orbit-b {
    width: 420px;
    height: 420px;
    animation-direction: reverse;
    animation-duration: 25s;
}

.core-logo {
    width: 120px;
    height: 120px;
    border-radius: 35px;
    display: grid;
    place-items: center;
    color: #fff;
    font: 800 30px "Plus Jakarta Sans";
    background: linear-gradient(
        135deg,
        #7c3aed,
        #a855f7
    );
    box-shadow:
        0 25px 55px
        rgba(124, 58, 237, 0.32);
    z-index: 2;
}

.core-logo span {
    color: #ddd6fe;
}

.orbit-tag {
    position: absolute;
    z-index: 5;
    padding: 9px 12px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow:
        0 10px 30px
        rgba(91, 33, 182, 0.10);
    font-size: 10px;
    font-weight: 700;
    color: #5e5050;
    white-space: nowrap;
}

.orbit-tag i {
    color: var(--blue);
    margin-right: 5px;
}

/* HASHTAG */
.tag-a {
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
}

/* TRENDING */
.tag-b {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* AUDIENCE */
.tag-c {
    left: 0;
    bottom: 45px;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    position: relative;
    min-height: 510px;

    display: grid;
    place-items: center;
}

.dashboard-card {
    width: min(
        460px,
        100%
    );

    padding: 26px;

    border:
        1px solid
        rgba(255, 255, 255, 0.2);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.04)
        );

    box-shadow:
        0 35px 100px
        rgba(0, 0, 0, 0.3);

    backdrop-filter: blur(20px);

    transform: rotate(2deg);

    animation:
        float 6s ease-in-out infinite;
}

.dash-top {
    display: flex;
    justify-content: space-between;
}

.live-chip {
    font-size: 9px;
    letter-spacing: 1px;

    color: #c084fc;

    background:
        rgba(168, 85, 247, 0.1);

    border:
        1px solid
        rgba(192, 132, 252, 0.25);

    padding: 7px 10px;
    border-radius: 30px;
}

.dash-more {
    color: #d3c5df;
}

.dash-title {
    color: #fff;

    font:
        700 20px
        "Plus Jakarta Sans";

    margin: 25px 0;
}


/* =========================================
   METRIC
========================================= */

.metric-row {
    display: grid;
    grid-template-columns:
        1fr
        1fr;

    gap: 12px;
}

.metric {
    padding: 16px;
    border-radius: 16px;

    background:
        rgba(30, 10, 60, 0.4);

    border:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.metric span,
.metric small {
    display: block;
    color: #c6b6d5;
    font-size: 9px;
}

.metric strong {
    display: block;
    color: #fff;

    font:
        700 22px
        "Plus Jakarta Sans";

    margin: 7px 0;
}

.metric small {
    color: #c084fc;
}


/* =========================================
   CHART
========================================= */

.chart {
    height: 155px;
    margin: 14px 0;
    padding: 15px;

    border-radius: 18px;

    background:
        rgba(25, 8, 50, 0.3);

    position: relative;
}

.chart-label {
    font-size: 9px;
    color: #c4b3d2;
}

.chart-bars {
    height: 105px;

    display: flex;
    align-items: end;
    gap: 8px;

    margin-top: 10px;
}

.chart-bars i {
    flex: 1;

    border-radius:
        6px 6px 2px 2px;

    background:
        linear-gradient(
            to top,
            #7c3aed,
            #c084fc
        );

    opacity: 0.85;
}


/* =========================================
   VIDEO SECTION
========================================= */

/* ==========================================
   VIDEO SECTION
========================================== */

.video-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}

.video-section::before {
    content: "";
    position: absolute;
    top: 15%;
    left: -180px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.08);
    filter: blur(80px);
    pointer-events: none;
}

.video-section::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: 5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.07);
    filter: blur(90px);
    pointer-events: none;
}

.video-section .container {
    position: relative;
    z-index: 2;
}


/* ==========================================
   VIDEO SECTION HEADING
========================================== */

.video-section-head {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.video-section-head .section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #7c3aed;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.video-section-head h2 {
    margin: 0;
    color: #07152f;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.video-section-head h2 span {
    display: block;
    color: #7c3aed;
}

.video-section-head p {
    max-width: 680px;
    margin: 20px auto 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
}


/* ==========================================
   VIDEO CARD
========================================== */

.video-card {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 14px;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.16);
    border-radius: 28px;
    background: linear-gradient(
        145deg,
        #ffffff,
        #faf7ff
    );
    box-shadow:
        0 25px 70px rgba(15, 23, 42, 0.10),
        0 0 0 1px rgba(124, 58, 237, 0.03);
}

.video-card-glow {
    position: absolute;
    top: -100px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.14);
    filter: blur(70px);
    pointer-events: none;
}


/* ==========================================
   VIDEO WRAPPER
========================================== */

.video-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 20px;
    background: #0f0720;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.18);
}

.video-wrapper iframe {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #0f0720;
}


/* ==========================================
   VIDEO INFO
========================================== */

.video-info {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 12px 10px;
}

.video-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        #7c3aed,
        #a855f7
    );
    color: #ffffff;
    font-size: 19px;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.22);
}

.video-info strong {
    display: block;
    margin-bottom: 4px;
    color: #0f172a;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.video-info span {
    display: block;
    color: #64748b;
    font-size: 12px;
    line-height: 1.6;
}


/* ==========================================
   VIDEO RESPONSIVE
========================================== */

@media (max-width: 768px) {

    .video-section {
        padding: 70px 0;
    }

    .video-section-head {
        margin-bottom: 30px;
    }

    .video-section-head h2 {
        font-size: 30px;
    }

    .video-section-head h2 span {
        display: inline;
    }

    .video-section-head p {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.75;
    }

    .video-card {
        padding: 9px;
        border-radius: 20px;
    }

    .video-wrapper {
        border-radius: 14px;
    }

    .video-info {
        gap: 12px;
        padding: 17px 7px 6px;
    }

    .video-info-icon {
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        border-radius: 11px;
        font-size: 16px;
    }

    .video-info strong {
        font-size: 13px;
    }

    .video-info span {
        font-size: 11px;
    }

}


@media (max-width: 480px) {

    .video-section {
        padding: 60px 0;
    }

    .video-section-head h2 {
        font-size: 26px;
    }

    .video-section-head p {
        font-size: 13px;
    }

    .video-card {
        padding: 7px;
        border-radius: 17px;
    }

    .video-wrapper {
        border-radius: 11px;
    }

    .video-info {
        align-items: flex-start;
    }

    .video-info-icon {
        margin-top: 2px;
    }

}


/* =========================================
   PLATFORM
========================================= */

.platform-stack {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.platform-stack span {
    font-size: 9px;
    color: #eadff5;

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    padding: 7px 9px;
    border-radius: 8px;
}


/* =========================================
   FLOATING CARDS
========================================= */

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 15px;

    border:
        1px solid
        rgba(255, 255, 255, 0.2);

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(18px);

    color: #fff;

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.22);

    font-size: 9px;
    line-height: 1.4;

    animation:
        float 5s ease-in-out infinite;
}

.floating-card i {
    font-size: 19px;
    color: #c084fc;
}

.floating-card b {
    font-size: 11px;
}


/* =========================================
   SCROLL NOTE
========================================= */

.scroll-note {
    position: absolute;

    bottom: 28px;
    left: 50%;

    transform:
        translateX(-50%);

    color: #c5b5d4;

    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;

    display: flex;
    align-items: center;
    gap: 9px;
}

.scroll-note span {
    width: 22px;
    height: 1px;
    background: #c5b5d4;
}


/* =========================================
   STATS
========================================= */

.stats-strip {
    border-bottom:
        1px solid
        var(--line);

    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
}

.stats-grid > div {
    padding: 24px 20px;

    border-right:
        1px solid
        var(--line);

    display: flex;
    align-items: center;
    gap: 13px;
}

.stats-grid > div:first-child {
    border-left:
        1px solid
        var(--line);
}

.stats-grid strong {
    font:
        800 15px
        "Plus Jakarta Sans";

    color: var(--blue);
}

.stats-grid span {
    font-size: 11px;
    color: var(--muted);
}


/* =========================================
   SECTION
========================================= */

.section {
    padding: 115px 0;
}

.split-grid {
    display: grid;
    grid-template-columns:
        1fr
        1fr;

    gap: 100px;
    align-items: end;
}

.section-heading h2,
.section-head-center h2 {
    font-size:
        clamp(
            34px,
            4vw,
            53px
        );

    line-height: 1.12;
    margin: 16px 0 0;
}

.problem-copy p {
    font-size: 14px;
    color: #62586a;
    margin: 0 0 15px;
}

.text-link {
    display: inline-flex;

    gap: 8px;
    align-items: center;

    color: var(--blue);

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;

    margin-top: 10px;
}

.text-link:hover {
    gap: 13px;
}


/* =========================================
   ISSUE GRID
========================================= */

.issue-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    margin-top: 60px;
}

.glass-card {
    position: relative;

    padding: 30px;

    border:
        1px solid
        var(--line);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fcf9ff
        );

    box-shadow: var(--shadow);

    transition: 0.3s;
}

.glass-card:hover {
    transform: translateY(-7px);
    border-color: #c4b5fd;
}

.glass-card .number {
    position: absolute;

    right: 22px;
    top: 20px;

    color: #ded3e8;

    font-size: 11px;
    font-weight: 800;
}

.glass-card i {
    display: grid;
    place-items: center;

    width: 45px;
    height: 45px;

    border-radius: 14px;

    color: var(--blue);

    background: #f3e8ff;

    font-size: 19px;
}

.glass-card h3 {
    font-size: 18px;
    margin: 25px 0 10px;
}

.glass-card p,
.benefit-card p,
.why-item p {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
}


/* =========================================
   SERVICE SECTION
========================================= */

.service-section {
    background: var(--soft);
}

.section-head-center {
    text-align: center;

    max-width: 720px;

    margin:
        0 auto 50px;
}

.section-head-center p {
    color: var(--muted);
    font-size: 13px;
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.service-card {
    min-height: 245px;

    position: relative;

    padding: 24px;

    border-radius: 22px;

    background: #fff;

    border:
        1px solid
        var(--line);

    text-decoration: none;

    color: var(--ink);

    overflow: hidden;

    transition: 0.35s;
}

.service-card:before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #f3e8ff,
            #e9d5ff
        );

    right: -55px;
    bottom: -55px;

    transition: 0.35s;
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color: #c4b5fd;
}

.service-card:hover:before {
    transform: scale(1.6);
}

.service-icon {
    width: 45px;
    height: 45px;

    border-radius: 13px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            #f3e8ff,
            #faf5ff
        );

    color: var(--blue);

    font-size: 18px;
}

.service-index {
    position: absolute;

    right: 20px;
    top: 23px;

    color: #d9cce4;

    font-size: 10px;
}

.service-card h3 {
    font-size: 17px;
    margin: 28px 0 8px;
}

.service-card p {
    font-size: 11px;
    line-height: 1.7;

    color: var(--muted);

    max-width: 210px;
}

.service-arrow {
    position: absolute;

    right: 20px;
    bottom: 20px;

    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: #f3e8ff;

    color: var(--blue);

    font-size: 11px;
}


/* =========================================
   DEFINITION
========================================= */

.definition-wrap {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 100px;

    align-items: center;
}

.definition-visual {
    height: 430px;

    position: relative;

    display: grid;
    place-items: center;

    overflow: hidden;
}

.orbit {
    position: absolute;

    border:
        1px dashed
        #c4b5fd;

    border-radius: 50%;

    animation:
        spin 18s linear infinite;
}

.orbit-a {
    width: 300px;
    height: 300px;
}

.orbit-b {
    width: 420px;
    height: 420px;

    animation-direction: reverse;
    animation-duration: 25s;
}

.core-logo {
    width: 120px;
    height: 120px;

    border-radius: 35px;

    display: grid;
    place-items: center;

    color: #fff;

    font:
        800 30px
        "Plus Jakarta Sans";

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #a855f7
        );

    box-shadow:
        0 25px 55px
        rgba(124, 58, 237, 0.32);

    z-index: 2;
}

.core-logo span {
    color: #d8b4fe;
}

.orbit-tag {
    position: absolute;

    padding: 9px 12px;

    border-radius: 10px;

    background: #fff;

    border:
        1px solid
        var(--line);

    box-shadow:
        0 10px 30px
        rgba(91, 33, 182, 0.08);

    font-size: 10px;
    font-weight: 700;

    color: #5e5367;
}

.orbit-tag i {
    color: var(--blue);
    margin-right: 5px;
}

.definition-copy h2,
.process-intro h2 {
    font-size:
        clamp(
            34px,
            4vw,
            52px
        );

    line-height: 1.12;

    margin: 15px 0 20px;
}

.definition-copy p {
    font-size: 13px;
    color: var(--muted);
}

.mini-note {
    margin-top: 25px;

    padding: 16px;

    border-radius: 15px;

    background: #f5edff;

    display: flex;
    gap: 12px;

    color: #54277a;

    font-size: 11px;
    line-height: 1.6;
}

.mini-note i {
    color: var(--blue);
    font-size: 17px;
}


/* =========================================
   BENEFITS
========================================= */

.benefits-section {
    background: #fbf9ff;
}

.benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.benefit-card {
    padding: 27px;

    border-radius: 20px;

    border:
        1px solid
        var(--line);

    background: #fff;

    position: relative;

    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

.benefit-card > b {
    position: absolute;

    right: 20px;
    top: 18px;

    color: #e0d5e8;

    font-size: 10px;
}

.benefit-card i {
    color: var(--blue);
    font-size: 22px;
}

.benefit-card h3 {
    font-size: 16px;
    margin: 22px 0 7px;
}


/* =========================================
   PROCESS
========================================= */

.process-section {
    background: #fff;
}

.process-panel {
    padding: 65px;

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            #160b2e,
            #4c1d95
        );

    color: #fff;

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 90px;

    position: relative;

    overflow: hidden;
}

.process-panel:after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    right: -180px;
    bottom: -250px;

    background:
        radial-gradient(
            circle,
            rgba(168, 85, 247, 0.28),
            transparent 65%
        );
}

.process-intro {
    position: relative;
    z-index: 1;
}

.process-intro p {
    color: #d8c7e4;
    font-size: 12px;
    margin-bottom: 25px;
}

.btn-light {
    background:
        rgba(255, 255, 255, 0.1);

    border-color:
        rgba(255, 255, 255, 0.15);

    color: #fff;
}

.btn-light:hover {
    background: #fff;
    color: var(--navy);

    transform: translateY(-2px);
}

.process-list {
    position: relative;
    z-index: 1;
}

.process-item {
    display: grid;

    grid-template-columns:
        50px
        1fr;

    gap: 20px;

    padding: 0 0 25px;

    margin-bottom: 25px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.1);
}

.process-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.process-item > span {
    width: 40px;
    height: 40px;

    border:
        1px solid
        rgba(192, 132, 252, 0.35);

    border-radius: 12px;

    display: grid;
    place-items: center;

    color: #c084fc;

    font:
        700 11px
        "Plus Jakarta Sans";
}

.process-item h3 {
    font-size: 15px;
    margin: 0 0 6px;
}

.process-item p {
    color: #c6b5d2;
    font-size: 11px;
    margin: 0;
}


/* =========================================
   WHY
========================================= */

.why-section {
    background: var(--soft);
}

.why-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    margin-top: 50px;

    border-top:
        1px solid
        var(--line);
}

.why-item {
    display: flex;

    gap: 18px;

    padding: 28px;

    border-bottom:
        1px solid
        var(--line);
}

.why-item:nth-child(odd) {
    border-right:
        1px solid
        var(--line);
}

.why-item > span {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: #fff;

    color: var(--blue);

    box-shadow:
        0 8px 25px
        rgba(91, 33, 182, 0.06);
}

.why-item h3 {
    font-size: 15px;
    margin: 3px 0 6px;
}


/* =========================================
   PRICING
========================================= */

.pricing-section {
    background: #fff;
}

.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    margin-top: 50px;
}

.price-card {
    padding: 32px;

    border-radius: 24px;

    border:
        1px solid
        var(--line);

    position: relative;

    background: #fff;

    transition: 0.3s;
}

.price-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow);
}

.price-card.featured {
    border-color: #a78bfa;

    box-shadow:
        0 20px 65px
        rgba(124, 58, 237, 0.14);

    background:
        linear-gradient(
            150deg,
            #fff,
            #fbf8ff
        );
}

.popular {
    position: absolute;

    right: 20px;
    top: 20px;

    background: #ede9fe;

    color: #6d28d9;

    font-size: 8px;
    font-weight: 800;

    padding: 7px 9px;

    border-radius: 20px;
}

.price-label {
    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;

    color: #756b7c;
}

.price-card h3 {
    font-size: 22px;
    margin: 16px 0;
}

.price {
    font-size: 11px;
    color: #786d80;
}

.price strong {
    display: block;

    font:
        800 27px
        "Plus Jakarta Sans";

    color: var(--ink);

    margin-top: 5px;
}

.price-card > p {
    font-size: 11px;
    color: var(--muted);

    min-height: 57px;
}

.price-card ul {
    list-style: none;

    padding: 0;
    margin: 22px 0;
}

.price-card li {
    font-size: 11px;

    margin: 11px 0;

    color: #5b5162;
}

.price-card li i {
    color: #22c55e;
    margin-right: 7px;
}

.btn-outline {
    border-color: #e4d9ec;

    color: var(--ink);

    width: 100%;
}

.btn-outline:hover {
    border-color: #a78bfa;

    color: #6d28d9;

    background: #faf5ff;
}


/* =========================================
   FAQ
========================================= */

.faq-section {
    background: #fbf9ff;
}

.faq-grid {
    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 90px;
}

.faq-section .section-heading p {
    font-size: 13px;
    color: var(--muted);
}

.faq-list details {
    background: #fff;

    border:
        1px solid
        var(--line);

    border-radius: 15px;

    margin-bottom: 10px;

    padding: 0 20px;
}

.faq-list summary {
    cursor: pointer;
    list-style: none;

    padding: 19px 0;

    font-size: 12px;
    font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary:after {
    content: "+";

    float: right;

    color: var(--blue);

    font-size: 17px;
}

.faq-list details[open] summary:after {
    content: "−";
}

.faq-list details p {
    font-size: 11px;

    color: var(--muted);

    margin: 0;

    padding: 0 0 18px;
}


/* =========================================
   CTA
========================================= */

.cta-section {
    padding: 25px 0 120px;
}

.cta-card {
    min-height: 390px;

    border-radius: 32px;

    overflow: hidden;

    position: relative;

    background:
        linear-gradient(
            125deg,
            #160b2e,
            #4c1d95 55%,
            #7e22ce
        );

    display: flex;

    align-items: center;

    padding: 65px;

    color: #fff;
}

.cta-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    right: -170px;
    top: -230px;

    background:
        radial-gradient(
            circle,
            rgba(192, 132, 252, 0.38),
            transparent 65%
        );
}

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 700px;
}

.section-kicker.light {
    color: #c084fc;
}

.cta-content h2 {
    font-size:
        clamp(
            35px,
            4vw,
            55px
        );

    line-height: 1.1;

    margin: 15px 0;
}

.cta-content p {
    font-size: 13px;

    color: #e4d5ee;

    max-width: 600px;

    margin-bottom: 27px;
}

.btn-white {
    background: #fff;
    color: #581c87;
}

.btn-white:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.18);
}

.cta-orb {
    position: absolute;

    right: 80px;
    bottom: 60px;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255, 255, 255, 0.16);

    display: grid;
    place-items: center;

    transform: rotate(-12deg);

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.1),
            transparent 68%
        );

    color: #fff;
}

.cta-orb i {
    position: absolute;

    top: 25px;
    right: 30px;

    color: #c084fc;
}

.cta-orb span {
    font:
        800 20px/1.1
        "Plus Jakarta Sans";

    text-align: center;

    letter-spacing: -1px;
}


/* =========================================
   ANIMATION
========================================= */

.reveal {
    opacity: 0;

    transform: translateY(22px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}


/* =========================================
   KEYFRAMES
========================================= */

@keyframes float {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(2deg);
    }

    50% {
        transform:
            translateY(-12px)
            rotate(2deg);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    50% {
        box-shadow:
            0 0 0 9px
            rgba(168, 85, 247, 0);
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .hero-grid,
    .definition-wrap,
    .process-panel,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero {
        padding-top: 125px;
    }

    .hero-visual {
        min-height: 470px;
    }

    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .benefit-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

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

    .split-grid {
        gap: 40px;
    }

    .process-panel {
        padding: 45px;
    }

    .cta-orb {
        right: 30px;
    }

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


/* =========================================
   MOBILE
========================================= */

@media (max-width: 680px) {

    .container {
        width: calc(100% - 28px);
    }

    .hero {
        min-height: auto;

        padding:
            120px 0 75px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-proof {
        gap: 15px;
        flex-direction: column;
    }

    .hero-visual {
        min-height: 420px;
    }

    .dashboard-card {
        transform: none;
    }

    .floating-card-a {
        left: -3px;
    }

    .floating-card-b {
        right: -2px;
    }

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

    .stats-grid > div {
        padding: 18px 12px;
    }

    .stats-grid > div:nth-child(odd) {
        border-left:
            1px solid
            var(--line);
    }

    .section {
        padding: 80px 0;
    }

    .split-grid,
    .issue-grid,
    .service-grid,
    .benefit-grid,
    .why-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .issue-grid {
        margin-top: 35px;
    }

    .service-grid {
        gap: 12px;
    }

    .service-card {
        min-height: 220px;
    }

    .definition-visual {
        height: 350px;
        transform: scale(0.78);
    }

    .process-panel {
        padding: 32px 24px;
    }

    .why-item:nth-child(odd) {
        border-right: 0;
    }

    .cta-card {
        padding: 45px 25px;
        min-height: 450px;
    }

    .cta-orb {
        opacity: 0.35;

        right: -35px;
        bottom: -20px;
    }

    .price-card > p {
        min-height: auto;
    }
}