*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --navy: #0D1B2A;
    --navy2: #162436;
    --accent: #1A6BF0;
    --gold: #C8922A;
    --gold2: #D4A843;
    --white: #fff;
    --green: #1A6B3A;
    --red: #CC3333;
    --border: rgba(255, 255, 255, .08);
    --ascend :#0072ff;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: ;
    color: #fff;
    min-height: 100vh;
    line-height: 1.6
}

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 27, 42, .96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(200, 146, 42, .2);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.nav-logo img {
    height: 34px;
    width: 34px;
    object-fit: contain;
    border-radius: 6px
}

.nav-brand {
    font-size: 16px;
    font-weight: 700;
    color: #fff
}

.nav-brand span {
    color: #0072ff;
}

.nav-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: #0072ff;
    color: var(--navy);
    padding: 3px 10px;
    border-radius: 20px
}

.nav-cta {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s
}

.nav-cta:hover {
    opacity: .85
}

.hero {
    text-align: center;
    padding: 4.5rem 2rem 2.5rem;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, #0072ff55 0%, transparent 70%);
    pointer-events: none
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ascend);
    margin-bottom: 1rem
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    background: var(--ascend);
    opacity: .4
}

.hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    max-width: 680px;
    margin: 0 auto .9rem
}

.hero h1 em {
    font-style: normal;
    color: var(--ascend)
}

.hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, .6);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7
}

.badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .11);
    padding: 5px 13px;
    border-radius: 20px
}

.dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ascend)
}

.container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 1.25rem 4rem
}

.card {
    background: var(--navy2);
    border: 1px solid #0072ff;
    border-radius: 18px;
    overflow: hidden
}

.sec {
    padding: 1.75rem 2rem;
    border-bottom: 1px solid var(--border)
}

.sec:last-child {
    border-bottom: none
}

.sh {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 1.25rem
}

.snum {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--ascend);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--navy);
    flex-shrink: 0
}

.stitle {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--ascend)
}

.igrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .875rem
}

@media(max-width:600px) {
    .igrid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:380px) {
    .igrid {
        grid-template-columns: 1fr
    }
}

.field label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    font-weight: 500;
    margin-bottom: 4px
}

.field .hint {
    font-size: 10px;
    color: rgba(255, 255, 255, .28);
    margin-top: 3px
}

.iw {
    position: relative
}

.iw .pfx {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: rgba(255, 255, 255, .38);
    pointer-events: none
}

.iw input {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 9px 12px;
    -moz-appearance: textfield;
    transition: border-color .2s, background .2s
}

.iw input::-webkit-outer-spin-button,
.iw input::-webkit-inner-spin-button {
    -webkit-appearance: none
}

.iw input:focus {
    outline: none;
    border-color: var(--ascend);
    background: rgba(200, 146, 42, .07)
}

.iw.has-pfx input {
    padding-left: 24px
}

.res-sec {
    background: rgba(0, 0, 0, .18);
    padding: 0
}

.mrow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .06)
}

@media(max-width:580px) {
    .mrow {
        grid-template-columns: repeat(2, 1fr)
    }
}

.mbox {
    background: var(--navy2);
    padding: 1.1rem .9rem;
    text-align: center
}

.mbox .mv {
    font-size: 18px;
    font-weight: 700;
    color: #fff
}

.mbox .ml {
    font-size: 10px;
    color: rgba(255, 255, 255, .42);
    margin-top: 3px
}

.mbox.d .mv {
    color: #FF7B7B
}

.mbox.s .mv {
    color: #5DD98A
}

.mbox.ii .mv {
    color: #60A5FA
}

.mbox.g .mv {
    color: var(--ascend)
}

.lkbanner {
    margin: 1.25rem 2rem;
    background: rgba(204, 51, 51, .1);
    border: 1px solid rgba(204, 51, 51, .3);
    border-left: 4px solid #CC3333;
    border-radius: 11px;
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .875rem
}

.lkbanner .ll {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #FF7B7B;
    margin-bottom: 3px
}

.lkbanner .lv {
    font-size: 2rem;
    font-weight: 800;
    color: #FF7B7B
}

.lkbanner .ls {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    margin-top: 3px
}

