/* ============================================
   O SISTEMA DO DINHEIRO — Premium Sales Page
   ============================================ */

/* ---- Fonts & Reset ---- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --gold-1: #F2D780;
    --gold-2: #D4AF37;
    --gold-3: #B8860B;
    --red-accent: #FF3B6A;
    --bg-deep: #030308;
    --bg-dark: #07070F;
    --bg-card: rgba(255,255,255,0.025);
    --bg-card-hover: rgba(255,255,255,0.05);
    --border: rgba(255,255,255,0.07);
    --border-gold: rgba(242,215,128,0.25);
    --text: #E8E8F0;
    --text-muted: #8888A8;
    --font: 'Outfit', sans-serif;
    --font-alt: 'Space Grotesk', sans-serif;
    --radius: 20px;
    --radius-sm: 12px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg-deep);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---- Particle Canvas ---- */
#particleCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ---- Background Grid ---- */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(242,215,128,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242,215,128,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ---- Orbs ---- */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 20s ease-in-out infinite alternate;
}

.orb-1 {
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 70%);
    top: -20%; left: -15%;
    animation-duration: 18s;
}

.orb-2 {
    width: 40vw; height: 40vw;
    background: radial-gradient(circle, rgba(242,215,128,0.12), transparent 70%);
    bottom: -15%; right: -10%;
    animation-duration: 22s;
    animation-delay: -6s;
}

.orb-3 {
    width: 30vw; height: 30vw;
    background: radial-gradient(circle, rgba(255,59,106,0.08), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 26s;
    animation-delay: -12s;
}

@keyframes orbFloat {
    0%   { transform: translate(0,0) scale(1); }
    33%  { transform: translate(5%, 8%) scale(1.08); }
    66%  { transform: translate(-4%, 4%) scale(0.95); }
    100% { transform: translate(3%, -6%) scale(1.05); }
}

/* ---- Container ---- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

/* ---- Typography Utilities ---- */
.gold-gradient {
    background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 50%, var(--gold-3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.red-text { color: var(--red-accent); }

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-2);
    border: 1px solid var(--border-gold);
    background: rgba(212,175,55,0.08);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 3rem;
    text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    overflow: hidden;
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Text */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pulse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold-2);
    animation: pulseDot 1.8s ease-in-out infinite;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.7); opacity: 1; }
    50%       { box-shadow: 0 0 0 8px rgba(212,175,55,0); opacity: 0.6; }
}

.badge-text {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-2);
}

.hero-title {
    display: flex;
    flex-direction: column;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -2px;
}

.line-1, .line-2 { display: block; }

.line-1 { animation: slideInLeft 0.9s var(--transition) both; }
.line-2 { animation: slideInLeft 0.9s var(--transition) 0.15s both; }

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.7;
    animation: fadeUp 0.8s var(--transition) 0.3s both;
}

.hero-sub em {
    font-style: normal;
    color: var(--gold-1);
    font-weight: 500;
}

/* Hook Box */
.hook-box {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 0;
}

.hook-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold));
}

.hook-line:last-child {
    background: linear-gradient(90deg, var(--border-gold), transparent);
}

.hook-text {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    color: var(--text-muted);
    line-height: 1.5;
}

.hook-text strong { color: var(--gold-1); font-weight: 700; }

/* CTA Buttons */
.hero-ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(90deg, var(--gold-1), var(--gold-2), var(--gold-3));
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: #0a0700;
    box-shadow: 0 0 30px rgba(212,175,55,0.35), 0 4px 20px rgba(0,0,0,0.4);
    transition: all var(--transition);
    animation: btnPulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%) skewX(-20deg);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before {
    transform: translateX(200%) skewX(-20deg);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 50px rgba(242,215,128,0.5), 0 8px 30px rgba(0,0,0,0.5);
    background-position: 100% 50%;
}

.btn-arrow { transition: transform 0.3s ease; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(212,175,55,0.35), 0 4px 20px rgba(0,0,0,0.4); }
    50%       { box-shadow: 0 0 50px rgba(242,215,128,0.55), 0 4px 20px rgba(0,0,0,0.4); }
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
}

.btn-ghost {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.8rem 1rem;
    transition: color 0.3s ease;
}

.btn-ghost:hover { color: var(--gold-1); }

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.stat-divider {
    width: 1px; height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 420px;
}

