/* ====== LIVEDROP PREMIUM THEME ====== */
:root {
    --bg: #000000;
    --bg-glass: rgba(20, 20, 20, 0.6);
    --bg-card: #0a0a0a;

    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --text-dim: #52525b;

    --brand: #8b5cf6;
    --brand-glow: rgba(139, 92, 246, 0.5);
    --accent: #06b6d4;
    /* Cyan */

    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

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

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

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

.gradient-text {
    background: linear-gradient(135deg, #fff 30%, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    backdrop-filter: blur(8px);
}

.badge-glow {
    border-color: rgba(139, 92, 246, 0.3);
    color: #c4b5fd;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

/* ====== NAVIGATION ====== */
.nav-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
}

.nav {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 8px 8px 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-logo {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: #fff;
}

.nav-cta {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* ====== HERO ====== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
    /* nav offset */
    overflow: hidden;
}

/* Background Aura */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
}

.hero h1 {
    font-size: 80px;
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 700;
    margin: 24px 0;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    padding: 14px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.btn-primary:hover {
    background: #e2e2e2;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Visual */
.hero-visual {
    margin-top: 60px;
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: #050505;
    border-radius: 20px 20px 0 0;
    border: 1px solid var(--border);
    border-bottom: none;
    box-shadow: 0 -20px 80px rgba(0, 0, 0, 0.5), 0 -1px 0 rgba(255, 255, 255, 0.1) inset;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

/* ====== BENTO GRID (FEATURES) ====== */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 18px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(300px, auto));
    gap: 20px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease-out);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bento-card.large {
    grid-column: span 2;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.1), transparent), var(--bg-card);
}

.bento-card.tall {
    grid-row: span 2;
}

.card-icon {
    font-size: 32px;
    margin-bottom: 24px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: grid;
    place-items: center;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.card-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Specific Card Styles */
.card-visual {
    margin-top: 24px;
    height: 150px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

/* Simulation of an alert */
.alert-mock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    padding: 16px 24px;
    border-radius: 16px;
    border-left: 4px solid var(--brand);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    width: 90%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-content {
    display: flex;
    flex-direction: column;
}

.alert-title {
    font-size: 16px;
    color: #fff;
}

.alert-subtitle {
    font-size: 13px;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.alert-products {
    display: flex;
    align-items: center;
}

.alert-products img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: 2px solid #202020;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

/* ====== STEPS (How it works) ====== */
.steps-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
}

.step-item {
    flex: 1;
    position: relative;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.step-number {
    position: absolute;
    top: -10px;
    left: 0;
    background: var(--bg);
    padding-right: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand);
}

.step-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.step-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* ====== PRICING ====== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s;
}

.price-card.featured {
    border-color: var(--brand);
    background: radial-gradient(circle at top, rgba(139, 92, 246, 0.1), transparent), var(--bg-card);
    position: relative;
}

.featured-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--brand);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    margin: 24px 0;
    letter-spacing: -1px;
}

.price-features {
    text-align: left;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 15px;
}

.price-feature.active {
    color: #fff;
}

.check-icon {
    color: var(--brand);
}

/* ====== FOOTER ====== */
footer {
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.link-group h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.link-group a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 13px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ====== ANIMATIONS ====== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* DELAYS */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card.large {
        grid-column: span 2;
    }

    .hero h1 {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        top: 0;
    }

    .nav {
        width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--border);
        justify-content: space-between;
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
        /* simple mobile hide for now */
    }

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

    .bento-card.large,
    .bento-card.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

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

    .hero h1 {
        font-size: 42px;
    }

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

    .steps-container {
        flex-direction: column;
        gap: 20px;
    }

    .step-item {
        border-top: none;
        border-left: 1px solid var(--border);
        padding-left: 24px;
        padding-top: 0;
    }

    .step-number {
        left: -10px;
        top: 0;
        padding: 4px;
    }
}