/* ═══════════════════════════════════════════
   TOKENS & DESIGN SYSTEM
═══════════════════════════════════════════ */
:root {
    --black:      #050505;
    --dark:       #111111;
    --dark-card:  #181818;
    --amber:      #E8A020;
    --amber-light:#ffc155;
    --amber-bg:   #1A1200;
    --coral:      #C45C2E;
    --coral-glow: rgba(196, 92, 46, 0.4);
    --amber-glow: rgba(232, 160, 32, 0.4);
    --danger:     #ff4444;
    --success:    #4ade80;
    --cream:      #F7F6F3;
    --white:      #FFFFFF;
    --gray-light: #CCCCCC;
    --gray-mid:   #888888;
    
    --glass-bg:   rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    --ff-display: 'Poppins', sans-serif;
    --ff-body:    'Lora', serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ═══════════════════════════════════════════
   RESET & GLOBAL
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background-color: var(--black); color: var(--cream); font-family: var(--ff-body); line-height: 1.6; overflow-x: hidden; position: relative; }

h1, h2, h3, h4, .eyebrow { font-family: var(--ff-display); color: var(--white); }
.text-gradient { background: linear-gradient(135deg, var(--amber) 0%, var(--coral) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent; display: inline-block; }
.text-center { text-align: center; } .mb-4 { margin-bottom: 2rem; } .mt-2 { margin-top: 1rem; } .mt-4 { margin-top: 2rem; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 10; }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes float { 0% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(5deg); } 100% { transform: translateY(0) rotate(0deg); } }
@keyframes pulse-glow { 0% { box-shadow: 0 0 10px var(--amber-glow); } 50% { box-shadow: 0 0 40px var(--amber-glow), 0 0 20px var(--amber); } 100% { box-shadow: 0 0 10px var(--amber-glow); } }
@keyframes shine { 0% { left: -100%; } 20% { left: 100%; } 100% { left: 100%; } }
@keyframes pulse-dot { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 160, 32, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(232, 160, 32, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 160, 32, 0); } }

.pulse-dot { display: inline-block; width: 10px; height: 10px; background: var(--amber); border-radius: 50%; margin-right: 8px; animation: pulse-dot 2s infinite; }
.bg-shape { position: absolute; border-radius: 50%; filter: blur(100px); z-index: 0; pointer-events: none; opacity: 0.4; animation: float 10s infinite ease-in-out; }
.shape-1 { width: 400px; height: 400px; background: var(--amber-glow); top: -100px; right: -100px; }
.shape-2 { width: 500px; height: 500px; background: var(--coral-glow); top: 30%; left: -200px; animation-delay: -5s; }
.shape-3 { width: 600px; height: 600px; background: rgba(232, 160, 32, 0.2); bottom: -200px; right: -150px; animation-delay: -2s; }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.fade-in-up { animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-left { animation: fadeInLeft 1s cubic-bezier(0.25, 1, 0.5, 1) forwards; animation-delay: 0.3s; opacity: 0; }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* ═══════════════════════════════════════════
   BUTTONS & CTA
═══════════════════════════════════════════ */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(135deg, var(--amber) 0%, var(--coral) 100%); color: var(--black); font-family: var(--ff-display); font-weight: 900; text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); border: none; cursor: pointer; border-radius: 50px; position: relative; overflow: hidden; box-shadow: 0 4px 15px rgba(232, 160, 32, 0.2); white-space: nowrap; }
.sweep-effect::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber) 100%); z-index: 0; opacity: 0; transition: var(--transition); }
.sweep-effect:hover::before { opacity: 1; }
.sweep-text, .arrow-icon { position: relative; z-index: 1; }
.arrow-icon { width: 24px; height: 24px; flex-shrink: 0; transition: transform 0.3s; }
.sweep-effect:hover .arrow-icon { transform: translateX(8px); }

.btn-hero { font-size: 1.05rem; padding: 18px 36px; box-shadow: 0 10px 30px rgba(232, 160, 32, 0.3); } .btn-sm { font-size: 0.95rem; padding: 12px 24px; border-radius: 50px; } .btn-giant { font-size: 1.3rem; padding: 24px 50px; width: 100%; max-width: 550px; border-radius: 50px; }
.btn-secondary { display: inline-block; padding: 16px 36px; border: 2px solid var(--amber); color: var(--amber); font-family: var(--ff-display); font-weight: 800; border-radius: 12px; text-decoration: none; text-transform: uppercase; transition: var(--transition); background: rgba(232, 160, 32, 0.05); }
.btn-secondary:hover { background: var(--amber); color: var(--black); }

