:root {
    --bg: #050b16;
    --bg-2: #07111f;
    --panel: rgba(10, 20, 35, 0.82);
    --panel-strong: rgba(12, 24, 42, 0.96);

    --text: #f7f9fc;
    --muted: #8fa2bb;
    --muted-2: #667990;

    --purple: #8b5cf6;
    --blue: #4f8cff;
    --cyan: #55d8ff;
    --green: #36d39b;

    --border: rgba(255,255,255,0.08);
    --border-2: rgba(255,255,255,0.14);

    --shadow:
        0 30px 80px rgba(0,0,0,0.38);

    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;

    background:
        linear-gradient(
            180deg,
            #050b16 0%,
            #06101c 45%,
            #050b16 100%
        );

    color: var(--text);

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    line-height: 1.6;
}

html[dir="rtl"] body {
    font-family:
        Tahoma,
        "Segoe UI",
        Arial,
        sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(
        calc(100% - 32px),
        var(--container)
    );

    margin: 0 auto;
}

/* =========================================================
BACKGROUND
========================================================= */

.site-background {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -5;
}

.background-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.022) 1px,
            transparent 1px
        );

    background-size: 44px 44px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.95),
            rgba(0,0,0,0.1)
        );
}

.background-noise {
    position: absolute;
    inset: 0;

    opacity: 0.035;

    background:
        radial-gradient(
            circle at 20% 20%,
            #ffffff 0 1px,
            transparent 1px
        );

    background-size: 24px 24px;
}

.aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.16;
    animation: auroraMove 16s ease-in-out infinite alternate;
}

.aurora-one {
    width: 460px;
    height: 460px;
    left: -150px;
    top: 90px;
    background: var(--blue);
}

.aurora-two {
    width: 520px;
    height: 520px;
    right: -190px;
    top: 280px;
    background: var(--purple);
    animation-delay: -4s;
}

.aurora-three {
    width: 380px;
    height: 380px;
    left: 35%;
    bottom: 0;
    background: var(--green);
    animation-delay: -8s;
}

@keyframes auroraMove {
    0% {
        transform: translate3d(0,0,0) scale(1);
    }

    100% {
        transform: translate3d(30px,-20px,0) scale(1.12);
    }
}

/* =========================================================
HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    padding: 12px 0;

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    background:
        linear-gradient(
            180deg,
            rgba(5,11,22,0.92),
            rgba(5,11,22,0.72)
        );

    border-bottom:
        1px solid rgba(255,255,255,0.055);
}

.nav-shell {
    min-height: 62px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.logo-shell {
    position: relative;

    width: 46px;
    height: 46px;

    border-radius: 15px;

    display: grid;
    place-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(139,92,246,0.28),
            rgba(79,140,255,0.15)
        );

    border:
        1px solid rgba(139,92,246,0.28);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 10px 28px rgba(79,140,255,0.13);
}

.logo-shell span {
    position: relative;
    z-index: 2;

    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.8px;

    background:
        linear-gradient(
            90deg,
            #c09cff,
            #75a9ff
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-shine {
    position: absolute;

    width: 30px;
    height: 80px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.22),
            transparent
        );

    transform: rotate(25deg);
    left: -40px;

    animation: logoShine 4.5s ease-in-out infinite;
}

@keyframes logoShine {
    0%,
    72% {
        left: -45px;
    }

    100% {
        left: 80px;
    }
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand-text strong {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.6px;
}

.nav-brand-text small {
    margin-top: 1px;
    color: var(--muted);
    font-size: 10px;
}

.desktop-navigation {
    display: flex;
    align-items: center;
    gap: 27px;
}

.desktop-navigation a {
    position: relative;

    color: var(--muted);
    font-size: 13px;
    font-weight: 650;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.desktop-navigation a:hover {
    color: var(--text);
    transform: translateY(-1px);
}

.desktop-navigation a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -9px;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    border-radius: 99px;

    background:
        linear-gradient(
            90deg,
            var(--purple),
            var(--blue)
        );

    transition: width 0.2s ease;
}

.desktop-navigation a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.language-switch,
.nav-download {
    min-height: 42px;

    padding: 0 16px;

    border-radius: 13px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 800;
}

.language-switch {
    border: 1px solid var(--border-2);

    background:
        rgba(255,255,255,0.035);

    color: var(--text);

    cursor: pointer;
}

.nav-download {
    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--blue)
        );

    color: white;

    box-shadow:
        0 12px 30px rgba(79,140,255,0.22);
}

/* =========================================================
BUTTONS
========================================================= */

.button {
    min-height: 56px;

    padding: 0 21px;

    border-radius: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    font-weight: 850;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.button-primary {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--blue)
        );

    box-shadow:
        0 18px 40px rgba(79,140,255,0.22);
}

.button-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 22px 50px rgba(79,140,255,0.30);
}

.button-glass {
    border:
        1px solid var(--border-2);

    background:
        rgba(255,255,255,0.035);

    color: var(--text);
}

.button-glass:hover {
    transform: translateY(-2px);

    background:
        rgba(255,255,255,0.06);

    border-color:
        rgba(139,92,246,0.34);
}

.button-arrow,
.button-download-icon {
    font-size: 18px;
    line-height: 1;
}

/* =========================================================
HERO
========================================================= */

.hero-section {
    position: relative;

    min-height:
        calc(100vh - 86px);

    padding:
        90px
        0
        70px;

    display: flex;
    align-items: center;
}

.hero-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-light-one {
    width: 340px;
    height: 340px;
    left: 10%;
    top: 20%;
    background: rgba(79,140,255,0.09);
}

.hero-light-two {
    width: 420px;
    height: 420px;
    right: 7%;
    top: 16%;
    background: rgba(139,92,246,0.10);
}

.hero-layout {
    display: grid;

    grid-template-columns:
        minmax(0,1.08fr)
        minmax(360px,0.92fr);

    align-items: center;

    gap: 54px;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.hero-label {
    width: fit-content;

    padding:
        8px
        12px;

    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    border:
        1px solid rgba(79,140,255,0.17);

    background:
        rgba(79,140,255,0.07);

    color: #becbe1;

    font-size: 11px;
    font-weight: 750;
}

.status-pulse {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 0 6px rgba(54,211,155,0.09);

    animation:
        pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow:
            0 0 0 6px rgba(54,211,155,0.08);
    }

    50% {
        box-shadow:
            0 0 0 12px rgba(54,211,155,0.01);
    }
}

.hero-copy h1 {
    margin:
        24px 0 19px;

    font-size:
        clamp(42px,5.7vw,76px);

    line-height: 1.02;

    letter-spacing: -3px;
}

.hero-copy h1 span {
    display: block;
}

