/* ==========================================================
   Premium Global Scrollbar
   ========================================================== */

::-webkit-scrollbar{
    width:2px;
    height:2px;
}

::-webkit-scrollbar-track{
    background:transparent;
}

::-webkit-scrollbar-thumb{
    background:rgba(255,255,255,.18);
    border-radius:999px;
}

::-webkit-scrollbar-thumb:hover{
    background:#3b82f6;
}

:root {

            /* COLORS */
            --bg: #19192e;

            --surface: #041642;
            --surface-2: #0a1d52;

            --primary: #003e91;
            --primary-hover: #0050bb;

            --secondary: #002063;

            --text: #ffffff;

            --muted: rgba(255,255,255,0.62);
            --soft: rgba(255,255,255,0.40);

            --border: rgba(255,255,255,0.08);
            --border-strong: rgba(255,255,255,0.16);

            /* SHADOWS */
            --shadow:
                0 20px 70px rgba(0,0,0,0.55);

            --primary-shadow:
                0 20px 60px rgba(0,62,145,0.35);

            --glow-primary:
                rgba(0,62,145,0.35);

        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        /* UTILITIES */

        .bg-main {
            background: var(--bg);
        }

        .bg-surface {
            background: var(--surface);
        }

        .bg-surface-2 {
            background: var(--surface-2);
        }

        .bg-primary {
            background: var(--primary);
        }

        .bg-primary-hover:hover {
            background: var(--primary-hover);
        }

        .text-main {
            color: var(--text);
        }

        .text-muted {
            color: var(--muted);
        }

        .text-soft {
            color: var(--soft);
        }

        .text-primary {
            color: var(--primary);
        }

        .border-main {
            border-color: var(--border);
        }

        .border-strong {
            border-color: var(--border-strong);
        }

        .shadow-main {
            box-shadow: var(--shadow);
        }

        .shadow-primary {
            box-shadow: var(--primary-shadow);
        }

        /* PREMIUM EFFECTS */


        .hero-slow {
    opacity: 0;
    transform: translateY(34px);
    animation: heroSmooth 1.25s cubic-bezier(.16,1,.3,1) forwards;
}

.hero-delay-1 { animation-delay: .20s; }
.hero-delay-2 { animation-delay: .42s; }
.hero-delay-3 { animation-delay: .64s; }

.hero-glow {
    animation: heroGlow 5s ease-in-out infinite;
}

 @keyframes heroFadeUp {
            from {
                opacity: 0;
                transform: translateY(28px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes ctaGlow {
            0%,100% {
                box-shadow:
                    0 0 25px rgba(0,80,187,0.35),
                    0 0 60px rgba(0,80,187,0.15);
            }

            50% {
                box-shadow:
                    0 0 45px rgba(0,200,255,0.45),
                    0 0 80px rgba(0,80,187,0.25);
            }
        }

        @keyframes typingCursor {
            0%,100% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }
        }

        .hero-rise {
            animation: heroFadeUp .9s ease both;
        }

        .hero-delay-1 {
            animation-delay: .15s;
        }

        .hero-delay-2 {
            animation-delay: .3s;
        }

        .hero-delay-3 {
            animation-delay: .45s;
        }

        .typing-wrapper {
            min-height: 1.2em;
            display: flex;
            align-items: center;
        }

        .typing-text {
            color: #62dfff;
            position: relative;
        }

        .typing-text::after {
            content: "|";
            margin-left: 6px;
            animation: typingCursor .7s infinite;
        }

        .cta-glow {
            animation: ctaGlow 3s ease-in-out infinite;
        }

        body {
    font-family: 'Inter', sans-serif;
}

.hero-title {
    font-family: 'Star Shield', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-text {
    font-family: 'Inter', sans-serif;
}


@keyframes heroSmooth {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGlow {
    0%, 100% {
        opacity: .45;
        transform: scale(1);
    }
    50% {
        opacity: .8;
        transform: scale(1.12);
    }
}

        .blue-gradient {
            background:
                linear-gradient(
                    135deg,
                    var(--secondary),
                    var(--primary)
                );
        }

        .glass-effect {
            background: rgba(4, 22, 66, 0.72);
            backdrop-filter: blur(20px);
        }

        .deep-card {
            background:
                linear-gradient(
                    180deg,
                    rgba(255,255,255,0.03),
                    rgba(255,255,255,0.015)
                );
        }

        /* ANIMATIONS */

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes floatSoft {
            0%,100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-14px);
            }
        }

        @keyframes glowMove {
            0%,100% {
                transform: translate(0,0) scale(1);
            }

            50% {
                transform: translate(-20px,20px) scale(1.05);
            }
        }

        @keyframes navDrop {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-up {
            animation: fadeUp .8s ease both;
        }

        .delay-1 {
            animation-delay: .1s;
        }

        .delay-2 {
            animation-delay: .2s;
        }

        .delay-3 {
            animation-delay: .3s;
        }

        .float-soft {
            animation: floatSoft 5s ease-in-out infinite;
        }

        .glow-move {
            animation: glowMove 8s ease-in-out infinite;
        }

        .nav-animate {
            animation: navDrop .7s ease both;
        }

        /* PREMIUM CARD */

        .premium-card {
            position: relative;
            overflow: hidden;
        }

        .premium-card::before {

            content: "";

            position: absolute;

            inset: 0;

            background:
                linear-gradient(
                    120deg,
                    transparent,
                    rgba(255,255,255,.06),
                    transparent
                );

            transform: translateX(-100%);

            transition: .9s;
        }

        .premium-card:hover::before {
            transform: translateX(100%);
        }

        .mobile-menu-fold {
    opacity: 0;
    visibility: hidden;
    transform: perspective(900px) rotateX(-14deg) translateY(-10px) scale(.98);
    transform-origin: top;
    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .42s cubic-bezier(.16,1,.3,1);
}

.liquid-glass-bubble {
    transform: translateZ(0);
}

.liquid-glass-bubble::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.liquid-glass-bubble::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 26%),
        radial-gradient(circle at 70% 90%, rgba(98,223,255,.12), transparent 32%);
    opacity: .8;
    pointer-events: none;
}

.liquid-glass-shine {
    animation: liquidGlassScroll linear both;
    animation-timeline: scroll(root);
}

@keyframes liquidGlassScroll {
    from {
        transform: translateX(-45%) translateY(-12%) rotate(8deg);
    }

    to {
        transform: translateX(45%) translateY(12%) rotate(8deg);
    }
}

.mobile-menu-fold.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: perspective(900px) rotateX(0) translateY(0) scale(1);
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 18px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,.75);
    transition: .25s ease;
}

