/* ============================================================
   DEREK PRINCE — SPIRITUAL WARFARE  |  MASTER STYLESHEET
   Mobile-first. Base styles = 390px width. Breakpoints at 768 / 1100.
   Palette: near-black #0d0a07, amber #b8860b / #d4a017, cream #f3e9d2
   ============================================================ */

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

/* ---- CSS VARIABLES ---- */
:root {
    --bg: #0d0a07;
    --bg-2: #120d08;
    --bg-card: #171009;
    --bg-card-2: #1d150c;
    --ink: #f3e9d2;          /* parchment cream body text */
    --ink-muted: #b8a988;    /* muted parchment */
    --ink-dim: #8a7d63;
    --amber: #d4a017;        /* bright amber accent */
    --amber-deep: #b8860b;   /* deep gold */
    --amber-light: #f0d68a;
    --amber-glow: rgba(212, 160, 23, 0.35);
    --line: #2a2015;
    --line-soft: #221a10;
    --font-head: 'Cormorant Garamond', serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --shadow-amber: 0 0 28px rgba(212, 160, 23, 0.22);
    --max: 1120px;
    --radius: 14px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* senior audience (55-80): root 18px so every rem-based size scales up together */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 18px; }

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;               /* 18px — never below 18px for body text */
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    /* layered candlelit atmosphere: deep radial pools of warm light over near-black */
    background-image:
        radial-gradient(ellipse 60% 40% at 50% -5%, rgba(212, 160, 23, 0.10), transparent 60%),
        radial-gradient(ellipse 80% 50% at 15% 30%, rgba(184, 134, 11, 0.06), transparent 55%),
        radial-gradient(ellipse 80% 50% at 85% 70%, rgba(184, 134, 11, 0.05), transparent 55%);
    background-attachment: fixed;
}

/* ---- DUST / EMBER CANVAS ---- */
#dust-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* candle-flicker glow layer behind hero */
.flicker-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 55% 45% at 50% 22%, rgba(212, 160, 23, 0.22), transparent 62%);
    animation: flicker 5.5s ease-in-out infinite;
    mix-blend-mode: screen;
}
@keyframes flicker {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    22%      { opacity: 0.62; transform: scale(1.015); }
    47%      { opacity: 0.95; transform: scale(0.99); }
    68%      { opacity: 0.55; transform: scale(1.02); }
    83%      { opacity: 0.88; transform: scale(1); }
}

/* ---- LAYOUT ---- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
main { position: relative; z-index: 1; }
section { padding: 56px 0; position: relative; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: var(--font-head); color: var(--amber-light); line-height: 1.12; font-weight: 600; }
h1 { font-size: 2.5rem; color: var(--ink); letter-spacing: 0.5px; }
h2 { font-size: 2rem; letter-spacing: 0.5px; }
h3 { font-size: 1.35rem; color: var(--ink); }
p  { font-size: 1rem; color: var(--ink-muted); margin-bottom: 14px; }
.amber-text {
    background: linear-gradient(180deg, #f7e6a6 0%, var(--amber) 55%, var(--amber-deep) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    color: var(--amber);
}
a { color: var(--amber); text-decoration: none; }
.eyebrow {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2.5px; color: var(--amber);
    margin-bottom: 14px; display: inline-block;
}
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { margin-bottom: 10px; }
.section-head p { max-width: 620px; margin: 0 auto; }
.rule {
    width: 96px; height: 1px; margin: 18px auto;
    background: linear-gradient(90deg, transparent, var(--amber-light), transparent);
    position: relative;
}
.rule::after {
    content: '✦'; color: var(--amber); font-size: 0.7rem;
    position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
    background: var(--bg); padding: 0 8px;
}

/* ---- BADGES ---- */
.badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 999px;
    background: rgba(212, 160, 23, 0.08);
    border: 1px solid rgba(212, 160, 23, 0.35);
    color: var(--amber-light);
    font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 22px;
}
.badge .seal { font-size: 0.9rem; }

