:root {
    --violet-primary: #7C3AED;
    --violet-dark: #5B21B6;
    --violet-light: #A78BFA;
    --violet-pale: #EDE9FE;
    --mint-primary: #6EE7B7;
    --mint-dark: #34D399;
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --text-muted: #6B7280;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-gradient-start: #EDE9FE;
    --bg-gradient-end: #FFFFFF;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    min-height: 100vh;
}

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

/* Header */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-blob {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--violet-primary) 0%, var(--mint-primary) 100%);
    border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
    animation: blob-bounce 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blob-face {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.blob-eyes {
    display: flex;
    gap: 6px;
}

.blob-eye {
    width: 8px;
    height: 10px;
    background: white;
    border-radius: 50%;
    position: relative;
}

.blob-eye::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 5px;
    background: var(--text-primary);
    border-radius: 50%;
    top: 2px;
    left: 2px;
}

.blob-smile {
    width: 16px;
    height: 6px;
    border: 2px solid white;
    border-top: none;
    border-radius: 0 0 16px 16px;
    margin-top: -2px;
}

@keyframes blob-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--violet-primary) 0%, var(--violet-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.cta-button {
    background: linear-gradient(135deg, var(--violet-primary) 0%, var(--violet-dark) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.hero-blob {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, var(--violet-primary) 0%, var(--mint-primary) 100%);
    border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
    animation: hero-blob-morph 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-blob .blob-face {
    transform: scale(2.5);
}

.hero-blob .blob-eye {
    width: 10px;
    height: 12px;
}

.hero-blob .blob-eye::after {
    width: 5px;
    height: 6px;
    top: 3px;
    left: 2.5px;
}

.hero-blob .blob-smile {
    width: 20px;
    height: 8px;
    border-radius: 0 0 20px 20px;
}

@keyframes hero-blob-morph {
    0%, 100% { 
        border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg) scale(1);
    }
    25% { 
        border-radius: 50% 60% 40% 70% / 60% 40% 50% 40%;
        transform: rotate(90deg) scale(1.02);
    }
    50% { 
        border-radius: 40% 50% 60% 50% / 50% 60% 40% 50%;
        transform: rotate(180deg) scale(1);
    }
    75% { 
        border-radius: 70% 30% 50% 60% / 40% 50% 70% 30%;
        transform: rotate(270deg) scale(1.02);
    }
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--violet-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-intro {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hook-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--violet-pale) 0%, rgba(110, 231, 183, 0.2) 100%);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--violet-dark);
    font-size: 16px;
}

/* Article Content */
.article-content {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 60px 48px;
    margin-bottom: 60px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 48px 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--violet-pale);
}

h2:first-of-type {
    margin-top: 0;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--violet-primary);
    margin: 36px 0 16px;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 17px;
}

ul {
    margin: 20px 0;
    padding-left: 24px;
}

li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 17px;
}

li::marker {
    color: var(--violet-primary);
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

em {
    color: var(--violet-primary);
    font-style: normal;
    font-weight: 500;
}

hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--violet-pale) 20%, var(--violet-pale) 80%, transparent 100%);
    margin: 48px 0;
}

/* Alternative Cards */
.alternative-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
    border: 1px solid rgba(124, 58, 237, 0.1);
    position: relative;
    overflow: hidden;
}

.alternative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--violet-primary) 0%, var(--mint-primary) 100%);
}