.mobile-menu-item:hover {
    background: rgba(255,255,255,.06);
    color: white;
}

.brodev-flip-card { perspective: 1400px; }
        .brodev-flip-inner {
            transform-style: preserve-3d;
            transition: transform .8s cubic-bezier(.2,.8,.2,1);
        }
        .brodev-flip-card:hover .brodev-flip-inner { transform: rotateY(180deg); }
        .brodev-flip-front,
        .brodev-flip-back {
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }
        .brodev-flip-back { transform: rotateY(180deg); }

        .brodev-big-icon {
            position: absolute;
            right: -30px;
            bottom: -45px;
            font-size: 190px;
            color: #06384a;
            opacity: .55;
            line-height: 1;
        }

        .brodev-card-tall .brodev-big-icon {
            font-size: 230px;
            right: -36px;
            bottom: -55px;
        }

        .brodev-card-wide .brodev-big-icon {
            font-size: 250px;
            right: -40px;
            bottom: -70px;
        }

        @media(max-width:640px) {
            .brodev-big-icon,
            .brodev-card-tall .brodev-big-icon,
            .brodev-card-wide .brodev-big-icon {
                font-size: 155px;
                right: -22px;
                bottom: -32px;
            }
        }
        .brand-slider {
        animation: brandSlide 34s linear infinite;
    }

    .brand-slider:hover {
        animation-play-state: paused;
    }

    @keyframes brandSlide {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-33.333%);
        }
    }
    .brand-showcase{
    isolation:isolate;
}