/* ============================================================
   HEADER (sticky, translucent)
   ============================================================ */
.header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(13, 10, 7, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212,160,23,0.25);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 60px; gap: 12px;
}
.logo {
    font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
    color: var(--amber-light); letter-spacing: 1px; line-height: 1.1;
}
.logo small { display: block; font-family: var(--font-body); font-size: 0.55rem; letter-spacing: 3px; color: var(--ink-dim); text-transform: uppercase; }
.header-cta {
    display: inline-flex; align-items: center; min-height: 44px;
    padding: 0 18px; border-radius: 999px;
    background: linear-gradient(180deg, var(--amber) 0%, var(--amber-deep) 100%);
    color: #1a1206; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.5px;
    white-space: nowrap;
}
.header nav { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    text-align: center; padding: 84px 0 92px;
    overflow: hidden; position: relative;
    /* cinematic book-launch backdrop: real product shot under a dark amber-tinted veil */
    background:
        linear-gradient(180deg, rgba(13,10,7,0.90) 0%, rgba(13,10,7,0.58) 40%, rgba(13,10,7,0.72) 72%, var(--bg) 100%),
        url('assets/hero-books.webp') center 32% / cover no-repeat var(--bg);
    border-bottom: 1px solid rgba(212,160,23,0.28);
}
.hero .container { max-width: 760px; }
.hero h1 {
    font-size: 2.9rem; margin-bottom: 18px; text-wrap: balance;
    text-shadow: 0 2px 22px rgba(0,0,0,0.9), 0 0 60px rgba(0,0,0,0.6);
}
.hero .sub {
    font-family: var(--font-head); font-size: 1.3rem; font-style: italic;
    color: var(--ink); margin-bottom: 30px; font-weight: 400;
    text-shadow: 0 2px 14px rgba(0,0,0,0.9);
}
.hero-cta {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 60px; padding: 0 40px; margin-top: 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--amber-light) 0%, var(--amber) 45%, var(--amber-deep) 100%);
    color: #1a1206; font-weight: 700; font-size: 1.05rem; letter-spacing: 0.5px;
    box-shadow: 0 6px 0 #6e5008, 0 12px 36px rgba(212, 160, 23, 0.38);
    transition: transform .18s ease, box-shadow .18s ease;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 0 #6e5008, 0 16px 40px rgba(212, 160, 23, 0.4); }
.hero-cta:active { transform: translateY(3px); box-shadow: 0 2px 0 #6e5008; }
.hero-scripture {
    margin-top: 30px; font-family: var(--font-head); font-style: italic;
    color: var(--ink-muted); font-size: 1.05rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; }
.trust-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 14px;
}
.trust-item { text-align: center; }
.trust-item .ico { font-size: 1.4rem; margin-bottom: 6px; display: block; }
.trust-item strong { display: block; color: var(--ink); font-size: 0.95rem; font-weight: 600; }  /* ≥16px */
.trust-item span { color: var(--ink-muted); font-size: 0.9rem; }  /* 16.2px — senior-readable */

/* ============================================================
   LIBRARY / PRODUCT CARDS
   ============================================================ */
