:root {
    --bg: #050807;
    --panel: rgba(8, 20, 20, .72);
    --panel-strong: rgba(12, 31, 30, .88);
    --text: #eefcf8;
    --muted: #a3bbb6;
    --line: rgba(129, 255, 231, .22);
    --cyan: #34f5ff;
    --green: #6dff9a;
    --amber: #ffd166;
    --danger: #ff5a7a;
    --shadow: rgba(0, 0, 0, .45);
}

* {
    box-sizing: border-box;
}

html {
    font-size: 10px !important;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
    color: var(--text);
    background: var(--bg);
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
strong {
    color: inherit;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    cursor: pointer;
    outline: none;
}

img {
    max-width: 100%;
}

.tlinks {
    height: 0;
    overflow: hidden;
    text-indent: -9999px;
    line-height: 0;
    font-size: 0;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 46%, rgba(52, 245, 255, .18), transparent 30%),
        #030706;
}

.preloader.preloader-hidden {
    height: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s ease, height 0s ease .45s;
}

.preloader .spinner {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.preloader .spinner > div {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 18px rgba(52, 245, 255, .85);
    animation: spinner-bounce 1.2s infinite ease-in-out both;
}

.preloader .spinner .bounce-1 {
    animation-delay: -.28s;
}

.preloader .spinner .bounce-2 {
    animation-delay: -.14s;
}

@keyframes spinner-bounce {
    0%,
    80%,
    100% {
        transform: scale(.25);
        opacity: .35;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    overflow-y: auto;
}

.hero .full-height {
    min-height: 100vh;
}

.hero .container-fluid {
    width: 100%;
    max-width: 1180px;
    padding-right: 28px;
    padding-left: 28px;
}

.hero-shell {
    position: relative;
    z-index: 2;
}

.hero .animation-container {
    transition: transform .75s cubic-bezier(.22, 1, .36, 1), opacity .75s ease;
}

.hero .animation-container.animation-fade,
.hero .animation-container.animation-fade-up,
.hero .animation-container.animation-fade-down,
.hero .animation-container.animation-fade-left,
.hero .animation-container.animation-fade-right {
    opacity: 0;
}

.hero .animation-container.animation-fade-up {
    transform: translateY(7vh);
}

.hero .animation-container.animation-fade-down {
    transform: translateY(-7vh);
}

.hero .animation-container.animation-fade-left {
    transform: translateX(7vh);
}

.hero .animation-container.animation-fade-right {
    transform: translateX(-7vh);
}

.hero .animation-container.run-animation {
    transform: translate(0, 0);
    opacity: 1;
}

.front-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.front-content .container-mid {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.visual-panel .container-mid {
    padding-right: 34px;
}

.copy-panel .container-mid {
    max-width: 680px;
    padding-left: 34px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--green);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .16em;
}

.eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, var(--green), transparent);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 18px 12px 14px;
    border: 1px solid rgba(52, 245, 255, .28);
    background: linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025));
    box-shadow: inset 0 0 28px rgba(52, 245, 255, .05), 0 0 28px rgba(52, 245, 255, .08);
}

.brand-lockup img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border: 1px solid rgba(52, 245, 255, .26);
    background: #020605;
}

.brand-lockup strong,
.brand-lockup span {
    display: block;
}

.brand-lockup strong {
    color: var(--text);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
}

.brand-lockup span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 1.3rem;
}

h1 {
    max-width: 660px;
    margin: 28px 0 0;
    color: #f8fffc;
    font-size: 5.8rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
    text-shadow: 0 0 34px rgba(52, 245, 255, .18);
}

.subline {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.85;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.feature-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 15px;
    color: #ddfff5;
    border: 1px solid rgba(109, 255, 154, .24);
    background: rgba(109, 255, 154, .08);
    font-size: 1.4rem;
    box-shadow: inset 0 0 18px rgba(109, 255, 154, .05);
}

.feature-tags i {
    color: var(--green);
}

