:root {
    --ubq-blue: #0a84ff;
    --ubq-cyan: #00d9ff;
    --ubq-indigo: #635bff;
    --ubq-violet: #8b5cf6;
    --ubq-navy: #050b18;
    --ubq-navy-soft: #091426;
    --ubq-text: #13203a;
    --ubq-muted: #6d7890;
    --ubq-light: #f5f8fc;
    --ubq-border: #e5ebf4;
}


/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ubq-text);
    background: #fff;
}

.min-vh-75 {
    min-height: 78vh;
}


/* =========================================================
   HERO
========================================================= */

.ubq-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 110px;
    color: #fff;
    background:
        radial-gradient(circle at 72% 45%, rgba(0, 217, 255, .11), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(99, 91, 255, .18), transparent 32%),
        radial-gradient(circle at 12% 15%, rgba(10, 132, 255, .13), transparent 30%),
        linear-gradient(135deg, #030711 0%, #06101f 48%, #080d1d 100%);
}

.ubq-hero::after {
    content: "";
    position: absolute;
    right: -200px;
    bottom: -300px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(0, 217, 255, .04);
    filter: blur(30px);
}

.ubq-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .23;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.ubq-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.ubq-glow-one {
    top: -150px;
    left: 30%;
    width: 400px;
    height: 400px;
    background: rgba(10, 132, 255, .13);
}

.ubq-glow-two {
    right: -100px;
    bottom: -100px;
    width: 500px;
    height: 500px;
    background: rgba(99, 91, 255, .12);
}


/* EYEBROW */

.ubq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #70dcff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.4px;
}

.ubq-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ubq-cyan);
    box-shadow: 0 0 14px var(--ubq-cyan);
    animation: ubqPulse 2s infinite;
}


/* HERO TITLE */

.ubq-hero-title {
    max-width: 820px;
    margin-bottom: 28px;
    color: #fff;
    font-size: clamp(55px, 6vw, 88px);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -5px;
}

.ubq-hero-title span {
    color: transparent;
    background:
        linear-gradient(
            90deg,
            #00d9ff 0%,
            #4ea7ff 35%,
            #8b72ff 70%,
            #b16cff 100%
        );
    background-clip: text;
    -webkit-background-clip: text;
}

.ubq-hero-text {
    max-width: 660px;
    margin: 0;
    color: #9eacc3;
    font-size: 18px;
    line-height: 1.8;
}


/* HERO BUTTONS */

.ubq-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 36px;
}

.ubq-btn-primary,
.ubq-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 25px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: all .25s ease;
}

.ubq-btn-primary {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(91, 203, 255, .5);
    color: #fff;
    background:
        linear-gradient(
            135deg,
            #0877f9,
            #5757f5
        );
    box-shadow:
        0 10px 35px rgba(8, 119, 249, .3),
        inset 0 1px 0 rgba(255, 255, 255, .2);
}

.ubq-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        0 15px 45px rgba(8, 119, 249, .45),
        0 0 30px rgba(0, 217, 255, .15);
}

.ubq-btn-primary i {
    transition: transform .25s ease;
}

.ubq-btn-primary:hover i {
    transform: translateX(4px);
}

.ubq-btn-secondary {
    border: 1px solid rgba(255, 255, 255, .15);
    color: #dbe8f8;
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(12px);
}

.ubq-btn-secondary:hover {
    color: #fff;
    border-color: rgba(0, 217, 255, .45);
    background: rgba(255, 255, 255, .09);
}


/* LOCAL FIRST */

.ubq-local-first {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 570px;
    margin-top: 42px;
    padding: 17px 19px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
    backdrop-filter: blur(10px);
}

.ubq-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    border-radius: 10px;
    color: #00e1ff;
    background: rgba(0, 217, 255, .11);
    box-shadow: inset 0 0 15px rgba(0, 217, 255, .05);
}