.library { background: var(--bg); }
.cards { display: grid; grid-template-columns: 1fr; gap: 26px; }
.book-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 22px 28px;
    display: flex; flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative; overflow: hidden;
}
.book-card:hover { transform: translateY(-6px); border-color: rgba(212,160,23,0.5); box-shadow: var(--shadow-amber); }
.book-cover-wrap { text-align: center; margin-bottom: 20px; }
.book-cover {
    width: 100%; max-width: 210px; height: auto; border-radius: 6px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.7), 0 0 0 1px rgba(212,160,23,0.15);
    transition: transform .3s ease;
}
.book-card:hover .book-cover { transform: scale(1.04) translateY(-4px); }
.book-card h3 { font-size: 1.5rem; color: var(--amber-light); text-align: center; margin-bottom: 4px; }
.book-card .book-sub { text-align: center; font-family: var(--font-head); font-style: italic; color: var(--ink-muted); font-size: 1.02rem; margin-bottom: 18px; }
.book-bullets { list-style: none; margin-bottom: 22px; }
.book-bullets li { position: relative; padding-left: 26px; margin-bottom: 11px; color: var(--ink-muted); font-size: 0.95rem; line-height: 1.6; }  /* ≥17px */
.book-bullets li::before { content: '✦'; position: absolute; left: 0; top: 1px; color: var(--amber); font-size: 0.85rem; }
.book-foot { margin-top: auto; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.price { font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; color: var(--amber-light); line-height: 1; }
.price small { font-size: 0.9rem; color: var(--ink-dim); font-family: var(--font-body); font-weight: 400; }

/* buy button — shared. Senior-friendly: ≥56px tall, ≥18px bold label */
.buy-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 100%; min-height: 56px; padding: 0 24px;
    border-radius: 999px; cursor: pointer;
    background: linear-gradient(180deg, var(--amber) 0%, var(--amber-deep) 100%);
    color: #1a1206; font-weight: 700; font-size: 1rem; letter-spacing: 0.5px;
    box-shadow: 0 5px 0 #6e5008, 0 10px 26px rgba(212,160,23,0.3);
    transition: transform .16s ease, box-shadow .16s ease, background .2s ease;
    text-align: center;
}
.buy-btn:hover { transform: translateY(-2px); box-shadow: 0 7px 0 #6e5008, 0 14px 32px rgba(212,160,23,0.42); }
.buy-btn:active { transform: translateY(3px); box-shadow: 0 2px 0 #6e5008; }
.buy-btn.ghost {
    background: transparent; border: 1px solid rgba(212,160,23,0.55); color: var(--amber-light);
    box-shadow: none; min-height: 52px; font-size: 0.95rem;
}
.buy-btn.ghost:hover { background: rgba(212,160,23,0.08); transform: translateY(-2px); box-shadow: none; }

/* ---- BUNDLE CARD (dominant) ---- */
.bundle-card {
    margin-top: 34px;
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(212,160,23,0.12), transparent 60%),
        linear-gradient(180deg, #1c1409 0%, #140e07 100%);
    border: 2px solid var(--amber-deep);
    border-radius: 18px;
    padding: 40px 22px 30px;
    position: relative;
    box-shadow: 0 0 40px rgba(212,160,23,0.18), inset 0 0 60px rgba(212,160,23,0.04);
    text-align: center;
}
/* animated gold shimmer running along the bundle border (CSS only) */
.bundle-card::after {
    content: ''; position: absolute; inset: -2px; border-radius: 20px;
    padding: 2px; z-index: 1; pointer-events: none;
    background: linear-gradient(115deg,
        rgba(212,160,23,0) 0%, rgba(212,160,23,0) 38%,
        rgba(247,230,166,0.9) 50%,
        rgba(212,160,23,0) 62%, rgba(212,160,23,0) 100%);
    background-size: 250% 100%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    animation: bundleShimmer 5s linear infinite;
}
@keyframes bundleShimmer {
    0%   { background-position: 225% 0; }
    100% { background-position: -125% 0; }
}
.bundle-ribbon {
    position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); z-index: 2;
    background: linear-gradient(180deg, var(--amber) 0%, var(--amber-deep) 100%);
    color: #1a1206; font-weight: 700; font-size: 0.72rem; letter-spacing: 1.5px;
    padding: 8px 20px; border-radius: 999px; white-space: nowrap;
    text-transform: uppercase; box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.bundle-card h3 { font-size: 1.9rem; color: var(--amber-light); margin-bottom: 6px; margin-top: 8px; }
.bundle-card .book-sub { margin-bottom: 22px; }
.fan {
    display: flex; justify-content: center; align-items: flex-end;
    margin: 8px auto 24px; height: 180px; position: relative; width: 240px;
}
.fan img {
    position: absolute; width: 116px; height: auto; border-radius: 4px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.75);
    transition: transform .35s ease;
}
/* the product-cover img rule (~300px, later in file) would otherwise win on
   equal specificity and blow the fan covers up — pin fan covers back to 116px */
.product-cover .fan img { width: 116px; max-width: none; }
.fan img:nth-child(1) { transform: rotate(-14deg) translateX(-58px); z-index: 1; }
.fan img:nth-child(2) { transform: translateY(-12px) scale(1.06); z-index: 3; }
.fan img:nth-child(3) { transform: rotate(14deg) translateX(58px); z-index: 1; }
.bundle-card:hover .fan img:nth-child(1) { transform: rotate(-18deg) translateX(-72px); }
.bundle-card:hover .fan img:nth-child(3) { transform: rotate(18deg) translateX(72px); }
.bundle-includes { list-style: none; max-width: 380px; margin: 0 auto 22px; text-align: left; }
.bundle-includes li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--ink); font-size: 0.95rem; }
.bundle-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--amber); font-weight: 700; }
.bundle-price-row { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-bottom: 18px; }
.bundle-price-row .old { text-decoration: line-through; color: var(--ink-dim); font-size: 1.3rem; font-family: var(--font-head); }
.bundle-price-row .price { font-size: 2.7rem; }

