:root {
    --bg: #03050d;
    --bg2: #070b19;
    --card: rgba(10,15,34,.78);
    --gold: #f5c957;
    --gold2: #ffe9a3;
    --cyan: #00eaff;
    --blue: #155fff;
    --purple: #a65cff;
    --pink: #ff58d1;
    --text: #f7f9ff;
    --muted: #a8afc5;
    --line: rgba(255,255,255,.12);
    --shadow: 0 25px 80px rgba(0,0,0,.45);
    --radius: 24px
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter,Arial,sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.65
}

a {
    text-decoration: none;
    color: inherit
}

button, input, textarea {
    font: inherit
}

button {
    cursor: pointer
}

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

.section {
    position: relative;
    padding: 110px 0;
    overflow: hidden
}

.section-dark {
    background: linear-gradient(180deg,rgba(4,7,17,.9),rgba(2,4,11,.96))
}

.page-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .13;
    pointer-events: none;
    z-index: -1
}

.glow-1 {
    background: #155fff;
    top: 10%;
    left: -180px
}

.glow-2 {
    background: #a65cff;
    right: -180px;
    top: 55%
}

#particleCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    pointer-events: none;
    background: radial-gradient(circle at 50% 15%,#0b1231 0,#03050d 52%,#010208 100%)
}
/* top market bars */ .forex-bar, .crypto-bar {
    height: 42px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.07);
    background: rgba(2,4,12,.9);
    position: relative;
    z-index: 100;
    overflow: hidden
}

.ticker-label {
    flex: 0 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 18px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: linear-gradient(90deg,rgba(0,234,255,.08),transparent);
    border-right: 1px solid rgba(255,255,255,.07);
    color: #e8faff
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00ff9d;
    box-shadow: 0 0 14px #00ff9d;
    margin-right: 8px
}

.forex-widget {
    flex: 1;
    min-width: 0;
    height: 42px
}

.crypto-marquee {
    overflow: hidden;
    flex: 1;
    height: 100%;
    position: relative
}

.crypto-track {
    display: flex;
    align-items: center;
    gap: 35px;
    height: 100%;
    width: max-content;
    animation: marquee 34s linear infinite;
    padding-left: 30px
}

.crypto-marquee:hover .crypto-track {
    animation-play-state: paused
}

.crypto-item {
    display: flex;
    gap: 9px;
    align-items: center;
    white-space: nowrap;
    font-size: 12px
}

    .crypto-item b {
        color: #fff
    }

    .crypto-item span {
        color: var(--cyan);
        font-weight: 700
    }

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}
/* nav */ .site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(3,5,13,.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.08)
}

.nav-wrap {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 30px
}

.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto
}

.brand-logo {
    width: 160px;
    height: auto;
    display: block;
    filter: drop-shadow(0 5px 20px rgba(245,201,87,.15))
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    margin-left: auto
}

    .main-nav > a {
        font-size: 13px;
        color: #d9dced;
        font-weight: 600;
        position: relative;
        padding: 30px 0
    }

        .main-nav > a:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 20px;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg,var(--gold),var(--cyan));
            transition: .3s
        }

        .main-nav > a:hover {
            color: #fff
        }

            .main-nav > a:hover:after {
                width: 100%
            }

.desktop-auth {
    display: flex;
    gap: 9px;
    margin-left: auto
}

.mobile-auth {
    display: none
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 43px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .3px;
    transition: .3s
}

    .btn:hover {
        transform: translateY(-2px)
    }

.btn-gold {
    background: linear-gradient(135deg,#f5c957,#fff0a6 55%,#dca72c);
    color: #080a12;
    box-shadow: 0 10px 30px rgba(245,201,87,.2)
}

.btn-outline {
    border-color: rgba(245,201,87,.55);
    color: #fff;
    background: rgba(245,201,87,.04)
}

.btn-glass {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.15);
    color: #fff
}