.ubq-local-first strong,
.ubq-local-first span {
    display: block;
}

.ubq-local-first strong {
    margin-bottom: 4px;
    color: #fff;
    font-size: 14px;
}

.ubq-local-first span {
    color: #8291aa;
    font-size: 12px;
    line-height: 1.6;
}


/* HERO STATS */

.ubq-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 38px;
}

.ubq-hero-stats div:not(.ubq-stat-line) {
    display: flex;
    flex-direction: column;
}

.ubq-hero-stats strong {
    color: #fff;
    font-size: 16px;
    font-weight: 750;
}

.ubq-hero-stats span {
    margin-top: 2px;
    color: #66748d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.ubq-stat-line {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, .1);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.ubq-visual {
    position: relative;
    width: 470px;
    height: 470px;
    margin: auto;
}

.ubq-visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(0, 179, 255, .13);
    filter: blur(70px);
}

.ubq-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(75, 186, 255, .13);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ubq-orbit::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ubq-cyan);
    box-shadow: 0 0 15px var(--ubq-cyan);
}

.ubq-orbit-one {
    width: 250px;
    height: 250px;
    animation: ubqSpin 18s linear infinite;
}

.ubq-orbit-two {
    width: 350px;
    height: 350px;
    border-style: dashed;
    animation: ubqSpinReverse 30s linear infinite;
}

.ubq-orbit-three {
    width: 455px;
    height: 455px;
    opacity: .55;
    animation: ubqSpin 45s linear infinite;
}


/* CORE */

.ubq-core {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 190px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 217, 255, .28);
    border-radius: 44px;
    background:
        linear-gradient(
            145deg,
            rgba(14, 32, 57, .92),
            rgba(7, 16, 33, .97)
        );
    box-shadow:
        0 35px 90px rgba(0, 0, 0, .5),
        0 0 55px rgba(0, 183, 255, .15),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
}

.ubq-core::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255, 255, 255, .045);
    border-radius: 36px;
}

.ubq-core-inner {
    position: relative;
    text-align: center;
}

.ubq-mark {
    color: transparent;
    background: linear-gradient(135deg, #00e5ff, #298cff);
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 53px;
    font-weight: 900;
    letter-spacing: -9px;
}

.ubq-mark span {
    color: transparent;
    background: linear-gradient(135deg, #5e8aff, #9b5cff);
    background-clip: text;
    -webkit-background-clip: text;
}

.ubq-core-name {
    margin-top: 5px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 5px;
}

.ubq-core-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    color: #657895;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1px;
}

.ubq-core-status span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #00efaa;
    box-shadow: 0 0 9px #00efaa;
}


/* NODES */

.ubq-node {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 30px;
    color: #a8bad3;
    background: rgba(9, 22, 42, .88);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, .28),
        inset 0 1px 0 rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    font-size: 11px;
    font-weight: 700;
}

.ubq-node i {
    color: var(--ubq-cyan);
    font-size: 14px;
}

.node-one {
    top: 34px;
    left: 175px;
}

.node-two {
    top: 205px;
    right: -7px;
}

.node-three {
    bottom: 35px;
    left: 175px;
}

.node-four {
    top: 205px;
    left: -14px;
}


/* PARTICLES */

.ubq-particle {
    position: absolute;
    z-index: 2;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 12px var(--ubq-cyan);
}

.particle-one {
    top: 70px;
    right: 90px;
}

.particle-two {
    bottom: 85px;
    left: 80px;
}


/* SCROLL */

.ubq-scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
    color: #43516a;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.ubq-scroll-indicator i {
    animation: ubqBounce 2s infinite;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.ubq-section {
    position: relative;
    padding: 125px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(8, 119, 249, .04), transparent 35%),
        #fff;
}