.pulse-glow { animation: pulse-glow 2.5s infinite; }
.shine { position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%); transform: skewX(-20deg); animation: shine 4s infinite; }

.sticky-cta { position: fixed; bottom: -100px; left: 0; width: 100%; background: rgba(10, 10, 10, 0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--amber); padding: 15px 0; z-index: 100; transition: bottom 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.sticky-cta.visible { bottom: 0; }
.sticky-content { display: flex; justify-content: space-between; align-items: center; }
.sticky-text { font-family: var(--ff-display); font-weight: 600; color: var(--amber-light); font-size: 1.1rem; }

/* ═══════════════════════════════════════════
   GLASSMORPHISM CARDS
═══════════════════════════════════════════ */
.glass-card { background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--glass-border); border-radius: 16px; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); }

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero { position: relative; padding: 120px 0 80px; min-height: 100vh; display: flex; align-items: center; }
.hero-content { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
.eyebrow { font-size: 16px; font-weight: 700; color: var(--amber); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; }
.hero h1 { font-size: 4.2rem; line-height: 1.05; font-weight: 900; margin-bottom: 24px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hero .subtitle { font-size: 1.35rem; color: var(--gray-light); margin-bottom: 40px; max-width: 580px; line-height: 1.6; }
.secure-checkout { font-family: var(--ff-display); font-size: 0.95rem; color: var(--gray-mid); display: flex; align-items: center; gap: 8px; font-weight: 500; }

.mockup-container { perspective: 1500px; display: flex; justify-content: center; align-items: center; padding: 40px; }
.book-mockup { width: 300px; height: 420px; position: relative; transform-style: preserve-3d; transform: rotateY(-20deg) rotateX(10deg); transition: transform 0.1s ease-out; }
.book-mockup.floating-anim { animation: float 6s ease-in-out infinite; }
.book-cover { position: absolute; width: 100%; height: 100%; transform-origin: left; transform-style: preserve-3d; z-index: 2; border-radius: 4px 15px 15px 4px; box-shadow: 5px 5px 30px rgba(0,0,0,0.9); }
.cover-design { width: 100%; height: 100%; background: linear-gradient(135deg, #111 0%, #000 100%); border-radius: 4px 15px 15px 4px; border-left: 8px solid var(--amber); padding: 40px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; overflow: hidden; }
.cover-design::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 20%); }
.author-name { font-family: var(--ff-display); font-size: 12px; color: var(--gray-mid); letter-spacing: 0.3em; margin-bottom: 30px; z-index: 2; }
.book-title { font-family: var(--ff-display); font-size: 36px; font-weight: 900; color: var(--white); line-height: 1.1; text-transform: uppercase; z-index: 2; }
.accent-color { color: var(--amber); }
.book-spine { position: absolute; width: 40px; height: 100%; background: var(--amber); transform: rotateY(-90deg) translateX(-20px) translateZ(20px); }
.book-pages { position: absolute; width: 38px; height: 98%; top: 1%; right: -38px; background: repeating-linear-gradient(to right, #ccc 0px, #fff 2px, #ccc 4px); transform: rotateY(90deg) translateZ(19px); }

/* Target Display (Hero) */
.target-display { padding: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-bottom: 4px solid var(--amber); width: 100%; max-width: 420px; margin: 0 auto; transform-style: preserve-3d; background: linear-gradient(180deg, rgba(24,24,24,0.9) 0%, rgba(10,10,10,0.95) 100%); border-radius: 20px; border: 1px solid rgba(255,255,255,0.02); }
.target-title { margin-bottom: 30px; display: flex; flex-direction: column; align-items: center; transform: translateZ(30px); }
.target-title .author-name { font-family: var(--ff-display); font-size: 14px; color: var(--amber); letter-spacing: 0.3em; margin-bottom: 8px; font-weight: 700; }
.target-title .book-title { font-family: var(--ff-display); font-size: 46px; font-weight: 900; color: var(--white); line-height: 1.05; text-transform: uppercase; text-shadow: 0 10px 20px rgba(0,0,0,0.8); }
.target-svg-wrapper { width: 180px; height: 180px; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5)); animation: pulse-glow 3s infinite; border-radius: 50%; transform: translateZ(50px); cursor: crosshair; }

@keyframes shoot-arrow {
    0% { transform: translateY(0); }
    20% { transform: translateY(-200px); }
    50% { transform: translateY(-200px); }
    100% { transform: translateY(0); }
}

.target-display:hover .animated-arrow {
    animation: shoot-arrow 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ═══════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════ */
.problem-section { padding: 120px 0; position: relative; }
.section-title { font-size: 3rem; text-align: center; margin-bottom: 80px; font-weight: 900; line-height: 1.2; text-transform: uppercase; }
.section-title.text-left { text-align: left; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.problem-card { padding: 40px; transition: var(--transition); border-top: 3px solid rgba(255,255,255,0.05); }
.problem-card:hover { transform: translateY(-10px) scale(1.02); border-color: var(--danger); box-shadow: 0 10px 40px rgba(255, 68, 68, 0.1); }
.alert-icon { color: var(--danger); }
.icon-wrapper { font-size: 3rem; margin-bottom: 24px; background: rgba(255,255,255,0.05); width: 80px; height: 80px; border-radius: 20px; display: flex; align-items: center; justify-content: center; }
.problem-card h3 { font-size: 1.6rem; margin-bottom: 16px; color: var(--white); font-weight: 800; }
.problem-card p { color: var(--gray-light); font-size: 1.1rem; line-height: 1.7; }
.urgent-text p { font-size: 1.3rem; color: var(--gray-light); max-width: 800px; margin: 0 auto; padding: 20px; border: 1px solid var(--danger); border-radius: 12px; background: rgba(255,68,68,0.05); }
.urgent-text strong { color: var(--white); }

/* ═══════════════════════════════════════════
   TARGET AUDIENCE (FOR / NOT FOR)
═══════════════════════════════════════════ */
.target-audience { padding: 100px 0; background: var(--dark-card); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.audience-card { padding: 50px 40px; border-top: 4px solid transparent; }
.card-for { border-top-color: var(--success); }
.card-not-for { border-top-color: var(--danger); }
.audience-header { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.audience-header svg { width: 40px; height: 40px; flex-shrink: 0; }
.text-green svg { color: var(--success); }
.text-red svg { color: var(--danger); }
.audience-header h3 { font-size: 1.6rem; font-weight: 800; line-height: 1.2; }
.audience-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.audience-list li { position: relative; padding-left: 30px; font-size: 1.15rem; color: var(--cream); line-height: 1.5; }
.audience-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; }
.card-for .audience-list li::before { background: var(--success); }
.card-not-for .audience-list li::before { background: var(--danger); }
.audience-list strong { color: var(--white); }

/* ═══════════════════════════════════════════
   SOLUTION SECTION
═══════════════════════════════════════════ */
.solution-section { padding: 120px 0; }
.solution-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.solution-text .lead { font-size: 1.25rem; color: var(--gray-light); margin-bottom: 40px; }
.benefits-list { list-style: none; }
.benefit-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 24px; }
.check-icon { background: var(--amber); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 4px; box-shadow: 0 0 20px rgba(232, 160, 32, 0.6); }
.check-icon svg { width: 20px; height: 20px; color: var(--black); }
.benefit-text { font-size: 1.15rem; color: var(--cream); }
.benefit-text strong { color: var(--amber); font-family: var(--ff-display); font-weight: 800; }
.pull-quote { padding: 50px 40px; position: relative; border-top: 4px solid var(--amber); }
.glow-effect { box-shadow: 0 0 50px rgba(232, 160, 32, 0.05); }
.quote-icon { font-family: var(--ff-display); font-size: 120px; font-weight: 900; color: var(--amber); position: absolute; top: -20px; left: 20px; line-height: 1; opacity: 0.2; }
.pull-quote p { font-size: 1.6rem; font-style: italic; color: var(--white); position: relative; z-index: 2; font-weight: 500; }

/* ═══════════════════════════════════════════
   ROADMAP SECTION (TRANSFORMATION FLOW)
═══════════════════════════════════════════ */
.roadmap-section { padding: 120px 0; background: var(--dark); border-top: 1px solid rgba(255,255,255,0.02); }
.roadmap-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; margin-top: 40px; }
.roadmap-line { position: absolute; top: 35px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, rgba(232,160,32,0.1) 0%, var(--amber) 50%, rgba(196,92,46,0.1) 100%); z-index: 0; }
.roadmap-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-dot { width: 70px; height: 70px; border-radius: 50%; background: var(--black); border: 3px solid var(--amber); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-size: 1.8rem; font-weight: 900; color: var(--amber); margin-bottom: 30px; box-shadow: 0 0 20px rgba(232, 160, 32, 0.4); }
.roadmap-step .step-content { padding: 30px 20px; width: 100%; height: 100%; border-top: 4px solid transparent; transition: var(--transition); background: var(--dark-card); }
.roadmap-step:nth-child(2) .step-content { border-top-color: var(--amber); }
.roadmap-step:nth-child(3) .step-content { border-top-color: var(--coral); }
.roadmap-step:nth-child(4) .step-content { border-top-color: var(--danger); }
.roadmap-step:nth-child(5) .step-content { border-top-color: var(--success); }
.roadmap-step .step-content:hover { transform: translateY(-10px); border-color: var(--white); }
.roadmap-step h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--white); font-weight: 800; text-transform: uppercase; }
.roadmap-step p { color: var(--gray-light); font-size: 1.05rem; }

