/* Launcher X — Landing Page Styles
   Design: Unbounce original (dark purple + red accent + green CTAs)
   Date: 2026-06-28 | Author: Duda (OpenClaw DevOps)
*/

/* ====== RESET & BASE ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-dark: #1c072f;
    --bg-darker: #170525;
    --accent: #f72544;
    --accent-glow: rgba(247,37,68,0.3);
    --btn-green: #19b326;
    --btn-green-hover: #16a022;
    --text-white: #ffffff;
    --text-muted: rgba(255,255,255,0.7);
    --card-bg: rgba(28,7,46,0.95);
    --card-border: #f72544;
    --max-width: 1080px;
    --radius: 20px;
    --radius-sm: 10px;
    --shadow-card: 5px 5px 53px -5px rgba(0,0,0,0.46);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; }
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; line-height: 1.3; }
.section-subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.section-tag { 
    font-family: 'Montserrat', Arial, sans-serif; 
    font-size: 2.5rem; 
    font-weight: 800; 
    text-align: center; 
    margin-bottom: 1.5rem; 
    letter-spacing: 2px;
}
.section-text { font-size: 1.05rem; color: var(--text-muted); max-width: 840px; margin: 0 auto 1rem; text-align: center; line-height: 1.75; }
.section-highlight { 
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.3rem; 
    font-weight: 700; 
    text-align: center; 
    margin: 1.5rem 0;
}
.highlight-text { color: var(--accent) !important; font-weight: 600; }
.highlight { color: var(--accent); }

/* ====== BUTTONS ====== */
.btn {
    display: inline-block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: var(--text-white);
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--btn-green);
    box-shadow: 0 4px 20px rgba(25,179,38,0.4);
}
.btn-primary:hover {
    background: var(--btn-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(25,179,38,0.5);
}
.btn-hero {
    background: var(--btn-green);
    width: 100%;
    max-width: 460px;
    margin-top: 20px;
}
.btn-lg { padding: 20px 60px; font-size: 18px; }
.btn-pulse { animation: pulse 2s infinite; }

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(25,179,38,0.4); }
    50% { box-shadow: 0 4px 40px rgba(25,179,38,0.7); }
}

/* ====== SECTIONS ====== */
section { padding: 80px 0; position: relative; }

/* Hero */
.hero { padding: 60px 0 80px; min-height: 540px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-text { max-width: 540px; }
.hero-title { 
    font-size: clamp(1.6rem, 2.8vw, 2rem); 
    line-height: 1.4; 
    margin-bottom: 1.2rem; 
    font-weight: 700; 
}
.hero-sub { font-size: 1.05rem; margin-bottom: 1rem; color: var(--text-muted); }
.hero-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }
.hero-bold { font-size: 1.1rem; font-weight: 600; margin-top: 0.5rem; }
.hero-video { display: flex; flex-direction: column; align-items: center; }
.video-wrapper { 
    width: 100%; max-width: 540px; 
    border: 2px solid var(--card-border); 
    border-radius: var(--radius); 
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.hero-thumb { width: 100%; display: block; }
.vturb-wrapper { background: transparent; border: none; box-shadow: none; }

/* Pain Points */
.pain-points { background: var(--bg-dark); }
.pain-list { max-width: 700px; margin: 0 auto; }
.pain-item { 
    padding: 12px 20px; margin-bottom: 8px;
    background: rgba(247,37,68,0.08);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 1rem;
    color: var(--text-muted);
    transition: background 0.3s;
}
.pain-item:hover { background: rgba(247,37,68,0.15); }
.want-list { max-width: 700px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.want-item { 
    padding: 10px 16px; 
    background: rgba(25,179,38,0.08); 
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-white);
}

/* Solution */
.solution { background: var(--bg-dark); text-align: center; }

/* Guarantee */
.guarantee { 
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark)); 
    text-align: center; 
    border-top: 1px solid rgba(247,37,68,0.2);
    border-bottom: 1px solid rgba(247,37,68,0.2);
}