/* ============================================================
   ABOUT DEREK PRINCE
   ============================================================ */
.about { background: var(--bg-2); border-top: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
.about-portrait { text-align: center; }
.about-portrait img {
    width: 100%; max-width: 300px; border-radius: 12px;
    border: 1px solid rgba(212,160,23,0.3);
    box-shadow: 0 18px 44px rgba(0,0,0,0.7), var(--shadow-amber);
}
/* typographic monogram fallback (used if portrait generation failed) */
.monogram {
    width: 100%; max-width: 300px; aspect-ratio: 3/4; margin: 0 auto;
    border-radius: 12px; border: 1px solid rgba(212,160,23,0.3);
    background:
        radial-gradient(ellipse at 50% 35%, rgba(212,160,23,0.14), transparent 60%),
        linear-gradient(180deg, #17110a, #0f0b07);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 18px 44px rgba(0,0,0,0.7);
}
.monogram .initials { font-family: var(--font-head); font-size: 4.6rem; font-weight: 700; color: var(--amber-light); letter-spacing: 4px; line-height: 1; }
.monogram .years { font-family: var(--font-head); font-style: italic; color: var(--ink-dim); margin-top: 10px; font-size: 1.05rem; }
.about-body h2 { margin-bottom: 8px; }
.about-body p { margin-bottom: 14px; }
.about-body .lead { font-family: var(--font-head); font-size: 1.2rem; font-style: italic; color: var(--ink); }
.about-stats { display: flex; gap: 26px; margin-top: 22px; flex-wrap: wrap; }
.about-stats .stat .n { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--amber-light); display: block; line-height: 1; }
.about-stats .stat .l { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink-dim); }
.portrait-caption {
    font-family: var(--font-head); font-style: italic;
    color: var(--ink-muted); font-size: 0.95rem; margin: 12px 0 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg); }