.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.download-button,
.ghost-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 168px;
    min-height: 54px;
    padding: 0 26px;
    overflow: hidden;
    border: 1px solid transparent;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.download-button {
    color: #04100e;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    box-shadow: 0 0 30px rgba(52, 245, 255, .28), 0 18px 45px rgba(0, 0, 0, .28);
}

.download-button::after {
    content: "";
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(255, 255, 255, .42);
    pointer-events: none;
}

.ghost-button {
    color: var(--text);
    border-color: rgba(52, 245, 255, .35);
    background: rgba(6, 18, 18, .62);
}

.download-button:hover,
.ghost-button:hover {
    transform: translateY(-3px);
}

.download-button:hover {
    color: #04100e;
    box-shadow: 0 0 42px rgba(52, 245, 255, .45), 0 22px 58px rgba(0, 0, 0, .36);
}

.ghost-button:hover {
    color: var(--cyan);
    border-color: var(--cyan);
    box-shadow: 0 0 26px rgba(52, 245, 255, .15);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 620px;
    margin-top: 34px;
}

.metric-item {
    min-height: 96px;
    padding: 18px 16px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    box-shadow: inset 0 0 30px rgba(52, 245, 255, .04);
}

.metric-item strong {
    display: block;
    color: var(--amber);
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.metric-item span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 1.3rem;
}

.device-frame {
    position: relative;
    width: min(78%, 335px);
    margin: 0 auto;
    padding: 18px;
    border: 1px solid rgba(52, 245, 255, .32);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .03)),
        rgba(4, 12, 12, .78);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .06),
        0 0 44px rgba(52, 245, 255, .22),
        26px 28px 60px var(--shadow);
}

.device-frame::before,
.device-frame::after {
    content: "";
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(109, 255, 154, .18);
}

.device-frame::before {
    inset: -18px 22px 22px -18px;
}

.device-frame::after {
    inset: 26px -18px -18px 20px;
}

.device-status {
    display: flex;
    gap: 7px;
    margin-bottom: 14px;
}

.device-status span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(52, 245, 255, .75);
}

.device-status span:nth-child(2) {
    background: var(--green);
    box-shadow: 0 0 12px rgba(109, 255, 154, .75);
}

.device-status span:nth-child(3) {
    background: var(--amber);
    box-shadow: 0 0 12px rgba(255, 209, 102, .75);
}

.phone-slider {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: #000;
}

.phone-slider img {
    display: block;
    width: 100%;
}

.phone-slider .owl-dots {
    position: absolute;
    bottom: -42px;
    left: 0;
    width: 100%;
    text-align: center;
}

.phone-slider .owl-dots .owl-dot {
    display: inline-block;
    width: 22px;
    height: 3px;
    margin: 0 4px;
    border: 0;
    background: rgba(255, 255, 255, .28);
    transition: background .2s ease, width .2s ease;
}

.phone-slider .owl-dots .owl-dot.active {
    width: 34px;
    background: var(--cyan);
    box-shadow: 0 0 14px rgba(52, 245, 255, .7);
}

.footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    border-top: 1px solid rgba(52, 245, 255, .16);
    background: rgba(2, 8, 8, .62);
    backdrop-filter: blur(18px);
}

.footer p {
    margin: 0;
    padding: 1.45em 0;
    color: rgba(238, 252, 248, .72);
    font-size: 1.3rem;
}

.footer a {
    color: rgba(238, 252, 248, .9);
    font-weight: 500;
}

.footer a:hover {
    color: var(--cyan);
}

.background-content {
    position: fixed;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.background-content-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate3d(-50%, -50%, 0) !important;
}

.parallax-on .background-content-inner {
    width: 110%;
    height: 110%;
}

.background-img {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: url(../img/background.jpg) center / cover no-repeat;
    filter: saturate(1.2) contrast(1.08) brightness(.46);
}

.background-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 18% 18%, rgba(52, 245, 255, .22), transparent 28%),
        radial-gradient(circle at 84% 76%, rgba(109, 255, 154, .16), transparent 26%),
        linear-gradient(115deg, rgba(0, 0, 0, .88), rgba(0, 16, 15, .68) 45%, rgba(0, 0, 0, .9));
}