.hero-gradient-title {
    margin-top: 7px;

    background:
        linear-gradient(
            95deg,
            #c6a2ff 0%,
            #77a9ff 47%,
            #55e2ba 100%
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    max-width: 650px;

    margin: 0;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.85;
}

.hero-buttons {
    margin-top: 31px;

    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.hero-trust-row {
    margin-top: 29px;

    display: flex;
    flex-wrap: wrap;

    gap:
        10px
        22px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #91a3ba;

    font-size: 11px;
    font-weight: 650;
}

.trust-icon {
    width: 21px;
    height: 21px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    color: var(--green);

    background:
        rgba(54,211,155,0.08);

    font-size: 10px;
    font-weight: 900;
}

/* =========================================================
PHONE HERO
========================================================= */

.hero-device-area {
    position: relative;

    min-height: 620px;

    display: grid;
    place-items: center;
}

.device-rings {
    position: absolute;
    inset: 0;

    display: grid;
    place-items: center;
}

.device-ring {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.05);

    animation:
        ringFloat 8s ease-in-out infinite;
}

.ring-one {
    width: 470px;
    height: 470px;

    border-color:
        rgba(139,92,246,0.10);
}

.ring-two {
    width: 550px;
    height: 550px;

    border-color:
        rgba(79,140,255,0.07);

    animation-delay: -2s;
}

.ring-three {
    width: 620px;
    height: 620px;

    border-color:
        rgba(54,211,155,0.045);

    animation-delay: -4s;
}

@keyframes ringFloat {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

.phone-shadow {
    position: absolute;

    width: 240px;
    height: 70px;

    bottom: 44px;

    border-radius: 50%;

    background:
        rgba(0,0,0,0.48);

    filter: blur(30px);
}

.phone-device {
    position: relative;
    z-index: 4;

    width: 292px;
    height: 592px;

    border-radius: 42px;

    padding: 9px;

    background:
        linear-gradient(
            145deg,
            #27384d,
            #07101b
        );

    border:
        1px solid rgba(255,255,255,0.16);

    box-shadow:
        0 50px 120px rgba(0,0,0,0.52),
        inset 0 1px 0 rgba(255,255,255,0.13);

    animation:
        phoneFloat 5s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.phone-edge {
    position: absolute;

    width: 4px;
    height: 70px;

    right: -4px;
    top: 130px;

    border-radius: 0 4px 4px 0;

    background:
        linear-gradient(
            #25394e,
            #0b1725
        );
}

.phone-island {
    position: absolute;

    z-index: 10;

    top: 17px;
    left: 50%;

    transform: translateX(-50%);
}

.phone-island span {
    display: block;

    width: 88px;
    height: 22px;

    border-radius: 999px;

    background: #02060a;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.phone-display {
    position: relative;

    width: 100%;
    height: 100%;

    border-radius: 34px;

    overflow: hidden;

    padding:
        54px
        17px
        18px;

    background:
        linear-gradient(
            180deg,
            #0c1829,
            #081321
        );
}

.phone-display::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: 20px;
    right: -90px;

    border-radius: 50%;

    background:
        rgba(139,92,246,0.08);

    filter: blur(34px);
}

.mobile-app-bar {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
}

.mobile-app-bar small,
.mobile-app-bar strong,
.mobile-balance small,
.mobile-balance strong {
    display: block;
}

.mobile-app-bar > div:first-child small {
    color: #6f829a;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.mobile-app-bar > div:first-child strong {
    margin-top: 2px;

    font-size: 14px;
}

.mobile-balance {
    text-align: right;

    padding:
        6px
        9px;

    border-radius: 10px;

    background:
        rgba(54,211,155,0.07);

    border:
        1px solid rgba(54,211,155,0.09);
}

.mobile-balance small {
    color: #6f887e;
    font-size: 6px;
}

.mobile-balance strong {
    color: var(--green);
    font-size: 10px;
}

.mobile-user-card {
    margin-top: 22px;

    padding: 11px;

    border-radius: 15px;

    display: flex;
    align-items: center;

    gap: 10px;

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid rgba(255,255,255,0.055);
}

.mobile-user-avatar {
    width: 34px;
    height: 34px;

    border-radius: 11px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            145deg,
            rgba(139,92,246,0.23),
            rgba(79,140,255,0.11)
        );

    color: #bd9cff;

    font-size: 12px;
    font-weight: 900;
}

.mobile-user-card > div:nth-child(2) {
    flex: 1;
}

.mobile-user-card small,
.mobile-user-card strong {
    display: block;
}

.mobile-user-card small {
    color: var(--muted-2);
    font-size: 7px;
}

.mobile-user-card strong {
    margin-top: 1px;
    font-size: 10px;
}

.online-indicator {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 0 5px rgba(54,211,155,0.07);
}

.mobile-primary-card {
    margin-top: 13px;

    padding: 13px;

    border-radius: 16px;

    display: flex;
    align-items: center;

    gap: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(139,92,246,0.15),
            rgba(79,140,255,0.07)
        );

    border:
        1px solid rgba(139,92,246,0.11);
}

.mobile-primary-icon {
    width: 38px;
    height: 38px;

    border-radius: 12px;

    display: grid;
    place-items: center;

    background:
        rgba(139,92,246,0.12);

    color: #c3a7ff;
}

.mobile-primary-card strong,
.mobile-primary-card small {
    display: block;
}

.mobile-primary-card strong {
    font-size: 10px;
}

.mobile-primary-card small {
    margin-top: 2px;

    color: var(--muted-2);
    font-size: 7px;
}

.mobile-action-grid {
    margin-top: 11px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 9px;
}

.mobile-action-card {
    padding: 12px;

    border-radius: 14px;

    background:
        rgba(255,255,255,0.024);

    border:
        1px solid rgba(255,255,255,0.05);
}

.mobile-action-card > span {
    width: 28px;
    height: 28px;

    border-radius: 9px;

    display: grid;
    place-items: center;

    margin-bottom: 11px;

    color: #b89aff;

    background:
        rgba(139,92,246,0.08);
}

.mobile-action-card strong,
.mobile-action-card small {
    display: block;
}

.mobile-action-card strong {
    font-size: 9px;
}

.mobile-action-card small {
    margin-top: 1px;

    color: var(--muted-2);
    font-size: 6px;
}

.mobile-section-title {
    margin:
        17px
        1px
        8px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #91a3ba;

    font-size: 8px;
    font-weight: 750;
}

.mobile-section-title small {
    color: #53657b;
}

.mobile-order-card {
    padding: 13px;

    border-radius: 15px;

    background:
        rgba(255,255,255,0.024);

    border:
        1px solid rgba(255,255,255,0.05);
}

.mobile-order-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 11px;
}

.mobile-order-icon {
    width: 30px;
    height: 30px;

    border-radius: 10px;

    display: grid;
    place-items: center;

    color: var(--green);

    background:
        rgba(54,211,155,0.08);

    font-size: 10px;
}

.mobile-order-status {
    padding:
        4px
        7px;

    border-radius: 999px;

    color: var(--green);

    background:
        rgba(54,211,155,0.07);

    font-size: 7px;
    font-weight: 850;
}

.mobile-order-card strong,
.mobile-order-card small {
    display: block;
}

.mobile-order-card strong {
    font-size: 10px;
}

.mobile-order-card small {
    margin-top: 2px;

    color: var(--muted-2);

    font-size: 7px;
}

.mobile-bottom-navigation {
    position: absolute;

    left: 17px;
    right: 17px;
    bottom: 16px;

    min-height: 47px;

    padding: 0 8px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: space-around;

    background:
        rgba(5,12,21,0.88);

    border:
        1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(15px);
}

.mobile-bottom-navigation span {
    color: #60738a;
    font-size: 10px;
}

.mobile-bottom-navigation .active {
    color: #9d7dff;
}

.mobile-center-action {
    width: 34px;
    height: 34px;

    border-radius: 11px;

    display: grid;
    place-items: center;

    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--blue)
        );

    box-shadow:
        0 9px 24px rgba(79,140,255,0.23);
}

.floating-card {
    position: absolute;
    z-index: 8;

    min-width: 200px;

    padding:
        11px
        13px;

    border-radius: 16px;

    display: flex;
    align-items: center;

    gap: 10px;

    background:
        rgba(11,23,39,0.90);

    border:
        1px solid rgba(255,255,255,0.09);

    box-shadow:
        0 20px 55px rgba(0,0,0,0.28);

    backdrop-filter: blur(18px);

    animation:
        floatingCard 4.4s ease-in-out infinite;
}

