/* =====================================================
   PREMIUM MOBILE-FIRST APPLICATION LANDING PAGE
   style.css
===================================================== */


/* =====================================================
   ROOT
===================================================== */

:root {

    --bg: #070b14;
    --bg-dark: #050810;
    --card: #0d1320;

    --white: #ffffff;

    --white-95: rgba(255, 255, 255, 0.95);
    --white-80: rgba(255, 255, 255, 0.80);
    --white-70: rgba(255, 255, 255, 0.70);
    --white-55: rgba(255, 255, 255, 0.55);
    --white-45: rgba(255, 255, 255, 0.45);
    --white-30: rgba(255, 255, 255, 0.30);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-10: rgba(255, 255, 255, 0.10);
    --white-07: rgba(255, 255, 255, 0.07);

    --border: rgba(255, 255, 255, 0.10);

    --radius-card: 20px;
    --radius-button: 12px;

}


/* =====================================================
   GLOBAL RESET
===================================================== */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

    -webkit-tap-highlight-color: transparent;

}


html {

    width: 100%;
    max-width: 100%;

    overflow-x: hidden;

    scroll-behavior: smooth;

    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;

}


body {

    width: 100%;
    max-width: 100%;
    min-height: 100vh;

    margin: 0;
    padding: 0;

    background: var(--bg);

    color: var(--white);

    font-family: "Inter", sans-serif;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

}


body,
button,
a,
input,
textarea,
select {

    font-family: "Inter", sans-serif;

}


a {

    color: inherit;

    text-decoration: none;

    -webkit-tap-highlight-color: transparent;

}


img {

    display: block;

    max-width: 100%;

    border: 0;

    user-select: none;

    -webkit-user-select: none;

    -webkit-user-drag: none;

}


button,
a {

    touch-action: manipulation;

}


section {

    width: 100%;

}


.main-page {

    width: 100%;

    overflow: hidden;

}


/* =====================================================
   PAGE LOADER
===================================================== */

.page-loader {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #070b14;

    transition:
        opacity 0.45s ease,
        visibility 0.45s ease;

}


.page-loader.hide {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

}


.loader-content {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 14px;

    color: var(--white-55);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2.5px;

    text-transform: uppercase;

}


.loader-ring {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    border: 2px solid rgba(255, 255, 255, 0.08);

    border-top-color: #ffffff;

    animation: loaderSpin 0.8s linear infinite;

}


@keyframes loaderSpin {

    to {

        transform: rotate(360deg);

    }

}


/* =====================================================
   HERO
===================================================== */

.hero-section {

    position: relative;

    width: 100%;

    height: auto;

    background: var(--bg-dark);

    overflow: hidden;

}


.hero-image-wrapper {

    position: relative;

    width: 100%;

    height: 100svh;

    min-height: 600px;

    max-height: 850px;

    overflow: hidden;

}


.hero-image-link {

    position: absolute;

    inset: 0;

    z-index: 1;

    display: block;

    width: 100%;

    height: 100%;

}


.hero-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center center;

    transform: scale(1.001);

    transition:
        transform 0.8s cubic-bezier(.2, .8, .2, 1);

}


/* =====================================================
   HERO OVERLAY
===================================================== */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:

        linear-gradient(
            180deg,
            rgba(3, 6, 13, 0.20) 0%,
            rgba(3, 6, 13, 0.20) 22%,
            rgba(3, 6, 13, 0.48) 48%,
            rgba(3, 6, 13, 0.78) 72%,
            rgba(3, 6, 13, 0.97) 100%
        );

}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {

    position: absolute;

    z-index: 5;

    left: 18px;

    right: 18px;

    bottom: 88px;

    width: auto;

    pointer-events: none;

}


.hero-content .hero-play-button {

    pointer-events: auto;

}


/* =====================================================
   HERO BADGE
===================================================== */

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 13px;

    margin-bottom: 16px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    color: var(--white-80);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.live-dot {

    flex-shrink: 0;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.10);

    animation: livePulse 1.2s infinite;

}