.book-glow {
    position: absolute;
    width: 70%; height: 70%;
    background: radial-gradient(circle, rgba(212,175,55,0.35), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite alternate;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

@keyframes glowPulse {
    from { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    to   { opacity: 1;   transform: translate(-50%, -50%) scale(1.1); }
}

/* Rings */
.book-rings { position: absolute; inset: -40px; z-index: 1; pointer-events: none; }

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.1);
    top: 50%; left: 50%;
}

.ring-1 {
    width: 110%; height: 110%;
    transform: translate(-50%, -50%);
    animation: ringRotate 20s linear infinite;
}
.ring-2 {
    width: 130%; height: 130%;
    transform: translate(-50%, -50%);
    border-style: dashed;
    border-color: rgba(242,215,128,0.07);
    animation: ringRotate 30s linear infinite reverse;
}
.ring-3 {
    width: 150%; height: 150%;
    transform: translate(-50%, -50%);
    animation: ringRotate 40s linear infinite;
    border-color: rgba(212,175,55,0.04);
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Book */
.book-wrap {
    position: relative;
    z-index: 2;
}

/* Book Label Wrap */
.book-label-wrap {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: bookFloat 5s ease-in-out infinite;
}

.book-label-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--gold-1), var(--gold-2), var(--gold-3));
    color: #0a0700;
    box-shadow:
        0 0 20px rgba(212,175,55,0.5),
        0 0 40px rgba(212,175,55,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
    animation: labelGlow 2.5s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

.book-label-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.25) 0%, transparent 50%);
    border-radius: 50px;
}

@keyframes labelGlow {
    from { box-shadow: 0 0 16px rgba(212,175,55,0.45), 0 0 32px rgba(212,175,55,0.15); }
    to   { box-shadow: 0 0 28px rgba(242,215,128,0.7), 0 0 55px rgba(212,175,55,0.3); }
}

.book-img {
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: 0;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.8)) drop-shadow(0 0 30px rgba(212,175,55,0.25));
    display: block;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.book-img:hover {
    transform: scale(1.04) rotate(1deg);
    filter: drop-shadow(0 40px 65px rgba(0,0,0,0.85)) drop-shadow(0 0 50px rgba(242,215,128,0.4));
}

.book-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
    border-radius: 14px;
    pointer-events: none;
}

@keyframes bookFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-18px); }
}

/* Floating Chips */
.floating-chips { position: absolute; inset: 0; z-index: 6; pointer-events: none; }

.chip {
    position: absolute;
    background: rgba(10,8,5,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    color: var(--gold-1);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.chip-1 { top: 10%;  left: -8%;  animation: chipFloat 4s ease-in-out infinite; }
.chip-2 { top: 25%;  right: -5%; animation: chipFloat 4.5s ease-in-out infinite 0.5s; }
.chip-3 { bottom: 30%; left: -10%; animation: chipFloat 5s ease-in-out infinite 1s; }
.chip-4 { bottom: 15%; right: -3%; animation: chipFloat 3.8s ease-in-out infinite 1.5s; }

@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 2s ease 2s both;
}

.scroll-arrow {
    width: 24px; height: 24px;
    border-right: 2px solid var(--gold-2);
    border-bottom: 2px solid var(--gold-2);
    transform: rotate(45deg);
    animation: scrollBounce 1.5s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
    50%       { transform: rotate(45deg) translateY(6px); opacity: 0.9; }
}

/* ---- TICKER ---- */
.ticker-wrap {
    position: relative;
    z-index: 10;
    overflow: hidden;
    padding: 1rem 0;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.05), transparent);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ticker-track {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    animation: tickerScroll 35s linear infinite;
    width: max-content;
}

.ticker-track span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}

.ticker-track .dot {
    color: var(--gold-2);
    font-size: 0.5rem;
    letter-spacing: 0;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS SHARED
   ============================================ */
.section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

/* ---- Reveal Animations ---- */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

[data-reveal="up"]    { transform: translateY(50px); }
[data-reveal="left"]  { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }

[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: none; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section { background: none; }

.questions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.q-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: all var(--transition);
    cursor: default;
}

.q-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212,175,55,0.08);
}

.q-card-highlight {
    grid-column: span 1;
    border-color: var(--border-gold);
    background: rgba(212,175,55,0.05);
}

.q-card-highlight:hover {
    background: rgba(212,175,55,0.08);
    border-color: rgba(242,215,128,0.4);
}

.q-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.q-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.q-card p strong { color: var(--text); }

/* ============================================
   TRUTH SECTION
   ============================================ */
.truth-section {
    padding: 5rem 0;
}

.truth-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.truth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}

