/* ===================================================
   AnySwipe — Final Static Design System
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Cinematic Dark Theme */
    --bg: #08080c;
    --bg-darker: #040406;
    --bg-card: #11111a;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);

    /* Brand Accent: Deep Violet */
    --accent: #3B1E5E;
    --accent-glow: rgba(59, 30, 94, 0.4);

    /* Action Colors */
    --color-completed: #81C784;
    /* Soft Positive Green */
    --color-watching: #64B5F6;
    /* Vibrant Active Blue */
    --color-plan: #FFB74D;
    /* Warm Anticipating Orange */
    --color-skip: #E57373;
    /* Clear Red */

    /* Text */
    --text: #f1f1f7;
    --text-muted: #8a8a9e;
    --white: #ffffff;

    /* Layout */
    --radius: 16px;
    --font-head: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Global Reset ---------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Grainy noise overlay for cinematic feel */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

img {
    display: block;
    max-width: 100%;
    border-radius: var(--radius);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

li {
    list-style: none;
}

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

/* ===================================================
   TYPOGRAPHY
   =================================================== */
h1,
h2,
h3 {
    font-family: var(--font-head);
    letter-spacing: 2px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--white) 30%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===================================================
   COMPONENTS
   =================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
}

.btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
}

.badge {
    display: inline-block;
    background: rgba(59, 30, 94, 0.2);
    color: #d1b8ff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(59, 30, 94, 0.3);
}

.badge-outline {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
}

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    padding: 30px;
}

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(8, 8, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 15px 0;
}

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

.logo {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent);
}

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

.nav-links a:hover {
    color: var(--accent);
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.15;
    border-radius: 50%;
}

.hero-tag {
    display: inline-block;
    background: rgba(59, 30, 94, 0.2);
    color: #d1b8ff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ===================================================
   APP SHOWCASE (SIDE-BY-SIDE)
   =================================================== */
.showcase {
    padding: 100px 0;
}

.feature-section {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 150px;
}

.feature-section.reverse {
    flex-direction: row-reverse;
}

.feature-info {
    flex: 1;
}

.feature-info h2 {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    margin-bottom: 24px;
}

.feature-info p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: 500px;
}

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

.mockup-vertical {
    position: relative;
    width: 280px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #1a1a25;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    flex-shrink: 0;
}

.mockup-content {
    width: 100%;
    height: 100%;
}

.mockup-content img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

/* Updated Action Labels */
.action-labels {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.label {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
}

.label-completed {
    background: var(--color-completed);
}

.label-watching {
    background: var(--color-watching);
}

.label-plan {
    background: var(--color-plan);
    color: #222;
}

.label-skip {
    background: var(--color-skip);
}

/* Profile Stats Mockup */
.stats-list {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
}

.stat-num {
    font-size: 3.5rem;
    font-family: var(--font-head);
    display: block;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* ===================================================
   REVEAL ON SCROLL
   =================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-group h4 {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links-list a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-glass);
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* ===================================================
   PRIVACY PAGE SPECIFIC
   =================================================== */
.privacy-page {
    padding-top: 150px;
    padding-bottom: 100px;
}

.privacy-page h1 {
    font-size: 4rem;
    margin-bottom: 40px;
    text-align: center;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.8;
}

.privacy-content h2,
.privacy-content h3 {
    color: var(--white);
    margin: 40px 0 20px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.privacy-content p {
    margin-bottom: 20px;
}

.privacy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-content li {
    list-style: disc;
    margin-bottom: 10px;
}

/* ===================================================
   RESPONSIVE
   =================================================== */

/* Tablet & Smaller Laptops */
@media (max-width: 1024px) {
    .feature-section {
        gap: 40px;
    }

    .hero-title {
        font-size: 4rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    :root {
        --radius: 12px;
    }

    .container {
        padding: 0 20px;
    }

    /* Navigation */
    .nav {
        padding: 15px 0;
    }

    .nav-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-links {
        display: flex;
        gap: 20px;
        font-size: 0.9rem;
    }

    /* Hero Section */
    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
    }

    .hero-sub {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* Feature Sections */
    .feature-section,
    .feature-section.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-bottom: 100px;
    }

    .feature-info p {
        margin: 0 auto 32px;
    }

    .action-labels {
        justify-content: center;
    }

    /* Mockups */
    .mockup-vertical {
        width: 240px;
        height: 500px;
        border-width: 6px;
    }

    /* Typography */
    .feature-info h2 {
        font-size: 2.5rem;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        align-items: center;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-logo p {
        margin: 0 auto;
    }

    /* Privacy and Account Management */
    .privacy-page h1 {
        font-size: 2.5rem;
    }

    .delete-card {
        margin-top: 100px;
        padding: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .mockup-vertical {
        width: 200px;
        height: 420px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}