@keyframes livePulse {

    0% {

        opacity: 1;

    }

    50% {

        opacity: 0.35;

    }

    100% {

        opacity: 1;

    }

}


/* =====================================================
   HERO HEADING
===================================================== */

.hero-content h1 {

    margin: 0;

    max-width: 100%;

    font-family: "Poppins", sans-serif;

    font-size: clamp(34px, 10vw, 48px);

    line-height: 1.06;

    letter-spacing: -1.8px;

    font-weight: 800;

}


.hero-content h1 span {

    display: block;

    color: transparent;

    -webkit-text-stroke:
        0.8px rgba(255, 255, 255, 0.78);

}


/* =====================================================
   HERO DESCRIPTION
===================================================== */

.hero-content p {

    max-width: 100%;

    margin-top: 15px;

    color: var(--white-70);

    font-size: 13px;

    line-height: 1.7;

}


/* =====================================================
   HERO BUTTON
===================================================== */

.hero-play-button {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    min-height: 58px;

    margin-top: 22px;

    padding: 6px 18px 6px 6px;

    border: 1px solid rgba(255, 255, 255, 0.20);

    border-radius: 60px;

    background: rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    transition:
        transform 0.3s ease,
        background 0.3s ease;

}


.play-circle {

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #070b14;

    animation: playBlink 1.2s infinite;

}


.play-circle i {

    margin-left: 2px;

    font-size: 14px;

}


.play-text {

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.3px;

}


/* =====================================================
   HERO BUTTON ANIMATION
===================================================== */

@keyframes playBlink {

    0% {

        transform: scale(1);

        box-shadow:
            0 0 0 0 rgba(255, 255, 255, 0.60);

    }

    50% {

        transform: scale(1.08);

        box-shadow:
            0 0 0 12px rgba(255, 255, 255, 0);

    }

    100% {

        transform: scale(1);

        box-shadow:
            0 0 0 0 rgba(255, 255, 255, 0);

    }

}


/* =====================================================
   SCROLL DOWN
===================================================== */

.scroll-down {

    position: absolute;

    z-index: 6;

    left: 50%;

    bottom: 17px;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 7px;

    color: var(--white-55);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    white-space: nowrap;

}


.scroll-down i {

    font-size: 10px;

    animation: scrollArrow 1.3s infinite;

}


@keyframes scrollArrow {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(5px);

    }

    100% {

        transform: translateY(0);

    }

}


/* =====================================================
   INTRO
===================================================== */

.intro-section {

    width: 100%;

    padding: 65px 18px 30px;

    text-align: center;

}


.section-heading {

    width: 100%;

    max-width: 600px;

    margin: 0 auto;

}


.small-label {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-bottom: 15px;

    color: var(--white-55);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

}


.small-label span {

    width: 22px;

    height: 1px;

    flex-shrink: 0;

    background: rgba(255, 255, 255, 0.30);

}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading h2 {

    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: clamp(32px, 9vw, 42px);

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1.5px;

}


.section-heading h2 strong {

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255, 255, 255, 0.80);

}


.section-heading p {

    max-width: 500px;

    margin: 13px auto 0;

    color: var(--white-55);

    font-size: 13px;

    line-height: 1.7;

}


/* =====================================================
   APPLICATION SECTION
===================================================== */

.apps-section {

    width: 100%;

    padding: 15px 14px 65px;

}


.apps-container {

    width: 100%;

    max-width: 600px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr;

    gap: 20px;

}


/* =====================================================
   APPLICATION CARD
===================================================== */

.app-card {

    position: relative;

    width: 100%;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: var(--radius-card);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.28);

}


/* =====================================================
   APP IMAGE
===================================================== */

.app-image-wrapper {

    position: relative;

    width: 100%;

    aspect-ratio: 1 / 1.08;

    overflow: hidden;

    background: #101522;

}


