/* ============================================
   SEALED CONFESSIONS · THE EXORCIST'S ARCHIVE
   Candlelit confessional aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Marcellus&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    --bg-color: #0a0705;
    --bg-secondary: #0f0b08;
    --bg-card: #15100a;
    --text-color: #e7ddcb;
    --text-muted: #a89c86;
    --gold-primary: #c6a24c;
    --gold-secondary: #9a7a30;
    --gold-light: #ebd296;
    --ember: #d9822b;
    --ember-bright: #ef9f44;
    --ember-deep: #a04d18;
    --ember-glow: rgba(217, 130, 43, 0.42);
    --violet: #6a4880;
    --violet-deep: #3a2348;
    --oxblood: #7a1f1c;
    --font-display: 'Cormorant Garamond', serif;
    --font-label: 'Marcellus', serif;
    --font-body: 'EB Garamond', serif;
    --shadow-gold: 0 0 22px rgba(198, 162, 76, 0.28);
    --max-width: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1.06rem;
    line-height: 1.75;
    overflow-x: hidden;
    position: relative;
}

/* warm candlelit vignette over the whole page */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(217,130,43,0.07) 0%, transparent 60%),
                radial-gradient(ellipse 70% 50% at 50% 110%, rgba(122,31,28,0.10) 0%, transparent 60%);
}

#particles-canvas {
    position: fixed;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
    font-family: var(--font-display);
    color: var(--gold-light);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    line-height: 1.16;
    font-weight: 700;
}
h1 { font-size: 2.9rem; color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,0.8); }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.4rem; color: #fff; font-weight: 600; }

