* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary: #024467;
    --primary-dark: #01314a;
    --primary-soft: #e8f4fa;
    --primary-light: #f3fbff;

    --bg: #f6fbff;
    --card: #ffffff;
    --text: #102a3a;
    --muted: #6f8290;
    --border: rgba(2, 68, 103, 0.12);

    --success: #00b86b;
    --shadow: 0 12px 34px rgba(2, 68, 103, 0.10);
    --shadow-soft: 0 8px 22px rgba(2, 68, 103, 0.07);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Premium white/navy background */

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 55% at 50% 0%, rgba(2, 68, 103, 0.10) 0%, transparent 62%),
        radial-gradient(ellipse 60% 45% at 6% 50%, rgba(2, 68, 103, 0.06) 0%, transparent 72%),
        radial-gradient(ellipse 55% 45% at 96% 80%, rgba(2, 68, 103, 0.07) 0%, transparent 72%),
        linear-gradient(180deg, #ffffff 0%, #f6fbff 46%, #eef8fd 100%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(2, 68, 103, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2, 68, 103, 0.035) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 65%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.wrap {
    position: relative;
    z-index: 1;
    max-width: 440px;
    margin: 0 auto;
    padding: 0 15px 120px;
}

/* TOPBAR */

.topbar {
    position: sticky;
    top: 0;
    z-index: 200;
    display: flex;
    justify-content: center;
    padding: 11px 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(2, 68, 103, 0.12);
    box-shadow: 0 8px 20px rgba(2, 68, 103, 0.05);
}

.topbar-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--primary);
}

.live-dot {
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 184, 107, 0.75);
    animation: blink 1.4s infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

/* HERO */

.hero {
    text-align: center;
    padding: 36px 10px 20px;
}

.logo-outer {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

/* Soft primary glow */

.logo-outer::before {
    content: '';
    position: absolute;
    inset: -24px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2, 68, 103, 0.16) 0%, transparent 68%);
    animation: gpulse 3s ease-in-out infinite;
}

@keyframes gpulse {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

/* Spinning navy ring */

.logo-ring {
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    background:
        conic-gradient(
            from 0deg,
            rgba(2, 68, 103, 0.95),
            rgba(112, 170, 199, 0.55),
            rgba(2, 68, 103, 0.95),
            rgba(180, 218, 235, 0.55),
            rgba(2, 68, 103, 0.95)
        ) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: rspin 6s linear infinite;
}

@keyframes rspin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.logo-img {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow:
        0 0 0 1px rgba(2, 68, 103, 0.18),
        0 12px 30px rgba(2, 68, 103, 0.18),
        0 5px 14px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    display: block;
    background: #ffffff;
}

.hero-title {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 1px;
    color: var(--primary);
    text-shadow: 0 8px 26px rgba(2, 68, 103, 0.13);
    margin-bottom: 8px;
}

.hero-sub {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(2, 68, 103, 0.62);
    font-weight: 700;
    margin-bottom: 18px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 5px;
}

.star {
    font-size: 18px;
    color: var(--primary);
    text-shadow: 0 4px 14px rgba(2, 68, 103, 0.20);
}

.rating-txt {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 24px;
}

/* TRUST PILLS */

.pills {
    display: flex;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 6px 18px rgba(2, 68, 103, 0.06);
}

/* APP ROW */

.app-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 15px;
    margin-bottom: 22px;
    box-shadow: var(--shadow-soft);
}

.app-logo-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff, var(--primary-light));
    border: 1px solid rgba(2, 68, 103, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.app-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.app-name {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--text);
}

.app-dev {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

.app-meta {
    font-size: 10.5px;
    color: var(--primary);
    margin-top: 5px;
    font-weight: 700;
}

/* STATS */

.stats {
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px 8px;
    margin-bottom: 26px;
    box-shadow: var(--shadow-soft);
}

.stat {
    text-align: center;
}

.stat-n {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 21px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-l {
    font-size: 10px;
    color: var(--muted);
    margin-top: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

/* DIVIDER */

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.div-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(2, 68, 103, 0.20), transparent);
}

.div-gem {
    color: rgba(2, 68, 103, 0.45);
    font-size: 12px;
}

/* SEC TITLE */

.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 16px;
}