.btn-large {
    min-height: 52px;
    padding: 0 23px
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    margin-left: auto
}

    .nav-toggle span {
        display: block;
        width: 27px;
        height: 2px;
        background: #fff;
        margin: 5px 0;
        border-radius: 3px
    }
/* hero */ .hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 70px 0 100px
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
    filter: saturate(.9) contrast(1.15)
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 50%,rgba(19,47,150,.25),transparent 35%),linear-gradient(90deg,#03050d 0%,rgba(3,5,13,.82) 35%,rgba(3,5,13,.42) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 35px;
    align-items: center
}

.eyebrow {
    display: inline-block;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.2px;
    margin-bottom: 14px
}

.hero h1, .section-heading h2, .section-copy h2, .cta-box h2 {
    font-family: 'Playfair Display',Georgia,serif;
    font-weight: 700;
    line-height: 1.12
}

.hero h1 {
    font-size: clamp(45px,6vw,78px);
    max-width: 730px
}

    .hero h1 span, .section-heading h2 span, .section-copy h2 span, .cta-box h2 span {
        background: linear-gradient(90deg,#fff1a8,var(--gold),#fff7cc);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent
    }

.hero-copy > p {
    max-width: 650px;
    color: #b7bfd4;
    font-size: 16px;
    margin: 24px 0 28px
}

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

.hero-trust {
    display: flex;
    gap: 28px;
    margin-top: 42px
}

    .hero-trust div {
        display: flex;
        flex-direction: column;
        border-left: 1px solid rgba(255,255,255,.16);
        padding-left: 15px
    }

    .hero-trust strong {
        font-size: 21px;
        color: #fff
    }

    .hero-trust span {
        font-size: 10px;
        color: #858da6;
        text-transform: uppercase;
        letter-spacing: 1px
    }

.hero-visual {
    min-height: 430px;
    display: grid;
    place-items: center
}

.orbital-card {
    width: min(470px,90%);
    aspect-ratio: 1;
    position: relative;
    display: grid;
    place-items: center
}

.orbit {
    position: absolute;
    border: 1px solid rgba(0,234,255,.35);
    border-radius: 50%;
    transform: rotate(-22deg)
}

.orbit-a {
    inset: 7%;
    animation: spin 15s linear infinite
}

.orbit-b {
    inset: 17%;
    border-color: rgba(202,88,255,.4);
    animation: spin 21s linear infinite reverse
}

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

.hero-vector-card {
    width: 66%;
    aspect-ratio: 1;
    border-radius: 34px;
    background: linear-gradient(145deg,rgba(22,37,102,.72),rgba(71,15,116,.48));
    border: 1px solid rgba(255,255,255,.17);
    box-shadow: 0 0 90px rgba(0,89,255,.28),inset 0 0 40px rgba(0,234,255,.08);
    display: grid;
    place-items: center;
    overflow: hidden;
    transform: perspective(900px) rotateY(-8deg) rotateX(5deg);
    animation: float 5s ease-in-out infinite
}

    .hero-vector-card img {
        width: 84%;
        height: 84%;
        object-fit: contain
    }

@keyframes float {
    50% {
        transform: perspective(900px) rotateY(8deg) rotateX(-3deg) translateY(-12px)
    }
}

.slider-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px
}

    .slider-dots button {
        width: 7px;
        height: 7px;
        border: 0;
        border-radius: 50%;
        background: #66708b
    }

        .slider-dots button.active {
            width: 28px;
            border-radius: 9px;
            background: linear-gradient(90deg,var(--gold),var(--cyan))
        }
/* sections */ .split-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 75px;
    align-items: center
}

.section-copy h2, .section-heading h2, .cta-box h2 {
    font-size: clamp(34px,4vw,54px)
}

.section-copy > p, .section-heading > p {
    color: var(--muted);
    font-size: 15px;
    margin-top: 17px
}

.section-art {
    display: flex;
    justify-content: center
}