p { font-size: 1.12rem; margin-bottom: 16px; color: #cabf a; color: #c9bea8; }

a { text-decoration: none; }
strong { color: var(--gold-light); font-weight: 600; }
em { color: var(--ember-bright); font-style: italic; }

.gold-text {
    color: var(--gold-primary);
    background: linear-gradient(to bottom, #f6e6b8 0%, #ebd296 35%, #c6a24c 55%, #9a7a30 80%, #ebd296 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 9px rgba(198, 162, 76, 0.35));
}
.ember-text {
    color: var(--ember-bright);
    text-shadow: 0 0 18px rgba(217, 130, 43, 0.4);
}
.gold-link { color: var(--gold-primary); text-decoration: underline; text-underline-offset: 3px; }
.highlight { background: rgba(217, 130, 43, 0.16); color: var(--gold-light); padding: 2px 8px; border-radius: 3px; }

/* ---- LAYOUT ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 22px; position: relative; z-index: 2; }
section { padding: 82px 0; position: relative; z-index: 1; }

/* ---- WAX-SEAL EMBLEM ---- */
.wax-seal {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 32%, #b5403a 0%, #8a221f 45%, #5e1512 100%);
    box-shadow: inset 0 2px 6px rgba(255,180,160,0.25), inset 0 -3px 8px rgba(0,0,0,0.6), 0 3px 10px rgba(0,0,0,0.6);
    display: inline-flex; align-items: center; justify-content: center;
    position: relative; flex-shrink: 0;
}
.wax-seal::before {
    content: '✠';
    color: rgba(255, 225, 210, 0.85);
    font-size: 0.95rem;
    text-shadow: 0 1px 1px rgba(0,0,0,0.5);
}

/* ---- ORNAMENT DIVIDER ---- */
.ornament {
    text-align: center;
    color: var(--gold-primary);
    margin: 16px 0 30px;
    opacity: 0.7;
    font-size: 1.2rem;
    letter-spacing: 6px;
}
.ornament::before { content: '✠ ⸙ ✠'; }

/* ---- BADGES ---- */
.badge {
    font-family: var(--font-label);
    background: linear-gradient(135deg, rgba(217,130,43,0.18), rgba(198,162,76,0.10));
    color: var(--gold-light);
    border: 1px solid rgba(217, 130, 43, 0.4);
    padding: 7px 20px;
    font-size: 0.8rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 22px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.price-badge {
    display: inline-block;
    font-family: var(--font-label);
    background: var(--oxblood);
    color: #f3dcd0;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* ============================================
   HEADER
   ============================================ */
/* ---- OFFER BAR (urgency, restrained) ---- */
.offer-bar {
    display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
    background: linear-gradient(90deg, #120d08, #2a1a09 50%, #120d08);
    color: var(--gold-light); text-align: center;
    font-family: var(--font-label); font-size: 0.8rem; letter-spacing: 1.6px; text-transform: uppercase;
    padding: 10px 16px; position: relative; z-index: 101;
    border-bottom: 1px solid rgba(217, 130, 43, 0.4);
}
.offer-bar .offer-bar-time {
    font-family: var(--font-body); font-weight: 600; color: #fff; font-size: 1rem; letter-spacing: 1px; text-transform: none;
    background: rgba(217, 130, 43, 0.16); padding: 2px 11px; border-radius: 5px;
}
.offer-bar .offer-bar-extra { color: var(--ember-bright); }
@media (max-width: 640px) {
    .offer-bar { font-size: 0.72rem; padding: 9px 12px; gap: 8px; }
    .offer-bar .offer-bar-extra { display: none; }
}

.header {
    background: rgba(10, 7, 5, 0.94);
    backdrop-filter: blur(16px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(198, 162, 76, 0.22);
    position: relative; z-index: 100;
}
.header-container { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.logo {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-label);
    color: var(--gold-light);
    font-size: 1.3rem;
    letter-spacing: 2px;
    white-space: nowrap;
}
.logo .logo-sub {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 2px;
}
.header-nav { display: flex; gap: 28px; align-items: center; }
.nav-link {
    font-family: var(--font-label);
    color: #cabf a8; color: #c4b9a3;
    font-size: 0.82rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: color 0.3s, text-shadow 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); text-shadow: 0 0 10px rgba(217,130,43,0.4); }
.header-cta {
    font-family: var(--font-label);
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(180deg, rgba(217,130,43,0.18), rgba(217,130,43,0.05));
    border: 1px solid var(--ember);
    color: var(--gold-light);
    border-radius: 5px;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
}
.header-cta:hover { background: linear-gradient(180deg, var(--ember-bright), var(--ember)); color: #1a0d04; box-shadow: 0 0 18px var(--ember-glow); }

@media (max-width: 820px) {
    .header-container { flex-direction: column; text-align: center; gap: 14px; }
    .header-nav { justify-content: center; gap: 16px 18px; flex-wrap: wrap; }
    .nav-link { font-size: 0.76rem; }
}

/* ---- STICKY HEADER ---- */
.sticky-header {
    position: fixed; top: -90px; left: 0; right: 0;
    background: rgba(10, 7, 5, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(198, 162, 76, 0.25);
    padding: 12px 0; z-index: 9999; transition: top 0.4s ease;
}
.sticky-header.visible { top: 0; }
.sticky-inner { display: flex; align-items: center; justify-content: space-between; }
.sticky-title { font-family: var(--font-label); color: var(--gold-light); font-size: 0.9rem; letter-spacing: 1.5px; }
.sticky-right { display: flex; align-items: center; gap: 15px; }
.sticky-price { color: #fff; font-size: 0.95rem; }
.sticky-price s { color: #6f6655; margin-right: 5px; }
.sticky-btn {
    font-family: var(--font-label);
    background: linear-gradient(180deg, var(--ember-bright), var(--ember));
    color: #1a0d04; padding: 9px 22px; border-radius: 5px;
    font-size: 0.82rem; letter-spacing: 1.2px; text-transform: uppercase;
    transition: all 0.3s; box-shadow: 0 2px 12px var(--ember-glow);
}
.sticky-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 64px 0 96px;
    background: radial-gradient(ellipse at 50% 0%, #1a120a 0%, #0c0806 55%, #060403 100%);
    position: relative; overflow: hidden;
}
.hero-content { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 50px; }
.hero-text { flex: 1.15; min-width: 320px; }
.hero-image { flex: 0.85; min-width: 280px; display: flex; justify-content: center; align-items: center; }
.subheadline { font-size: 1.2rem; color: #c4b9a3; margin-bottom: 26px; line-height: 1.85; }

/* candle-glow behind the book */
.book-container { position: relative; }
.book-container::before {
    content: '';
    position: absolute; inset: -12% -10%;
    background: radial-gradient(ellipse at center, rgba(217,130,43,0.22) 0%, transparent 65%);
    z-index: 0; pointer-events: none;
}
.book-cover {
    position: relative; z-index: 1;
    max-width: 360px; width: 100%; height: auto;
    border-radius: 6px;
    box-shadow: 0 28px 65px rgba(0,0,0,0.85), 0 0 55px rgba(217,130,43,0.22);
    transform: perspective(1100px) rotateY(-7deg);
    transition: transform 0.4s ease;
    animation: bookFloat 6.5s ease-in-out infinite;
    border: 1px solid rgba(198,162,76,0.25);
}
.book-container:hover .book-cover { animation-play-state: paused; transform: perspective(1100px) rotateY(0deg) scale(1.03); }
@keyframes bookFloat {
    0%, 100% { transform: perspective(1100px) rotateY(-7deg) translateY(0); }
    50% { transform: perspective(1100px) rotateY(-7deg) translateY(-14px); }
}

/* ---- TRUST LINE ---- */
.trust-line { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.trust-line .stars { color: var(--ember-bright); letter-spacing: 2px; font-size: 1.05rem; }
.trust-line .trust-text { color: #b3a890; font-size: 0.98rem; font-style: italic; }
.trust-line .trust-text strong { color: #fff; }

.rating-summary { text-align: center; margin-bottom: 8px; }
.rating-summary .stars { color: var(--ember-bright); font-size: 1.5rem; letter-spacing: 3px; }
.rating-summary .rating-text { color: #b3a890; font-size: 1rem; margin-top: 6px; font-style: italic; }
.rating-summary .rating-text strong { color: #fff; }

/* ---- SLIM COUNTDOWN (tasteful) ---- */
.countdown-slim {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--font-label);
    background: rgba(217,130,43,0.07);
    border: 1px solid rgba(217,130,43,0.28);
    color: var(--gold-light);
    padding: 9px 18px; border-radius: 6px;
    font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase;
    margin: 4px 0 20px;
}
.countdown-slim .cd-time { font-family: var(--font-body); font-weight: 600; color: #fff; font-size: 1.05rem; letter-spacing: 1px; }

/* ============================================
   OFFER BOX
   ============================================ */
.offer-box {
    background: linear-gradient(180deg, rgba(26,18,10,0.96) 0%, rgba(12,9,6,0.96) 100%);
    border: 1px solid rgba(217, 130, 43, 0.4);
    padding: 36px; border-radius: 10px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 45px rgba(217,130,43,0.12), inset 0 1px 0 rgba(217,130,43,0.15);
    text-align: center; position: relative; overflow: hidden;
}
.price-container { margin: 18px 0; }
.regular-price { font-size: 1.05rem; color: #8a8070; }
.strikethrough { text-decoration: line-through; color: #8a8070; font-size: 1.1rem; }
.sale-price { font-family: var(--font-display); font-size: 3.4rem; font-weight: 700; color: #fff; margin: 4px 0; }
.price-note { font-size: 0.92rem; color: #948a78; margin-bottom: 0; }

/* ============================================
   CTA BUTTON (ember / candleflame)
   ============================================ */
/* Matte amber — "one candle in the dark." No shine, no pulse, no glow (grave audience). */
.cta-button {
    font-family: var(--font-label);
    display: block; width: 100%;
    padding: 19px 28px;
    background: linear-gradient(180deg, #d9882f 0%, #bd641d 100%);
    color: #1c0e04;
    font-weight: 400; font-size: 1.12rem;
    border-radius: 7px; letter-spacing: 1.5px; text-transform: uppercase; text-align: center;
    box-shadow: 0 4px 0 #6e3410, 0 8px 22px rgba(0,0,0,0.45);
    transition: all 0.2s ease; margin: 16px 0; border: none; cursor: pointer;
    position: relative;
}
.cta-button:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: 0 6px 0 #6e3410, 0 12px 28px rgba(0,0,0,0.5); }
.cta-button:active { transform: translateY(2px); box-shadow: 0 2px 0 #6e3410, 0 3px 8px rgba(0,0,0,0.4); }

.cta-gold {
    background: linear-gradient(180deg, #e6cd92 0%, #bf9c46 100%);
    color: #1c1404; box-shadow: 0 4px 0 #6f5418, 0 8px 22px rgba(0,0,0,0.45);
}
.cta-gold:hover { filter: brightness(1.05); box-shadow: 0 6px 0 #6f5418, 0 12px 28px rgba(0,0,0,0.5); }

/* pulse class kept inert (no animation) — reverence over hype */
.pulse-animation {}
.secure-badge { font-size: 0.86rem; color: #948a78; text-align: center; margin-top: 6px; font-style: italic; }
.secure-badge .lock { color: var(--ember-bright); font-style: normal; }

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
    background: var(--bg-secondary);
    text-align: center;
    border-top: 1px solid rgba(198,162,76,0.15);
    border-bottom: 1px solid rgba(198,162,76,0.15);
}
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 42px 0; }
.problem-card {
    background: rgba(255,255,255,0.025); border: 1px solid #241c12;
    padding: 32px 26px; border-radius: 8px; transition: all 0.3s ease; text-align: left;
}
.problem-card:hover { border-color: rgba(217,130,43,0.4); transform: translateY(-3px); }
.problem-icon { font-size: 2.3rem; margin-bottom: 14px; }
.problem-highlight { font-size: 1.3rem; color: var(--gold-light); margin-top: 30px; font-family: var(--font-display); font-style: italic; }

/* ============================================
   BENEFITS
   ============================================ */
.benefits-section { background: var(--bg-color); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 8px; }
.section-header .section-sub { max-width: 720px; margin: 0 auto; color: #b3a890; font-size: 1.12rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.benefit-card {
    background: linear-gradient(180deg, #18120b 0%, #0f0b07 100%);
    padding: 36px 26px; border: 1px solid #2a2114; border-radius: 10px;
    text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden;
}
.benefit-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--ember), transparent); opacity: 0; transition: opacity 0.4s;
}
.benefit-card:hover { transform: translateY(-7px); border-color: rgba(217,130,43,0.45); box-shadow: 0 16px 42px rgba(217,130,43,0.14); }
.benefit-card:hover::before { opacity: 1; }
.benefit-icon { font-size: 2.8rem; margin-bottom: 18px; filter: drop-shadow(0 0 12px rgba(217,130,43,0.35)); }

/* ---- USE-IT-TONIGHT STEPS (field guide) ---- */
.steps-list { max-width: 780px; margin: 0 auto; list-style: none; counter-reset: step; }
.step-item {
    display: flex; gap: 22px; align-items: flex-start;
    background: rgba(255,255,255,0.022); border: 1px solid #241c12;
    border-left: 3px solid var(--ember); border-radius: 9px;
    padding: 24px 28px; margin-bottom: 16px; transition: all 0.3s;
}
.step-item:hover { border-color: rgba(217,130,43,0.4); transform: translateX(5px); }
.step-num {
    flex-shrink: 0; counter-increment: step;
    font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--ember-bright);
    width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(217,130,43,0.4); border-radius: 50%; background: rgba(217,130,43,0.07);
}
.step-num::before { content: counter(step); }
.step-body h4 { font-family: var(--font-display); color: var(--gold-light); font-size: 1.3rem; margin-bottom: 4px; font-weight: 600; }
.step-body p { font-size: 1.06rem; color: #c2b8a2; margin: 0; }

/* ============================================
   SOURCE / AUTHOR SECTION
   ============================================ */
.author-section {
    background: linear-gradient(135deg, #120d08 0%, #0c0805 50%, #060403 100%);
    border-top: 1px solid rgba(198,162,76,0.2);
    border-bottom: 1px solid rgba(198,162,76,0.2);
}
.author-content { text-align: center; max-width: 740px; margin: 0 auto; }
.author-badge {
    font-family: var(--font-label);
    display: inline-block; background: rgba(217,130,43,0.12); color: var(--gold-light);
    padding: 6px 22px; border-radius: 4px; font-size: 0.74rem; letter-spacing: 3px;
    margin-bottom: 16px; border: 1px solid rgba(217,130,43,0.3); text-transform: uppercase;
}
.author-stats { display: flex; justify-content: center; gap: 44px; margin-top: 36px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-number { font-family: var(--font-display); font-size: 2.1rem; color: var(--gold-light); font-weight: 700; }
.stat-label { font-family: var(--font-label); font-size: 0.74rem; color: #948a78; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 5px; }

/* ============================================
   TWO DUTIES (storefront, distinct layout)
   ============================================ */
.duties-section { background: var(--bg-color); }
.duties-grid { display: flex; gap: 30px; align-items: stretch; flex-wrap: wrap; }
.duty-panel {
    flex: 1; min-width: 300px;
    background: linear-gradient(180deg, rgba(21,16,10,0.95), rgba(12,9,6,0.95));
    border: 1px solid rgba(198,162,76,0.28);
    border-radius: 12px; padding: 36px 30px;
    display: flex; flex-direction: column; text-align: center;
    transition: all 0.4s ease; position: relative;
}
.duty-panel:hover { transform: translateY(-5px); border-color: rgba(217,130,43,0.5); box-shadow: 0 18px 46px rgba(0,0,0,0.7), 0 0 26px rgba(217,130,43,0.14); }
.duty-eyebrow { font-family: var(--font-label); font-size: 0.74rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ember-bright); margin-bottom: 18px; }
.duty-cover {
    width: 188px; height: auto; margin: 0 auto 22px; border-radius: 6px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.6), 0 0 30px rgba(217,130,43,0.14);
    border: 1px solid rgba(198,162,76,0.3);
}
.duty-title { font-family: var(--font-display); font-size: 1.85rem; color: #fff; margin-bottom: 10px; font-weight: 700; }
.duty-subtitle { font-style: italic; color: #ddd2b8; font-size: 1.08rem; line-height: 1.5; margin-bottom: 18px; min-height: 48px; }
.duty-benefits { list-style: none; text-align: left; margin-bottom: 26px; flex-grow: 1; }
.duty-benefits li {
    font-size: 1.04rem; color: #d2c8b2; margin-bottom: 14px; line-height: 1.55;
    padding-left: 28px; position: relative;
}
.duty-benefits li::before { content: '✠'; position: absolute; left: 0; top: 0; color: var(--ember); font-size: 1rem; }
.duty-price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--gold-light); margin-bottom: 20px; }
.duty-price s { font-size: 1.1rem; color: #8a8070; }

/* ---- BUNDLE BAND (featured wide) ---- */
.bundle-section { background: radial-gradient(ellipse at center, #1b1308 0%, #0c0805 60%, #060403 100%); }
.bundle-band {
    max-width: 980px; margin: 0 auto;
    background: linear-gradient(180deg, rgba(198,162,76,0.08) 0%, rgba(12,9,6,0.96) 35%);
    border: 2px solid var(--gold-primary); border-radius: 16px;
    padding: 44px 42px; position: relative;
    box-shadow: 0 0 70px rgba(198,162,76,0.18);
    display: flex; gap: 40px; align-items: center; flex-wrap: wrap;
}
.bundle-badge {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    font-family: var(--font-label);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-secondary));
    color: #1c1404; padding: 7px 26px; border-radius: 5px;
    font-size: 0.8rem; letter-spacing: 1.5px; white-space: nowrap; text-transform: uppercase;
}
.bundle-band-img { flex: 0 0 auto; }
.bundle-band-content { flex: 1; min-width: 280px; }
.bundle-band-content h2 { font-size: 2.1rem; margin-bottom: 8px; }
.bundle-description { font-style: italic; color: #c4b9a3; margin: 8px 0 22px; font-size: 1.1rem; line-height: 1.7; }
.bundle-items { text-align: left; margin: 0 0 24px; }
.bundle-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 1.04rem; color: #ddd3bd; }
.bundle-item:last-child { border-bottom: none; }
.bundle-item .check { color: var(--ember-bright); font-size: 1.2rem; flex-shrink: 0; }
.bundle-item em { color: var(--gold-light); font-size: 0.92rem; }
.bundle-price { margin: 8px 0 18px; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.bundle-total { color: #8a8070; font-size: 1.05rem; }
.bundle-total s { color: #8a8070; }
.bundle-actual { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--gold-light); }
@media (max-width: 760px) { .bundle-band { flex-direction: column; text-align: center; padding: 40px 24px; } .bundle-items { text-align: left; } .bundle-price { justify-content: center; } }

/* ============================================
   BOOK DUO (bundle 2-volume set)
   ============================================ */
.book-duo { position: relative; width: 300px; max-width: 100%; height: 300px; margin: 0 auto; perspective: 1500px; }
.book-duo img {
    position: absolute; bottom: 0; width: 58%; height: auto; border-radius: 6px;
    border: 1px solid rgba(198,162,76,0.35);
    box-shadow: 0 22px 48px rgba(0,0,0,0.85), 0 0 45px rgba(217,130,43,0.16);
}
.book-duo .duo-back { right: 0; transform: rotateY(15deg); transform-origin: left center; filter: brightness(0.82); z-index: 1; }
.book-duo .duo-front { left: 0; transform: rotateY(-10deg); transform-origin: right center; z-index: 2; animation: duoFloat 6.5s ease-in-out infinite; }
@keyframes duoFloat { 0%,100% { transform: rotateY(-10deg) translateY(0); } 50% { transform: rotateY(-10deg) translateY(-11px); } }
.duo-set-badge {
    font-family: var(--font-label);
    display: inline-block; background: linear-gradient(135deg, var(--gold-light), var(--gold-secondary));
    color: #1c1404; font-size: 0.72rem; letter-spacing: 1.8px; text-transform: uppercase;
    padding: 7px 20px; border-radius: 5px; margin-bottom: 22px; box-shadow: 0 5px 16px rgba(198,162,76,0.3);
}
.duo-wrap { text-align: center; width: 100%; }

/* Bundle hero: give the 2-volume set room and top-align it beside the headline */
@media (min-width: 769px) {
    .hero-bundle { gap: 36px; align-items: flex-start; }
    .hero-bundle .hero-text { flex: 1 1 0; min-width: 0; }
    .hero-bundle .hero-image { flex: 1 1 0; min-width: 0; position: sticky; top: 90px; align-self: flex-start; padding-top: 10px; }
}
.hero-bundle .book-duo { width: 430px; max-width: 100%; height: 430px; }
.hero-bundle .book-duo img { width: 58%; }
@media (max-width: 768px) { .hero-bundle .book-duo { width: 100%; max-width: 340px; height: 360px; } }
@media (max-width: 480px) { .hero-bundle .book-duo { height: 300px; } }

/* ============================================
   RECOGNITION ENGINE (centerpiece)
   ============================================ */
.recognition-section {
    background: radial-gradient(ellipse at 50% 0%, #170f08 0%, #0c0805 55%, #060403 100%);
    border-top: 1px solid rgba(198,162,76,0.18);
    border-bottom: 1px solid rgba(198,162,76,0.18);
}
.recognition-intro {
    max-width: 740px; margin: 0 auto 46px; text-align: center;
    font-family: var(--font-display); font-size: 1.45rem; color: #d6ccb6; font-style: italic; line-height: 1.7;
}
.recognition-list { max-width: 840px; margin: 0 auto; list-style: none; }
.recognition-item {
    display: flex; gap: 22px; align-items: flex-start;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012));
    border: 1px solid #2a2114; border-left: 3px solid var(--ember);
    border-radius: 10px; padding: 24px 28px; margin-bottom: 18px; transition: all 0.35s ease;
}
.recognition-item:hover { border-color: rgba(217,130,43,0.45); transform: translateX(6px); box-shadow: 0 14px 32px rgba(0,0,0,0.5); }
.recognition-mark { flex-shrink: 0; font-size: 1.6rem; color: var(--ember); line-height: 1.2; filter: drop-shadow(0 0 10px rgba(217,130,43,0.4)); }
.recognition-text { font-size: 1.16rem; line-height: 1.65; color: #d6ccb6; margin: 0; }
.recognition-text strong { color: var(--gold-light); }
.recognition-lockline {
    text-align: center; color: var(--gold-light); font-family: var(--font-display);
    font-style: italic; font-size: 1.35rem; margin: 44px auto 24px; max-width: 660px;
}
.recognition-cta-wrap { max-width: 470px; margin: 0 auto; text-align: center; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta { text-align: center; background: radial-gradient(circle, #160f08 0%, #060403 100%); padding: 96px 0; }
.offer-box-final {
    background: var(--bg-card); padding: 46px; max-width: 600px; margin: 38px auto 0;
    border: 2px solid var(--ember); border-radius: 12px; box-shadow: 0 0 50px rgba(217,130,43,0.15);
}
.price-container-final { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 18px 0; flex-wrap: wrap; }
.strikethrough-big { font-size: 2rem; text-decoration: line-through; color: #5c5446; }
.price-big { font-family: var(--font-display); font-size: 3.6rem; font-weight: 700; color: #fff; }
.countdown-container-small { margin-top: 14px; }
.countdown-label-small { font-family: var(--font-label); font-size: 0.82rem; color: var(--ember-bright); letter-spacing: 1px; }

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee-section { background: var(--bg-secondary); padding: 62px 0; }
.guarantee-box {
    max-width: 660px; margin: 0 auto; text-align: center;
    background: rgba(255,255,255,0.022); border: 1px solid #241c12; border-radius: 12px; padding: 42px;
}
.guarantee-shield { font-size: 3.6rem; margin-bottom: 14px; }
.guarantee-box h2 { font-size: 1.9rem; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--bg-color); padding: 82px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid #241c12; border-radius: 8px; margin-bottom: 12px; overflow: hidden; transition: border-color 0.3s; }
.faq-item:hover { border-color: rgba(217,130,43,0.4); }
.faq-question {
    width: 100%; padding: 21px 26px; background: var(--bg-card); color: #fff; border: none; cursor: pointer;
    font-family: var(--font-display); font-size: 1.22rem; font-weight: 600; text-align: left;
    display: flex; justify-content: space-between; align-items: center; transition: background 0.3s;
}
.faq-question:hover { background: #1c150d; }
.faq-toggle { font-size: 1.5rem; color: var(--ember-bright); transition: transform 0.3s; flex-shrink: 0; margin-left: 15px; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; background: rgba(0,0,0,0.3); }
.faq-item.active .faq-answer { max-height: 340px; padding: 20px 26px; }
.faq-answer p { font-size: 1.06rem; color: #b3a890; line-height: 1.7; margin: 0; }

/* ============================================
   DIGITAL NOTICE + DISCLAIMER
   ============================================ */
.digital-notice { background: var(--bg-secondary); border-top: 1px solid rgba(198,162,76,0.15); padding: 46px 0; }
.digital-notice-box {
    max-width: 780px; margin: 0 auto; display: flex; align-items: center; gap: 22px;
    background: rgba(217,130,43,0.05); border: 1px solid rgba(217,130,43,0.25);
    border-radius: 12px; padding: 28px 32px; text-align: left;
}
.digital-notice-icon { font-size: 2.5rem; flex-shrink: 0; }
.digital-notice-box h4 { font-family: var(--font-label); color: var(--gold-light); font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.digital-notice-box p { font-size: 0.98rem; color: #aaa08c; margin: 0; line-height: 1.6; }
@media (max-width: 560px) { .digital-notice-box { flex-direction: column; text-align: center; gap: 12px; } }

/* ============================================
   FOOTER
   ============================================ */
footer { background: #050302; padding: 42px 0; text-align: center; border-top: 1px solid #1c150d; position: relative; z-index: 2; }
footer p { color: #6f6655; font-size: 0.84rem; }
footer a { color: #7d7464; margin: 0 10px; transition: color 0.3s; }
footer a:hover { color: var(--gold-light); }
.disclaimer { margin-top: 16px; font-size: 0.76rem !important; color: #5a5346 !important; max-width: 680px; margin-left: auto; margin-right: auto; font-style: italic; }

/* ============================================
   EXIT POPUP
   ============================================ */
.exit-popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 99999; justify-content: center; align-items: center; padding: 20px; animation: fadeIn 0.3s ease; }
.exit-popup-overlay.active { display: flex; }
.exit-popup {
    background: linear-gradient(180deg, #1a130b 0%, #0b0805 100%);
    border: 2px solid var(--ember); border-radius: 14px; padding: 46px 40px;
    max-width: 500px; width: 100%; text-align: center; position: relative;
    box-shadow: 0 0 80px rgba(217,130,43,0.2); animation: popupSlide 0.4s ease;
}
@keyframes popupSlide { from { transform: translateY(-30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.exit-close { position: absolute; top: 15px; right: 20px; background: none; border: none; color: #6f6655; font-size: 2rem; cursor: pointer; transition: color 0.3s; line-height: 1; }
.exit-close:hover { color: #fff; }
.exit-popup h2 { font-size: 1.7rem; color: #fff; margin-bottom: 12px; }
.exit-subtitle { color: #c4b9a3; font-style: italic; margin-bottom: 6px; line-height: 1.7; }
.exit-no-thanks { margin-top: 10px; }
.exit-no-thanks a { color: #6f6655; font-size: 0.84rem; text-decoration: underline; transition: color 0.3s; }
.exit-no-thanks a:hover { color: #948a78; }

/* ============================================
   REVIEWS
   ============================================ */
.live-reviews-section {
    background: linear-gradient(135deg, #0a0705 0%, #0e0a07 100%);
    border-top: 1px solid rgba(198,162,76,0.1); border-bottom: 1px solid rgba(198,162,76,0.1);
    position: relative; overflow: hidden;
}
.reviews-container { display: flex; flex-direction: column; gap: 28px; max-width: 900px; margin: 0 auto; }
.review-card {
    background: rgba(255,255,255,0.022); border: 1px solid rgba(198,162,76,0.2);
    border-radius: 12px; padding: 30px; position: relative; transition: all 0.4s ease;
    opacity: 0; transform: translateY(20px);
}
.review-card.visible { opacity: 1; transform: translateY(0); }
.review-card:hover { border-color: rgba(217,130,43,0.45); background: rgba(255,255,255,0.035); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; flex-wrap: wrap; gap: 10px; }
.review-author { display: flex; align-items: center; gap: 15px; }
.author-avatar {
    width: 46px; height: 46px; background: linear-gradient(135deg, var(--ember), var(--ember-deep));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1.2rem; font-family: var(--font-display);
}
.author-info h4 { color: #fff; font-size: 1.12rem; margin: 0; font-family: var(--font-display); font-weight: 600; }
.author-info p { color: #948a78; font-size: 0.86rem; margin: 0; font-family: var(--font-label); letter-spacing: 0.5px; }
.review-rating { color: var(--ember-bright); font-size: 1.1rem; letter-spacing: 2px; }
.review-text { font-size: 1.14rem; line-height: 1.7; color: #d2c8b2; font-style: italic; margin-bottom: 18px; }
.review-product-tag {
    font-family: var(--font-label);
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(198,162,76,0.1); color: var(--gold-light);
    padding: 5px 13px; border-radius: 4px; font-size: 0.76rem; letter-spacing: 0.8px;
    border: 1px solid rgba(198,162,76,0.3); text-transform: uppercase;
}
.live-indicator {
    font-family: var(--font-label);
    display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 40px;
    color: var(--ember-bright); font-size: 0.84rem; letter-spacing: 2px; text-transform: uppercase;
}
.live-indicator .dot { width: 10px; height: 10px; background: var(--ember-bright); border-radius: 50%; animation: emberPulse 1.6s infinite; }
@keyframes emberPulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(217,130,43,0.6); } 50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(217,130,43,0); } }

/* ============================================
   PURCHASE TOAST
   ============================================ */
.purchase-toast {
    position: fixed; bottom: 25px; left: 25px;
    background: rgba(12,9,6,0.97); border: 1px solid rgba(217,130,43,0.4); border-left: 4px solid var(--ember);
    padding: 15px 20px; border-radius: 6px; box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    display: flex; align-items: center; gap: 15px; z-index: 99999;
    transform: translateX(-150%); opacity: 0;
    transition: all 0.5s cubic-bezier(0.175,0.885,0.32,1.275); backdrop-filter: blur(10px); max-width: 330px;
}
.purchase-toast.show { transform: translateX(0); opacity: 1; }
.toast-img { width: 42px; height: 60px; object-fit: cover; border-radius: 3px; box-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.toast-content p { margin: 0; font-size: 0.92rem; line-height: 1.4; color: #e0d6c2; }
.toast-content .toast-name { font-weight: 600; color: var(--gold-light); }
.toast-time { font-size: 0.76rem; color: #948a78; margin-top: 4px; display: block; font-style: italic; }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-stagger.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================
   DOWNLOAD / THANK-YOU PAGE
   ============================================ */
.download-page {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 64px 20px; text-align: center; position: relative; z-index: 2;
}
.checkmark-circle {
    width: 96px; height: 96px; border-radius: 50%;
    background: rgba(217,130,43,0.14); border: 3px solid var(--ember);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 30px;
    animation: checkPop 0.6s cubic-bezier(0.175,0.885,0.32,1.275) forwards; opacity: 0; transform: scale(0.3);
    box-shadow: 0 0 40px rgba(217,130,43,0.3);
}
@keyframes checkPop { 0% { opacity: 0; transform: scale(0.3); } 60% { opacity: 1; transform: scale(1.15); } 100% { opacity: 1; transform: scale(1); } }
.checkmark-circle svg { width: 48px; height: 48px; }
.checkmark-circle svg path {
    stroke: var(--ember-bright); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; fill: none;
    stroke-dasharray: 50; stroke-dashoffset: 50; animation: checkDraw 0.5s 0.4s ease forwards;
}
@keyframes checkDraw { to { stroke-dashoffset: 0; } }
.download-thank-you { font-family: var(--font-label); font-size: 0.95rem; color: var(--ember-bright); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; animation: fadeIn 0.6s 0.3s ease both; }
.download-title { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold-light); margin-bottom: 8px; font-weight: 700; animation: fadeIn 0.6s 0.5s ease both; }
.download-subtitle { font-family: var(--font-body); font-size: 1.15rem; color: #b3a890; font-style: italic; margin-bottom: 34px; animation: fadeIn 0.6s 0.6s ease both; }
.download-cover { width: 148px; height: auto; margin: 0 auto 34px; border-radius: 6px; border: 1px solid rgba(198,162,76,0.3); box-shadow: 0 20px 46px rgba(0,0,0,0.85), 0 0 36px rgba(217,130,43,0.2); animation: fadeIn 0.6s 0.7s ease both; }
.download-btn {
    font-family: var(--font-label);
    display: inline-block; width: 100%; max-width: 480px; padding: 21px 28px;
    background: linear-gradient(180deg, #d9882f, #bd641d); color: #1c0e04;
    font-size: 1.12rem; border-radius: 7px; letter-spacing: 1.5px; text-transform: uppercase; text-align: center;
    box-shadow: 0 4px 0 #6e3410, 0 8px 22px rgba(0,0,0,0.45); transition: all 0.2s ease;
    margin: 0 auto 15px; cursor: pointer; animation: fadeIn 0.6s 0.8s ease both;
}
.download-btn:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: 0 6px 0 #6e3410, 0 12px 28px rgba(0,0,0,0.5); }
.rabbi-message {
    max-width: 560px; margin: 38px auto 0; padding: 30px;
    background: rgba(217,130,43,0.06); border: 1px solid rgba(217,130,43,0.22); border-radius: 12px;
    animation: fadeIn 0.6s 1s ease both;
}
.rabbi-message .ornament { margin: 0 0 14px; font-size: 1.1rem; }
.rabbi-message p { font-family: var(--font-display); font-size: 1.2rem; color: #d2c8b2; font-style: italic; line-height: 1.75; margin: 0; }
.support-message { margin-top: 38px; font-size: 0.88rem; color: #7d7464; animation: fadeIn 0.6s 1.2s ease both; }
.support-message a { color: var(--gold-light); text-decoration: underline; }
@media (max-width: 480px) { .download-title { font-size: 1.8rem; } .download-btn { font-size: 1rem; padding: 18px 18px; } .checkmark-circle { width: 78px; height: 78px; } .checkmark-circle svg { width: 38px; height: 38px; } }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    .sale-price { font-size: 2.7rem; }
    .price-big { font-size: 2.7rem; }
    .bundle-actual { font-size: 2.5rem; }
    .cta-button { font-size: 1rem; padding: 16px 18px; letter-spacing: 1px; }
    .offer-box { padding: 22px 16px; }
    .offer-box-final { padding: 30px 20px; }
    .exit-popup { padding: 32px 22px; }
    .recognition-item { gap: 14px; padding: 18px 16px; }
    .recognition-text { font-size: 1.06rem; }
    .recognition-intro { font-size: 1.2rem; }
    .step-item { gap: 14px; padding: 18px 16px; }
    .author-stats { gap: 26px; }
    .stat-number { font-size: 1.7rem; }
}
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .hero { padding: 44px 0 60px; }
    .hero-content { flex-direction: column; text-align: center; gap: 32px; align-items: stretch; }
    .hero-image { order: 1; margin-top: 8px; width: 100%; }
    .hero-text { min-width: auto; }
    .book-cover { max-width: 250px; }
    .trust-line { justify-content: center; }
    .problem-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .duties-grid { flex-direction: column; }
    .duty-panel { max-width: 460px; margin: 0 auto; width: 100%; }
    .price-container-final { flex-direction: column; gap: 6px; }
    .sticky-title { display: none; }
    .sticky-inner { justify-content: center; }
}
@media (min-width: 1200px) {
    h1 { font-size: 3.1rem; }
    .hero { padding: 76px 0 110px; }
}