.truth-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red-accent);
    border: 1px solid rgba(255,59,106,0.3);
    background: rgba(255,59,106,0.06);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.truth-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.truth-pillars {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
}

.pillar-no {
    background: rgba(255,59,106,0.07);
    border: 1px solid rgba(255,59,106,0.15);
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(255,59,106,0.4);
}

.pillar-yes {
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.25);
    color: var(--gold-1);
    font-weight: 700;
}

.pillar-x { color: var(--red-accent); font-weight: 900; }
.pillar-check { color: var(--gold-2); font-weight: 900; }

.truth-body {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

.truth-body em { font-style: normal; color: var(--text); }

/* ============================================
   LEARN SECTION
   ============================================ */
.learn-section {
    background: none;
}

.learn-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.learn-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
    background: var(--bg-card);
    cursor: default;
}

.learn-item:last-child { border-bottom: none; }

.learn-item:hover {
    background: var(--bg-card-hover);
    padding-left: 2.5rem;
}

.learn-num {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-2);
    opacity: 0.6;
    min-width: 28px;
    font-family: var(--font-alt);
}

.learn-content { flex: 1; }

.learn-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.learn-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.learn-check {
    color: var(--gold-2);
    font-size: 1rem;
    font-weight: 800;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.learn-item:hover .learn-check {
    opacity: 1;
    transform: scale(1.2);
}

/* ============================================
   ANTI-PROMISE SECTION
   ============================================ */
.anti-section { padding: 5rem 0; }

.anti-card {
    background: rgba(10,5,5,0.7);
    border: 1px solid rgba(255,59,106,0.15);
    border-top: 2px solid var(--red-accent);
    border-radius: var(--radius);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.anti-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255,59,106,0.05), transparent 60%);
    pointer-events: none;
}

.anti-warning {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red-accent);
    border: 1px solid rgba(255,59,106,0.3);
    background: rgba(255,59,106,0.08);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.anti-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.anti-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 480px;
    margin: 0 auto 2rem;
}

.anti-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.x-mark {
    color: var(--red-accent);
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.anti-divider {
    width: 80px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
    margin: 2rem auto;
}

.anti-body {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.anti-body strong { color: var(--gold-1); }

/* ============================================
   AUDIENCE SECTION
   ============================================ */
.audience-section { padding: 5rem 0; }

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.audience-col {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: all var(--transition);
}

.audience-col:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
}

.audience-col h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.toc-list, .for-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.toc-list li, .for-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.toc-list li:last-child, .for-list li:last-child { border-bottom: none; }

.toc-list li:hover, .for-list li:hover {
    color: var(--text);
    padding-left: 0.5rem;
}

.toc-icon { flex-shrink: 0; }

.for-check { flex-shrink: 0; }

.for-list li strong { color: var(--gold-1); }

/* ============================================
   VALUE SECTION
   ============================================ */
.value-section {
    text-align: center;
    padding: 5rem 0;
}

.value-inner { max-width: 700px; margin: 0 auto; }

.value-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.loss-cards {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.loss-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: var(--bg-card);
    transition: all 0.3s ease;
}

.loss-item:hover { border-color: rgba(255,59,106,0.3); color: var(--text); }
.loss-icon { font-size: 1rem; }

.value-but {
    margin-bottom: 2rem;
}

.value-but p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.value-but p strong { color: var(--text); }

.value-knowledge {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -1px;
}

.value-body {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: var(--text-muted);
    line-height: 1.8;
}

.value-body strong { color: var(--gold-1); }

/* ============================================
   CHECKOUT SECTION
   ============================================ */
.checkout-section { padding: 5rem 0; }

.checkout-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 4rem;
    text-align: center;
}

.checkout-glow {
    position: absolute;
    width: 60%; height: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.12), transparent 70%);
    top: -20%; left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.checkout-content { position: relative; z-index: 2; }

.checkout-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-2);
    border: 1px solid var(--border-gold);
    background: rgba(212,175,55,0.08);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.checkout-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.checkout-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.checkout-sub strong { color: var(--text); }

.checkout-book-mini {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.2rem 1.5rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    text-align: left;
}