.floating-card-complete {
    left: -8px;
    top: 165px;
}

.floating-card-biometric {
    right: -22px;
    bottom: 118px;

    animation-delay: -2.2s;
}

@keyframes floatingCard {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.floating-card-icon {
    width: 35px;
    height: 35px;

    border-radius: 11px;

    display: grid;
    place-items: center;

    flex-shrink: 0;
}

.floating-card-icon.success {
    color: var(--green);

    background:
        rgba(54,211,155,0.08);
}

.floating-card-icon.purple {
    color: #b895ff;

    background:
        rgba(139,92,246,0.09);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: 10px;
}

.floating-card small {
    margin-top: 1px;

    color: var(--muted-2);
    font-size: 7px;
}

.scroll-indicator {
    position: absolute;

    bottom: 18px;
    left: 50%;

    transform: translateX(-50%);

    width: 23px;
    height: 38px;

    border-radius: 999px;

    border:
        1px solid rgba(255,255,255,0.13);
}

.scroll-indicator span {
    position: absolute;

    width: 4px;
    height: 7px;

    left: 50%;
    top: 8px;

    transform: translateX(-50%);

    border-radius: 99px;

    background: #7b8ea7;

    animation:
        scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0% {
        opacity: 0;
        transform:
            translate(-50%,0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform:
            translate(-50%,13px);
    }
}

/* =========================================================
VALUE
========================================================= */

.value-section {
    padding:
        4px
        0
        74px;
}

.value-panel {
    padding:
        18px
        20px;

    border-radius: 20px;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr
        auto
        1fr
        auto
        1fr;

    align-items: stretch;

    background:
        rgba(255,255,255,0.022);

    border:
        1px solid rgba(255,255,255,0.065);

    box-shadow:
        0 20px 55px rgba(0,0,0,0.12);
}

.value-item {
    min-height: 67px;

    padding: 7px 14px;

    display: flex;
    align-items: center;

    gap: 11px;
}

.value-number {
    color:
        rgba(255,255,255,0.10);

    font-size: 21px;
    font-weight: 950;
}

.value-item strong,
.value-item small {
    display: block;
}

.value-item strong {
    font-size: 12px;
}

.value-item small {
    margin-top: 1px;

    color: var(--muted-2);

    font-size: 9px;
}

.value-separator {
    width: 1px;
    background:
        rgba(255,255,255,0.065);
}

/* =========================================================
COMMON SECTION
========================================================= */

.content-section {
    padding:
        100px
        0;
}

.section-title {
    max-width: 750px;

    margin:
        0
        auto
        46px;

    text-align: center;
}

.section-eyebrow {
    color: #a784ff;

    font-size: 10px;
    font-weight: 950;

    letter-spacing: 1.5px;
}

.section-title h2,
.experience-copy h2,
.realtime-copy h2,
.download-copy h2,
.final-panel h2 {
    margin:
        11px
        0
        14px;

    font-size:
        clamp(
            30px,
            3.6vw,
            48px
        );

    line-height: 1.12;

    letter-spacing: -1.5px;
}

.section-title p,
.experience-copy > p,
.realtime-copy p,
.download-copy p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.82;
}

/* =========================================================
FEATURES
========================================================= */

.features-section {
    position: relative;
}

.premium-feature-grid {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 17px;
}

.premium-feature {
    position: relative;

    min-height: 305px;

    padding: 26px;

    border-radius: 25px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(15,29,49,0.90),
            rgba(8,19,33,0.92)
        );

    border:
        1px solid rgba(255,255,255,0.07);

    box-shadow:
        0 24px 60px rgba(0,0,0,0.14);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.premium-feature::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background:
        rgba(139,92,246,0.075);

    filter: blur(16px);
}

.premium-feature:hover {
    transform: translateY(-5px);

    border-color:
        rgba(139,92,246,0.22);

    box-shadow:
        0 32px 70px rgba(0,0,0,0.20);
}

.premium-feature-icon {
    width: 48px;
    height: 48px;

    border-radius: 15px;

    display: grid;
    place-items: center;

    color: #b995ff;

    background:
        linear-gradient(
            145deg,
            rgba(139,92,246,0.13),
            rgba(79,140,255,0.06)
        );

    border:
        1px solid rgba(139,92,246,0.10);

    font-size: 19px;
}

.feature-index {
    position: absolute;

    top: 25px;
    right: 26px;

    color:
        rgba(255,255,255,0.07);

    font-size: 22px;
    font-weight: 950;
}

.premium-feature h3 {
    margin:
        21px
        0
        9px;

    font-size: 19px;
}

.premium-feature > p {
    max-width: 95%;

    margin: 0;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.78;
}

.account-demo {
    margin-top: 28px;

    display: grid;

    grid-template-columns:
        1fr
        60px
        1fr;

    align-items: center;

    gap: 9px;
}

.demo-site,
.demo-app {
    min-height: 66px;

    padding:
        10px
        12px;

    border-radius: 14px;

    display: flex;
    align-items: center;

    gap: 9px;

    background:
        rgba(255,255,255,0.027);

    border:
        1px solid rgba(255,255,255,0.05);

    color: #9caec4;

    font-size: 8px;
    font-weight: 700;
}

.demo-logo {
    width: 30px;
    height: 30px;

    border-radius: 10px;

    display: grid;
    place-items: center;

    background:
        rgba(139,92,246,0.10);

    color: #ba99ff;

    font-size: 9px;
    font-weight: 950;
}

.demo-connection {
    position: relative;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(139,92,246,0.25),
            rgba(79,140,255,0.52)
        );
}

.demo-connection span {
    position: absolute;

    width: 7px;
    height: 7px;

    top: 50%;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 0 5px rgba(85,216,255,0.07);

    animation:
        connectionMove 2.4s linear infinite;
}

@keyframes connectionMove {
    from {
        left: 0;
        transform: translate(-50%,-50%);
    }

    to {
        left: 100%;
        transform: translate(-50%,-50%);
    }
}

.fingerprint-visual {
    position: relative;

    width: 120px;
    height: 120px;

    margin:
        27px
        auto
        0;

    display: grid;
    place-items: center;
}

.fingerprint-ring {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(139,92,246,0.16);
}

.ring-a {
    width: 115px;
    height: 115px;
}

.ring-b {
    width: 82px;
    height: 82px;

    border-color:
        rgba(79,140,255,0.18);
}

.ring-c {
    width: 52px;
    height: 52px;

    border-color:
        rgba(54,211,155,0.18);
}

.fingerprint-center {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    color: #c09cff;

    background:
        rgba(139,92,246,0.10);

    animation:
        fingerprintPulse 2s ease-in-out infinite;
}

@keyframes fingerprintPulse {
    50% {
        box-shadow:
            0 0 0 16px rgba(139,92,246,0.02);
    }
}

.notification-stack {
    margin-top: 27px;

    display: grid;
    gap: 8px;
}

.notification-stack > div {
    min-height: 46px;

    padding:
        0
        12px;

    border-radius: 13px;

    display: flex;
    align-items: center;

    gap: 9px;

    background:
        rgba(255,255,255,0.027);

    border:
        1px solid rgba(255,255,255,0.05);

    font-size: 9px;
}

.notification-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;
}

.notification-dot.green {
    background: var(--green);
}

.notification-dot.blue {
    background: var(--blue);
}

.credit-demo {
    margin-top: 27px;

    padding: 17px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(139,92,246,0.10),
            rgba(79,140,255,0.06)
        );

    border:
        1px solid rgba(139,92,246,0.10);
}