.art-frame {
    width: min(470px,100%);
    aspect-ratio: 1;
    position: relative;
    border-radius: 32px;
    background: radial-gradient(circle at 50% 50%,rgba(27,70,185,.3),rgba(8,11,25,.55));
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    overflow: hidden
}

    .art-frame:before {
        content: "";
        position: absolute;
        inset: 12%;
        border: 1px dashed rgba(0,234,255,.3);
        border-radius: 50%;
        animation: spin 20s linear infinite
    }

    .art-frame img {
        width: 95%;
        height: 95%;
        object-fit: contain;
        position: relative;
        z-index: 2
    }

.art-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(4,7,16,.78);
    border: 1px solid rgba(255,255,255,.12);
    padding: 10px 13px;
    border-radius: 14px;
    z-index: 3
}

    .art-badge span {
        color: var(--gold);
        font-weight: 900
    }

    .art-badge small {
        font-size: 9px;
        color: #9ba4bb
    }

.feature-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 28px
}

    .feature-list div {
        padding: 15px;
        border: 1px solid var(--line);
        border-radius: 15px;
        background: rgba(255,255,255,.025)
    }

    .feature-list span {
        color: var(--cyan);
        font-size: 10px
    }

    .feature-list b {
        display: block;
        font-size: 12px;
        margin: 5px 0
    }

    .feature-list small {
        font-size: 9px;
        color: #8d96ae
    }

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

.package-section {
    background: radial-gradient(circle at 80% 40%,rgba(76,21,140,.16),transparent 30%)
}

.package-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 42px;
    border-radius: 32px;
    background: linear-gradient(145deg,rgba(11,17,39,.95),rgba(22,12,46,.82));
    border: 1px solid rgba(117,107,255,.24);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative
}

    .package-card:after {
        content: "";
        position: absolute;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        background: rgba(0,234,255,.1);
        filter: blur(80px);
        right: -140px;
        bottom: -170px
    }

.package-kicker {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--cyan);
    font-weight: 900
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 5px 0 35px
}

    .package-price b {
        font-size: 74px;
        color: var(--gold);
        font-family: 'Playfair Display',serif
    }

    .package-price span {
        font-size: 22px;
        font-weight: 600
    }

.package-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

    .package-points div {
        border-top: 1px solid var(--line);
        padding-top: 15px;
        display: grid;
        grid-template-columns: 35px 1fr;
        column-gap: 8px
    }

    .package-points i {
        grid-row: span 2;
        font-style: normal;
        font-size: 25px;
        color: var(--cyan)
    }

    .package-points strong {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: .7px
    }

    .package-points span {
        font-size: 10px;
        color: #939cb3
    }

.package-art {
    display: grid;
    place-items: center;
    position: relative;
    z-index: 2
}

    .package-art img {
        width: 100%;
        max-width: 500px;
        height: 100%;
        max-height: 400px;
        object-fit: contain;
        filter: drop-shadow(0 25px 35px rgba(0,0,0,.5))
    }
/* how */ .steps-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px
}

.step-card {
    padding: 25px 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg,rgba(15,20,42,.72),rgba(7,10,23,.7));
    position: relative;
    transition: .35s
}

    .step-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0,234,255,.35);
        box-shadow: 0 20px 55px rgba(0,0,0,.35)
    }

    .step-card img {
        width: 100%;
        height: 120px;
        object-fit: contain;
        margin: 10px 0
    }

.step-number {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 2px;
    font-weight: 900
}

.step-card h3 {
    font-size: 15px
}

.step-card p {
    font-size: 11px;
    color: #8f98b0;
    margin-top: 8px
}

.download-panel {
    margin-top: 24px;
    border: 1px solid rgba(245,201,87,.25);
    background: linear-gradient(90deg,rgba(245,201,87,.07),rgba(0,234,255,.04));
    padding: 18px 22px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

    .download-panel > div {
        display: flex;
        align-items: center;
        gap: 15px
    }

.download-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(0,234,255,.09);
    color: var(--cyan);
    font-size: 22px
}

