:root {
    --navy: #06132d;
    --navy2: #0b1f45;
    --blue: #2563eb;
    --cyan: #19d3ff;
    --purple: #7c3aed;
    --ink: #0b1733;
    --muted: #64748b;
    --line: #e7edf6;
    --soft: #f6f9ff;
    --white: #fff;
    --shadow: 0 22px 70px rgba(15, 35, 75, 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: -1.0px;
}

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(67, 117, 255, 0.2),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #06132d 0%,
            #0b2050 56%,
            #16104a 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.45;
}

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

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

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

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

    background:
        radial-gradient(
            circle,
            #8b5cf6,
            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: #60a5fa;
}

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

    background: #22d3ee;

    border-radius: 50%;

    box-shadow:
        0 0 0 6px
        rgba(34, 211, 238, 0.1);

    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,
            #67e8f9,
            #818cf8
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-lead {
    font-size: 15px;

    color: #b8c8df;

    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,
            #2563eb,
            #7c3aed
        );

    box-shadow:
        0 12px 30px
        rgba(37, 99, 235, 0.28);
}

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

    box-shadow:
        0 17px 35px
        rgba(37, 99, 235, 0.35);
}

.btn-ghost {
    color: #e5efff;

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

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

    backdrop-filter: blur(10px);
}

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

    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: #8296b5;

    margin-top: 5px;
}


/* =========================================
   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.12),
            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: #67e8f9;

    background:
        rgba(34, 211, 238, 0.08);

    border:
        1px solid
        rgba(103, 232, 249, 0.2);

    padding: 7px 10px;

    border-radius: 30px;
}

.dash-more {
    color: #9db0cb;
}

.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(4, 14, 34, 0.34);

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

.metric span,
.metric small {
    display: block;

    color: #91a6c2;

    font-size: 9px;
}

.metric strong {
    display: block;

    color: #fff;

    font:
        700 22px
        "Plus Jakarta Sans";

    margin: 7px 0;
}

.metric small {
    color: #67e8f9;
}


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

.chart {
    height: 155px;

    margin: 14px 0;

    padding: 15px;

    border-radius: 18px;

    background:
        rgba(3, 13, 32, 0.25);

    position: relative;
}

.chart-label {
    font-size: 9px;

    color: #8ca0bb;
}

.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,
            #2563eb,
            #22d3ee
        );

    opacity: 0.8;
}


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

.video-section {
    position: relative;
    overflow: hidden;
}

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

.video-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.video-card {
    position: relative;
    width: 100%;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 25px 70px rgba(7, 21, 47, 0.12);
    overflow: hidden;
}

.video-card video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 18px;
    background: #06132d;
}

/* Responsive */
@media (max-width: 768px) {

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

    .video-card {
        padding: 6px;
        border-radius: 16px;
    }

    .video-card video {
        border-radius: 12px;
    }

}

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

.platform-stack {
    display: flex;

    gap: 7px;

    flex-wrap: wrap;
}

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

    color: #b9c9dc;

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

    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: #67e8f9;
}

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

.floating-card-a {
    left: -15px;
    top: 105px;
}

.floating-card-b {
    right: -5px;
    bottom: 110px;

    animation-delay: 1.5s;
}


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

.scroll-note {
    position: absolute;

    bottom: 28px;

    left: 50%;

    transform:
        translateX(-50%);

    color: #8397b5;

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;

    display: flex;

    align-items: center;

    gap: 9px;
}

.scroll-note span {
    width: 22px;
    height: 1px;

    background: #8397b5;
}


/* =========================================
   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: #52627b;

    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,
            #f7faff
        );

    box-shadow: var(--shadow);

    transition: 0.3s;
}

.glass-card:hover {
    transform: translateY(-7px);

    border-color: #bfdbfe;
}

.glass-card .number {
    position: absolute;

    right: 22px;
    top: 20px;

    color: #c8d7ed;

    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: #eff6ff;

    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,
            #dbeafe,
            #ede9fe
        );

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

    transition: 0.35s;
}

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

    box-shadow: var(--shadow);

    border-color: #bfdbfe;
}

.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,
            #eff6ff,
            #f5f3ff
        );

    color: var(--blue);

    font-size: 18px;
}

.service-index {
    position: absolute;

    right: 20px;
    top: 23px;

    color: #c3d0e2;

    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: #f1f5f9;

    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
        #c8d8ee;

    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,
            #2563eb,
            #7c3aed
        );

    box-shadow:
        0 25px 55px
        rgba(37, 99, 235, 0.3);

    z-index: 2;
}

.core-logo span {
    color: #67e8f9;
}

.orbit-tag {
    position: absolute;

    padding: 9px 12px;

    border-radius: 10px;

    background: #fff;

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

    box-shadow:
        0 10px 30px
        rgba(15, 35, 75, 0.08);

    font-size: 10px;

    font-weight: 700;

    color: #42526a;
}

.orbit-tag i {
    color: var(--blue);

    margin-right: 5px;
}

.tag-a {
    top: 55px;
    right: 15px;
}

.tag-b {
    bottom: 45px;
    left: 10px;
}

.tag-c {
    top: 195px;
    left: -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: #eff6ff;

    display: flex;

    gap: 12px;

    color: #355070;

    font-size: 11px;

    line-height: 1.6;
}

.mini-note i {
    color: var(--blue);

    font-size: 17px;
}


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

.benefits-section {
    background: #f8fbff;
}

.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: #d3dfed;

    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,
            #07152f,
            #102a5b
        );

    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(25, 211, 255, 0.22),
            transparent 65%
        );
}

.process-intro {
    position: relative;

    z-index: 1;
}

.process-intro p {
    color: #9fb2ce;

    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(103, 232, 249, 0.3);

    border-radius: 12px;

    display: grid;

    place-items: center;

    color: #67e8f9;

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

.process-item h3 {
    font-size: 15px;

    margin: 0 0 6px;
}

.process-item p {
    color: #91a5c0;

    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(15, 35, 75, 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: #93c5fd;

    box-shadow:
        0 20px 65px
        rgba(37, 99, 235, 0.13);

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

.popular {
    position: absolute;

    right: 20px;
    top: 20px;

    background: #dbeafe;

    color: #1d4ed8;

    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: #64748b;
}

.price-card h3 {
    font-size: 22px;

    margin: 16px 0;
}

.price {
    font-size: 11px;

    color: #718096;
}

.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: #4b5c75;
}

.price-card li i {
    color: #22c55e;

    margin-right: 7px;
}

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

    color: var(--ink);

    width: 100%;
}

.btn-outline:hover {
    border-color: #93c5fd;

    color: var(--blue);

    background: #eff6ff;
}


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

.faq-section {
    background: #f8fbff;
}

.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,
            #07152f,
            #12306b 55%,
            #3b1c77
        );

    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(25, 211, 255, 0.3),
            transparent 65%
        );
}

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 700px;
}

.section-kicker.light {
    color: #67e8f9;
}

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

    line-height: 1.1;

    margin: 15px 0;
}

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

    color: #aabbd2;

    max-width: 600px;

    margin-bottom: 27px;
}

.btn-white {
    background: #fff;

    color: #10204a;
}

.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: #67e8f9;
}

.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(34, 211, 238, 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;
    }
}