.credit-demo-label {
    color: #6f8198;

    font-size: 7px;
    letter-spacing: 0.9px;
}

.credit-demo strong {
    display: block;

    margin-top: 3px;

    font-size: 26px;
}

.credit-demo button {
    width: 100%;

    min-height: 39px;

    margin-top: 13px;

    border: 0;
    border-radius: 11px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--blue)
        );

    font-size: 9px;
    font-weight: 850;
}

/* =========================================================
EXPERIENCE
========================================================= */

.experience-section {
    border-top:
        1px solid rgba(255,255,255,0.04);

    border-bottom:
        1px solid rgba(255,255,255,0.04);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.012),
            rgba(255,255,255,0.004)
        );
}

.experience-layout {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(410px,0.9fr);

    align-items: center;

    gap: 62px;
}

.experience-list {
    margin-top: 31px;

    display: grid;
    gap: 13px;
}

.experience-list-item {
    display: flex;
    align-items: flex-start;

    gap: 11px;
}

.experience-list-item > span {
    width: 27px;
    height: 27px;

    flex-shrink: 0;

    border-radius: 9px;

    display: grid;
    place-items: center;

    color: var(--green);

    background:
        rgba(54,211,155,0.075);

    font-size: 10px;
    font-weight: 950;
}

.experience-list-item strong,
.experience-list-item small {
    display: block;
}

.experience-list-item strong {
    font-size: 12px;
}

.experience-list-item small {
    margin-top: 2px;

    color: var(--muted-2);

    font-size: 10px;
}

.experience-dashboard {
    position: relative;
}

.dashboard-glow {
    position: absolute;

    width: 280px;
    height: 280px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    background:
        rgba(139,92,246,0.10);

    filter: blur(70px);
}

.dashboard-window {
    position: relative;
    z-index: 2;

    overflow: hidden;

    border-radius: 26px;

    background:
        rgba(10,23,39,0.94);

    border:
        1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 32px 80px rgba(0,0,0,0.28);
}

.dashboard-window-header {
    min-height: 47px;

    padding:
        0
        16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom:
        1px solid rgba(255,255,255,0.05);

    background:
        rgba(255,255,255,0.018);
}

.window-controls {
    display: flex;
    gap: 5px;
}

.window-controls span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.18);
}

.dashboard-window-header small {
    color: #6b7d94;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.dashboard-window-content {
    padding: 21px;
}

.dashboard-top-card {
    padding: 17px;

    border-radius: 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(139,92,246,0.11),
            rgba(79,140,255,0.05)
        );

    border:
        1px solid rgba(139,92,246,0.09);
}

.dashboard-top-card small,
.dashboard-top-card strong {
    display: block;
}

.dashboard-top-card small {
    color: var(--muted-2);
    font-size: 8px;
}

.dashboard-top-card strong {
    margin-top: 3px;
    font-size: 27px;
}

.dashboard-live {
    display: flex;
    align-items: center;

    gap: 6px;

    color: var(--green);

    font-size: 7px;
    font-weight: 900;
}

.dashboard-live i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 0 5px rgba(54,211,155,0.06);
}

.dashboard-mini-grid {
    margin-top: 11px;

    display: grid;
    grid-template-columns:
        repeat(3,1fr);

    gap: 8px;
}

.dashboard-mini-grid > div {
    min-height: 72px;

    padding: 10px;

    border-radius: 13px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 6px;

    background:
        rgba(255,255,255,0.023);

    border:
        1px solid rgba(255,255,255,0.045);
}

.dashboard-mini-grid span {
    width: 27px;
    height: 27px;

    border-radius: 9px;

    display: grid;
    place-items: center;

    color: #b797ff;

    background:
        rgba(139,92,246,0.08);
}

.dashboard-mini-grid small {
    color: #91a2b7;
    font-size: 7px;
}

.dashboard-activity-title {
    margin:
        20px
        1px
        8px;

    font-size: 9px;
}

.dashboard-activity-item {
    min-height: 60px;

    padding:
        9px
        0;

    display: flex;
    align-items: center;

    gap: 9px;

    border-bottom:
        1px solid rgba(255,255,255,0.045);
}

.dashboard-activity-item:last-child {
    border-bottom: 0;
}

.activity-symbol {
    width: 34px;
    height: 34px;

    border-radius: 11px;

    display: grid;
    place-items: center;

    flex-shrink: 0;
}

.activity-symbol.completed {
    color: var(--green);

    background:
        rgba(54,211,155,0.075);
}

.activity-symbol.credit {
    color: var(--blue);

    background:
        rgba(79,140,255,0.075);
}

.dashboard-activity-item > div {
    flex: 1;
}

.dashboard-activity-item strong,
.dashboard-activity-item small {
    display: block;
}

.dashboard-activity-item strong {
    font-size: 9px;
}

.dashboard-activity-item small {
    margin-top: 2px;
    color: var(--muted-2);
    font-size: 7px;
}

.dashboard-activity-item > span:last-child {
    color: #5f7187;
    font-size: 7px;
}

/* =========================================================
REALTIME
========================================================= */

.realtime-section {
    padding:
        72px
        0;
}

.realtime-panel {
    padding: 31px;

    border-radius: 27px;

    display: grid;

    grid-template-columns:
        auto
        minmax(0,1fr)
        minmax(290px,0.7fr);

    align-items: center;

    gap: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(27,38,67,0.93),
            rgba(8,22,38,0.94)
        );

    border:
        1px solid rgba(139,92,246,0.14);

    box-shadow:
        var(--shadow);
}

.realtime-orb {
    width: 70px;
    height: 70px;

    border-radius: 21px;

    display: grid;
    place-items: center;

    color: #c2a2ff;

    background:
        rgba(139,92,246,0.10);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.realtime-copy h2 {
    font-size:
        clamp(
            26px,
            3vw,
            38px
        );
}

.realtime-phone-notification {
    position: relative;

    padding: 14px;

    border-radius: 17px;

    display: flex;
    align-items: flex-start;

    gap: 10px;

    background:
        rgba(255,255,255,0.035);

    border:
        1px solid rgba(255,255,255,0.06);
}

.notification-app-icon {
    width: 38px;
    height: 38px;

    border-radius: 11px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: #bd9cff;

    background:
        rgba(139,92,246,0.09);

    font-size: 9px;
    font-weight: 950;
}

.realtime-phone-notification > div:nth-child(2) {
    flex: 1;
}

.realtime-phone-notification small,
.realtime-phone-notification strong,
.realtime-phone-notification p {
    display: block;
}

.realtime-phone-notification small {
    color: #687a90;
    font-size: 6px;
    letter-spacing: 0.8px;
}

.realtime-phone-notification strong {
    margin-top: 2px;
    font-size: 9px;
}

.realtime-phone-notification p {
    margin:
        2px
        0
        0;

    color: var(--muted-2);

    font-size: 7px;
    line-height: 1.5;
}

.realtime-phone-notification > span {
    color: #53647a;
    font-size: 7px;
}

/* =========================================================
SECURITY
========================================================= */

.security-premium-grid {
    display: grid;
    grid-template-columns:
        repeat(3,1fr);

    gap: 15px;
}

.security-premium-card {
    min-height: 230px;

    padding: 24px;

    border-radius: 23px;

    background:
        rgba(255,255,255,0.022);

    border:
        1px solid rgba(255,255,255,0.065);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.security-premium-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(139,92,246,0.20);
}

.security-premium-card.featured {
    background:
        linear-gradient(
            145deg,
            rgba(139,92,246,0.08),
            rgba(79,140,255,0.035)
        );

    border-color:
        rgba(139,92,246,0.13);
}

.security-premium-icon {
    width: 47px;
    height: 47px;

    border-radius: 15px;

    display: grid;
    place-items: center;

    color: #b898ff;

    background:
        rgba(139,92,246,0.09);
}

.security-premium-card h3 {
    margin:
        19px
        0
        8px;

    font-size: 17px;
}

.security-premium-card p {
    margin: 0;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.75;
}

/* =========================================================
DOWNLOAD
========================================================= */

.download-section {
    padding:
        20px
        0
        88px;
}

.download-premium-card {
    position: relative;

    overflow: hidden;

    padding: 36px;

    border-radius: 30px;

    display: grid;

    grid-template-columns:
        auto
        minmax(0,1fr)
        minmax(240px,0.55fr);

    align-items: center;

    gap: 27px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(139,92,246,0.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #111f36,
            #081726
        );

    border:
        1px solid rgba(139,92,246,0.14);

    box-shadow:
        var(--shadow);
}

.download-premium-card::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -120px;
    bottom: -150px;

    border-radius: 50%;

    background:
        rgba(79,140,255,0.08);

    filter: blur(35px);
}

