/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --card: rgba(18, 18, 18, 0.75);
    --border: rgba(255,255,255,0.08);
    --text: #f5f5f5;
    --muted: #9ca3af;
    --primary: #00bfff;
    --primary-dark: #008cff;
    --shadow: 0 10px 40px rgba(0,0,0,0.45);
    --blur: blur(14px);
}

body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(0,191,255,0.12), transparent 25%),
        radial-gradient(circle at bottom right, rgba(0,191,255,0.08), transparent 20%),
        var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--primary-dark));
    border-radius: 20px;
}

/* ===== LINKS ===== */
a {
    text-decoration: none;
    color: inherit;
}

/* ===== FLOATING BACKGROUND ===== */
body::before {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    background: rgba(0,191,255,0.08);
    filter: blur(140px);
    top: -200px;
    left: -150px;
    z-index: -1;
    animation: floatBlob 12s ease-in-out infinite alternate;
}

@keyframes floatBlob {
    from {
        transform: translateY(0px) translateX(0px);
    }
    to {
        transform: translateY(80px) translateX(120px);
    }
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: var(--blur);
    background: rgba(10,10,10,0.65);
    border-bottom: 1px solid var(--border);
    padding: 18px 8%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.logo img {
    width: 150px;
    height: auto;
    transition: 0.4s ease;
}

.logo img:hover {
    transform: rotate(-3deg) scale(1.04);
}

ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

ul li a {
    color: var(--muted);
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s ease;
}

ul li a:hover {
    color: white;
}

ul li a:hover::after {
    width: 100%;
}

/* =========================
   HERO SECTION
========================= */

/* ===== HERO LOGO ===== */

.hero-logo {
    width: 180px;
    display: block;

    margin: 0 auto 10px auto;

    filter: drop-shadow(0 0 25px rgba(58,181,255,0.45));

    animation: floatLogo 4s ease-in-out infinite;
}

/* ===== HERO BADGE ===== */

.hero-badge {
    display: block;

    width: 100%;

    text-align: center;

    font-size: 20px;
    font-weight: 500;

    color: #d4d4d8;

    margin-bottom: 28px;
}

/* ===== HERO BUTTONS ===== */

.hero-buttons {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 16px;

    margin-top: 50px;
}

/* ===== LEARN MORE ===== */

.secondary-button {
    display: block;

    margin-top: 2px;

    font-size: 20px;

    text-align: center;

    color: #ffffff;

    opacity: 0.88;

    transition: 0.25s ease;
}

.secondary-button:hover {
    opacity: 1;

    transform: translateY(-2px);

    color: #5bc7ff;
}

/* ===== TITLE ===== */

.hero h1 {
    font-size: clamp(4rem, 9vw, 8rem);

    line-height: 0.95;

    font-weight: 900;

    letter-spacing: -4px;

    margin-bottom: 34px;
    
    text-align: center;

    background: linear-gradient(
        180deg,
        #ffffff,
        #bde9ff
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== DESCRIPTION ===== */

.hero p {
    font-size: 1.35rem;

    line-height: 1.7;

    color: #9ca3af;

    max-width: 950px;

    margin: 0 auto;
}

/* ===== BUTTONS ===== */

.hero-buttons {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 18px;

    margin-top: 50px;
}

/* ===== MAIN BUTTON ===== */

.cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 22px 52px;

    border-radius: 999px;

    font-size: 20px;
    font-weight: 700;

    color: white;

    background: linear-gradient(
        135deg,
        #18b7ff,
        #008cff
    );

    box-shadow:
        0 10px 30px rgba(0,140,255,0.35),
        0 0 40px rgba(24,183,255,0.15);

    transition: all 0.35s ease;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.03);

    box-shadow:
        0 18px 45px rgba(0,140,255,0.45),
        0 0 60px rgba(24,183,255,0.25);
}

/* ===== SECOND BUTTON ===== */

.secondary-button {
    font-size: 20px;

    color: #ffffff;

    opacity: 0.88;

    transition: 0.25s ease;
}

.secondary-button:hover {
    opacity: 1;

    transform: translateY(-2px);

    color: #5bc7ff;
}

/* ===== FLOAT ANIMATION ===== */

@keyframes floatLogo {

    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 4.5rem;
        line-height: 1;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-logo {
        width: 140px;
    }

    .hero-badge {
        font-size: 16px;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
    }

}

/* ===== SECTION BASE ===== */
section {
    padding: 110px 8%;
}

section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 18px;
    font-weight: 800;
}

.section-sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 60px;
}

/* ===== SCREENSHOTS ===== */
.screenshots {
    position: relative;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.screenshot {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--card);
    backdrop-filter: var(--blur);
    box-shadow: var(--shadow);
    transition: 0.45s ease;
    overflow: hidden;
}

.screenshot:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0,191,255,0.35);
}

#ss2 {
    width: 100%;
    height: auto;
}

/* ===== FEATURES ===== */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 35px;
    backdrop-filter: var(--blur);
    transition: 0.4s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(0,191,255,0.08),
        transparent 40%
    );
    opacity: 0;
    transition: 0.4s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,191,255,0.25);
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.card p {
    color: var(--muted);
}

/* ===== CTA ===== */
.cta {
    text-align: center;
}

.cta-box {
    background: linear-gradient(
        135deg,
        rgba(0,191,255,0.14),
        rgba(255,255,255,0.03)
    );
    border: 1px solid var(--border);
    padding: 70px 40px;
    border-radius: 32px;
    backdrop-filter: var(--blur);
    box-shadow: var(--shadow);
}

.cta h2 {
    margin-bottom: 20px;
}

.cta p {
    color: var(--muted);
    margin-bottom: 35px;
}

/* ===== FOOTER ===== */
footer {
    padding: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    backdrop-filter: var(--blur);
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 520px);
    background: rgba(15,15,15,0.92);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: slideUp 0.8s ease;
}

.cookie-popup h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.cookie-popup p {
    color: #a1a1aa;
    font-size: 14px;
    margin-bottom: 18px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    flex: 1;
    padding: 13px;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.accept-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.accept-btn:hover {
    transform: scale(1.03);
}

.decline-btn {
    background: rgba(255,255,255,0.05);
    color: white;
}

.decline-btn:hover {
    background: rgba(255,255,255,0.08);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 40px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes float {
    0%,100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    nav {
        flex-direction: column;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    ul {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    section {
        padding: 90px 6%;
    }

    .hero {
        padding-top: 150px;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}