.mini-book-img {
    width: 60px; height: auto;
    border-radius: 6px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.book-title-sm {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.book-desc-sm {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.guarantee-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.2rem 1.5rem;
    margin: 1.5rem auto 1.5rem;
    max-width: 500px;
    text-align: left;
}

.guarantee-icon { font-size: 2rem; flex-shrink: 0; }

.guarantee-text strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.guarantee-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.checkout-seals {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.seal {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 50px;
}

/* ============================================
   DECISION SECTION
   ============================================ */
.decision-section { padding: 5rem 0; text-align: center; }

.decision-intro {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1rem;
}

.decision-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.decision-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.dec-card {
    flex: 1;
    min-width: 240px;
    max-width: 380px;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: left;
    transition: all var(--transition);
}

.dec-card:hover { transform: translateY(-8px); }

.dec-no {
    background: rgba(255,59,106,0.05);
    border-left: 3px solid var(--red-accent);
}

.dec-no:hover { box-shadow: 0 16px 40px rgba(255,59,106,0.15); }

.dec-yes {
    background: rgba(212,175,55,0.07);
    border-left: 3px solid var(--gold-2);
}

.dec-yes:hover { box-shadow: 0 16px 40px rgba(212,175,55,0.15); }

.dec-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.dec-icon { font-size: 1.4rem; }

.dec-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
}

.dec-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.dec-yes p strong { color: var(--gold-1); }

.dec-vs {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-muted);
    opacity: 0.4;
    flex-shrink: 0;
}

.decision-call {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    line-height: 1;
}

.decision-cta { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(136,136,168,0.5);
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text {
        align-items: center;
        order: 2;
    }

    .hero-visual { order: 1; }

    .badge-wrap { justify-content: center; }

    .hero-ctas { justify-content: center; }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hook-box { flex-direction: column; gap: 0.5rem; }
    .hook-line { width: 100px; height: 1px; }

    .hook-text { white-space: normal; }

    .chip-1, .chip-3 { left: -4%; }
    .chip-2, .chip-4 { right: -1%; }

    .questions-grid { grid-template-columns: 1fr; }
    .q-card-highlight { grid-column: span 1; }

    .truth-pillars { flex-direction: column; align-items: center; }

    .audience-grid { grid-template-columns: 1fr; }

    .loss-cards { flex-direction: column; align-items: center; }

    .decision-cards { flex-direction: column; align-items: stretch; }
    .dec-vs { align-self: center; }
    .dec-card { max-width: 100%; }

    .checkout-book-mini { flex-direction: column; text-align: center; }

    .truth-card,
    .anti-card,
    .checkout-card { padding: 2.5rem 1.5rem; }

    .learn-item { padding: 1.2rem 1.5rem; }
    .learn-item:hover { padding-left: 1.8rem; }

    .section { padding: 4rem 0; }

    .btn-primary { font-size: 0.85rem; padding: 0.9rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }

    .chip { display: none; }

    .hero-stats { gap: 1rem; }
    .stat-number { font-size: 1.8rem; }

    .book-img { max-width: 220px; }

    .section-title { font-size: 1.6rem; }

    .truth-card,
    .anti-card { padding: 2rem 1rem; }

    .audience-col { padding: 1.5rem; }

    .checkout-seals { flex-direction: column; align-items: center; }
}

/* ============================================================
   ICON HOVER ANIMATIONS
   ============================================================ */

/* --- Keyframes Library --- */
@keyframes iconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    30%       { transform: translateY(-10px) scale(1.2); }
    60%       { transform: translateY(-4px) scale(1.08); }
}

@keyframes iconSpin {
    0%   { transform: rotate(0deg) scale(1); }
    40%  { transform: rotate(20deg) scale(1.25); }
    70%  { transform: rotate(-10deg) scale(1.15); }
    100% { transform: rotate(0deg) scale(1); }
}

@keyframes iconPop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.4); }
    70%  { transform: scale(0.88); }
    100% { transform: scale(1); }
}

@keyframes iconShake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    20%       { transform: translateX(-5px) rotate(-8deg); }
    40%       { transform: translateX(5px) rotate(8deg); }
    60%       { transform: translateX(-3px) rotate(-4deg); }
    80%       { transform: translateX(3px) rotate(4deg); }
}

@keyframes iconWiggle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25%       { transform: rotate(-14deg) scale(1.1); }
    50%       { transform: rotate(14deg) scale(1.18); }
    75%       { transform: rotate(-7deg) scale(1.08); }
}

@keyframes iconFlip {
    0%   { transform: perspective(300px) rotateY(0deg) scale(1); }
    50%  { transform: perspective(300px) rotateY(180deg) scale(1.15); }
    100% { transform: perspective(300px) rotateY(360deg) scale(1); }
}

@keyframes iconPulseGlow {
    0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 0px rgba(212,175,55,0)); }
    50%       { transform: scale(1.3); filter: drop-shadow(0 0 12px rgba(212,175,55,1)); }
}