.download-visual {
    position: relative;

    width: 100px;
    height: 100px;

    display: grid;
    place-items: center;
}

.download-logo-ring {
    position: absolute;
    inset: 0;

    border-radius: 50%;

    border:
        1px solid rgba(139,92,246,0.14);

    animation:
        downloadRing 3s ease-in-out infinite;
}

@keyframes downloadRing {
    50% {
        transform: scale(1.08);
        opacity: 0.45;
    }
}

.download-logo {
    position: relative;
    z-index: 2;

    width: 76px;
    height: 76px;

    border-radius: 23px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            145deg,
            rgba(139,92,246,0.20),
            rgba(79,140,255,0.10)
        );

    border:
        1px solid rgba(139,92,246,0.20);

    color: #bd9aff;

    font-size: 21px;
    font-weight: 950;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.download-copy h2 {
    font-size:
        clamp(
            28px,
            3.4vw,
            44px
        );
}

.download-meta {
    margin-top: 14px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    color: #67798f;

    font-size: 9px;
}

.download-meta i {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #46586e;
}

.download-buttons {
    position: relative;
    z-index: 3;

    display: grid;
    gap: 9px;
}

.download-apk-button,
.download-play-button {
    min-height: 58px;

    padding:
        9px
        13px;

    border-radius: 15px;

    display: flex;
    align-items: center;

    gap: 11px;
}

.download-apk-button {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--blue)
        );

    box-shadow:
        0 16px 35px rgba(79,140,255,0.22);
}

.download-play-button {
    border:
        1px solid rgba(255,255,255,0.09);

    background:
        rgba(255,255,255,0.035);
}

.download-arrow,
.play-symbol {
    width: 35px;
    height: 35px;

    border-radius: 11px;

    display: grid;
    place-items: center;

    flex-shrink: 0;
}

.download-arrow {
    background:
        rgba(255,255,255,0.11);
}

.play-symbol {
    color: #76a7ff;

    background:
        rgba(79,140,255,0.08);
}

.download-apk-button small,
.download-apk-button strong,
.download-play-button small,
.download-play-button strong {
    display: block;
}

.download-apk-button small,
.download-play-button small {
    font-size: 7px;
    opacity: 0.70;
}

.download-apk-button strong,
.download-play-button strong {
    margin-top: 1px;
    font-size: 10px;
}

/* =========================================================
LEGAL
========================================================= */

.legal-section {
    padding:
        4px
        0
        75px;
}

.legal-layout {
    display: grid;
    grid-template-columns:
        1fr 1fr;

    gap: 14px;
}

.legal-premium-card {
    padding: 19px;

    border-radius: 19px;

    display: flex;
    align-items: center;

    gap: 13px;

    background:
        rgba(255,255,255,0.022);

    border:
        1px solid rgba(255,255,255,0.06);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.legal-premium-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(139,92,246,0.20);
}

.legal-premium-icon {
    width: 43px;
    height: 43px;

    border-radius: 13px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: #b997ff;

    background:
        rgba(139,92,246,0.08);
}

.legal-premium-card > div:nth-child(2) {
    flex: 1;
}

.legal-premium-card strong {
    font-size: 12px;
}

.legal-premium-card p {
    margin:
        2px
        0
        0;

    color: var(--muted-2);

    font-size: 9px;
    line-height: 1.6;
}

.legal-open {
    color: #62748a;
    font-size: 18px;
}

/* =========================================================
FINAL
========================================================= */

.final-section {
    padding:
        0
        0
        86px;
}

.final-panel {
    padding:
        30px
        33px;

    border-radius: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 26px;

    background:
        linear-gradient(
            135deg,
            rgba(139,92,246,0.08),
            rgba(79,140,255,0.045)
        );

    border:
        1px solid rgba(139,92,246,0.11);
}

.final-panel h2 {
    margin-bottom: 0;

    font-size:
        clamp(
            24px,
            3vw,
            38px
        );
}

/* =========================================================
FOOTER
========================================================= */

.site-footer {
    border-top:
        1px solid rgba(255,255,255,0.05);

    background:
        rgba(2,8,15,0.45);
}

.footer-main {
    padding:
        44px
        0
        36px;

    display: grid;

    grid-template-columns:
        minmax(250px,1fr)
        180px
        210px;

    gap: 45px;
}

.footer-brand-column p {
    max-width: 340px;

    margin:
        18px
        0
        0;

    color: var(--muted-2);

    font-size: 10px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column > strong {
    margin-bottom: 2px;

    font-size: 11px;
}

.footer-column a {
    width: fit-content;

    color: var(--muted-2);

    font-size: 10px;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--text);
}

.footer-bottom {
    min-height: 65px;

    padding:
        13px
        0;

    border-top:
        1px solid rgba(255,255,255,0.04);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: #52647a;

    font-size: 9px;
}

/* =========================================================
REVEAL ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(28px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
RTL
========================================================= */

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .experience-copy,
html[dir="rtl"] .download-copy {
    text-align: right;
}

html[dir="rtl"] .feature-index {
    right: auto;
    left: 26px;
}

html[dir="rtl"] .mobile-balance {
    text-align: left;
}