/* =========================================
   BIG BACKGROUND WORDS
========================================= */

.brand-big-text{
    position:absolute;
    width:52%;
    font-size:clamp(170px,27vw,520px);
    font-weight:1000;
    line-height:.78;
    letter-spacing:-.09em;
    color:rgba(255,255,255,.045);
    pointer-events:none;
    user-select:none;
    z-index:0;
}

.brand-big-top{
    left:-3vw;
    top:7%;
    text-align:left;
}

.brand-big-bottom{
    right:-3vw;
    bottom:7%;
    text-align:right;
}

/* =========================================
   CONTENT POSITIONING
========================================= */

.brand-content{
    max-width:660px;
}

.brand-content-right{
    margin-left:auto;
}

.brand-content-left{
    margin-right:auto;
}

/* Push top section further right */
.brand-slide-right{
    transform:translateX(120px);
}

/* Push bottom section further left */
.brand-slide-left{
    transform:translateX(-120px);
}

@media(min-width:1600px){

    .brand-slide-right{
        transform:translateX(160px);
    }

    .brand-slide-left{
        transform:translateX(-160px);
    }
}

/* =========================================
   TEXT
========================================= */

.brand-kicker{
    color:#0b7cff;
    font-size:13px;
    font-weight:900;
    letter-spacing:.35em;
}

.brand-heading{
    margin-top:32px;
    max-width:900px;

    font-size:clamp(3rem,5vw,5.8rem);

    font-weight:1000;
    line-height:.9;
    letter-spacing:-.055em;
}

.brand-text{
    margin-top:30px;
    max-width:620px;

    color:rgba(255,255,255,.65);

    font-size:17px;
    line-height:1.9;
    font-weight:600;
}

/* =========================================
   DIVIDER
========================================= */

.brand-divider-full{
    width:100vw;
    margin-left:calc(50% - 50vw);
    filter:drop-shadow(
        0 0 25px rgba(11,124,255,.4)
    );
}

.brand-divider-line{
    height:2px;

    background:linear-gradient(
        90deg,
        #0b7cff,
        #62dfff,
        #0b7cff
    );
}

.brand-triangle-mask{
    overflow:hidden;
}

.brand-triangle-track{
    display:flex;
    width:max-content;
    animation:triangleMove 18s linear infinite;
}

.brand-triangle-track span{
    width:70px;
    height:38px;

    flex-shrink:0;

    background:linear-gradient(
        180deg,
        #1d8dff,
        #0055cc
    );

    clip-path:polygon(
        0 0,
        100% 0,
        50% 100%
    );
}