.alternative-card h3 {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.number-badge {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--violet-primary) 0%, var(--mint-primary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.vooloo-edge {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(110, 231, 183, 0.08) 100%);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 20px;
    border-left: 4px solid var(--violet-primary);
}

.vooloo-edge h4 {
    margin-top: 0;
    color: var(--violet-primary);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Secret Sauce Section */
.secret-sauce {
    background: linear-gradient(135deg, var(--violet-primary) 0%, var(--violet-dark) 100%);
    border-radius: 24px;
    padding: 48px;
    margin: 48px 0;
    color: white;
}

.secret-sauce h2 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
    margin-top: 0;
}

.secret-sauce h3 {
    color: var(--mint-primary);
}

.secret-sauce p,
.secret-sauce li {
    color: rgba(255, 255, 255, 0.9);
}

.secret-sauce strong {
    color: white;
}

.secret-sauce em {
    color: var(--mint-primary);
    font-style: italic;
}

.secret-sauce li::marker {
    color: var(--mint-primary);
}

.steps-list {
    list-style: none;
    padding: 0;
}

.steps-list li {
    padding-left: 48px;
    position: relative;
    margin-bottom: 20px;
}

.steps-list li::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--mint-primary);
    color: var(--violet-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.steps-list li::marker {
    content: none;
}

/* Table */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 32px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-table th {
    background: var(--violet-primary);
    color: white;
    padding: 16px;
    font-weight: 600;
    text-align: left;
    font-size: 14px;
}

.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid var(--bg-light);
    font-size: 15px;
    color: var(--text-secondary);
    background: var(--bg-white);
}

.comparison-table tr:nth-child(even) td {
    background: var(--bg-light);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.vooloo-column {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(110, 231, 183, 0.1) 100%);
}

/* Tables inside secret-sauce need special treatment for contrast */
.secret-sauce .comparison-table {
    background: white;
}

.secret-sauce .comparison-table th {
    background: var(--mint-primary);
    color: var(--violet-dark);
}

.secret-sauce .comparison-table td {
    color: var(--text-secondary);
    background: white;
    border-bottom: 1px solid var(--bg-light);
}

.secret-sauce .comparison-table tr:nth-child(even) td {
    background: var(--bg-light);
}

.secret-sauce .comparison-table td:first-child {
    color: var(--text-primary) !important;
    font-weight: 600;
}

.secret-sauce .comparison-table td:first-child strong {
    color: var(--text-primary) !important;
}

.secret-sauce .comparison-table td strong {
    color: var(--text-secondary);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--violet-primary) 0%, var(--violet-dark) 100%);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    color: white;
    margin: 48px 0;
}

.final-cta h2 {
    color: white;
    border: none;
    margin: 0 0 20px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto 32px;
}

.final-cta .cta-button {
    background: white;
    color: var(--violet-primary);
    font-size: 16px;
    padding: 16px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.final-cta .cta-button:hover {
    background: var(--mint-primary);
    color: var(--violet-dark);
}

/* Next Steps */
.next-steps {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 32px;
    margin-top: 48px;
    border: 2px dashed var(--violet-pale);
    text-align: center;
}

.next-steps p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 16px;
}

.next-steps strong {
    color: var(--violet-primary);
}

/* Footer */
.site-footer {
    background: var(--text-primary);
    color: white;
    padding: 48px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.footer-blob {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--violet-primary) 0%, var(--mint-primary) 100%);
    border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
    animation: blob-bounce 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-blob .blob-eye {
    width: 6px;
    height: 8px;
}

.footer-blob .blob-eye::after {
    width: 3px;
    height: 4px;
    top: 2px;
    left: 1.5px;
}

.footer-blob .blob-smile {
    width: 12px;
    height: 5px;
}

.footer-blob .blob-eyes {
    gap: 4px;
}

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

.footer-links {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--mint-primary);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-intro {
        font-size: 18px;
    }

    .article-content {
        padding: 32px 24px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    .alternative-card {
        padding: 24px;
    }

    .secret-sauce,
    .final-cta {
        padding: 32px 24px;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .alternative-card,
    .secret-sauce,
    .final-cta,
    .next-steps {
        opacity: 0;
        transform: translateY(24px);
        animation: fade-in-up 0.6s ease-out forwards;
    }

    .alternative-card:nth-child(1) { animation-delay: 0.1s; }
    .alternative-card:nth-child(2) { animation-delay: 0.2s; }
    .alternative-card:nth-child(3) { animation-delay: 0.3s; }

    @keyframes fade-in-up {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}