html[dir="rtl"] .legal-open,
html[dir="rtl"] .button-arrow {
    transform: rotate(180deg);
}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 1020px) {

    .desktop-navigation {
        display: none;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-copy {
        max-width: 780px;
    }

    .hero-device-area {
        min-height: 640px;
    }

    .experience-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .realtime-panel {
        grid-template-columns:
            auto
            minmax(0,1fr);
    }

    .realtime-phone-notification {
        grid-column:
            1 / -1;
    }

    .download-premium-card {
        grid-template-columns:
            auto
            minmax(0,1fr);
    }

    .download-buttons {
        grid-column:
            1 / -1;

        grid-template-columns:
            1fr
            1fr;
    }
}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 760px) {

    .container {
        width:
            min(
                calc(100% - 24px),
                var(--container)
            );
    }

    .site-header {
        padding:
            max(8px, env(safe-area-inset-top))
            0
            8px;
    }

    .nav-shell {
        min-height: 56px;
    }

    .logo-shell {
        width: 39px;
        height: 39px;

        border-radius: 13px;
    }

    .nav-brand-text strong {
        font-size: 11px;
    }

    .nav-brand-text small {
        display: none;
    }

    .nav-download {
        display: none;
    }

    .language-switch {
        min-height: 38px;

        padding:
            0
            12px;

        font-size: 11px;
    }

    .hero-section {
        min-height: auto;

        padding:
            58px
            0
            28px;
    }

    .hero-layout {
        gap: 10px;
    }

    .hero-copy {
        text-align: center;
    }

    html[dir="rtl"] .hero-copy {
        text-align: center;
    }

    .hero-label {
        margin:
            0
            auto;
    }

    .hero-copy h1 {
        margin-top: 20px;

        font-size:
            clamp(
                37px,
                11.6vw,
                55px
            );

        line-height: 1.04;

        letter-spacing: -2.2px;
    }

    .hero-subtitle {
        max-width: 540px;

        margin:
            0
            auto;

        font-size: 14px;
        line-height: 1.75;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;

        margin-top: 25px;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .hero-trust-row {
        display: grid;
        grid-template-columns: 1fr;

        justify-items: center;

        gap: 8px;
    }

    .hero-device-area {
        min-height: 590px;

        margin-top: 10px;
    }

    .ring-one {
        width: 380px;
        height: 380px;
    }

    .ring-two {
        width: 445px;
        height: 445px;
    }

    .ring-three {
        width: 500px;
        height: 500px;
    }

    .phone-device {
        width: 270px;
        height: 550px;
    }

    .floating-card {
        min-width: 170px;
    }

    .floating-card-complete {
        left: -18px;
        top: 160px;
    }

    .floating-card-biometric {
        right: -22px;
        bottom: 105px;
    }

    .scroll-indicator {
        display: none;
    }

    .value-section {
        padding-bottom: 55px;
    }

    .value-panel {
        padding: 0;

        grid-template-columns:
            1fr
            1fr;

        overflow: hidden;
    }

    .value-separator {
        display: none;
    }

    .value-item {
        min-height: 88px;

        padding: 15px;

        border-bottom:
            1px solid rgba(255,255,255,0.055);
    }

    .value-item:nth-child(3),
    .value-item:nth-child(7) {
        border-left:
            1px solid rgba(255,255,255,0.055);
    }

    .value-item:nth-child(5),
    .value-item:nth-child(7) {
        border-bottom: 0;
    }

    html[dir="rtl"] .value-item:nth-child(3),
    html[dir="rtl"] .value-item:nth-child(7) {
        border-left: 0;

        border-right:
            1px solid rgba(255,255,255,0.055);
    }

    .content-section {
        padding:
            74px
            0;
    }

    .section-title {
        margin-bottom: 31px;
    }

    .section-title h2,
    .experience-copy h2,
    .realtime-copy h2,
    .download-copy h2,
    .final-panel h2 {
        letter-spacing: -0.8px;
    }

    .premium-feature-grid {
        grid-template-columns: 1fr;
    }

    .premium-feature {
        min-height: 0;

        padding: 23px;
    }

    .account-demo {
        grid-template-columns:
            1fr
            40px
            1fr;
    }

    .experience-layout {
        gap: 37px;
    }

    .experience-copy {
        text-align: center;
    }

    html[dir="rtl"] .experience-copy {
        text-align: center;
    }

    .experience-list {
        text-align: left;
    }

    html[dir="rtl"] .experience-list {
        text-align: right;
    }

    .realtime-section {
        padding:
            56px
            0;
    }

    .realtime-panel {
        padding: 24px;

        grid-template-columns: 1fr;

        text-align: center;
    }

    .realtime-orb {
        margin:
            0
            auto;
    }

    .realtime-phone-notification {
        text-align: left;
    }

    html[dir="rtl"] .realtime-phone-notification {
        text-align: right;
    }

    .security-premium-grid {
        grid-template-columns: 1fr;
    }

    .security-premium-card {
        min-height: 0;
    }

    .download-section {
        padding-bottom: 70px;
    }

    .download-premium-card {
        padding: 26px;

        grid-template-columns: 1fr;

        text-align: center;
    }

    .download-visual {
        margin:
            0
            auto;
    }

    .download-buttons {
        grid-column: auto;

        grid-template-columns: 1fr;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .final-panel {
        padding: 26px;

        flex-direction: column;

        text-align: center;
    }

    .final-panel .button {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .footer-brand-column {
        text-align: center;
    }

    .footer-brand-column .nav-brand {
        justify-content: center;
    }

    .footer-brand-column p {
        margin:
            16px
            auto
            0;
    }

    .footer-column {
        align-items: center;
    }

    .footer-bottom {
        padding:
            20px
            0;

        flex-direction: column;

        text-align: center;
    }
}

/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .hero-copy h1 {
        font-size: 38px;
    }

    .hero-device-area {
        min-height: 525px;

        margin:
            -6px
            -18px
            0;

        transform: scale(0.88);
    }

    .value-panel {
        grid-template-columns: 1fr;
    }

    .value-item,
    .value-item:nth-child(3),
    .value-item:nth-child(5),
    .value-item:nth-child(7),
    html[dir="rtl"] .value-item:nth-child(3),
    html[dir="rtl"] .value-item:nth-child(7) {
        border-left: 0;
        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,0.055);
    }

    .value-item:last-child {
        border-bottom: 0;
    }

    .value-item {
        min-height: 75px;
    }

    .account-demo {
        grid-template-columns: 1fr;

        gap: 7px;
    }

    .demo-connection {
        width: 1px;
        height: 28px;

        margin:
            0
            auto;

        background:
            linear-gradient(
                180deg,
                rgba(139,92,246,0.25),
                rgba(79,140,255,0.52)
            );
    }

    .demo-connection span {
        left: 50% !important;
        top: 0;

        animation:
            connectionMoveVertical
            2.4s
            linear
            infinite;
    }

    @keyframes connectionMoveVertical {
        from {
            top: 0;
            transform: translate(-50%,-50%);
        }

        to {
            top: 100%;
            transform: translate(-50%,-50%);
        }
    }

    .dashboard-mini-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-mini-grid > div {
        min-height: 58px;

        flex-direction: row;
        justify-content: flex-start;
    }

    .dashboard-window-content {
        padding: 16px;
    }
}






/* =========================================================
   MAIN LANDING PAGE - RESPONSIVE FIX
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

body {
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(79, 140, 255, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 25%,
            rgba(139, 92, 246, 0.08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #07111f 0%,
            #081525 50%,
            #06101d 100%
        );

    color: #f7f9fc;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

section,
main,
header,
footer {
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

/* ---------- text clarity ---------- */

.hero-subtitle,
.section-title p,
.experience-copy > p,
.realtime-copy p,
.download-copy p,
.premium-feature > p,
.security-premium-card p,
.experience-list-item small {
    color: #aebdd0 !important;
}

.premium-feature h3,
.security-premium-card h3,
.section-title h2,
.experience-copy h2,
.realtime-copy h2,
.download-copy h2 {
    color: #ffffff;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.85;
}

.section-title p,
.experience-copy > p {
    font-size: 15px;
    line-height: 1.8;
}

/* ---------- hero desktop ---------- */

.hero-section {
    padding: 90px 0 70px;
}

.hero-layout {
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, 0.95fr);

    gap: 64px;
}

.hero-device-area {
    max-width: 100%;
    overflow: visible;
}

.phone-device {
    max-width: 100%;
}

/* ---------- cards ---------- */

.premium-feature,
.security-premium-card,
.dashboard-window {
    background:
        linear-gradient(
            145deg,
            rgba(15, 30, 50, 0.97),
            rgba(9, 22, 38, 0.97)
        );

    border:
        1px solid rgba(255,255,255,0.09);
}

.premium-feature > p {
    font-size: 14px;
    line-height: 1.75;
}

