:root {
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.5);
    --secondary: #8b5cf6;
    --bg: #030712;
    --card-bg: rgba(17, 24, 39, 0.7);
    --text: #f9fafb;
    --text-muted: #9ca3af;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-stroke: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Premium Background */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 40%);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: var(--glass);
    border: 1px solid var(--glass-stroke);
    font-size: 0.875rem;
    color: #60a5fa;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

h1 span {
    background: linear-gradient(to bottom right, #fff, #9ca3af);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 5rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 20px var(--primary-glow);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    background: var(--glass);
    border: 1px solid var(--glass-stroke);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Image Showcase */
.showcase {
    position: relative;
    border-radius: 24px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
    margin-bottom: 8rem;
}

.showcase img {
    width: 100%;
    display: block;
    border-radius: 18px;
    border: 1px solid var(--glass-stroke);
}

.magic-feature {
    margin: -2rem 0 6rem;
}

.magic-card {
    background: linear-gradient(160deg, rgba(17, 24, 39, 0.78), rgba(30, 41, 59, 0.56));
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 28px;
    padding: 2.2rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.magic-card h2 {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin-bottom: 0.9rem;
}

.magic-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 760px;
}

/* Pricing Section */
.pricing {
    text-align: center;
    padding-bottom: 10rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    letter-spacing: -1px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-stroke);
    border-radius: 32px;
    padding: 3rem 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.free {
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.pro {
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(160deg, rgba(17, 24, 39, 0.85) 0%, rgba(30, 58, 138, 0.25) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(59, 130, 246, 0.15);
}

.pricing-card.pro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.glow-badge {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1rem 0 0.5rem;
    line-height: 1;
}

.price span {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.price-strikethrough {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.pricing-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    min-height: 3rem;
}

.features {
    list-style: none;
    margin: 0 0 2.5rem 0;
    text-align: left;
    flex-grow: 1;
}

.features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.4;
}

.features li.disabled {
    color: var(--text-muted);
    opacity: 0.7;
}

.features li svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.features li.disabled svg {
    color: #ef4444;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero>* {
    animation: fadeInUp 0.8s ease forwards;
}

.pricing-card {
    animation: fadeInUp 1s ease 0.2s forwards;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    .cta-group {
        flex-direction: column;
    }
}