.ubq-section-heading {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.ubq-section-heading > span {
    color: var(--ubq-blue);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 2.5px;
}

.ubq-section-heading h2 {
    margin: 16px 0 20px;
    color: var(--ubq-navy);
    font-size: clamp(38px, 4vw, 55px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2.5px;
}

.ubq-section-heading h2 em {
    color: transparent;
    background: linear-gradient(90deg, var(--ubq-blue), var(--ubq-indigo));
    background-clip: text;
    -webkit-background-clip: text;
    font-style: normal;
}

.ubq-section-heading p {
    color: var(--ubq-muted);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.ubq-feature-card {
    position: relative;
    height: 100%;
    min-height: 300px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--ubq-border);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            #fff,
            #fbfcff
        );
    box-shadow: 0 10px 35px rgba(25, 54, 100, .035);
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.ubq-feature-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(8, 119, 249, .06);
    filter: blur(15px);
    transition: all .4s ease;
}

.ubq-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(8, 119, 249, .25);
    box-shadow:
        0 30px 70px rgba(20, 60, 130, .12);
}

.ubq-feature-card:hover::before {
    background: rgba(8, 119, 249, .11);
    transform: scale(1.2);
}

.ubq-feature-number {
    position: absolute;
    top: 24px;
    right: 27px;
    color: #dce4ef;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.ubq-feature-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 26px;
    border: 1px solid rgba(8, 119, 249, .1);
    border-radius: 15px;
    color: var(--ubq-blue);
    background:
        linear-gradient(
            145deg,
            #f0f7ff,
            #e9f3ff
        );
    box-shadow: 0 8px 20px rgba(8, 119, 249, .08);
    font-size: 22px;
}

.ubq-feature-card h3 {
    position: relative;
    margin-bottom: 13px;
    color: var(--ubq-navy);
    font-size: 20px;
    font-weight: 750;
}

.ubq-feature-card p {
    position: relative;
    margin: 0;
    color: var(--ubq-muted);
    font-size: 13.5px;
    line-height: 1.8;
}

.ubq-feature-arrow {
    position: absolute;
    right: 27px;
    bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #aab5c6;
    background: #f3f6fa;
    font-size: 13px;
    transition: all .3s ease;
}

.ubq-feature-card:hover .ubq-feature-arrow {
    color: #fff;
    background: var(--ubq-blue);
    transform: rotate(45deg);
}

.ubq-feature-highlight {
    border-color: rgba(99, 91, 255, .18);
    background:
        radial-gradient(circle at 90% 0%, rgba(99, 91, 255, .1), transparent 40%),
        linear-gradient(145deg, #fff, #fafaff);
}


/* =========================================================
   LOCAL FIRST
========================================================= */

.ubq-local-section {
    position: relative;
    overflow: hidden;
    padding: 125px 0;
    background:
        radial-gradient(circle at 85% 40%, rgba(0, 217, 255, .07), transparent 30%),
        linear-gradient(135deg, #f5f8fc, #edf4fb);
}

.ubq-local-grid {
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image:
        linear-gradient(rgba(8, 119, 249, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 119, 249, .045) 1px, transparent 1px);
    background-size: 45px 45px;
}

.ubq-reliability-list {
    display: grid;
    gap: 15px;
}

.ubq-reliability-list > div {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 18px;
    border: 1px solid rgba(8, 119, 249, .07);
    border-radius: 15px;
    background: rgba(255, 255, 255, .55);
    transition: all .25s ease;
}

.ubq-reliability-list > div:hover {
    transform: translateX(5px);
    background: #fff;
    box-shadow: 0 12px 35px rgba(25, 65, 120, .08);
}

.ubq-reliability-list > div > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 11px;
    color: var(--ubq-blue);
    background: #e8f3ff;
}

.ubq-reliability-list strong,
.ubq-reliability-list span {
    display: block;
}

.ubq-reliability-list strong {
    margin-bottom: 4px;
    color: var(--ubq-navy);
    font-size: 14px;
}

.ubq-reliability-list span {
    color: var(--ubq-muted);
    font-size: 12.5px;
    line-height: 1.65;
}


/* ARCHITECTURE */

.ubq-architecture {
    position: relative;
    padding: 38px;
    overflow: hidden;
    border: 1px solid rgba(8, 119, 249, .12);
    border-radius: 25px;
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 217, 255, .08), transparent 35%),
        rgba(255, 255, 255, .86);
    box-shadow:
        0 35px 80px rgba(24, 58, 110, .12);
    backdrop-filter: blur(15px);
}