.lkbadge {
    background: rgba(204, 51, 51, .18);
    border: 1px solid rgba(204, 51, 51, .35);
    border-radius: 8px;
    padding: .7rem .9rem;
    text-align: center;
    flex-shrink: 0
}

.lkbadge .bn {
    font-size: 1.3rem;
    font-weight: 800;
    color: #FF7B7B
}

.lkbadge .bt {
    font-size: 9px;
    color: rgba(255, 255, 255, .45);
    margin-top: 2px
}

.roi2 {
    margin: 0 2rem 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .875rem
}

@media(max-width:520px) {
    .roi2 {
        grid-template-columns: 1fr
    }
}

.rbox {
    border-radius: 10px;
    padding: 1.1rem
}

.rbox.g {
    background: rgba(26, 107, 58, .14);
    border: 1px solid rgba(93, 217, 138, .22)
}

.rbox.b {
    background: rgba(26, 107, 240, .1);
    border: 1px solid rgba(96, 165, 250, .22)
}

.rbox .rl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 4px
}

.rbox.g .rl {
    color: #5DD98A
}

.rbox.b .rl {
    color: #60A5FA
}

.rbox .rv {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 3px
}

.rbox.g .rv {
    color: #5DD98A
}

.rbox.b .rv {
    color: #60A5FA
}

.rbox .rs {
    font-size: 11px;
    color: rgba(255, 255, 255, .42)
}

.bwrap {
    margin: 0 2rem 1.25rem
}

.brow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px
}

.blbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .48);
    width: 175px;
    flex-shrink: 0
}

.btrack {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, .07);
    border-radius: 3px;
    overflow: hidden
}

.bfill {
    height: 100%;
    border-radius: 3px;
    transition: width .45s cubic-bezier(.4, 0, .2, 1)
}

.bval {
    font-size: 11px;
    font-weight: 600;
    min-width: 42px;
    text-align: right
}

.diagbox {
    margin: 0 2rem 1.25rem;
    background: rgba(200, 146, 42, .07);
    border: 1px solid #0072ff55;
    border-left: 4px solid var(--ascend);
    border-radius: 10px;
    padding: 1.1rem 1.25rem
}

.diagbox .dl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--ascend);
    margin-bottom: 5px
}

.diagbox p {
    font-size: 13px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6
}

.guar {
    margin: 0 2rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    background: rgba(26, 107, 58, .1);
    border: 1px solid rgba(93, 217, 138, .18);
    border-radius: 10px;
    padding: .9rem 1.1rem
}

.gicon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(26, 107, 58, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0
}

.gtitle {
    font-size: 12px;
    font-weight: 700;
    color: #5DD98A;
    margin-bottom: 2px
}

.gbody {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.5
}

.ctasec {
    padding: 2.25rem 2rem;
    text-align: center;
    border-top: 1px solid #0072ff55;
    background: rgba(200, 146, 42, .03)
}

.ctasec h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: .4rem
}

.ctasec p {
    font-size: 13px;
    color: rgba(255, 255, 255, .48);
    margin-bottom: 1.25rem
}

.ctabts {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap
}

.btnp {
    background: var(--ascend);
    color: var(--navy);
    border: none;
    padding: 13px 26px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity .2s, transform .15s
}

.btnp:hover {
    opacity: .88;
    transform: translateY(-1px)
}

.btns {
    background: transparent;
    color: rgba(255, 255, 255, .7);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 13px 26px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .2s
}

.btns:hover {
    background: rgba(255, 255, 255, .06)
}

.trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 1rem;
    border-top: 1px solid var(--border)
}

.ti {
    text-align: center
}

.tv {
    font-size: 20px;
    font-weight: 800;
    color: var(--ascend)
}

.tl {
    font-size: 10px;
    color: rgba(255, 255, 255, .35);
    margin-top: 2px
}

footer {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 11px;
    color: rgba(255, 255, 255, .28)
}

footer a {
    color: rgba(255, 255, 255, .38);
    text-decoration: none
}

footer a:hover {
    color: var(--ascend)
}

    /* Canvas fondo */
    #particles {
        background-color: #001232FF;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .alllll {
        position: relative;
        z-index: 2;
    }