.tech-grid {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: .24;
    background-image:
        linear-gradient(rgba(52, 245, 255, .18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 245, 255, .18) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.scan-line {
    position: absolute;
    top: -20%;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 28%;
    background: linear-gradient(180deg, transparent, rgba(52, 245, 255, .08), transparent);
    animation: scan 7s linear infinite;
}

@keyframes scan {
    0% {
        transform: translateY(-20%);
    }

    100% {
        transform: translateY(480%);
    }
}

.featherlight .featherlight-content {
    max-height: 82%;
    padding: 0;
    border: 1px solid rgba(52, 245, 255, .26);
    background: var(--panel-strong);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .55), 0 0 34px rgba(52, 245, 255, .14);
}

.featherlight .featherlight-close-icon {
    top: 18px;
    right: 18px;
    width: 34px;
    color: var(--text);
    background: rgba(255, 255, 255, .06);
    font-size: 2.4rem;
    line-height: 34px;
}

.popup {
    padding: 56px 58px 48px;
    color: var(--text);
}

.popup .container-fluid {
    max-width: 680px;
    padding: 0;
}

.popup-kicker {
    margin: 0 0 10px;
    color: var(--green);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .18em;
}

.popup h2 {
    margin: 0 0 22px;
    color: var(--text);
    font-size: 3.4rem;
    font-weight: 800;
}

.popup p {
    color: var(--muted);
    font-size: 1.6rem;
    line-height: 1.8;
}

.popup-list {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.popup-list p {
    margin: 0;
    padding: 14px 16px;
    border-left: 3px solid var(--cyan);
    background: rgba(255, 255, 255, .05);
}

.popup-list strong {
    color: var(--text);
}

.popup-tip {
    color: var(--amber) !important;
}

@media (max-width: 980px) {
    h1 {
        font-size: 4.8rem;
    }

    .copy-panel .container-mid {
        padding-left: 18px;
    }

    .visual-panel .container-mid {
        padding-right: 18px;
    }
}

@media (max-width: 750px) {
    body {
        overflow: auto;
    }

    .hero .full-height {
        min-height: auto;
        padding: 52px 0;
    }

    .front-content {
        padding: 30px 0 86px;
    }

    .front-content .container-mid {
        position: relative;
        top: 0;
        transform: none;
    }

    .hero .container-fluid {
        max-width: 520px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .visual-panel .container-mid,
    .copy-panel .container-mid {
        padding-right: 0;
        padding-left: 0;
        text-align: center;
    }

    .copy-panel {
        padding-top: 0 !important;
    }

    .device-frame {
        width: min(76%, 300px);
    }

    .brand-lockup {
        margin: 0 auto;
        text-align: left;
    }

    .eyebrow {
        justify-content: center;
        margin-top: 22px;
    }

    .eyebrow::before {
        width: 28px;
    }

    h1 {
        margin-right: auto;
        margin-left: auto;
        font-size: 4rem;
    }

    .subline {
        margin-right: auto;
        margin-left: auto;
        font-size: 1.65rem;
    }

    .feature-tags,
    .action-row {
        justify-content: center;
    }

    .metric-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-right: auto;
        margin-left: auto;
    }

    .metric-item {
        min-height: 82px;
    }

    .footer .col-xs-6 {
        width: 100%;
        text-align: center;
    }

    .footer p {
        padding: .55em 0;
    }

    .popup {
        padding: 48px 26px 34px;
    }

    .popup h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 460px) {
    html {
        font-size: 9px !important;
    }

    .hero .container-fluid {
        padding-right: 16px;
        padding-left: 16px;
    }

    .device-frame {
        width: min(88%, 285px);
        padding: 14px;
    }

    h1 {
        font-size: 3.35rem;
    }

    .subline {
        font-size: 1.55rem;
    }

    .download-button,
    .ghost-button {
        width: 100%;
        min-width: 0;
    }

    .feature-tags span {
        flex: 1 1 100%;
        justify-content: center;
    }
}