/* ═══════════════════════════════════════════
   MODULES & FORMAT SECTION
═══════════════════════════════════════════ */
.modules-section { padding: 120px 0; background: linear-gradient(180deg, var(--black) 0%, var(--dark-card) 100%); }

.format-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 80px; text-align: center; }
.format-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 30px 20px; border-radius: 16px; transition: var(--transition); }
.format-item:hover { transform: translateY(-5px); border-color: rgba(232,160,32,0.3); }
.format-icon { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.format-item h4 { font-size: 1.3rem; margin-bottom: 10px; color: var(--white); }
.format-item p { color: var(--gray-light); font-size: 1rem; }

.modules-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; }
.mockup-display { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; perspective: 1000px; }
.inner-mockup-stack { position: relative; width: 60%; height: 70%; transform: rotateX(20deg) rotateZ(-15deg); transform-style: preserve-3d; transition: var(--transition); }
.mockup-display:hover .inner-mockup-stack { transform: rotateX(10deg) rotateZ(-5deg) translateZ(30px); }
.page-layer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #222; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 10px 10px 30px rgba(0,0,0,0.8); }
.layer-3 { transform: translateZ(-40px) translate(20px, 20px); opacity: 0.4; }
.layer-2 { transform: translateZ(-20px) translate(10px, 10px); opacity: 0.7; }
.layer-1 { background: linear-gradient(135deg, var(--dark-card), #111); padding: 30px; display: flex; flex-direction: column; justify-content: center; transform: translateZ(0); border-left: 4px solid var(--amber); }
.page-header { font-family: var(--ff-display); font-size: 10px; color: var(--amber); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.page-title { font-family: var(--ff-display); font-size: 24px; font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.page-lines { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-bottom: 10px; width: 100%; }
.w-70 { width: 70%; } .w-90 { width: 90%; }
.modules-list { display: flex; flex-direction: column; gap: 24px; }
.module-card { display: flex; gap: 24px; background: rgba(255,255,255,0.02); padding: 30px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); transition: var(--transition); }
.module-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(232, 160, 32, 0.3); transform: translateX(10px); }
.module-number { font-family: var(--ff-display); font-size: 3rem; font-weight: 900; color: rgba(232, 160, 32, 0.2); line-height: 1; -webkit-text-stroke: 1px var(--amber); }
.module-card h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--white); font-weight: 700; }
.module-card p { color: var(--gray-light); font-size: 1.05rem; }

