:root {
    --bg-light: #fdfbf7;
    --bg-dark: #0f172a;
    /* Deep night blue */
    --bg-gradient-start: #1e293b;
    --bg-gradient-end: #0f172a;

    --text-primary: #1e293b;
    --text-light: #f8fafc;
    --accent-gold: #c5a059;
    --accent-gold-bright: #ffd700;
    --accent-blue-soft: #e0e7ff;

    --font-serif: 'Merriweather', serif;
    --font-sans: 'Inter', sans-serif;

    --spacing-container: 20px;
    --max-width: 800px;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    /* Deeper, more persistent gradient for "Night" feel */
    background: linear-gradient(180deg, #e0e7ff 0%, #fdfbf7 15%, #f8fafc 85%, #eff6ff 100%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

/* Header */
.header {
    padding: 60px 0 40px;
    text-align: center;
    /* Stronger initial burst of "moonlight" */
    background: radial-gradient(circle at top center, #c7d2fe 0%, transparent 60%);
}

.badge {
    display: inline-block;
    background-color: #dc2626;
    /* Darker, more premium red */
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    /* Slightly refined size */
    padding: 6px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.25);
    letter-spacing: 0.5px;
}

.headline {
    font-family: var(--font-serif);
    font-size: 2rem;
    /* Better mobile base */
    font-weight: 900;
    line-height: 1.25;
    color: #0f172a;
    /* Deepest blue/black */
    margin-bottom: 16px;
}

.sub-headline {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 400;
    color: #334155;
    margin-bottom: 24px;
}

.meta-info {
    font-size: 0.85rem;
    color: #475569;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-weight: 500;
}

.meta-info span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Content Sections */
.content-section {
    margin-bottom: 40px;
    font-size: 1.05rem;
    /* Readable mobile text */
}

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

.content-section strong {
    font-weight: 700;
    color: #0f172a;
    /* High contrast */
    background: linear-gradient(120deg, transparent 0%, transparent 100%);
    /* Ready for highlight if needed */
}

/* Images */
.image-block {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    /* Subtle border for definition */
}

.image-block img {
    width: 100%;
}

.image-block figcaption {
    background-color: #f8fafc;
    padding: 16px;
    font-style: italic;
    color: #334155;
    font-size: 0.9rem;
    border-left: 4px solid var(--accent-gold);
    line-height: 1.5;
}

/* Quote Section */
.quote-section {
    margin: 60px 0;
}

.pull-quote {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    text-align: center;
    color: #1e293b;
    position: relative;
    padding: 40px 24px;
    background: #eff6ff;
    border-radius: 16px;
    border: 1px solid #dbeafe;
    /* Add definition */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    display: block;
    font-size: 4rem;
    line-height: 0;
    color: rgba(197, 160, 89, 0.4);
    /* Stronger gold */
    margin-bottom: 24px;
}

/* Product Section - Night Mode */
.product-section {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: var(--text-light);
    padding: 60px 20px;
    margin: 40px -20px;
    /* Mobile bleed hack: pull to edges of container padding */
    width: calc(100% + 40px);
    /* Counteract clean container padding */
    border-radius: 0;
    position: relative;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
    left: 0;
    right: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

/* Header */
.header {
    padding: 60px 0 40px;
    text-align: center;
    background: radial-gradient(circle at top center, #e0e7ff 0%, transparent 70%);
}

.badge {
    display: inline-block;
    background-color: #ef4444;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.headline {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--bg-dark);
    margin-bottom: 16px;
}

.sub-headline {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 400;
    color: #475569;
    margin-bottom: 24px;
}

.meta-info {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.meta-info span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Content Sections */
.content-section {
    margin-bottom: 40px;
    font-size: 1.125rem;
}

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

.content-section strong {
    font-weight: 700;
    color: var(--bg-dark);
}

/* Images */
.image-block {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.image-block img {
    width: 100%;
}

.image-block figcaption {
    background-color: #f1f5f9;
    padding: 12px 16px;
    font-style: italic;
    color: #475569;
    font-size: 0.9rem;
    border-left: 4px solid var(--accent-gold);
}

/* Quote Section */
.quote-section {
    margin: 60px 0;
}

.pull-quote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--bg-dark);
    position: relative;
    padding: 40px 20px;
    background: var(--accent-blue-soft);
    border-radius: 12px;
}

.quote-icon {
    display: block;
    font-size: 4rem;
    line-height: 0;
    color: rgba(197, 160, 89, 0.3);
    /* Transparent gold */
    margin-bottom: 20px;
}

/* Product Section - Night Mode */
.product-section {
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    color: var(--text-light);
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 0;
    /* Full bleed on mobile default, strictly containerized by layout */
}

/* To make product section full bleed visually while keeping content centered */
body {
    overflow-x: hidden;
}

.product-section {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--accent-gold-bright);
    text-align: center;
    margin-bottom: 20px;
}

.product-section p {
    margin-bottom: 30px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.product-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.benefits-list {
    list-style: none;
    max-width: 500px;
}

.benefits-list li {
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.benefits-list .icon {
    font-size: 1.2rem;
}

/* CTA Footer */
.cta-section {
    text-align: center;
    padding: 60px 0 80px;
}

.cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #c5a059, #eab308);
    /* Gold/Yellow gradient */
    color: white;
    padding: 20px 40px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(234, 179, 8, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(234, 179, 8, 0.5);
}

.trust-badges {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.disclaimer {
    margin-top: 40px;
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Responsiveness */
@media (min-width: 768px) {
    .headline {
        font-size: 3.5rem;
    }

    .product-grid {
        flex-direction: row;
        justify-content: center;
    }

    .product-image {
        width: 50%;
        max-width: 400px;
    }

    .benefits-list {
        width: 50%;
    }
}


/* Viral Update Box */
.viral-update-box {
    margin-top: 30px;
    background-color: #fef2f2;
    /* Light red/pink tint */
    border: 1px solid #fee2e2;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #991b1b;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.viral-update-box .info-icon {
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
    max-width: 600px;
    margin: 0 auto;
}

.faq-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--bg-dark);
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 0;
}

.faq-question {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    cursor: default;
    /* Keep simple list for now as requested "simple list" */
}

.faq-answer {
    color: #475569;
    font-size: 0.95rem;
}

/* Sticky Mobile Bar */
.sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Dark Night Theme matching Product Section */
    background: linear-gradient(135deg, #1e293b, #0f172a);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    z-index: 1000;
    border-top: 1px solid #334155;

    /* Animation Initial State: Hidden below screen */
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

.sticky-mobile-bar.visible {
    transform: translateY(0);
}

.sticky-text {
    font-weight: 700;
    color: #f8fafc;
    /* Light text for dark bg */
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sticky-btn {
    background: linear-gradient(135deg, #c5a059, #eab308);
    /* Gold gradient */
    color: white;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    box-shadow: 0 4px 6px rgba(234, 179, 8, 0.3);
}

/* Hide Sticky Bar on Desktop */
@media (min-width: 768px) {
    .sticky-mobile-bar {
        display: none;
    }
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}