.app-image-link {

    position: absolute;

    inset: 0;

    z-index: 1;

    display: block;

    width: 100%;

    height: 100%;

}


.app-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center center;

    transition:
        transform 0.7s cubic-bezier(.2, .8, .2, 1);

}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.image-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:

        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 20%,
            rgba(0, 0, 0, 0.12) 50%,
            rgba(0, 0, 0, 0.70) 100%
        );

}


/* =====================================================
   IMAGE PLAY BUTTON
===================================================== */

.image-play-button {

    position: absolute;

    top: 50%;

    left: 50%;

    z-index: 5;

    width: 72px;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    transform: translate(-50%, -50%);

}


.play-icon {

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.94);

    color: #080c15;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.35);

    animation: imagePlayBlink 1.2s infinite;

}


.play-icon i {

    margin-left: 3px;

    font-size: 17px;

}


@keyframes imagePlayBlink {

    0% {

        opacity: 1;

        transform: scale(1);

        box-shadow:
            0 0 0 0 rgba(255, 255, 255, 0.65),
            0 10px 35px rgba(0, 0, 0, 0.35);

    }

    50% {

        opacity: 0.70;

        transform: scale(1.10);

        box-shadow:
            0 0 0 14px rgba(255, 255, 255, 0),
            0 10px 35px rgba(0, 0, 0, 0.35);

    }

    100% {

        opacity: 1;

        transform: scale(1);

        box-shadow:
            0 0 0 0 rgba(255, 255, 255, 0),
            0 10px 35px rgba(0, 0, 0, 0.35);

    }

}


/* =====================================================
   APP INFORMATION
===================================================== */

.app-info {

    position: relative;

    z-index: 6;

    width: 100%;

    padding: 19px;

}


.app-number {

    display: inline-block;

    margin-bottom: 7px;

    color: var(--white-45);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.7px;

}


.app-info h3 {

    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 19px;

    line-height: 1.3;

    font-weight: 700;

}


.app-info p {

    margin-top: 8px;

    color: var(--white-55);

    font-size: 12px;

    line-height: 1.65;

}


/* =====================================================
   DOWNLOAD BUTTON
===================================================== */

.download-button {

    position: relative;

    width: 100%;

    min-height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-top: 17px;

    padding: 12px 48px 12px 18px;

    overflow: hidden;

    border-radius: 11px;

    background: #ffffff;

    color: #080b12;

    font-size: 12px;

    font-weight: 800;

    text-align: center;

}


.download-button i:first-child {

    font-size: 13px;

}


.arrow-icon {

    position: absolute;

    right: 15px;

    font-size: 12px;

}


.download-button::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 80%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.75),
            transparent
        );

    transform: skewX(-20deg);

    transition: left 0.7s ease;

}


/* =====================================================
   CTA
===================================================== */

.download-cta {

    width: 100%;

    padding: 65px 20px;

    text-align: center;

    background:

        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.075),
            transparent 58%
        );

}


.cta-content {

    width: 100%;

    max-width: 600px;

    margin: 0 auto;

}


.cta-icon {

    width: 62px;

    height: 62px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 17px;

    background: rgba(255, 255, 255, 0.07);

    font-size: 22px;

}


.cta-content h2 {

    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: clamp(28px, 8vw, 38px);

    line-height: 1.15;

    letter-spacing: -1px;

}


.cta-content p {

    margin-top: 12px;

    color: var(--white-55);

    font-size: 13px;

    line-height: 1.7;

}


.cta-button {

    width: 100%;

    min-height: 55px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-top: 23px;

    padding: 14px 20px;

    border-radius: 11px;

    background: #ffffff;

    color: #080b12;

    font-size: 13px;

    font-weight: 800;

}


.cta-button i {

    font-size: 13px;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    width: 100%;

    padding: 40px 18px 27px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);

    text-align: center;

}


.footer-inner {

    width: 100%;

    max-width: 600px;

    margin: 0 auto;

}


