:root {
    --bg-dark: #0a0a0f;
    --bg-deep: #080b14;
    --card-bg: #14141d;
    --text-main: #f0f0f5;
    --text-muted: #9aa0a6;
    --accent-glow: #6366f1;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --gradient-hover: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.6;
}

/* Animated background orbs */
.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    animation: orbFloat 12s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: #a855f7; top: -200px; left: -200px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: #ec4899; top: 40%; right: -150px; animation-delay: -4s; }
.orb-3 { width: 350px; height: 350px; background: #6366f1; bottom: -100px; left: 30%; animation-delay: -8s; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Typography */
h1, h2, h3 { font-weight: 800; }
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.5px; }
.navbar nav a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 400;
    transition: color 0.2s;
}
.navbar nav a:hover { color: var(--accent-glow); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
    font-size: 1rem;
}
.primary-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    background: var(--gradient-hover);
}
.secondary-btn {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.2);
}
.secondary-btn:hover { background: rgba(255,255,255,0.05); }
.full-width { width: 100%; }

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 5%;
    gap: 4rem;
    min-height: 80vh;
}
.hero-content { flex: 1; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 500px; }
.hero-examples { flex: 1; display: flex; justify-content: center; }
.example-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    max-width: 400px;
    position: relative;
    overflow: hidden;
}
.example-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-primary);
}
.theme-tag { font-size: 0.8rem; color: var(--accent-glow); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; font-weight: 600;}
.story-snippet { font-style: italic; color: var(--text-muted); margin-bottom: 1.5rem; }
.audio-mockup {
    display: flex; align-items: center; gap: 1rem;
    background: rgba(0,0,0,0.3); padding: 1rem; border-radius: 8px;
}
.play-icon { color: var(--accent-glow); font-size: 1.2rem; }
.waveform { flex: 1; height: 20px; background: repeating-linear-gradient(90deg, rgba(255,255,255,0.2) 0px, rgba(255,255,255,0.2) 2px, transparent 2px, transparent 4px); }

/* How it Works */
.how-it-works { padding: 5rem 5%; background: rgba(255,255,255,0.02); text-align: center; }
.how-it-works h2 { font-size: 2.5rem; margin-bottom: 3rem; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.step { background: var(--card-bg); padding: 2rem; border-radius: 12px; }
.step-num { 
    width: 40px; height: 40px; background: rgba(99, 102, 241, 0.1); color: var(--accent-glow);
    display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 800; font-size: 1.2rem; margin: 0 auto 1rem auto;
}
.step h3 { margin-bottom: 1rem; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* Pricing */
.pricing-section { padding: 6rem 5%; text-align: center; }
.pricing-section h2 { font-size: 2.5rem; }
.subtitle { color: var(--text-muted); margin-bottom: 3rem; }
.pricing-grid { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.pricing-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    flex: 1;
    max-width: 400px;
    text-align: left;
    position: relative;
}
.pricing-card.featured {
    border: 1px solid rgba(99, 102, 241, 0.5);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}
.badge {
    position: absolute; top: -12px; right: 2rem;
    background: var(--gradient-primary); color: white;
    padding: 0.2rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 800;
}
.price { font-size: 3rem; font-weight: 800; margin: 1rem 0; }
.features { list-style: none; margin: 2rem 0; }
.features li { margin-bottom: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem;}
.features li::before { content: '✓'; color: var(--accent-glow); font-weight: bold;}

/* Modal */
.modal {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); z-index: 1000;
    align-items: center; justify-content: center;
}
.modal-content {
    background: var(--card-bg); padding: 3rem; border-radius: 16px; width: 90%; max-width: 500px;
    position: relative; border: 1px solid rgba(255,255,255,0.1);
}
.close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); }
.close:hover { color: white; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--text-muted); font-size: 0.9rem;}
.form-group input, .form-group textarea {
    width: 100%; padding: 0.8rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2); color: white; font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent-glow);
}

.checkout-pulse-btn {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-glow));
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: checkoutPulse 2s infinite;
}
.checkout-pulse-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}
@keyframes checkoutPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.pricing-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.5), 0 0 20px rgba(16,185,129,0.15);
}
.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
}
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding-top: 3rem;}
    .pricing-card.featured { transform: scale(1); }
    .sticky-mobile-cta { display: block; }
    body { padding-bottom: 80px; }
}