/* Benefits */
.benefits { background: var(--bg-dark); text-align: center; }

/* Speakers Topics */
.speakers-topics { background: var(--bg-darker); }
.topics-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 16px; 
    max-width: 960px; 
    margin: 2rem auto; 
}
.topic-card { 
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
}
.topic-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.topic-bullet { 
    min-width: 10px; height: 10px; 
    background: var(--accent); 
    border-radius: 50%; 
    margin-top: 6px; 
    flex-shrink: 0;
}
.topic-content strong { display: block; font-size: 0.9rem; color: var(--accent); font-family: 'Montserrat', Arial, sans-serif; }
.topic-content span { font-size: 0.85rem; color: var(--text-muted); }

/* Pricing */
.pricing { 
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%); 
    text-align: center; 
}
.pricing-card { 
    max-width: 560px; margin: 0 auto; 
    background: var(--card-bg); 
    border: 2px solid var(--card-border); 
    border-radius: var(--radius); 
    padding: 40px 30px;
    box-shadow: var(--shadow-card);
}
.pricing-badge { 
    display: inline-block; 
    background: var(--accent); 
    color: white; 
    padding: 6px 24px; 
    border-radius: 20px; 
    font-weight: 700; 
    font-size: 0.85rem; 
    margin-bottom: 20px;
    font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-installments { font-size: 1.4rem; margin-bottom: 4px; }
.pricing-cc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.pricing-old { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 4px; }
.pricing-new { font-size: 1.6rem; margin-bottom: 24px; }
.pricing-new strong { color: var(--accent); font-family: 'Montserrat', Arial, sans-serif; }
.pricing-secure { font-size: 0.85rem; color: var(--text-muted); margin-top: 16px; }

/* How to Access */
.how-access { background: var(--bg-dark); text-align: center; }

/* Story */
.story { background: var(--bg-darker); text-align: center; }

/* Investment */
.investment { background: var(--bg-dark); text-align: center; }
.value-questions { 
    max-width: 700px; margin: 1.5rem auto; 
    text-align: left; 
}
.value-questions p { 
    padding: 14px 20px; margin-bottom: 10px;
    background: rgba(255,255,255,0.04); 
    border-radius: var(--radius-sm); 
    font-weight: 500;
    border-left: 3px solid var(--accent);
}

/* Final CTA */
.final-cta { background: var(--bg-darker); text-align: center; }

/* Speaker Videos */
.speaker-videos { background: var(--bg-dark); }
.videos-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px; 
    max-width: 1060px; 
    margin: 2rem auto 0; 
}
.video-card { text-align: center; }
.video-card-inner { 
    border: 2px solid var(--card-border); 
    border-radius: var(--radius); 
    overflow: hidden; 
    box-shadow: var(--shadow-card); 
    aspect-ratio: 16/9; 
    background: #000; 
}
.video-card-inner iframe { width: 100%; height: 100%; border: none; }
.video-name { 
    font-family: 'Montserrat', Arial, sans-serif; 
    font-weight: 600; 
    font-size: 1rem; 
    margin-top: 12px;
    color: var(--accent);
}

/* Footer */
.footer { 
    background: #0d0218; 
    text-align: center; 
    padding: 40px 0; 
    font-size: 0.85rem; 
    color: rgba(255,255,255,0.4); 
}
.footer-copy { margin-top: 8px; }

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero { padding: 40px 0 60px; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-video { order: 2; }
    .hero-text { order: 1; }
    .want-list { grid-template-columns: 1fr; }
    .topics-grid { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
    section { padding: 50px 0; }
    .pricing-card { padding: 30px 20px; }
    .btn-lg { padding: 16px 40px; font-size: 16px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section-title { font-size: 1.3rem; }
    .section-tag { font-size: 1.8rem; }
    .pain-item { padding: 10px 14px; font-size: 0.9rem; }
}