.experience-list-item strong {
    font-size: 15px;
}

.experience-list-item small {
    font-size: 13px;
    line-height: 1.65;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .container {
        width: calc(100% - 26px);
    }

    .site-header {
        padding: 8px 0;
    }

    .nav-shell {
        min-height: 56px;
        width: calc(100% - 26px);
    }

    .logo-shell {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .nav-brand-text strong {
        font-size: 12px;
        white-space: nowrap;
    }

    .language-switch {
        min-height: 40px;
        padding: 0 13px;
        font-size: 11px;
    }

    /* HERO */

    .hero-section {
        padding: 54px 0 35px;
    }

    .hero-layout {
        display: block;
        width: 100%;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
        text-align: center !important;
        padding: 0;
    }

    .hero-label {
        max-width: 100%;
        margin-inline: auto;
        font-size: 11px;
    }

    .hero-copy h1 {
        width: 100%;
        max-width: 100%;

        font-size:
            clamp(
                38px,
                10vw,
                50px
            );

        line-height: 1.12;

        margin: 22px auto 18px;

        letter-spacing: -1px;

        overflow-wrap: anywhere;
    }

    .hero-subtitle {
        width: 100%;
        max-width: 100%;

        margin-inline: auto;

        font-size: 15px;
        line-height: 1.8;
    }

    .hero-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;
        margin-top: 25px;
    }

    .hero-buttons .button {
        width: 100%;
        min-height: 56px;
    }

    .hero-trust-row {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 8px;
        margin-top: 23px;
    }

    /* PHONE */

    .hero-device-area {
        width: 100%;
        max-width: 100%;

        min-height: 575px;

        margin: 25px auto 0;

        transform: none !important;

        overflow: hidden;
    }

    .phone-device {
        width: min(270px, 76vw);
        height: 545px;
    }

    .ring-one {
        width: min(370px, 96vw);
        height: min(370px, 96vw);
    }

    .ring-two {
        width: min(430px, 110vw);
        height: min(430px, 110vw);
    }

    .ring-three {
        display: none;
    }

    .floating-card {
        min-width: 0;
        width: 155px;
        max-width: 42vw;

        padding: 9px 10px;
    }

    .floating-card strong {
        font-size: 9px;
    }

    .floating-card small {
        font-size: 7px;
    }

    .floating-card-complete {
        left: 4px;
        top: 160px;
    }

    .floating-card-biometric {
        right: 4px;
        bottom: 105px;
    }

    /* VALUE STRIP */

    .value-panel {
        width: 100%;

        grid-template-columns:
            1fr
            1fr;

        padding: 0;

        overflow: hidden;
    }

    .value-separator {
        display: none;
    }

    .value-item {
        min-height: 90px;

        padding: 14px;

        border-bottom:
            1px solid rgba(255,255,255,0.06);
    }

    .value-item:nth-child(3),
    .value-item:nth-child(7) {
        border-left:
            1px solid rgba(255,255,255,0.06);
    }

    html[dir="rtl"] .value-item:nth-child(3),
    html[dir="rtl"] .value-item:nth-child(7) {
        border-left: 0;

        border-right:
            1px solid rgba(255,255,255,0.06);
    }

    /* SECTIONS */

    .content-section {
        padding: 68px 0;
    }

    .section-title {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }

    .section-title h2,
    .experience-copy h2,
    .realtime-copy h2,
    .download-copy h2 {
        font-size:
            clamp(
                30px,
                8vw,
                40px
            );

        line-height: 1.16;
    }

    .section-title p,
    .experience-copy > p,
    .realtime-copy p,
    .download-copy p {
        font-size: 15px;
        line-height: 1.75;
    }

    .premium-feature-grid,
    .security-premium-grid,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .premium-feature {
        width: 100%;
        min-height: 0;
        padding: 23px;
    }

    .premium-feature h3 {
        font-size: 20px;
    }

    .premium-feature > p {
        max-width: 100%;
        font-size: 14px;
    }

    /* EXPERIENCE */

    .experience-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .experience-copy {
        width: 100%;
        max-width: 100%;
        text-align: center !important;
    }

    .experience-list {
        width: 100%;
        text-align: start;
    }

    .experience-dashboard,
    .dashboard-window {
        width: 100%;
        max-width: 100%;
    }

    /* REALTIME */

    .realtime-panel {
        width: 100%;

        grid-template-columns: 1fr;

        padding: 24px;

        text-align: center;
    }

    .realtime-phone-notification {
        width: 100%;
        max-width: 100%;
        text-align: start;
    }

    /* DOWNLOAD */

    .download-premium-card {
        width: 100%;

        grid-template-columns: 1fr;

        padding: 26px;

        text-align: center;
    }

    .download-buttons {
        width: 100%;
        grid-template-columns: 1fr;
    }

    /* FINAL */

    .final-panel {
        width: 100%;
        padding: 26px;

        flex-direction: column;

        text-align: center;
    }

    .final-panel .button {
        width: 100%;
    }

    /* FOOTER */

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-bottom {
        width: 100%;
        text-align: center;
    }
}

/* VERY SMALL MOBILE */

@media (max-width: 390px) {

    .container,
    .nav-shell {
        width: calc(100% - 20px);
    }

    .hero-copy h1 {
        font-size: 35px;
    }

    .phone-device {
        width: 250px;
        height: 520px;
    }

    .floating-card {
        width: 135px;
    }

    .value-panel {
        grid-template-columns: 1fr;
    }

    .value-item,
    .value-item:nth-child(3),
    .value-item:nth-child(7),
    html[dir="rtl"] .value-item:nth-child(3),
    html[dir="rtl"] .value-item:nth-child(7) {
        border-left: 0;
        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,0.06);
    }

    .value-item:last-child {
        border-bottom: 0;
    }
}







/* =========================================================
   STORE DOWNLOAD BUTTONS
   ========================================================= */

.download-buttons {
    display: grid;
    gap: 12px;
}

.download-apk-button,
.download-play-button {
    position: relative;

    min-height: 84px;

    padding: 14px 20px;

    border-radius: 22px;

    display: flex;
    align-items: center;

    gap: 16px;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


/* ANDROID */

.download-apk-button {
    border:
        1px solid rgba(29, 221, 221, 0.80);

    background:
        linear-gradient(
            135deg,
            rgba(26, 85, 108, 0.88),
            rgba(18, 62, 84, 0.95)
        );

    box-shadow:
        0 18px 42px rgba(25, 207, 207, 0.10);
}

.download-apk-button::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 0%,
            rgba(255,255,255,0.05) 45%,
            transparent 70%
        );

    transform: translateX(-100%);

    transition:
        transform 0.6s ease;
}

.download-apk-button:hover {
    transform: translateY(-3px);

    border-color:
        rgba(50, 240, 230, 1);

    box-shadow:
        0 22px 55px rgba(25, 207, 207, 0.18);
}

.download-apk-button:hover::before {
    transform: translateX(100%);
}


/* GOOGLE PLAY */

.download-play-button {
    border:
        1px solid rgba(255,255,255,0.08);

    background:
        linear-gradient(
            145deg,
            rgba(8, 15, 35, 0.98),
            rgba(5, 10, 26, 0.98)
        );

    opacity: 0.92;
}

.coming-soon-store {
    cursor: default;
}


/* ICONS */

.store-icon {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    border-radius: 15px;

    display: grid;
    place-items: center;
}


/* ANDROID CUSTOM ICON */

.android-store-icon {
    position: relative;

    color: #20e4d4;

    background:
        rgba(31, 225, 212, 0.06);
}