.ubq-architecture-label {
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid #edf0f5;
    color: #9aa7ba;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.ubq-architecture-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px;
    border-radius: 15px;
    transition: background .25s ease;
}

.ubq-architecture-item:hover {
    background: rgba(8, 119, 249, .035);
}

.ubq-architecture-item > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border: 1px solid rgba(8, 119, 249, .1);
    border-radius: 14px;
    color: var(--ubq-blue);
    background: #edf6ff;
    font-size: 19px;
}

.ubq-architecture-item > div:nth-child(2) {
    flex: 1;
}

.ubq-architecture-item small {
    display: block;
    margin-bottom: 3px;
    color: #9ba8ba;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.ubq-architecture-item strong {
    display: block;
    color: var(--ubq-navy);
    font-size: 15px;
}

.ubq-architecture-item p {
    margin: 2px 0 0;
    color: var(--ubq-muted);
    font-size: 11px;
}

.ubq-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00d99a;
    box-shadow: 0 0 10px rgba(0, 217, 154, .65);
}

.ubq-architecture-line {
    position: relative;
    width: 2px;
    height: 30px;
    margin-left: 39px;
    overflow: hidden;
    background: #dce7f3;
}

.ubq-architecture-line span {
    position: absolute;
    top: -100%;
    width: 100%;
    height: 100%;
    background: var(--ubq-blue);
    animation: ubqDataFlow 2s infinite;
}


/* =========================================================
   ECOSYSTEM
========================================================= */

.ubq-ecosystem {
    padding: 125px 0;
    background: #fff;
}

.ubq-ecosystem-card {
    position: relative;
    padding: 70px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(99, 91, 255, .25), transparent 30%),
        radial-gradient(circle at 15% 90%, rgba(0, 217, 255, .1), transparent 30%),
        linear-gradient(135deg, #06101f, #0b1024);
    box-shadow: 0 35px 80px rgba(5, 15, 35, .2);
}

.ubq-ecosystem-glow {
    position: absolute;
    top: -150px;
    right: -80px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(99, 91, 255, .12);
    filter: blur(60px);
}

.ubq-ecosystem-card h2 {
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.ubq-ecosystem-card h2 span {
    color: transparent;
    background: linear-gradient(90deg, #00d9ff, #8c6cff);
    background-clip: text;
    -webkit-background-clip: text;
}

.ubq-ecosystem-card p {
    max-width: 640px;
    color: #8d9cb4;
    font-size: 14px;
    line-height: 1.8;
}

.ubq-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    color: #6edfff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.ubq-text-link:hover {
    color: #fff;
}

.ubq-text-link i {
    transition: transform .25s ease;
}

.ubq-text-link:hover i {
    transform: translateX(5px);
}


/* INTEGRATION */

.ubq-integration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-brand {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 145px;
    height: 165px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 25px;
    background: rgba(255, 255, 255, .055);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, .25),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(15px);
}

.integration-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    border-radius: 19px;
    color: #fff;
    background: linear-gradient(135deg, #0589ff, #515bf5);
    box-shadow: 0 12px 30px rgba(8, 119, 249, .25);
    font-size: 22px;
    font-weight: 850;
}