/* FEATURES */

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 26px;
}

.feat {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.feat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(2, 68, 103, 0.45), transparent);
}

.feat-icon {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
}

.feat-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.feat-desc {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.5;
}

/* DOWNLOAD BUTTON — Primary navy */

.dl-btn,
.fixed-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: 100%;
    padding: 18px 20px;
    background: linear-gradient(135deg, #024467 0%, #035f8f 55%, #01314a 100%);
    border: none;
    border-radius: 16px;
    font-family: 'Cinzel Decorative', cursive;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    box-shadow:
        0 10px 30px rgba(2, 68, 103, 0.32),
        0 3px 10px rgba(2, 68, 103, 0.20);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    transition: transform 0.15s, box-shadow 0.15s;
}

.dl-btn:active,
.fixed-btn:active {
    transform: scale(0.97) !important;
    animation: none !important;
}

.dl-btn::after,
.fixed-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    animation: sheen 2.8s ease-in-out infinite;
}

@keyframes sheen {
    0% {
        left: -80%;
    }

    100% {
        left: 180%;
    }
}

.btn-ico {
    font-size: 21px;
}

.dl-wrap {
    margin: 22px 0;
    text-align: center;
}

.dl-label {
    font-size: 11px;
    color: rgba(2, 68, 103, 0.56);
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 800;
}

.dl-note {
    font-size: 10.5px;
    color: var(--muted);
    margin-top: 10px;
}

/* TESTIMONIALS - kept styled in case used later */

.testi {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-soft);
}

.testi-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.testi-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
}

.testi-stars {
    font-size: 13px;
    color: var(--primary);
}

.testi-text {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
}

.verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    color: var(--success);
    font-weight: 800;
    margin-top: 8px;
}

/* GUARANTEE - kept styled in case used later */

.guarantee {
    border: 1px solid rgba(0, 184, 107, 0.24);
    background: rgba(0, 184, 107, 0.06);
    border-radius: 16px;
    padding: 18px;
    margin: 24px 0;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.g-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.g-title {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--success);
    margin-bottom: 7px;
}

.g-text {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.65;
}

/* STEPS */

.steps {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-soft);
}

.step {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-num {
    background: linear-gradient(135deg, #024467, #03608f);
    color: #ffffff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
    box-shadow: 0 6px 16px rgba(2, 68, 103, 0.22);
}

.step-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 600;
}

.step-text strong {
    color: var(--primary);
}

/* FOOTER */

.footer {
    text-align: center;
    font-size: 10.5px;
    color: rgba(16, 42, 58, 0.42);
    padding: 18px 0;
    line-height: 2;
}

/* FIXED BOTTOM */

.fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 440px;
    z-index: 999;
    padding: 12px 15px 18px;
    background: linear-gradient(
        0deg,
        rgba(246, 251, 255, 1) 55%,
        rgba(246, 251, 255, 0) 100%
    );
}

.fixed-btn {
    animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob {
    0%,
    100% {
        transform: translateY(0);
        box-shadow:
            0 10px 30px rgba(2, 68, 103, 0.32),
            0 3px 10px rgba(2, 68, 103, 0.20);
    }

    50% {
        transform: translateY(-3px);
        box-shadow:
            0 16px 42px rgba(2, 68, 103, 0.42),
            0 6px 16px rgba(2, 68, 103, 0.22);
    }
}

/* REVEAL */

.r {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.r.in {
    opacity: 1;
    transform: translateY(0);
}

/* SMALL SCREEN POLISH */

@media (max-width: 380px) {
    .wrap {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-title {
        font-size: 27px;
    }

    .hero-sub {
        letter-spacing: 3px;
    }

    .pill {
        font-size: 11px;
        padding: 6px 11px;
    }

    .dl-btn,
    .fixed-btn {
        font-size: 13.5px;
        padding: 17px 15px;
    }

    .stat-n {
        font-size: 18px;
    }

    .stat-l {
        font-size: 9px;
    }
}