.android-head {
    position: relative;

    width: 31px;
    height: 22px;

    border-radius:
        12px
        12px
        6px
        6px;

    background: #20e4d4;
}

.android-head::before,
.android-head::after {
    content: "";

    position: absolute;

    width: 2px;
    height: 10px;

    top: -7px;

    background: #20e4d4;

    border-radius: 99px;
}

.android-head::before {
    left: 7px;
    transform: rotate(-32deg);
}

.android-head::after {
    right: 7px;
    transform: rotate(32deg);
}

.android-head i {
    position: absolute;

    width: 3px;
    height: 3px;

    top: 7px;

    border-radius: 50%;

    background: #063744;
}

.android-head i:first-child {
    left: 8px;
}

.android-head i:last-child {
    right: 8px;
}


/* PLAY */

.google-play-store-icon {
    color: #13d6b6;

    font-size: 32px;

    background:
        rgba(19, 214, 182, 0.05);
}


/* TEXT */

.store-button-copy {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.store-button-copy small {
    color: #91a4bd;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.2;
}

.store-button-copy strong {
    margin-top: 4px;

    color: #ffffff;

    font-size: 21px;

    line-height: 1.15;

    font-weight: 900;
}


/* RTL */

html[dir="rtl"] .download-apk-button,
html[dir="rtl"] .download-play-button {
    direction: rtl;
}


/* MOBILE */

@media (max-width: 760px) {

    .download-buttons {
        width: 100%;
    }

    .download-apk-button,
    .download-play-button {
        width: 100%;

        min-height: 82px;

        padding:
            13px
            17px;

        border-radius: 20px;
    }

    .store-icon {
        width: 46px;
        height: 46px;

        flex-basis: 46px;
    }

    .store-button-copy strong {
        font-size: 19px;
    }

    .store-button-copy small {
        font-size: 11px;
    }
}



/* =========================================================
   GOOGLE PLAY REAL-STYLE ICON
   ========================================================= */

.google-play-store-icon {
    position: relative;

    background:
        rgba(255,255,255,0.025);

    overflow: hidden;
}

.gp-shape {
    position: relative;

    width: 35px;
    height: 38px;

    display: block;
}

.gp-shape i {
    position: absolute;
    display: block;
}

/* left green area */

.gp-green {
    left: 2px;
    top: 2px;

    width: 19px;
    height: 34px;

    background: #00d6a3;

    clip-path:
        polygon(
            0 0,
            100% 50%,
            0 100%
        );
}

/* right blue tip */

.gp-blue {
    right: 1px;
    top: 10px;

    width: 17px;
    height: 18px;

    background: #42a5f5;

    clip-path:
        polygon(
            0 0,
            100% 50%,
            0 100%
        );
}

/* upper yellow section */

.gp-yellow {
    left: 11px;
    top: 4px;

    width: 17px;
    height: 16px;

    background: #ffd54f;

    clip-path:
        polygon(
            0 0,
            100% 50%,
            0 100%
        );

    transform: rotate(1deg);
}

/* lower red section */

.gp-red {
    left: 11px;
    bottom: 4px;

    width: 17px;
    height: 16px;

    background: #ff5252;

    clip-path:
        polygon(
            0 0,
            100% 50%,
            0 100%
        );

    transform:
        scaleY(-1);
}

/* slightly cleaner visual */

.google-play-store-icon::after {
    content: "";

    position: absolute;

    inset: 7px;

    border-radius: 12px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04);
}


/* =========================================================
   APK TRUST LINE
   ========================================================= */

.apk-download-group {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.apk-trust-line {
    margin-top: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 6px;

    color: #8799b1;

    font-size: 10px;

    font-weight: 650;
}

.apk-trust-item {
    display: inline-flex;
    align-items: center;

    gap: 4px;

    white-space: nowrap;
}

.apk-trust-item i {
    width: 15px;
    height: 15px;

    border-radius: 50%;

    display: inline-grid;
    place-items: center;

    font-style: normal;

    color: #39dca1;

    background:
        rgba(57,220,161,0.08);

    font-size: 8px;

    font-weight: 900;
}

.apk-trust-separator {
    color:
        rgba(255,255,255,0.18);
}


/* MOBILE */

@media (max-width: 760px) {

    .apk-trust-line {
        margin-top: 10px;

        gap: 5px;

        font-size: 9px;
    }

    .apk-trust-item i {
        width: 14px;
        height: 14px;

        font-size: 7px;
    }

    .gp-shape {
        width: 32px;
        height: 35px;
    }
}


/* VERY SMALL MOBILE */

@media (max-width: 390px) {

    .apk-trust-line {
        display: grid;
        grid-template-columns: 1fr;

        justify-items: start;

        padding-inline: 5px;

        gap: 4px;
    }

    .apk-trust-separator {
        display: none;
    }
}







/* =========================================================
   REAL LOL UNLOCKER LOGO
   ========================================================= */

.site-logo-image,
.download-logo-image,
.mobile-avatar-logo,
.notification-logo-image,
.demo-logo-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-shell {
    padding: 7px;
}

.site-logo-image {
    width: 100%;
    height: 100%;
}

.download-logo {
    padding: 10px;
}

.download-logo-image {
    width: 100%;
    height: 100%;
}

.mobile-user-avatar {
    padding: 6px;
}

.mobile-avatar-logo {
    width: 100%;
    height: 100%;
}

.notification-app-icon {
    padding: 6px;
}

.notification-logo-image {
    width: 100%;
    height: 100%;
}

.demo-logo {
    padding: 5px;
}

.demo-logo-image {
    width: 100%;
    height: 100%;
}



/* =========================================================
   DOWNLOAD SCREENSHOT SHOWCASE
   ========================================================= */

.download-showcase {
    position: relative;

    width: 330px;
    height: 270px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.download-screenshot {
    position: absolute;

    width: 145px;
    height: 260px;

    overflow: hidden;

    border-radius: 24px;

    background: #07111f;

    border:
        1px solid rgba(255,255,255,0.12);

    box-shadow:
        0 30px 60px rgba(0,0,0,0.35);

    transition:
        transform 0.3s ease,
        z-index 0.3s ease,
        box-shadow 0.3s ease;
}

.download-screenshot img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.screenshot-center {
    z-index: 3;

    transform:
        translateY(-4px)
        scale(1.04);
}

.screenshot-left {
    left: 16px;

    z-index: 1;

    transform:
        rotate(-7deg)
        translateY(8px);
}

.screenshot-right {
    right: 16px;

    z-index: 2;

    transform:
        rotate(7deg)
        translateY(8px);
}

.download-screenshot:hover {
    z-index: 10;

    transform:
        translateY(-10px)
        scale(1.06);

    box-shadow:
        0 35px 75px rgba(0,0,0,0.45);
}


/* MOBILE */

@media (max-width: 760px) {

    .download-showcase {
        width: 100%;
        height: 320px;

        margin-bottom: 14px;
    }

    .download-screenshot {
        width: 135px;
        height: 285px;

        border-radius: 22px;
    }

    .screenshot-left {
        left: 3%;

        transform:
            rotate(-6deg)
            translateY(10px);
    }

    .screenshot-center {
        left: 50%;

        transform:
            translateX(-50%)
            translateY(0)
            scale(1.03);
    }

    .screenshot-right {
        right: 3%;

        transform:
            rotate(6deg)
            translateY(10px);
    }
}


/* VERY SMALL MOBILE */

@media (max-width: 390px) {

    .download-showcase {
        height: 285px;
    }

    .download-screenshot {
        width: 115px;
        height: 250px;
    }
}