@keyframes triangleMove{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

/* =========================================
   TABLET
========================================= */

@media(max-width:1024px){

    .brand-big-text{
        width:58%;
        font-size:clamp(150px,25vw,430px);
    }

    .brand-heading{
        font-size:clamp(3rem,7vw,5rem);
    }

    .brand-text{
        max-width:560px;
    }

    .brand-slide-right,
    .brand-slide-left{
        transform:none;
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .brand-big-text{
        width:auto;
        font-size:clamp(120px,42vw,240px);
    }

    .brand-big-top{
        left:-10px;
        top:70px;
    }

    .brand-big-bottom{
        right:-10px;
        bottom:70px;
    }

    .brand-content-right{
        margin-left:0;
    }

    .brand-kicker{
        font-size:11px;
        letter-spacing:.26em;
    }

    .brand-heading{
        margin-top:28px;
        font-size:clamp(2.7rem,11vw,4.2rem);
        line-height:.94;
    }

    .brand-text{
        font-size:16px;
        line-height:1.85;
    }

    .brand-triangle-track span{
        width:54px;
        height:30px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .brand-heading{
        font-size:clamp(2.4rem,13vw,3.6rem);
    }

    .brand-text{
        font-size:15px;
        line-height:1.8;
    }

    .brand-triangle-track span{
        width:46px;
        height:26px;
    }
}

/* =========================================
   REDUCED MOTION
========================================= */

@media(prefers-reduced-motion:reduce){

    .brand-triangle-track{
        animation:none;
    }

    .brand-slide-right,
    .brand-slide-left{
        transform:none;
    }
}
/* ==============================
   SECTION
============================== */

.process-section {
    isolation: isolate;
}

/* ==============================
   LEFT PROCESS VISUAL
============================== */

.process-float {
    position: relative;
    width: 100%;
    max-width: 620px;
    height: 560px;
    margin: 0;
    overflow: visible;
}

.process-system {
    --system-size: 520px;
    --orbit-size: 330px;
    --icon-size: 78px;

    --circle-radius: calc(var(--orbit-size) / 2);
    --icon-radius: calc(var(--circle-radius) + (var(--icon-size) / 2) + 14px);

    position: absolute;
    left: 0;
    top: 50%;
    width: var(--system-size);
    height: var(--system-size);
    transform: translateY(-50%);
}

.process-float-title {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 20;
    transform: translateY(-50%);
    text-align: left;
    pointer-events: none;
}

.process-title-our {
    color: #fff;
    font-size: clamp(54px, 5vw, 82px);
    font-weight: 1000;
    line-height: .85;
}

.process-title-web {
    color: #0b7cff;
    font-size: clamp(88px, 8vw, 138px);
    font-weight: 1000;
    line-height: .78;
}

.process-title-bottom {
    margin-top: 12px;
    color: #fff;
    font-size: clamp(30px, 3vw, 48px);
    font-weight: 1000;
    line-height: .95;
}

.process-orbit {
    position: absolute;
    right: 120px;
    top: 90px;
    width: var(--orbit-size);
    height: var(--orbit-size);
    border-radius: 999px;
    z-index: 10;
}

.process-curve {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-top: 5px solid #0b7cff;
    border-right: 5px solid #0b7cff;
    border-radius: 999px;
    transform: rotate(-32deg);
    opacity: .95;
    filter: drop-shadow(0 0 18px rgba(11, 124, 255, .35));
    pointer-events: none;
}

.float-step {
    --angle: 0deg;

    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--icon-size);
    height: var(--icon-size);
    margin-left: calc(var(--icon-size) / -2);
    margin-top: calc(var(--icon-size) / -2);

    transform:
        rotate(var(--angle))
        translateX(var(--icon-radius))
        rotate(calc(var(--angle) * -1));

    z-index: 30;
}

.float-step-1 { --angle: 290deg; }
.float-step-2 { --angle: 322deg; }
.float-step-3 { --angle: -3deg; }
.float-step-4 { --angle: 30deg; }

.float-step-1 .float-icon { animation-delay: 0s; }
.float-step-2 .float-icon { animation-delay: .8s; }
.float-step-3 .float-icon { animation-delay: 1.6s; }
.float-step-4 .float-icon { animation-delay: 2.4s; }

.float-icon {
    width: var(--icon-size);
    height: var(--icon-size);
    border-radius: 999px;
    border: 1px solid rgba(98, 223, 255, .35);
    background: #0b7cff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;

    box-shadow:
        0 22px 70px rgba(11, 124, 255, .35),
        inset 0 1px 0 rgba(255, 255, 255, .22);

    cursor: pointer;
    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        box-shadow .25s ease;

    animation: iconFloat 5s ease-in-out infinite;
}

.float-icon.dark {
    background: #050505;
    border-color: rgba(255, 255, 255, .18);
    box-shadow:
        0 22px 70px rgba(0, 0, 0, .45),
        inset 0 1px 0 rgba(255, 255, 255, .12);
}

.float-step:hover .float-icon {
    transform: scale(1.08);
    background: #62dfff;
    color: #02040b;
    box-shadow:
        0 28px 90px rgba(98, 223, 255, .45),
        0 0 35px rgba(98, 223, 255, .25),
        inset 0 1px 0 rgba(255, 255, 255, .32);
}

.float-label {
    position: absolute;
    left: calc(var(--icon-size) + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(-8px);
    white-space: nowrap;
    color: #62dfff;
    font-size: 18px;
    font-weight: 1000;
    letter-spacing: -.02em;
    opacity: 0;
    visibility: hidden;
    transition: .22s ease;
    text-shadow: 0 0 22px rgba(98, 223, 255, .35);
}

.float-step:hover .float-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.float-step-1 .float-label,
.float-step-4 .float-label {
    left: auto;
    right: calc(var(--icon-size) + 14px);
}

.process-orbit:hover .process-curve {
    filter:
        drop-shadow(0 0 20px rgba(11, 124, 255, .45))
        drop-shadow(0 0 40px rgba(98, 223, 255, .20));
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.03);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .process-float {
        max-width: 100%;
        margin-inline: auto;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .process-float {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 430px;
        overflow: hidden;
        margin: 0 auto;
    }

    .process-system {
        --system-size: min(100vw, 430px);
        --orbit-size: 76vw;
        --icon-size: 48px;

        --circle-radius: calc(var(--orbit-size) / 2);
        --icon-radius: calc(var(--circle-radius) + (var(--icon-size) / 2) + 8px);

        position: relative;
        left: 40%;
        top: auto;
        width: var(--system-size);
        height: 430px;
        transform: translateX(-50%);
        transform-origin: center;
    }

    .process-float-title {
        left: clamp(20px, 10vw, 48px);
        top: 50%;
        transform: translateY(-50%);
    }

    .process-title-our {
        font-size: clamp(58px, 18vw, 78px);
        line-height: .85;
    }

    .process-title-web {
        font-size: clamp(82px, 25vw, 112px);
        line-height: .78;
    }

    .process-title-bottom {
        margin-top: 8px;
        font-size: clamp(24px, 7.5vw, 34px);
        line-height: .9;
    }

    .process-orbit {
        right: auto;
        left: 50%;
        top: 50%;
        width: var(--orbit-size);
        height: var(--orbit-size);
        transform: translate(-50%, -50%);
    }

    .process-curve {
        border-top-width: 3px;
        border-right-width: 3px;
    }

    .float-step {
        width: var(--icon-size);
        height: var(--icon-size);
        margin-left: calc(var(--icon-size) / -2);
        margin-top: calc(var(--icon-size) / -2);
    }

    .float-icon {
        width: var(--icon-size);
        height: var(--icon-size);
        font-size: 18px;
    }

    .float-label {
        display: none;
    }

    .float-step-1 { --angle: 292deg; }
    .float-step-2 { --angle: 326deg; }
    .float-step-3 { --angle: 2deg; }
    .float-step-4 { --angle: 34deg; }
}

/* Small phones */
@media (max-width: 390px) {
    .process-float {
        min-height: 400px;
    }

    .process-system {
        --orbit-size: 74vw;
        --icon-size: 44px;
        height: 400px;
    }

    .process-float-title {
        left: 22px;
    }

    .process-title-our {
        font-size: 56px;
    }

    .process-title-web {
        font-size: 82px;
    }

    .process-title-bottom {
        font-size: 24px;
    }
}

/* ==============================
   RIGHT FEATURES
============================== */

.process-features {
    max-width: 820px;
}

.process-center-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,.12);
    display: block;
}

.process-col-left {
    padding-top: 64px;
}

.process-feature {
    display: flex;
    gap: 18px;
    padding: 36px 0;
}

.process-feature-border {
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.process-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 999px;
    border: 1px solid rgba(98,223,255,.75);
    color: #62dfff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(98,223,255,.06);
}

.process-feature h3 {
    color: #fff;
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 1000;
    line-height: 1.1;
    letter-spacing: -.03em;
}

.process-feature p {
    margin-top: 12px;
    max-width: 310px;
    color: rgba(255,255,255,.56);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 600;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1280px) {
    .process-visual {
        transform: scale(.9);
        transform-origin: left center;
    }
}

@media (max-width: 1024px) {
    .process-visual {
        margin-inline: auto;
        transform: none;
    }

    .process-center-line {
        display: none;
    }

    .process-col-left {
        padding-top: 0;
    }
}

@media (max-width: 640px) {
    .process-section {
        padding-block: 90px;
    }

    .process-visual {
        height: 500px;
        transform: scale(.82);
        transform-origin: left top;
    }

    .process-feature {
        padding: 28px 0;
    }
}
/* ==========================
   LEFT FAQ BG ONLY
========================== */

.faq-left-bg{
    position:absolute;
    left:-180px;
    top:50%;
    width:620px;
    height:620px;
    transform:translateY(-50%);
    border-radius:999px;
    overflow:hidden;
    pointer-events:none;
    opacity:.26;
    z-index:0;
    mask-image:radial-gradient(circle, black 0%, black 42%, transparent 72%);
}

.faq-left-bg::before{
    content:"";
    position:absolute;
    inset:-40%;

    background:
        repeating-linear-gradient(
            -28deg,
            transparent 0px,
            transparent 26px,
            rgba(11,124,255,.20) 27px,
            transparent 28px
        );

    animation:faqBgMove 18s linear infinite;
}

.faq-left-bg::after{
    content:"";
    position:absolute;
    inset:18%;
    border-radius:999px;
    background:radial-gradient(circle, rgba(11,124,255,.20), transparent 68%);
    filter:blur(40px);
}

@keyframes faqBgMove{
    from{
        transform:translateX(-80px) rotate(0deg);
    }

    to{
        transform:translateX(80px) rotate(360deg);
    }
}

/* ==========================
   FAQ ROWS
========================== */

.faq-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-row{
    width:min(100%, 720px);
    margin-left:var(--shift);
    margin-right:0;
    border-radius:14px;
    background:linear-gradient(90deg, rgba(255,255,255,.055), rgba(255,255,255,.095));
    border:1px solid rgba(255,255,255,.08);
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.22);
    backdrop-filter:blur(16px);
    transition:.25s ease;
}