@keyframes iconRubber {
    0%   { transform: scaleX(1)    scaleY(1); }
    30%  { transform: scaleX(1.35) scaleY(0.65); }
    50%  { transform: scaleX(0.82) scaleY(1.3); }
    70%  { transform: scaleX(1.12) scaleY(0.88); }
    100% { transform: scaleX(1)    scaleY(1); }
}

@keyframes iconSwing {
    0%, 100% { transform: rotate(0deg);   transform-origin: top center; }
    20%       { transform: rotate(16deg); transform-origin: top center; }
    40%       { transform: rotate(-12deg); transform-origin: top center; }
    60%       { transform: rotate(8deg);  transform-origin: top center; }
    80%       { transform: rotate(-4deg); transform-origin: top center; }
}

/* --- Question Card Icons (.q-icon) --- */
.q-icon {
    display: inline-block;
    transition: transform 0.1s ease;
}

.q-card:nth-child(1):hover .q-icon { animation: iconBounce    0.6s ease forwards; }
.q-card:nth-child(2):hover .q-icon { animation: iconSpin      0.65s ease forwards; }
.q-card:nth-child(3):hover .q-icon { animation: iconPop       0.5s ease forwards; }
.q-card:nth-child(4):hover .q-icon { animation: iconShake     0.6s ease forwards; }
.q-card:nth-child(5):hover .q-icon { animation: iconFlip      0.7s ease forwards; }
.q-card:nth-child(6):hover .q-icon { animation: iconPulseGlow 0.65s ease forwards; }

/* --- Learn Items — number badge pop --- */
.learn-num { display: inline-block; }
.learn-item:hover .learn-num {
    animation: iconPop 0.45s ease forwards;
    color: var(--gold-1);
    opacity: 1;
}

/* checkmark wiggle on hover */
.learn-check { display: inline-block; }
.learn-item:hover .learn-check { animation: iconSpin 0.5s ease forwards; }

/* --- TOC List icons --- */
.toc-icon { display: inline-block; }
.toc-list li:hover .toc-icon { animation: iconBounce 0.55s ease forwards; }

/* --- For-list check icons --- */
.for-check { display: inline-block; }
.for-list li:hover .for-check { animation: iconPop 0.45s ease forwards; }

/* --- Anti Section X marks --- */
.x-mark { display: inline-block; }
.anti-item:hover .x-mark { animation: iconShake 0.55s ease forwards; }

/* --- Truth Pillars --- */
.pillar-x    { display: inline-block; }
.pillar-check { display: inline-block; }
.pillar:hover .pillar-x     { animation: iconShake  0.5s ease forwards; }
.pillar:hover .pillar-check { animation: iconBounce 0.5s ease forwards; }

/* --- Loss Cards icons --- */
.loss-icon { display: inline-block; }
.loss-item:hover .loss-icon { animation: iconRubber 0.55s ease forwards; }

/* --- Decision Card icons --- */
.dec-icon { display: inline-block; }
.dec-no:hover  .dec-icon { animation: iconShake  0.55s ease forwards; }
.dec-yes:hover .dec-icon { animation: iconBounce 0.55s ease forwards; }

/* --- Guarantee icon --- */
.guarantee-icon { display: inline-block; }
.guarantee-row:hover .guarantee-icon { animation: iconSwing 0.7s ease forwards; }

/* --- Seal badges --- */
.seal {
    display: inline-block;
    transition: border-color 0.25s ease, color 0.25s ease;
}
.seal:hover {
    animation: iconPop 0.4s ease forwards;
    border-color: var(--border-gold);
    color: var(--gold-1);
}

/* --- Floating chips pulse on hover --- */
.chip { transition: background 0.25s ease, box-shadow 0.25s ease; }
.chip:hover {
    animation: iconPop 0.4s ease forwards;
    background: rgba(212,175,55,0.18);
    box-shadow: 0 0 20px rgba(212,175,55,0.45);
}

/* --- Book label badge wiggle --- */
.book-label-badge { display: inline-flex; cursor: default; }
.book-label-badge:hover { animation: iconWiggle 0.6s ease forwards; }

/* --- Scroll hint arrow --- */
.scroll-hint:hover .scroll-arrow {
    animation: iconBounce 0.5s ease infinite;
    border-color: var(--gold-1);
    opacity: 1;
}

/* --- CTA button icon wiggle --- */
.btn-icon { display: inline-block; }
.btn-primary:hover .btn-icon { animation: iconWiggle 0.5s ease forwards; }