.spinastra-brand .integration-icon {
    background: linear-gradient(135deg, #6757f5, #a457f5);
    box-shadow: 0 12px 30px rgba(110, 80, 245, .25);
}

.integration-brand > span {
    color: #fff;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 2px;
}

.integration-brand small {
    margin-top: 4px;
    color: #596a84;
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.integration-connector {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    color: var(--ubq-cyan);
}

.integration-connector span {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ubq-cyan));
}

.integration-connector span:last-child {
    background: linear-gradient(90deg, var(--ubq-cyan), transparent);
}

.integration-connector i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(0, 217, 255, .2);
    border-radius: 50%;
    background: rgba(0, 217, 255, .08);
    box-shadow: 0 0 20px rgba(0, 217, 255, .12);
    font-size: 12px;
}


/* =========================================================
   CTA
========================================================= */

.ubq-cta {
    padding: 20px 0 100px;
}

.ubq-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 60px;
    overflow: hidden;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 50%, rgba(0, 217, 255, .12), transparent 30%),
        linear-gradient(135deg, #071326, #06101f);
}

.ubq-cta-glow {
    position: absolute;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(99, 91, 255, .13);
    filter: blur(60px);
}

.ubq-cta-inner > div > span {
    color: #56d9ff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.3px;
}

.ubq-cta-inner h2 {
    margin: 12px 0 15px;
    color: #fff;
    font-size: 39px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.ubq-cta-inner h2 em {
    color: transparent;
    background: linear-gradient(90deg, #3acfff, #8b6cff);
    background-clip: text;
    -webkit-background-clip: text;
    font-style: normal;
}

.ubq-cta-inner p {
    max-width: 600px;
    margin: 0;
    color: #8292aa;
    font-size: 13px;
    line-height: 1.7;
}

.ubq-cta-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.ubq-btn-dark {
    color: #b8c6da;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes ubqSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes ubqSpinReverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes ubqPulse {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px var(--ubq-cyan);
    }

    50% {
        opacity: .45;
        box-shadow: 0 0 20px var(--ubq-cyan);
    }
}

@keyframes ubqBounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

@keyframes ubqDataFlow {
    from {
        top: -100%;
    }

    to {
        top: 100%;
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .ubq-hero {
        padding: 110px 0 100px;
    }

    .ubq-hero-title {
        letter-spacing: -3px;
    }

    .ubq-scroll-indicator {
        display: none;
    }

    .ubq-ecosystem-card {
        padding: 50px 40px;
    }

    .ubq-integration {
        margin-top: 25px;
    }

    .ubq-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 576px) {

    .ubq-hero {
        padding: 90px 0 75px;
    }

    .ubq-hero-title {
        font-size: 49px;
        letter-spacing: -3px;
    }

    .ubq-hero-text {
        font-size: 16px;
    }

    .ubq-hero-actions,
    .ubq-cta-actions {
        flex-direction: column;
    }

    .ubq-hero-actions .btn,
    .ubq-cta-actions .btn {
        width: 100%;
    }

    .ubq-hero-stats {
        gap: 14px;
    }

    .ubq-local-first {
        padding: 15px;
    }

    .ubq-section,
    .ubq-local-section,
    .ubq-ecosystem {
        padding: 85px 0;
    }

    .ubq-section-heading {
        margin-bottom: 45px;
    }

    .ubq-section-heading h2 {
        font-size: 37px;
    }

    .ubq-feature-card {
        min-height: 280px;
    }

    .ubq-architecture {
        padding: 25px 18px;
    }

    .ubq-ecosystem-card {
        padding: 42px 24px;
        border-radius: 22px;
    }

    .ubq-integration {
        transform: scale(.82);
    }

    .ubq-cta-inner {
        padding: 42px 25px;
    }

    .ubq-cta-inner h2 {
        font-size: 32px;
    }
}


/* Respect reduced-motion preferences */

@media (prefers-reduced-motion: reduce) {

    .ubq-orbit,
    .ubq-eyebrow-dot,
    .ubq-scroll-indicator i,
    .ubq-architecture-line span {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}