:root {
    /* Color Palette */
    --bg-main: #0a0a0c;
    --bg-secondary: #121214;
    --bg-overlay: rgba(10, 10, 12, 0.85);
    
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #A67C00;
    --gold-glow: rgba(212, 175, 55, 0.4);
    
    --text-primary: #FFFFF0;
    --text-secondary: #CCCCCC;
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Variables */
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography styles */
h1, h2, h3, h4, .section-title, .headline {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.gold-text {
    color: var(--gold-primary);
    background: linear-gradient(to right, var(--gold-light), var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
}

/* Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-light);
}

.btn-ghost {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-ghost:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 150px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(30, 25, 15, 0.8) 0%, var(--bg-main) 70%),
                url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold-primary);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.sub-headline {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 800px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

/* VSL Placeholder */
.vsl-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
}

.vsl-frame {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    background: #000;
    border: 2px solid var(--gold-dark);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.2);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.vsl-frame:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.4);
}

.vsl-frame:hover .play-icon {
    transform: scale(1.1);
    stroke: var(--gold-light);
}

.vsl-placeholder {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    background: linear-gradient(45deg, #050505, #1a1a1a);
}

.vsl-placeholder .play-icon {
    margin-bottom: 10px;
    transition: var(--transition);
}

.sound-alert {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 20px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.primary-cta {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
    color: #000 !important;
    border: none;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #FFFDEB, var(--gold-light), var(--gold-primary));
}

.large-cta {
    padding: 24px 48px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.cta-subtext {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: none;
    opacity: 0.8;
    margin-top: 5px;
}

/* Storytelling Section */
.story {
    padding: 100px 0;
    position: relative;
    background: var(--bg-secondary);
}

.parchment-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.04"/%3E%3C/svg%3E');
    opacity: 0.5;
    z-index: 1;
}

.story-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.align-center {
    text-align: center;
}

.story-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.story-text p {
    margin-bottom: 25px;
}

.story-text strong {
    color: var(--gold-primary);
    font-size: 1.3rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 30px;
    color: var(--text-ivory);
}

.filigree-divider {
    height: 40px;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="20" viewBox="0 0 100 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M50 10C30 10 20 5 0 5V4C20 4 30 9 50 9C70 9 80 4 100 4V5C80 5 70 10 50 10Z" fill="%23D4AF37"/><circle cx="50" cy="9.5" r="3.5" fill="%23D4AF37"/></svg>') center/contain no-repeat;
    margin: 40px 0;
}

/* Product Reveal Section */
.product-reveal {
    padding: 100px 0;
    background: var(--bg-main);
}

.reveal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

/* 3D Book CSS */
.book-3d-wrapper {
    position: relative;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    height: 450px;
}

.book-mockup {
    position: relative;
    width: 250px;
    height: 380px;
    transform-style: preserve-3d;
    transform: rotateY(-25deg) rotateX(5deg);
    transition: transform 1s ease;
}

.book-mockup:hover {
    transform: rotateY(-10deg) rotateX(2deg);
}

.book-spine {
    position: absolute;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, #111, #222);
    transform: rotateY(-90deg) translateZ(0);
    transform-origin: left, center;
    border-radius: 4px 0 0 4px;
    box-shadow: inset 2px 0 5px rgba(0,0,0,0.8);
    border-left: 1px solid var(--gold-dark);
}

.book-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #151515;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" stroke="red" stroke-width="2" opacity="0.1"/%3E%3C/svg%3E'); /* Faux Leather texture */
    transform: translateZ(40px);
    border-radius: 2px 8px 8px 2px;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.8), inset 0 0 20px rgba(0,0,0,0.8);
    border: 1px solid #333;
    padding: 10px;
}

.book-cover-inner {
    border: 1px solid var(--gold-dark);
    height: 100%;
    border-radius: 2px 5px 5px 2px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    background: linear-gradient(135deg, rgba(212,175,55,0.05), transparent);
}

.book-title {
    font-size: 1.8rem;
    color: var(--gold-primary);
    text-shadow: 1px 1px 2px #000;
    margin-top: 20px;
}

.book-cross {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold-primary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    font-weight: 300;
}

.book-author {
    color: var(--gold-light);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.glow-effect {
    position: absolute;
    top: 50%; left: 50%;
    width: 300px; height: 400px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, rgba(212,175,55,0.2) 0%, transparent 60%);
    z-index: -1;
    filter: blur(20px);
    animation: slow-pulse 4s infinite alternate;
}

/* Reveal Text */
.reveal-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(18, 18, 20, 0.5);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.benefits-list li:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(20, 20, 25, 0.8);
    transform: translateX(5px);
}

.benefit-icon {
    color: var(--gold-primary);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.benefit-text h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 5px;
}

.benefit-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Bonuses */
.bonuses {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-main), var(--bg-secondary));
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bonus-card {
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold-primary), var(--gold-dark));
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
}

.bonus-value {
    font-family: var(--font-heading);
    color: #e74c3c;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.bonus-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--gold-primary);
}

.bonus-card h3 {
    color: var(--text-ivory);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.bonus-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Offer Section */
.offer {
    padding: 100px 0;
    background: var(--bg-main);
    position: relative;
}

.offer::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.offer-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 20px auto 40px;
}

.price-box {
    margin-bottom: 40px;
}

.price-anchor {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.price-anchor s {
    color: #e74c3c;
    font-weight: 600;
}

.price-current {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold-primary);
    line-height: 1;
}

.price-current strong {
    font-size: 4rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

.secure-badges {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.badge-icon {
    height: 25px;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: grayscale(100%) brightness(200%);
}

.badge-icon:hover {
    opacity: 1;
    filter: none;
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #111;
    border: 2px dashed var(--gold-dark);
    padding: 50px;
    border-radius: var(--border-radius);
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
}

.guarantee-content h2 {
    color: var(--gold-light);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.guarantee-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-main);
}

.accordion {
    margin-top: 50px;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 25px 0;
    background: none;
    border: none;
    color: var(--text-ivory);
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--gold-primary);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: var(--transition);
}

.accordion-header.active::after {
    content: '−';
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-body p {
    padding-bottom: 25px;
    color: var(--text-secondary);
}

/* Footer */
footer {
    padding: 40px 0;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.footer-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.footer-email {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.footer-divider {
    width: 80px;
    height: 2px;
    background: var(--gold-primary);
    margin: 20px auto;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.link-sep {
    color: var(--text-secondary);
    margin: 0 8px;
}

.footer-copy {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.disclaimer {
    font-size: 0.75rem;
    color: #666;
}

.contact-section {
    padding: 30px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.secondary-cta {
    display: inline-block;
    padding: 14px 30px;
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 50px;
}

.secondary-cta:hover {
    background: var(--gold-primary);
    color: var(--bg-main);
}

/* Responsive */
@media (max-width: 991px) {
    .reveal-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .large-cta {
        padding: 15px 20px;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes slow-pulse {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 15px 30px rgba(212, 175, 55, 0.6); }
    100% { transform: scale(1); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); }
}

.pulse {
    animation: pulse 3s infinite;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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