* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --border: #2a2a3a;
    --text: #e0e0e0;
    --text-muted: #888;
    --primary: #6366f1;
    --primary-hover: #818cf8;
    --gradient-start: #6366f1;
    --gradient-end: #a855f7;
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.9rem;
}

/* Referral Badge */
.referral-badge {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
    animation: slideInLeft 0.5s ease;
}

.referral-badge strong {
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo { font-size: 1.5rem; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.btn-nav {
    background: var(--primary) !important;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn-large { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-xl { padding: 1.25rem 2.5rem; font-size: 1.2rem; }

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-subtitle strong { color: var(--text); }

.hero-cta { margin-bottom: 2rem; }

.cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.proof-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-left: -10px;
}

.avatar:first-child { margin-left: 0; }

.social-proof p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.social-proof strong { color: var(--text); }

/* Comparison Cards */
.comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.compare-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.compare-card.bad { border-color: var(--danger); }
.compare-card.good { border-color: var(--success); }

.compare-header {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.compare-card ul {
    list-style: none;
}

.compare-card li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.compare-card.bad li::before { content: "• "; color: var(--danger); }
.compare-card.good li::before { content: "• "; color: var(--success); }

/* Pain Section */
.pain-section {
    padding: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.pain-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.pain-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.pain-solution {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.pain-solution strong { color: var(--warning); }

/* Credits Section */
.credits-section {
    padding: 2rem 4rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.credits-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.credits-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.credits-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.credits-box p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.credits-box p strong {
    color: var(--text);
}

.credits-math {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.credits-math span {
    background: var(--bg-card);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.credits-math .credits-result {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    font-weight: 700;
}

/* Manifesto Section */
.manifesto-section {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

/* Bezos Roast Card */
.bezos-roast {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.roast-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.roast-emoji {
    font-size: 2.5rem;
}

.roast-header h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin: 0;
}

.roast-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.roast-stats .stat {
    text-align: center;
}

.roast-stats .stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--warning);
    margin-bottom: 0.25rem;
}

.roast-stats .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.roast-contrast {
    margin-bottom: 2rem;
}

.contrast-meanwhile {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.amazon-reality {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.amazon-reality li {
    font-size: 0.95rem;
    color: var(--text);
    padding: 0.75rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--danger);
}

.roast-punchline {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.roast-punchline p {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.highlight-red {
    color: var(--danger);
    font-weight: 600;
}

.big-please {
    font-size: 2rem !important;
    font-weight: 700;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

/* Our Response */
.our-response {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.our-response h3 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.response-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
}

.response-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.response-item strong {
    display: block;
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.response-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Uno Reverse */
.uno-reverse {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.02) 100%);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.reverse-header {
    margin-bottom: 2rem;
}

.reverse-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.reverse-header h3 {
    font-size: 1.5rem;
    color: #22c55e;
    margin: 0;
}

.uno-reverse p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.reverse-reveal {
    font-size: 1.4rem !important;
    color: #22c55e !important;
    font-weight: 700;
}

.poetic {
    font-style: italic;
    color: var(--text) !important;
    margin-bottom: 2rem !important;
}

.checkmate-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.checkmate-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--gradient-end));
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.checkmate-box p {
    font-size: 1rem !important;
    margin-bottom: 0.75rem !important;
}

.checkmate-quote {
    font-style: italic;
    color: var(--primary) !important;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    margin: 1rem 0 !important;
}

.final-taunt {
    font-size: 1.2rem !important;
    color: #22c55e !important;
    font-weight: 600;
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
}

.legal-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .roast-stats {
        grid-template-columns: 1fr;
    }
    
    .amazon-reality {
        grid-template-columns: 1fr;
    }
    
    .response-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* How Section */
.how-section {
    padding: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.demo-box {
    display: flex;
    justify-content: center;
}

.app-preview {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.app-preview.large { width: 400px; }

.preview-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-dots span:first-child { background: #ff5f57; }
.preview-dots span:nth-child(2) { background: #febc2e; }
.preview-dots span:last-child { background: #28c840; }

.preview-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.preview-content { padding: 1.5rem; }

.preview-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--success);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.preview-identity {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.id-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.id-row:last-child { border-bottom: none; }
.id-row span:first-child { color: var(--text-muted); }
.spoofed { color: var(--primary); font-family: monospace; }
.status-good { color: var(--success); font-weight: 600; }

.preview-btn {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}


/* Proof Section */
.proof-section {
    padding: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
}

.testimonial-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-content strong { color: var(--success); }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    font-size: 1.5rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.stat-item { text-align: center; }

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Features */
.features-section {
    padding: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Buy Section */
.buy-section {
    padding: 4rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
}

.plan-badge {
    display: inline-block;
    background: var(--bg-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.plan-badge.popular {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.plan-price .price-old {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.25rem;
}

.plan-price .price-current {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price .price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.plan-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.plan-features li strong {
    color: var(--success);
}

.payment-methods {
    margin-bottom: 1.5rem;
}

.payment-methods p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-box {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.price-tag {
    margin-bottom: 2rem;
}

.price-old {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.price-current {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.6rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
}

.price-features li:last-child { border-bottom: none; }

.guarantee {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.urgency-box {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 1rem;
}

.urgency-box p {
    color: var(--warning);
    font-size: 0.9rem;
    font-weight: 500;
}

/* FAQ */
.faq-section {
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list { margin-top: 2rem; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--bg-card);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.faq-question:hover { background: var(--bg-card-hover); }

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    margin: 2rem 4rem;
    border-radius: 24px;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.final-cta p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.final-note {
    margin-top: 1rem !important;
    font-size: 0.9rem;
}

/* Legal */
.legal {
    border-top: 1px solid var(--border);
    padding: 3rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.legal h3 {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.legal-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.legal-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
}

.legal-item h4 {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.legal-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 2rem 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .hero-subtitle { max-width: 100%; margin: 0 auto 2rem; }
    .hero-cta { display: flex; flex-direction: column; align-items: center; }
    .social-proof { justify-content: center; }
    .comparison { order: -1; flex-direction: row; }
    
    .pain-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; }
    .testimonials { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { flex-wrap: wrap; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .pain-grid { grid-template-columns: 1fr; }
    .comparison { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
    .legal-text { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
    .final-cta { margin: 2rem 1rem; }
    
    section { padding: 3rem 1.5rem; }
}


/* ==================== CRYPTO PAYMENT STYLES ==================== */

/* Crypto icons in pricing box */
.crypto-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    font-size: 1.5rem;
    opacity: 0.7;
}

.crypto-icons span {
    cursor: default;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal */
.modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text);
}

.modal h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    text-align: center;
}

.modal-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Crypto Grid */
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.crypto-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}

.crypto-btn:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
}

.crypto-btn.selected {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.15);
}

.crypto-icon {
    font-size: 1.3rem;
}

.crypto-name {
    font-size: 0.85rem;
}

/* Full width button */
.btn-full {
    width: 100%;
    margin-top: 16px;
}

/* Payment Step 2 */
.payment-amount {
    text-align: center;
    padding: 20px;
    background: var(--bg-dark);
    border-radius: 12px;
    margin-bottom: 20px;
}

.amount-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.amount-currency {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 8px;
}

.payment-address {
    margin-bottom: 20px;
}

.address-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 16px;
}

.address-box code {
    flex: 1;
    font-size: 0.75rem;
    word-break: break-all;
    color: var(--text);
}

.copy-btn {
    padding: 8px 12px;
    background: var(--primary);
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.copy-btn:hover {
    background: var(--primary-hover);
}

.qr-placeholder {
    display: flex;
    justify-content: center;
}

.qr-placeholder img {
    border-radius: 8px;
    background: white;
    padding: 8px;
}

.payment-timer {
    text-align: center;
    padding: 12px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    margin-bottom: 16px;
    color: var(--warning);
}

.payment-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--bg-dark);
    border-radius: 8px;
    margin-bottom: 16px;
}

.status-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.payment-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Success Step */
.success-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 16px;
}

.license-display {
    background: var(--bg-dark);
    border: 1px solid var(--success);
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
}

.license-display label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.license-display code {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--success);
    margin-bottom: 12px;
    word-break: break-all;
}

.success-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
}


/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.1);
}

@media (min-width: 480px) {
    .payment-options {
        flex-direction: row;
    }
    
    .payment-options .btn {
        flex: 1;
    }
}

/* Payment Method Selection */
.payment-method-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.payment-method-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text);
}

.payment-method-btn:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.payment-method-btn .method-icon {
    font-size: 2rem;
}

.payment-method-btn .method-name {
    font-weight: 600;
    font-size: 1rem;
}

.payment-method-btn .method-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* CashApp Step */
.cashapp-info {
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.cashapp-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.cashapp-row:last-of-type {
    border-bottom: none;
}

.cashapp-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    min-width: 70px;
}

.cashapp-row code {
    flex: 1;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
}

.copy-btn-small {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.copy-btn-small:hover {
    opacity: 1;
}

.cashapp-amount {
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    font-size: 1.2rem;
}

.cashapp-amount strong {
    color: var(--primary);
    font-size: 1.5rem;
}

.cashapp-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--warning);
    margin-top: 1rem;
}

.btn-link {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: color 0.2s;
}

.btn-link:hover {
    color: var(--text);
}

@media (max-width: 480px) {
    .payment-method-grid {
        grid-template-columns: 1fr;
    }
}


/* ==================== COMPREHENSIVE MOBILE RESPONSIVE STYLES ==================== */

/* Mobile Navigation - Hamburger Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid var(--border);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    
    .navbar {
        padding: 1rem;
    }
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.mobile-overlay.active {
    display: block;
}

/* Top Banner Mobile */
@media (max-width: 480px) {
    .top-banner {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

/* Hero Section Mobile */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin: 0 auto 1.5rem;
        font-size: 1rem;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-proof {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .comparison {
        order: -1;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .compare-card {
        padding: 1rem;
    }
    
    .compare-header {
        font-size: 0.9rem;
    }
    
    .compare-card li {
        font-size: 0.8rem;
    }
}

/* Credits Section Mobile */
@media (max-width: 768px) {
    .credits-section {
        padding: 1.5rem 1rem;
    }
    
    .credits-box {
        padding: 1.5rem;
    }
    
    .credits-box h3 {
        font-size: 1.25rem;
    }
    
    .credits-box p {
        font-size: 0.95rem;
    }
    
    .credits-math {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .credits-math span {
        width: 100%;
        text-align: center;
    }
}

/* Manifesto Section Mobile - Inline Styles Override */
@media (max-width: 768px) {
    .manifesto-section {
        padding: 3rem 1rem;
    }
    
    .manifesto-content h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    /* Override inline grid styles for Bezos stats */
    .manifesto-section div[style*="grid-template-columns: repeat(3"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    /* Override inline grid for Amazon reality list */
    .manifesto-section div[style*="grid-template-columns: repeat(2"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .manifesto-section {
        padding: 2rem 0.75rem;
    }
    
    .manifesto-content h2 {
        font-size: 1.5rem;
    }
    
    /* Make inline styled boxes more compact on mobile */
    .manifesto-section > div > div {
        padding: 1.5rem !important;
    }
}

/* Pain Section Mobile */
@media (max-width: 768px) {
    .pain-section {
        padding: 3rem 1rem;
    }
    
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .pain-card {
        padding: 1rem;
    }
    
    .pain-emoji {
        font-size: 1.5rem;
    }
    
    .pain-card p {
        font-size: 0.8rem;
    }
    
    .pain-solution {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }
}

/* How Section Mobile */
@media (max-width: 768px) {
    .how-section {
        padding: 3rem 1rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .app-preview.large {
        width: 100%;
        max-width: 350px;
    }
}

/* Proof Section Mobile */
@media (max-width: 768px) {
    .proof-section {
        padding: 3rem 1rem;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial {
        padding: 1.25rem;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

/* Features Section Mobile */
@media (max-width: 768px) {
    .features-section {
        padding: 3rem 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        font-size: 1.75rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Buy/Pricing Section Mobile */
@media (max-width: 768px) {
    .buy-section {
        padding: 3rem 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .plan-price .price-current {
        font-size: 2.5rem;
    }
    
    .crypto-icons {
        gap: 8px;
        font-size: 1.25rem;
    }
}

/* FAQ Section Mobile */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}

/* Final CTA Mobile */
@media (max-width: 768px) {
    .final-cta {
        margin: 2rem 1rem;
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }
    
    .final-cta h2 {
        font-size: 1.5rem;
    }
    
    .btn-xl {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Legal Section Mobile */
@media (max-width: 768px) {
    .legal {
        padding: 2rem 1rem;
    }
    
    .legal-text {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .legal-item {
        padding: 1rem;
    }
}

/* Footer Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Modal Mobile */
@media (max-width: 768px) {
    .modal {
        width: 95%;
        padding: 1.5rem;
        max-height: 85vh;
        margin: 1rem;
    }
    
    .modal h3 {
        font-size: 1.25rem;
    }
    
    .crypto-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .crypto-btn {
        padding: 10px 14px;
    }
    
    .form-group input {
        padding: 12px 14px;
        font-size: 16px; /* Prevents iOS zoom */
    }
}

/* Section Headers Mobile */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
}

/* Referral Badge Mobile */
@media (max-width: 768px) {
    .referral-badge {
        bottom: 10px;
        left: 10px;
        right: 10px;
        text-align: center;
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

/* General Mobile Utilities */
@media (max-width: 768px) {
    section {
        padding: 3rem 1rem !important;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Better touch targets */
    .btn {
        min-height: 44px;
    }
    
    /* Improve readability */
    p, li {
        line-height: 1.7;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .btn-large {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .pricing-card {
        padding: 1.25rem;
    }
    
    .plan-price .price-current {
        font-size: 2rem;
    }
}
