/* ===== Disclaimer Banner ===== */
.disclaimer-banner {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding: 10px 0;
    text-align: center;
}

.disclaimer-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.disclaimer-banner svg {
    width: 16px;
    height: 16px;
    color: #f59e0b;
    flex-shrink: 0;
}

.disclaimer-banner span {
    font-size: 11px;
    color: #d4a853;
}

.disclaimer-banner strong {
    color: #fbbf24;
    font-weight: 700;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #0a0e1a;
    color: #c8ccd4;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    display: block;
    max-width: 100%;
}

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

ul {
    list-style: none;
}

/* ===== Gradient Text Utility ===== */
.gradient-text {
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s, background-color 0.3s;
    border: none;
}

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

.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(124, 58, 237, 0.5);
}

.btn-outline {
    background: transparent;
    color: #c8ccd4;
    border: 2px solid rgba(200, 204, 212, 0.25);
}

.btn-outline:hover {
    border-color: #7c3aed;
    color: #fff;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 30px;
    font-size: 1.1rem;
}

/* ===== Navbar ===== */
.navbar {
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    color: #8b90a0;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 122px;
}

.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #8b90a0;
    max-width: 480px;
    margin-bottom: 36px;
}

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

/* Phone Mockup */
.phone-mockup {
    position: relative;
    border-radius: 15px;
    aspect-ratio: 9 / 19.5;
    max-width: 320px;
    margin: 0 auto;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

/* ===== Section Titles ===== */
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #8b90a0;
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 60px;
}

/* ===== Features Section ===== */
.features {
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(30, 35, 55, 0.6), rgba(20, 24, 40, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 36px 28px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.25);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.1));
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: #a78bfa;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #8b90a0;
    line-height: 1.65;
}

/* ===== Showcase Section ===== */
.showcase {
    padding: 120px 0;
}

.showcase-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.showcase-block:last-child {
    margin-bottom: 0;
}

/* Alternate image side */
.showcase-block:nth-child(even) .showcase-text {
    order: 2;
}

.showcase-block:nth-child(even) .showcase-image {
    order: 1;
}

.showcase-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #22d3ee;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 20px;
}

.showcase-text h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.showcase-text > p {
    color: #8b90a0;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 460px;
}

.showcase-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showcase-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.showcase-list li svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #a78bfa;
}

.showcase-list li strong {
    display: block;
    color: #e2e4ea;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.showcase-list li span {
    display: block;
    color: #7a7f93;
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Phone mockup in showcase */
.showcase-image {
    display: flex;
    justify-content: center;
}

.showcase-image img {
    width: 260px;
    border-radius: 15px;
    aspect-ratio: 9 / 19.5;
}/* ===== Gallery Section ===== */
.gallery {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.03), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    cursor: pointer;
}

.gallery-item.large {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 16px;
    background: linear-gradient(to top, rgba(10, 14, 26, 0.9), transparent);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== Stats Section ===== */
.stats {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    color: #8b90a0;
    font-size: 1rem;
    margin-top: 4px;
}

/* ===== Download Section ===== */
.download {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.download-inner {
    display: flex;
    justify-content: center;
    text-align: center;
}

.download-content {
    max-width: 640px;
}

.download-content h2 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.download-content > p {
    color: #8b90a0;
    font-size: 1.15rem;
    margin-bottom: 44px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-playstore img {
    height: 150px;
    transition: transform 0.2s, filter 0.2s;
}

.btn-playstore:hover img {
    transform: scale(1.04);
    filter: brightness(1.1);
}

.download-note {
    color: #5a5f73 !important;
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
}

.phone-mockup-lg {
    max-width: 280px;
}

/* ===== Footer ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #fff;
}

.footer-text {
    color: #5a5f73;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #8b90a0;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

/* ===== Fade-in Animation ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle,
    .download-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .download-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large,
    .showcase-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-block:nth-child(even) .showcase-text,
    .showcase-block:nth-child(even) .showcase-image {
        order: unset;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-image img {
        width: 270px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .phone-mockup {
        max-width: 240px;
    }
}


@media (min-width: 1024px) {
  .screen3d {
    display: inline-block;
    position: relative;

    transform:
        perspective(1600px)
        rotateX(9deg)
        rotateY(-12deg);

    border-radius: 30px;

    display: block;
    width: 320px;
    border-radius: inherit;

    box-shadow:
        0 20px 50px rgba(0,0,0,.22),
        0 50px 120px rgba(0,0,0,.16);
  }

    .screen3d::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        pointer-events: none;

        background:
            linear-gradient(
                135deg,
                rgba(255,255,255,.35) 0%,
                rgba(255,255,255,.08) 18%,
                transparent 45%
            );

        mix-blend-mode: screen;
    }
    .showcase-block:nth-child(even) .screen3d {
        transform:
            perspective(1600px)
            rotateX(9deg)
            rotateY(12deg);
    }
}

.screen3d {
    scale: 1.0;
    animation: float ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 110%;  
    filter:
        drop-shadow(20px 20px 35px rgba(0, 0, 0, 0.45))
        drop-shadow(20px 0 35px rgba(90, 60, 255, 0.35))
        drop-shadow(20px 0 80px rgba(0, 180, 255, 0.18));
}
    .showcase-block:nth-child(even) .screen3d {
    filter:
        drop-shadow(-20px 20px 35px rgba(0, 0, 0, 0.45))
        drop-shadow(-20px 0 35px rgba(90, 60, 255, 0.35))
        drop-shadow(-20px 0 80px rgba(0, 180, 255, 0.18));

    }
@keyframes float {
  from {
    scale: .8;
    opacity: 0.2;
  }

  50% {
    scale: 1.1;
    opacity: 1.0;
  }

  to {
    scale: 1.0;
    opacity: 0.8;
  }
}