.footer-logo {

    font-family: "Poppins", sans-serif;

    font-size: 21px;

    font-weight: 800;

    letter-spacing: 1.7px;

}


.footer-logo span {

    color: var(--white-45);

}


.footer p {

    margin-top: 8px;

    color: var(--white-45);

    font-size: 11px;

    line-height: 1.5;

}


.footer-line {

    width: 100%;

    height: 1px;

    margin: 22px 0;

    background: rgba(255, 255, 255, 0.07);

}


.footer small {

    color: rgba(255, 255, 255, 0.28);

    font-size: 9px;

}


/* =====================================================
   SMALL MOBILE - 480PX
===================================================== */

@media (max-width: 480px) {


    .hero-image-wrapper {

        height: 100svh;

        min-height: 570px;

        max-height: 800px;

    }


    .hero-content {

        left: 16px;

        right: 16px;

        bottom: 82px;

    }


    .hero-content h1 {

        font-size: 35px;

        letter-spacing: -1.5px;

    }


    .hero-content p {

        font-size: 12.5px;

        line-height: 1.62;

    }


    .hero-play-button {

        min-height: 56px;

        margin-top: 20px;

    }


    .play-circle {

        width: 44px;

        height: 44px;

    }


    .play-text {

        font-size: 11px;

    }


    .intro-section {

        padding-top: 60px;

    }


    .apps-section {

        padding-left: 12px;

        padding-right: 12px;

    }


    .apps-container {

        gap: 18px;

    }


    .app-card {

        border-radius: 17px;

    }


    .app-info {

        padding: 18px;

    }


    .app-info h3 {

        font-size: 18px;

    }


    .app-info p {

        font-size: 12px;

    }


    .image-play-button {

        width: 68px;

        height: 68px;

    }


    .play-icon {

        width: 59px;

        height: 59px;

    }


    .download-button {

        min-height: 53px;

        font-size: 12px;

    }

}


/* =====================================================
   EXTRA SMALL MOBILE - 380PX
===================================================== */

@media (max-width: 380px) {


    .hero-image-wrapper {

        min-height: 550px;

    }


    .hero-content {

        left: 14px;

        right: 14px;

        bottom: 74px;

    }


    .hero-badge {

        padding: 7px 11px;

        font-size: 8px;

        letter-spacing: 1px;

    }


    .hero-content h1 {

        font-size: 31px;

        letter-spacing: -1.2px;

    }


    .hero-content p {

        font-size: 11.5px;

    }


    .hero-play-button {

        min-height: 52px;

        margin-top: 18px;

        padding-right: 15px;

    }


    .play-circle {

        width: 40px;

        height: 40px;

    }


    .play-circle i {

        font-size: 12px;

    }


    .play-text {

        font-size: 10px;

    }


    .intro-section {

        padding-left: 14px;

        padding-right: 14px;

    }


    .section-heading h2 {

        font-size: 30px;

    }


    .section-heading p {

        font-size: 12px;

    }


    .apps-section {

        padding-left: 10px;

        padding-right: 10px;

    }


    .apps-container {

        gap: 16px;

    }


    .app-card {

        border-radius: 15px;

    }


    .app-info {

        padding: 16px;

    }


    .app-number {

        font-size: 8px;

    }


    .app-info h3 {

        font-size: 17px;

    }


    .app-info p {

        font-size: 11px;

    }


    .download-button {

        min-height: 49px;

        font-size: 11px;

    }


    .arrow-icon {

        right: 13px;

    }


    .download-cta {

        padding-left: 16px;

        padding-right: 16px;

    }


    .cta-content h2 {

        font-size: 28px;

    }


    .footer {

        padding-left: 14px;

        padding-right: 14px;

    }

}


/* =====================================================
   LANDSCAPE MOBILE
===================================================== */