.quotes { display: grid; grid-template-columns: 1fr; gap: 20px; }
.quote-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px 24px; position: relative;
}
.quote-card::before {
    content: '\201C'; font-family: var(--font-head); font-size: 4rem; color: rgba(212,160,23,0.28);
    position: absolute; top: 6px; left: 16px; line-height: 1;
}
.quote-card .stars { color: var(--amber); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }
.quote-card p { font-family: var(--font-head); font-size: 1.18rem; font-style: italic; color: var(--ink); line-height: 1.55; margin-bottom: 16px; position: relative; z-index: 1; }
.quote-card .who { display: flex; align-items: center; gap: 12px; }
.quote-card .avatar {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
    color: #1a1206; font-weight: 700; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 1.1rem;
}
.quote-card .who small { color: var(--ink-dim); font-size: 0.78rem; }
.quote-card .who strong { color: var(--ink); font-size: 0.9rem; display: block; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-2); border-top: 1px solid var(--line); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 4px; text-align: left;
    font-family: var(--font-head); font-size: 1.2rem; color: var(--ink); font-weight: 600;
    min-height: 44px;
}
.faq-q .tog { color: var(--amber); font-size: 1.5rem; flex-shrink: 0; transition: transform .3s ease; font-family: var(--font-body); }
.faq-item.active .tog { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.active .faq-a { max-height: 320px; }
.faq-a p { padding: 0 4px 20px; color: var(--ink-muted); font-size: 0.96rem; }

/* ============================================================
   FINAL CTA + FOOTER
   ============================================================ */
.final-cta { text-align: center; background: var(--bg); }
.final-cta .container { max-width: 680px; }
.final-cta h2 { font-size: 2.1rem; margin-bottom: 14px; }
.final-cta p { margin-bottom: 26px; }

footer { background: #0a0705; border-top: 1px solid var(--line); padding: 40px 0 44px; text-align: center; }
footer .disclaimer { color: var(--ink-dim); font-size: 0.78rem; max-width: 720px; margin: 0 auto 16px; line-height: 1.7; }
footer .foot-links { color: var(--ink-dim); font-size: 0.8rem; margin-bottom: 14px; }
footer .foot-links a { color: var(--ink-muted); }
footer .copy { color: var(--ink-dim); font-size: 0.78rem; }

/* ============================================================
   MODAL (checkout-soon)
   ============================================================ */
.modal-overlay {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(5, 3, 1, 0.82); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center; padding: 24px;
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
    background: linear-gradient(180deg, var(--bg-card) 0%, #100b06 100%);
    border: 1px solid var(--amber-deep); border-radius: 18px;
    padding: 40px 30px 34px; max-width: 420px; width: 100%; text-align: center;
    box-shadow: 0 0 50px rgba(212,160,23,0.25);
    transform: translateY(16px) scale(0.97); transition: transform .3s ease;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal .seal-big { font-size: 2.4rem; margin-bottom: 14px; }
.modal h3 { font-size: 1.6rem; color: var(--amber-light); margin-bottom: 12px; }
.modal p { color: var(--ink-muted); margin-bottom: 24px; }
.modal .modal-close {
    display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
    padding: 0 28px; border-radius: 999px; cursor: pointer; border: none;
    background: linear-gradient(180deg, var(--amber) 0%, var(--amber-deep) 100%);
    color: #1a1206; font-weight: 700; font-size: 0.95rem; font-family: var(--font-body);
}

/* ============================================================
   PRODUCT PAGE (arsenal / bloodline / dreamcode / bundle)
   ============================================================ */
.product-hero { padding: 44px 0 40px; }
.product-hero .container { max-width: 960px; }
.product-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.product-cover { text-align: center; }
.product-cover img {
    width: 100%; max-width: 300px; border-radius: 8px;
    box-shadow: 0 22px 50px rgba(0,0,0,0.75), 0 0 0 1px rgba(212,160,23,0.15);
}
.product-info .eyebrow { margin-bottom: 10px; }
.product-info h1 { font-size: 2.4rem; margin-bottom: 6px; }
.product-info .p-sub { font-family: var(--font-head); font-style: italic; font-size: 1.3rem; color: var(--ink-muted); margin-bottom: 20px; }
.product-info .p-desc { color: var(--ink-muted); font-size: 1.02rem; margin-bottom: 24px; }
.product-info .price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.inside { background: var(--bg-2); border-top: 1px solid var(--line); }
.inside .container { max-width: 720px; }
.inside-list { list-style: none; }
.inside-list li { position: relative; padding-left: 34px; margin-bottom: 16px; color: var(--ink); font-size: 1.02rem; }
.inside-list li::before {
    content: '✦'; position: absolute; left: 0; top: 2px; color: var(--amber);
    font-size: 1rem;
}
.inside-list li strong { color: var(--amber-light); font-family: var(--font-head); font-weight: 600; }
.back-link { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; color: var(--ink-muted); font-size: 0.86rem; }
.back-link:hover { color: var(--amber); }

/* scroll-reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   LIVE PURCHASE TOAST (bottom-left social proof)
   ============================================================ */
.purchase-toast {
    position: fixed; left: 16px; bottom: 16px; z-index: 90;
    display: flex; align-items: center; gap: 13px;
    max-width: 350px; padding: 13px 18px 13px 13px;
    background: linear-gradient(180deg, #17110a 0%, #100b06 100%);
    border: 1px solid var(--line);
    border-left: 3px solid var(--amber);
    border-radius: 10px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.65), 0 0 22px rgba(212,160,23,0.08);
    cursor: pointer;
    transform: translateX(-115%); opacity: 0;
    transition: transform .5s cubic-bezier(.22,1,.5,1), opacity .5s ease;
}
.purchase-toast.show { transform: none; opacity: 1; }
.purchase-toast img {
    width: 46px; height: 62px; object-fit: cover; border-radius: 4px; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.55), 0 0 0 1px rgba(212,160,23,0.2);
}
.purchase-toast .pt-text { font-size: 15px; color: var(--ink); line-height: 1.45; }
.purchase-toast .pt-text strong { color: var(--amber-light); font-weight: 600; }
.purchase-toast .pt-text em { font-style: normal; color: var(--amber-light); }
.purchase-toast .pt-time { display: block; font-size: 13px; color: var(--ink-dim); margin-top: 3px; }
@media (max-width: 480px) {
    .purchase-toast { max-width: 300px; padding: 10px 14px 10px 10px; gap: 10px; }
    .purchase-toast img { width: 40px; height: 54px; }
}
@media (prefers-reduced-motion: reduce) {
    .purchase-toast { transition: opacity .3s ease; transform: none; }
}

/* ============================================================
   BREAKPOINT: TABLET  ≥ 768px
   ============================================================ */
@media (min-width: 768px) {
    section { padding: 72px 0; }
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    .header nav { display: flex; gap: 26px; }
    .header nav a { color: var(--ink-muted); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px; }
    .header nav a:hover { color: var(--amber); }
    .hero { padding: 130px 0 118px; }
    .hero h1 { font-size: 4rem; }
    .hero .sub { font-size: 1.5rem; }
    .trust-grid { grid-template-columns: repeat(4, 1fr); }
    .cards { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .quotes { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 300px 1fr; gap: 44px; }
    .product-grid { grid-template-columns: 340px 1fr; gap: 48px; }
    .bundle-card { padding: 46px 40px 36px; }
    .fan { width: 300px; height: 220px; }
    .fan img, .product-cover .fan img { width: 140px; }
    .fan img:nth-child(1) { transform: rotate(-14deg) translateX(-74px); }
    .fan img:nth-child(3) { transform: rotate(14deg) translateX(74px); }
}

/* ============================================================
   BREAKPOINT: DESKTOP  ≥ 1100px
   ============================================================ */
@media (min-width: 1100px) {
    .hero { padding: 150px 0 138px; }
    .hero h1 { font-size: 4.5rem; }
    .hero .container { max-width: 880px; }
    .book-card { padding: 30px 26px 32px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .flicker-glow { animation: none; }
    .bundle-card::after { animation: none; background: none; }
    .reveal { transition: none; opacity: 1; transform: none; }
    * { scroll-behavior: auto; }
}