/* ═══════════════════════════════════════════
   AUTHOR SECTION
═══════════════════════════════════════════ */
.author-section { padding: 120px 0; }
.author-content { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: center; }
.image-placeholder { width: 100%; aspect-ratio: 4/5; background: url('Editedimage_1775484799298.png') center/cover; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); position: relative; overflow: hidden; transition: transform 0.1s ease-out; }
.image-placeholder span { display: none; }
.badge-exp { position: absolute; bottom: 30px; left: -10px; background: var(--amber); color: var(--black); font-family: var(--ff-display); font-weight: 800; padding: 10px 20px; border-radius: 0 10px 10px 0; font-size: 1.1rem; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.author-text p { margin-bottom: 24px; color: var(--gray-light); font-size: 1.2rem; }
.author-text strong { color: var(--white); }
.creds-bar { display: flex; gap: 20px; margin-top: 40px; }
.glass-pill { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 16px 24px; border-radius: 16px; display: flex; align-items: center; gap: 12px; font-family: var(--ff-display); font-weight: 700; font-size: 1rem; color: var(--cream); line-height: 1.2; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.cred-icon { font-size: 1.8rem; }

/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */
.faq-section { padding: 100px 0; background: var(--dark); }
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--black); border: 1px solid var(--glass-border); border-radius: 12px; overflow: hidden; transition: var(--transition); }
.faq-item.active { border-color: var(--amber); box-shadow: 0 5px 20px rgba(232, 160, 32, 0.1); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 24px; font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; color: var(--white); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.faq-question:hover { color: var(--amber); }
.faq-question .icon { font-size: 1.5rem; color: var(--amber); transition: transform 0.3s; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 24px 24px; color: var(--gray-light); font-size: 1.1rem; line-height: 1.7; }

/* ═══════════════════════════════════════════
   CHECKOUT PRICING SECTION
═══════════════════════════════════════════ */
.checkout-section { padding: 120px 0; }
.pricing-card { max-width: 600px; margin: 0 auto; padding: 60px 40px; position: relative; border: 2px solid rgba(232, 160, 32, 0.5); border-radius: 24px; background: linear-gradient(180deg, rgba(24,24,24,0.9) 0%, rgba(10,10,10,0.95) 100%); }
.glowing-border { box-shadow: 0 0 80px rgba(232, 160, 32, 0.2), inset 0 0 40px rgba(232, 160, 32, 0.05); }
.urgent-badge { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); background: var(--danger); color: white; font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; padding: 10px 24px; border-radius: 30px; font-size: 0.95rem; box-shadow: 0 5px 20px rgba(255,68,68,0.5); animation: pulse-dot 2s infinite; white-space: nowrap; }
.pricing-header { text-align: center; margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pricing-header h3 { font-size: 2.2rem; color: var(--amber); font-weight: 900; margin-bottom: 10px; }
.pricing-header p { color: var(--gray-light); font-size: 1.1rem; }
.pricing-checklist { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.pricing-checklist li { display: flex; align-items: center; gap: 16px; font-size: 1.2rem; color: var(--cream); }
.pricing-checklist li svg { width: 24px; height: 24px; color: var(--success); flex-shrink: 0; }
.price-action { text-align: center; }
.price-value { margin-bottom: 24px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.price-discount { font-size: 1.1rem; color: var(--gray-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.price-discount del { color: var(--danger); font-weight: 400; opacity: 0.8; }
.price-highlight { display: flex; align-items: flex-start; justify-content: center; color: var(--white); font-family: var(--ff-display); font-weight: 900; line-height: 1; }
.price-highlight .currency { font-size: 1.8rem; margin-top: 10px; margin-right: 5px; color: var(--amber); }
.price-highlight .amount { font-size: 4.5rem; letter-spacing: -2px; }
.price-highlight .cents { font-size: 1.5rem; margin-top: 10px; color: var(--amber); }
.payment-methods { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--gray-mid); font-size: 0.95rem; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer { padding: 40px 0; border-top: 1px solid var(--glass-border); background: var(--black); }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: var(--ff-display); font-weight: 900; font-size: 1.3rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }

/* ═══════════════════════════════════════════
   RESPONSIVE DESIGN
═══════════════════════════════════════════ */
@media (max-width: 992px) {
    .roadmap-container { grid-template-columns: repeat(2, 1fr); gap: 50px 30px; }
    .roadmap-line { display: none; }
    .hero h1 { font-size: 3.5rem; }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .hero .eyebrow { justify-content: center; }
    .hero .subtitle { margin-inline: auto; }
    .cta-wrapper { align-items: center; }
    
    .audience-grid { grid-template-columns: 1fr; }
    .format-features { grid-template-columns: 1fr; gap: 20px; }
    
    .solution-content, .modules-grid, .author-content { grid-template-columns: 1fr; gap: 60px; }
    .solution-text .section-title, .author-text .section-title { text-align: center; }
    .image-placeholder { max-width: 400px; margin: 0 auto; }
    .creds-bar { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
    .roadmap-container { grid-template-columns: 1fr; gap: 40px; border-left: 2px solid rgba(232,160,32,0.3); padding-left: 40px; margin-left: 20px; }
    .roadmap-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 20px; }
    .step-dot { position: absolute; left: -60px; top: 0; margin-bottom: 0; width: 40px; height: 40px; font-size: 1.2rem; }
    .hero h1 { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .problem-grid { grid-template-columns: 1fr; }
    .audience-card { padding: 30px 20px; }
    .audience-header h3 { font-size: 1.3rem; }
    .creds-bar { flex-direction: column; }
    .module-card { flex-direction: column; gap: 10px; text-align: center; }
    .pricing-card { padding: 50px 20px; border-width: 1px; }
    .pricing-header h3 { font-size: 1.8rem; }
    .pricing-checklist li { font-size: 1.1rem; }
    .btn-giant { padding: 20px 24px; font-size: 1.1rem; }
    .sticky-content { flex-direction: column; gap: 10px; text-align: center; }
    .sticky-text { font-size: 0.9rem; }
    .btn-sm { width: 100%; text-align: center; justify-content: center; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}

/* --------------------------------------------------------------------------
   RAPHAEL ZIBORDI PERSONAL IDENTITY OVERRIDE
   The sales structure remains intact; this layer brings the personal site
   language into the standalone HTML landing page.
---------------------------------------------------------------------------- */
:root {
    --black: #0D1117;
    --dark: #161B22;
    --dark-card: #161B22;
    --amber: #58A6FF;
    --amber-light: #79C0FF;
    --amber-bg: #101826;
    --coral: #1F6FEB;
    --coral-glow: rgba(31,111,235,.3);
    --amber-glow: rgba(88,166,255,.3);
    --danger: #ff7b72;
    --success: #58A6FF;
    --cream: #E6EDF3;
    --white: #F0F6FC;
    --gray-light: #B1BAC4;
    --gray-mid: #8B949E;
    --glass-bg: rgba(22,27,34,.72);
    --glass-border: rgba(139,148,158,.18);
    --ff-display: 'Manrope', sans-serif;
    --ff-body: 'Manrope', sans-serif;
}

html { background: var(--black); }
body {
    background: var(--black);
    color: var(--cream);
    font-family: var(--ff-body);
    background-image: radial-gradient(circle at 76% 4%, rgba(88,166,255,.13), transparent 26%), linear-gradient(145deg,#0D1117 0%,#080D14 48%,#101826 100%);
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .16;
    background-image: linear-gradient(rgba(88,166,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(88,166,255,.16) 1px, transparent 1px);
    background-size: 52px 52px;
    transform: perspective(700px) rotateX(58deg) translateY(18%);
    transform-origin: center bottom;
}
.personal-header, .hero, section, footer { position: relative; z-index: 1; }
.personal-header {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1160px, calc(100% - 64px));
    margin: 0 auto;
    border-bottom: 1px solid rgba(139,148,158,.18);
}
.personal-logo { display: block; width: 190px; height: 45px; overflow: hidden; background: url('logo-raphael-zibordi-transparent.png') -37px -42px / 246px auto no-repeat; }
.personal-logo img { width: 246px; max-width: none; transform: translate(-37px,-42px); opacity: 0; transition: transform .25s ease, filter .25s ease; }
.personal-logo:hover { background-position: -37px -42px; filter: hue-rotate(137deg) saturate(1.08) brightness(1.18); }
.personal-header-meta { display: flex; align-items: center; gap: 28px; font: 10px var(--ff-display); letter-spacing: .09em; text-transform: uppercase; }
.personal-status { color: var(--gray-mid); }
.personal-status i, .console-live i { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(88,166,255,.12), 0 0 18px rgba(88,166,255,.55); }
.header-link { color: var(--amber); transition: letter-spacing .2s ease; }
.header-link:hover { letter-spacing: .14em; }
.hero { min-height: calc(100vh - 86px); padding: 104px 0 92px; }
.hero-content { width: min(1160px, calc(100% - 64px)); }
.eyebrow { color: var(--amber); font: 500 11px var(--ff-display); letter-spacing: .14em; }
.hero h1, .section-title, h2, h3 { font-family: var(--ff-display); letter-spacing: -.045em; }
.hero h1 { color: var(--white); font-size: clamp(3.8rem, 7vw, 6rem); line-height: .94; }
.hero h1 .text-gradient, .text-gradient { background: none; color: var(--amber); -webkit-text-fill-color: initial; }
.hero .subtitle { color: var(--gray-mid); font: 400 1.05rem/1.75 var(--ff-body); max-width: 570px; }
.btn-primary, .btn-secondary { border-radius: 0; font: 700 10px var(--ff-display); letter-spacing: .08em; }
.btn-primary { background: var(--amber); color: var(--black); box-shadow: 0 14px 40px rgba(0,0,0,.3), 0 0 0 1px rgba(88,166,255,.2); }
.btn-primary:hover { background: var(--amber-light); }
.btn-secondary { border-color: var(--amber); color: var(--amber); background: rgba(88,166,255,.04); }
.secure-checkout { color: var(--gray-mid); font: 10px var(--ff-display); }
.secure-checkout svg { stroke: var(--amber); }
.hero-console {
    width: min(100%, 440px);
    min-height: 510px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(22,27,34,.96), rgba(13,17,23,.99));
    border: 1px solid rgba(88,166,255,.2);
    box-shadow: 0 36px 90px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.05);
    transform-style: preserve-3d;
}
.hero-console::before { content: ''; position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(rgba(88,166,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(88,166,255,.05) 1px, transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(to bottom, black, transparent 75%); }
.console-header, .console-footer { display: flex; justify-content: space-between; position: relative; z-index: 1; font: 9px var(--ff-display); letter-spacing: .12em; color: var(--gray-mid); }
.console-live { color: var(--gray-mid); }
.console-identity { display: flex; align-items: center; gap: 12px; margin-top: 78px; position: relative; z-index: 1; color: var(--amber); font: 600 10px var(--ff-display); letter-spacing: .18em; }
.console-identity img { width: 34px; height: 34px; object-fit: contain; filter: hue-rotate(137deg) saturate(1.08) brightness(1.06); }
.console-title { margin-top: 24px; position: relative; z-index: 1; color: var(--white); font: 800 clamp(3.1rem, 7vw, 4.5rem)/.9 var(--ff-display); letter-spacing: -.08em; }
.console-title em { color: var(--amber); font-style: normal; }
.console-title span { color: var(--white); }
.console-lines { display: flex; gap: 7px; align-items: flex-end; height: 90px; margin: 58px 0 28px; position: relative; z-index: 1; }
.console-lines span { display: block; width: 18px; height: 100%; background: linear-gradient(to top, var(--amber), rgba(88,166,255,.05)); transform-origin: bottom; animation: console-pulse 2.8s ease-in-out infinite; }
.console-lines span:nth-child(2) { height: 66%; animation-delay: .35s; }
.console-lines span:nth-child(3) { height: 84%; animation-delay: .7s; }
.console-lines::before { content: 'CONSISTÊNCIA > MOTIVAÇÃO'; position: absolute; top: -25px; left: 0; color: var(--gray-mid); font: 9px var(--ff-display); letter-spacing: .12em; }
.console-footer { padding-top: 18px; border-top: 1px solid rgba(139,148,158,.18); }
@keyframes console-pulse { 0%,100% { opacity: .55; transform: scaleY(.8); } 50% { opacity: 1; transform: scaleY(1); } }
.sticky-cta { background: rgba(13,17,23,.86); border-top: 1px solid rgba(88,166,255,.35); backdrop-filter: blur(14px); }
.sticky-text { color: var(--gray-light); font: 600 11px var(--ff-display); letter-spacing: .02em; }
.problem-section, .solution-section, .author-section, .faq-section, .checkout-section { background: transparent; }
.problem-section, .target-audience, .solution-section, .roadmap-section, .modules-section, .author-section, .faq-section, .checkout-section { padding-top: 110px; padding-bottom: 110px; }
.target-audience, .faq-section { background: rgba(22,27,34,.45); border-top: 1px solid rgba(139,148,158,.1); border-bottom: 1px solid rgba(139,148,158,.1); }
.section-title { color: var(--white); font-size: clamp(2.5rem, 5vw, 4.3rem); }
.glass-card { background: linear-gradient(145deg, rgba(22,27,34,.88), rgba(13,17,23,.88)); border-color: rgba(139,148,158,.17); border-radius: 0; box-shadow: 0 24px 70px rgba(0,0,0,.2); }
.glass-card:hover { border-color: rgba(88,166,255,.38); }
.problem-card, .audience-card, .step-content, .module-card, .pricing-card { border-top-color: rgba(88,166,255,.35); }
.problem-card:hover { border-color: var(--amber); box-shadow: 0 15px 50px rgba(0,0,0,.3); }
.problem-card h3, .audience-header h3, .step-content h3, .module-card h3, .pricing-header h3 { color: var(--white); }
.problem-card p, .audience-list li, .step-content p, .module-card p, .lead, .solution-text .lead, .author-text p, .faq-answer p { color: var(--gray-mid); }
.alert-icon, .text-red, .text-green, .audience-header svg { color: var(--amber); }
.card-for { border-top-color: var(--amber); }
.card-not-for { border-top-color: var(--danger); }
.check-icon { background: var(--amber); box-shadow: 0 0 20px rgba(88,166,255,.35); }
.benefit-text strong, .price-highlight, .urgent-badge, .price-discount { color: var(--amber); }
.roadmap-line { background: rgba(88,166,255,.25); }
.step-dot { background: var(--amber); color: var(--black); }
.pull-quote, .pricing-card { border-top-color: var(--amber); }
.faq-item { background: rgba(13,17,23,.8); border-radius: 0; border-color: rgba(139,148,158,.18); }
.faq-item.active { border-color: var(--amber); }
.faq-question { color: var(--white); }
.faq-question:hover, .faq-question .icon { color: var(--amber); }
.price-action .btn-giant { background: var(--amber); }
footer { background: #080D14; border-top: 1px solid rgba(139,148,158,.15); }
.footer-logo, footer p { font-family: var(--ff-display); }
@media (max-width: 768px) {
    .personal-header { width: calc(100% - 32px); height: 72px; }
    .personal-logo { width: 164px; height: 40px; background-size: 215px auto; background-position: -32px -37px; }
    .personal-logo img { width: 215px; transform: translate(-32px,-37px); }
    .personal-header-meta { gap: 0; }
    .personal-status { display: none; }
    .hero { min-height: auto; padding-top: 72px; }
    .hero-content { width: calc(100% - 32px); }
    .hero h1 { font-size: clamp(3.25rem, 14vw, 5rem); }
    .hero-console { min-height: 430px; }
    .console-identity { margin-top: 60px; }
    .problem-section, .target-audience, .solution-section, .roadmap-section, .modules-section, .author-section, .faq-section, .checkout-section { padding-top: 76px; padding-bottom: 76px; }
}
@media (max-width: 420px) {
    .personal-header { width: calc(100% - 24px); }
    .personal-logo { width: 150px; background-size: 215px auto; background-position: -32px -37px; }
    .header-link { font-size: 9px; }
    .hero-content { width: calc(100% - 24px); }
    .hero-console { padding: 22px; min-height: 390px; }
    .console-title { font-size: 3.25rem; }
}

/* Real e-book cover in the hero */
.book-cover-display {
    width: min(100%, 430px);
    position: relative;
    padding: 4px 0 0;
    transform-style: preserve-3d;
    cursor: default;
}
.book-cover-display::before {
    content: '';
    position: absolute;
    width: 82%;
    height: 72%;
    left: 9%;
    top: 14%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(88,166,255,.17), transparent 68%);
    filter: blur(24px);
    pointer-events: none;
    transform: translateZ(-30px);
}
.book-cover-frame {
    position: relative;
    width: min(100%, 352px);
    margin: 0 auto;
    overflow: hidden;
    background: transparent;
    border: 0;
    box-shadow: 0 38px 72px rgba(0,0,0,.62), 0 0 42px rgba(88,166,255,.1);
    transform: perspective(1200px) rotateY(-8deg) rotateX(2deg) rotateZ(.8deg);
    transition: transform .35s ease, filter .35s ease;
}
.book-cover-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, rgba(255,255,255,.14), transparent 20%, transparent 76%, rgba(0,0,0,.2));
    mix-blend-mode: screen;
}
.book-cover-frame img { display: block; width: 100%; height: auto; }
@media (max-width: 768px) {
    .book-cover-display { width: min(100%, 370px); padding-top: 8px; }
    .book-cover-frame { width: min(100%, 300px); }
}
@media (max-width: 420px) {
    .book-cover-frame { width: min(100%, 260px); }
}