.faq-row:hover{
    border-color:rgba(98,223,255,.18);
    transform:translateX(4px);
}

.faq-row summary{
    list-style:none;
    cursor:pointer;
    min-height:72px;
    padding:0 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    color:white;
    font-size:20px;
    font-weight:800;
}

.faq-row summary::-webkit-details-marker{
    display:none;
}

.faq-row i{
    color:rgba(255,255,255,.65);
    font-size:16px;
    transition:.25s ease;
}

.faq-row[open] i{
    transform:rotate(180deg);
    color:#62dfff;
}

.faq-row p{
    padding:0 28px 26px;
    color:rgba(255,255,255,.55);
    line-height:1.8;
    font-size:15px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1024px){
    .faq-row{
        margin-left:0;
        width:100%;
    }

    .faq-left-bg{
        left:-120px;
        width:520px;
        height:520px;
        opacity:.2;
    }
}

@media(max-width:640px){
    .faq-row summary{
        min-height:66px;
        padding:0 20px;
        font-size:17px;
    }

    .faq-row p{
        padding:0 20px 22px;
    }

    .faq-left-bg{
        width:380px;
        height:380px;
        left:-150px;
        opacity:.18;
    }
}
.cta-stars{
    position:absolute;
    inset:0;
    z-index:0;
    opacity:.18;
    pointer-events:none;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.16) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,.12) 1px, transparent 1px),
        radial-gradient(circle at 60% 20%, rgba(11,124,255,.14) 1px, transparent 1px);
    
}