.download-panel h3 {
    font-size: 14px
}

.download-panel p {
    font-size: 10px;
    color: #9099b0
}
/* mission */ .mission-section {
    background: radial-gradient(circle at 15% 35%,rgba(0,234,255,.07),transparent 25%),radial-gradient(circle at 85% 75%,rgba(168,92,255,.08),transparent 25%)
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px 90px;
    align-items: center
}

.mission-art, .vision-art {
    display: grid;
    place-items: center;
    min-height: 350px
}

    .mission-art img, .vision-art img {
        width: 100%;
        height: 540px;
        object-fit: contain
    }

.quote-line {
    border-left: 3px solid var(--gold);
    padding-left: 15px;
    color: #f4dfa2;
    margin-top: 25px;
    font-size: 14px;
    font-style: italic
}
/* cta/contact/auth */ .cta-section {
    padding: 35px 0
}

.cta-box {
    padding: 45px 50px;
    border-radius: 28px;
    border: 1px solid rgba(0,234,255,.18);
    background: linear-gradient(105deg,rgba(8,28,64,.85),rgba(35,13,61,.78));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px
}

    .cta-box h2 {
        font-size: 34px
    }

    .cta-box p {
        color: #aab2c7;
        margin-top: 10px;
        font-size: 13px
    }

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center
}

.contact-cards {
    display: flex;
    gap: 12px;
    margin-top: 30px
}

    .contact-cards div {
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 15px;
        min-width: 190px
    }

    .contact-cards b, .contact-cards span {
        display: block
    }

    .contact-cards b {
        font-size: 10px;
        color: var(--cyan);
        text-transform: uppercase
    }

    .contact-cards span {
        font-size: 11px;
        margin-top: 4px;
        color: #c8cede
    }

.contact-form-card, .auth-card {
    background: rgba(9,14,31,.78);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 25px;
    padding: 30px;
    box-shadow: var(--shadow)
}

input, textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    color: #fff;
    outline: none;
    border-radius: 12px;
    padding: 14px 15px;
    margin-bottom: 12px;
    font-size: 12px
}

    input:focus, textarea:focus {
        border-color: rgba(0,234,255,.5);
        box-shadow: 0 0 0 3px rgba(0,234,255,.06)
    }

textarea {
    resize: vertical
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

    .form-row input {
        margin-bottom: 0
    }

.contact-form-card .btn, .auth-card .btn {
    width: 100%;
    margin-top: 5px
}

.auth-section {
    padding: 90px 0;
    background: linear-gradient(180deg,#03050d,#080d1d)
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 850px
}

.auth-card h2 {
    font-family: 'Playfair Display',serif;
    font-size: 38px
}

.auth-card p {
    color: #8e97ae;
    font-size: 12px;
    margin: 5px 0 20px
}

.signup-card {
    border-color: rgba(245,201,87,.2)
}
/* footer */ .site-footer {
    border-top: 1px solid var(--line);
    background: #02040a;
    padding: 30px 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px
}

.footer-brand img {
    width: 145px
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 22px
}

    .footer-links a {
        font-size: 10px;
        color: #929bb2
    }

.footer-copy {
    text-align: right;
    color: #677087;
    font-size: 9px
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0,234,255,.3);
    background: rgba(5,9,21,.8);
    color: var(--cyan);
    z-index: 80;
    opacity: 0;
    transform: translateY(15px);
    transition: .3s
}

    .back-top.show {
        opacity: 1;
        transform: none
    }

.toast {
    position: fixed;
    left: 50%;
    bottom: 25px;
    transform: translate(-50%,20px);
    opacity: 0;
    z-index: 200;
    background: #0c1327;
    border: 1px solid rgba(0,234,255,.3);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 11px;
    transition: .3s;
    pointer-events: none
}

    .toast.show {
        opacity: 1;
        transform: translate(-50%,0)
    }

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: .8s ease
}

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