@media (max-width: 900px) and (orientation: landscape) {


    .hero-image-wrapper {

        height: 100svh;

        min-height: 470px;

        max-height: none;

    }


    .hero-content {

        left: 25px;

        right: auto;

        bottom: 45px;

        width: min(520px, 72%);

    }


    .hero-content h1 {

        font-size: 36px;

    }


    .hero-content p {

        max-width: 480px;

        margin-top: 8px;

        font-size: 11px;

    }


    .hero-play-button {

        min-height: 50px;

        margin-top: 12px;

    }


    .play-circle {

        width: 40px;

        height: 40px;

    }


    .scroll-down {

        display: none;

    }

}


/* =====================================================
   TOUCH DEVICES
===================================================== */

@media (hover: none) and (pointer: coarse) {


    .app-card:hover {

        transform: none;

    }


    .app-card:hover .app-image {

        transform: none;

    }


    .hero-image-link:hover .hero-image {

        transform: none;

    }


    .download-button:hover {

        transform: none;

        box-shadow: none;

    }


    .cta-button:hover {

        transform: none;

        box-shadow: none;

    }


    .hero-play-button:hover {

        transform: none;

    }


    .image-play-button:hover {

        transform: translate(-50%, -50%);

    }

}


/* =====================================================
   DESKTOP / LARGE SCREEN
   STILL MOBILE-FIRST BUT CENTERED
===================================================== */

@media (min-width: 651px) {


    .hero-image-wrapper {

        height: 100svh;

        min-height: 650px;

        max-height: 900px;

    }


    .hero-content {

        left: 7%;

        bottom: 12%;

        width: min(650px, 80%);

    }


    .hero-content h1 {

        font-size: clamp(45px, 5vw, 72px);

        letter-spacing: -2.5px;

    }


    .hero-content p {

        max-width: 570px;

        font-size: 15px;

    }


    .intro-section {

        padding-top: 90px;

    }


    .apps-section {

        padding-left: 5%;

        padding-right: 5%;

    }


    .apps-container {

        max-width: 1200px;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 24px;

    }


    .app-image-wrapper {

        aspect-ratio: 1 / 1.08;

    }

}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1100px) {


    .apps-container {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        max-width: 1400px;

        gap: 28px;

    }


    .app-card {

        transition:
            transform 0.35s ease,
            border-color 0.3s ease,
            box-shadow 0.3s ease;

    }


    .app-card:hover {

        transform: translateY(-8px);

        border-color:
            rgba(255, 255, 255, 0.20);

        box-shadow:
            0 30px 70px rgba(0, 0, 0, 0.40);

    }


    .app-card:hover .app-image {

        transform: scale(1.05);

    }


    .download-button:hover {

        transform: translateY(-2px);

        box-shadow:
            0 14px 35px rgba(255, 255, 255, 0.10);

    }


    .download-button:hover::before {

        left: 130%;

    }


    .cta-button:hover {

        transform: translateY(-3px);

        box-shadow:
            0 15px 35px rgba(255, 255, 255, 0.10);

    }


    .hero-image-link:hover .hero-image {

        transform: scale(1.02);

    }


    .hero-play-button:hover {

        transform: translateY(-3px);

        background:
            rgba(255, 255, 255, 0.16);

    }

}


/* =====================================================
   SAFE AREA
===================================================== */

@supports (padding: env(safe-area-inset-bottom)) {


    .footer {

        padding-bottom:
            calc(
                27px +
                env(safe-area-inset-bottom)
            );

    }


    .hero-content {

        padding-bottom:
            env(safe-area-inset-bottom);

    }

}


/* =====================================================
   ACCESSIBILITY
===================================================== */

.hero-play-button:focus-visible,
.download-button:focus-visible,
.cta-button:focus-visible,
.image-play-button:focus-visible,
.hero-image-link:focus-visible,
.app-image-link:focus-visible {

    outline: 2px solid #ffffff;

    outline-offset: 3px;

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {


    html {

        scroll-behavior: auto;

    }


    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;

    }

}