.cta-main-glow{
    position:absolute;
    z-index:0;
    left:50%;
    top:50%;
    width:520px;
    height:520px;
    transform:translate(-50%,-50%);
    border-radius:999px;
    background:radial-gradient(circle, rgba(11,124,255,.10), transparent 65%);
    filter:blur(120px);
    opacity:.4;
    pointer-events:none;
}

.cta-dot-word{
    position:absolute;
    z-index:1;
    font-size:220px;
    font-weight:1000;
    line-height:.8;
    letter-spacing:-0.08em;
    color:transparent;
    opacity:.08;
    pointer-events:none;
    user-select:none;
    background-image:radial-gradient(circle, rgba(255,255,255,.45) 1.7px, transparent 2px);
    background-size:12px 12px;
    background-clip:text;
    -webkit-background-clip:text;
}

.cta-dot-bro{
    left:40px;
    top:40px;
}

.cta-dot-dev{
    right:40px;
    bottom:40px;
}

.cta-title{
    position:relative;
}

@media(max-width:768px){
    .cta-dot-word{
        font-size:120px;
        background-size:9px 9px;
        opacity:.08;
    }

    .cta-dot-bro{
        left:20px;
        top:30px;
    }

    .cta-dot-dev{
        right:20px;
        bottom:35px;
    }

    .cta-main-glow{
        width:380px;
        height:380px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FOOTER */
.footer {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.035), transparent 44%),
        #000;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 80px 24px 38px;
}