@media(max-width:1000px) {
    .main-nav {
        gap: 16px
    }

        .main-nav > a {
            font-size: 11px
        }

    .desktop-auth {
        gap: 6px
    }

        .desktop-auth .btn {
            padding: 0 12px
        }

    .hero-content {
        grid-template-columns: 1fr
    }

    .hero-copy {
        text-align: center
    }

        .hero-copy > p {
            margin-left: auto;
            margin-right: auto
        }

    .hero-buttons, .hero-trust {
        justify-content: center
    }

    .hero-visual {
        min-height: 360px
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr
    }

    .mission-grid {
        gap: 40px
    }

    .split-grid {
        gap: 40px
    }

    .feature-list {
        grid-template-columns: 1fr
    }

    .contact-grid {
        gap: 35px
    }
}

@media(max-width:760px) {
    .container {
        width: min(100% - 28px,600px)
    }

    .forex-bar, .crypto-bar {
        height: 38px
    }

    .ticker-label {
        font-size: 8px;
        padding: 0 10px
    }

    .forex-widget {
        height: 38px
    }

    .nav-wrap {
        min-height: 72px
    }

    .brand-logo {
        width: 138px
    }

    .nav-toggle {
        display: block
    }

    .main-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(4,7,17,.98);
        backdrop-filter: blur(20px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        gap: 0;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 40px rgba(0,0,0,.4)
    }

        .main-nav.open {
            display: flex
        }

        .main-nav > a {
            padding: 13px 10px;
            font-size: 13px
        }

            .main-nav > a:after {
                bottom: 7px
            }

    .desktop-auth {
        display: none
    }

    .mobile-auth {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 10px 0 2px
    }

    .hero {
        min-height: 760px;
        padding-top: 55px
    }

        .hero h1 {
            font-size: 43px
        }

    .hero-copy > p {
        font-size: 13px
    }

    .hero-trust {
        gap: 12px
    }

        .hero-trust div {
            padding-left: 10px
        }

        .hero-trust strong {
            font-size: 17px
        }

        .hero-trust span {
            font-size: 8px
        }

    .hero-visual {
        min-height: 300px
    }

    .orbital-card {
        width: 330px
    }

    .section {
        padding: 75px 0
    }

    .split-grid, .package-card, .mission-grid, .contact-grid, .auth-grid {
        grid-template-columns: 1fr
    }

    .split-grid {
        gap: 40px
    }

    .section-copy h2, .section-heading h2 {
        font-size: 37px
    }

    .package-card {
        padding: 25px
    }

    .package-price b {
        font-size: 58px
    }

    .package-points {
        grid-template-columns: 1fr
    }

    .package-art {
        min-height: 280px
    }

    .steps-grid {
        grid-template-columns: 1fr
    }

    .download-panel {
        align-items: flex-start;
        flex-direction: column
    }

    .cta-box {
        padding: 30px 25px;
        flex-direction: column;
        align-items: flex-start
    }

        .cta-box h2 {
            font-size: 30px
        }

    .mission-art, .vision-art {
        min-height: 260px
    }

        .mission-art img, .vision-art img {
            height: 260px
        }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }

        .form-row input {
            margin-bottom: 12px
        }

    .contact-cards {
        flex-direction: column
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .footer-links {
        flex-wrap: wrap
    }

    .footer-copy {
        text-align: center
    }

    .footer-brand {
        display: flex;
        justify-content: center
    }
}

@media(max-width:430px) {
    .hero h1 {
        font-size: 37px
    }

    .hero-buttons .btn {
        width: 100%
    }

    .hero-trust {
        gap: 8px
    }

        .hero-trust strong {
            font-size: 15px
        }

        .hero-trust span {
            font-size: 7px
        }

    .brand-logo {
        width: 125px
    }

    .ticker-label {
        font-size: 7px;
        padding: 0 8px
    }

    .package-price {
        gap: 7px
    }

        .package-price span {
            font-size: 16px
        }
}

@media(prefers-reduced-motion:reduce) {
    *, *:before, *:after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important
    }
}