.footer-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.base-line {
    fill: none;
    stroke: rgba(255,255,255,0.008);
    stroke-width: 1;
}

/* small premium falling stars */
.flow-line {
    fill: none;
    stroke: url(#tailGradient);
    stroke-width: 1.15;
    stroke-linecap: round;
    stroke-dasharray: 78 1850;
    opacity: 0;
    animation: flowMove 14s cubic-bezier(.42,0,.28,1) infinite;
}

.flow-line.soft {
    stroke-width: 1;
    stroke-dasharray: 70 1850;
}

.f1 { animation-delay: .2s; }
.f2 { animation-delay: .9s; animation-duration: 13.8s; }
.f3 { animation-delay: 1.55s; animation-duration: 14.4s; }
.f4 { animation-delay: 3.8s; animation-duration: 13.5s; }
.f5 { animation-delay: 4.45s; animation-duration: 15s; }
.f6 { animation-delay: 5.15s; animation-duration: 14s; }
.f7 { animation-delay: 7.6s; animation-duration: 15.5s; }
.f8 { animation-delay: 8.35s; animation-duration: 14.8s; }

@keyframes flowMove {
    0% {
        stroke-dashoffset: 360;
        opacity: 0;
    }

    12% {
        opacity: 0;
    }

    22% {
        opacity: .32;
    }

    34% {
        opacity: .72;
    }

    46% {
        opacity: .72;
    }

    58% {
        opacity: .22;
    }

    66% {
        stroke-dashoffset: -1250;
        opacity: 0;
    }

    100% {
        stroke-dashoffset: -1250;
        opacity: 0;
    }
}

/* CONTENT */
.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: end;
}

.footer-brand-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: 18px;
}

.footer-brand-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #fff;
    opacity: .75;
}

.footer-title {
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 950;
    letter-spacing: -3px;
    line-height: .95;
}

.footer-title span {
    color: #9ca3af;
}

.footer-description {
    margin-top: 22px;
    max-width: 560px;
    color: #858585;
    line-height: 1.85;
    font-size: 15px;
}

.footer-actions {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-btn {
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    transition: .2s ease;
}

.footer-btn.primary {
    background: #fff;
    color: #000;
}

.footer-btn.primary:hover {
    transform: translateY(-2px);
}

.footer-btn.ghost {
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.045);
}

.footer-btn.ghost:hover {
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.075);
}

.footer-panel {
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.035);
    border-radius: 30px;
    padding: 28px;
}

.footer-panel-title {
    color: #fff;
    font-size: 15px;
    font-weight: 850;
    margin-bottom: 18px;
}

.footer-mini-list {
    display: grid;
    gap: 14px;
}

.footer-mini-item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-mini-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.footer-mini-item span {
    color: #aaa;
    font-size: 14px;
}

.footer-mini-item strong {
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
}

.footer-nav {
    margin-top: 70px;
    padding-top: 34px;
    border-top: 1px solid rgba(255,255,255,.07);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 46px;
}

.footer-group h4 {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .16em;
    margin-bottom: 18px;
}

.footer-group a {
    display: block;
    width: fit-content;
    color: #858585;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 13px;
    transition: .2s ease;
}

.footer-group a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-bottom {
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex;
    justify-content: space-between;
    gap: 22px;
    color: #666;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 22px;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
    transition: .2s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .footer {
        padding-top: 170px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-description {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-actions {
        justify-content: center;
    }

    .footer-brand-label {
        justify-content: center;
    }

    .footer-panel {
        max-width: 560px;
        margin: auto;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 34px;
    }

    .footer-group a {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-group a:hover {
        transform: none;
    }
}



.footer-newsletter-clean {
    max-width: 420px;
}

.footer-newsletter-clean span {
    display: block;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .16em;
    margin-bottom: 16px;
}

.footer-newsletter-clean h3 {
    color: #fff;
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -1px;
    max-width: 360px;
}

.newsletter-clean-form {
    margin-top: 28px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 999px;
    padding: 6px;
}

.newsletter-clean-form input {
    flex: 1;
    min-width: 0;
    height: 42px;
    padding: 0 16px;
    background: transparent;
    border: 0;
    outline: 0;
    color: #fff;
    font-size: 14px;
}

.newsletter-clean-form input::placeholder {
    color: #666;
}
.newsletter-clean-form,
.newsletter-clean-form:hover,
.newsletter-clean-form:focus,
.newsletter-clean-form:focus-within {
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.09);
    box-shadow: none;
}

.newsletter-clean-form input,
.newsletter-clean-form input:hover,
.newsletter-clean-form input:focus,
.newsletter-clean-form input:active {
    background: transparent;
    border: 0;
    outline: 0;
    box-shadow: none;
    color: #fff;
}

.newsletter-clean-form input:-webkit-autofill,
.newsletter-clean-form input:-webkit-autofill:hover,
.newsletter-clean-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    box-shadow: 0 0 0 1000px transparent inset;
    transition: background-color 9999s ease-in-out 0s;
}

.newsletter-clean-form button {
    height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

@media (max-width: 768px) {
    .footer {
        min-height: 690px;
        padding-top: 145px;
    }

    .footer-title {
        letter-spacing: -1.8px;
    }

    .footer-newsletter {
    max-width: 520px;
    margin: auto;
    padding-left: 0;
    padding-top: 26px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.14);
}

.footer-newsletter::before {
    left: 50%;
    top: -1px;
    width: 90px;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(to right, transparent, #fff, transparent);
}

.footer-newsletter h3,
.footer-newsletter p,
.newsletter-form {
    margin-left: auto;
    margin-right: auto;
}

    .footer-mini-item {
        flex-direction: column;
        gap: 5px;
    }

    .footer-mini-item strong {
        white-space: normal;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .flow-line {
        stroke-width: 1;
        stroke-dasharray: 62 1850;
    }

    .flow-line.soft {
        stroke-width: .9;
        stroke-dasharray: 58 1850;
    }
}