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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    background: #050508;
    color: #f8fafc;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===== LANDING CONTAINER ===== */
#landing {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== BACKGROUND ORBS ===== */
.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    top: -200px;
    right: -300px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 60%);
    top: 500px;
    left: -200px;
    animation: orbFloat2 25s ease-in-out infinite;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 60%);
    bottom: 200px;
    right: -150px;
    animation: orbFloat3 18s ease-in-out infinite;
}

/* ===== CONTENT WRAPPER ===== */
.content {
    position: relative;
    z-index: 1;
    padding: 28px 20px 40px;
}

/* ===== URGENCY BADGE ===== */
.badge-wrapper {
    display: inline-block;
    margin-bottom: 24px;
    position: relative;
}

.badge-glow {
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(245, 158, 11, 0.2));
    filter: blur(12px);
    opacity: 0.6;
}

.urgency-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 24px;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    letter-spacing: 0.5px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #050508;
    margin-right: -8px;
    object-fit: cover;
}

.avatar:last-child {
    margin-right: 0;
}

.social-proof-text {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}

.social-proof-text strong {
    color: #e2e8f0;
    font-weight: 500;
}

/* ===== HEADLINE ===== */
.headline-section {
    margin-bottom: 20px;
}

.eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: #818cf8;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    color: #f8fafc;
    margin: 0 0 10px 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.subtitle {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: rgba(248,250,252,0.5);
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.title-gradient {
    background: linear-gradient(135deg, #818cf8, #c084fc, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line {
    width: 48px;
    height: 2px;
    margin: 0 auto 16px auto;
    border-radius: 1px;
    background: linear-gradient(90deg, #818cf8, #c084fc, #fbbf24);
}

/* ===== VALUE CARD ===== */
.value-card {
    max-width: 440px;
    margin: 0 auto 28px auto;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
}

.value-intro {
    font-size: 15px;
    color: rgba(248,250,252,0.75);
    margin: 0 0 14px 0;
    line-height: 1.6;
    font-weight: 400;
}

.value-intro strong {
    color: #f8fafc;
    font-weight: 600;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-cyan {
    background: rgba(129,140,248,0.15);
    border: 1px solid rgba(129,140,248,0.25);
    color: #818cf8;
}

.check-purple {
    background: rgba(192,132,252,0.15);
    border: 1px solid rgba(192,132,252,0.25);
    color: #c084fc;
}

.check-gold {
    background: rgba(251,191,36,0.15);
    border: 1px solid rgba(251,191,36,0.25);
    color: #fbbf24;
}

.check-item span {
    font-size: 14px;
    color: rgba(248,250,252,0.7);
}

.highlight-gold {
    color: #fbbf24;
    font-weight: 600;
}

/* ===== IMAGE SECTION ===== */
.image-section {
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.image-frame {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 6px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(129,140,248,0.12), rgba(192,132,252,0.08), rgba(251,191,36,0.06));
}

.iphone-img {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 22px;
    display: block;
    margin: 0 auto;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(129,140,248,0.15), rgba(192,132,252,0.1));
    filter: blur(40px);
    z-index: 0;
    animation: glowPulse 5s ease-in-out infinite;
}

.image-label {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: rgba(5,5,8,0.95);
    border: 1px solid rgba(129,140,248,0.2);
    padding: 8px 18px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 500;
    color: #818cf8;
    white-space: nowrap;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* ===== FEATURE CARDS ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    padding: 18px 8px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    text-align: center;
    background: rgba(255,255,255,0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.1);
}

.feature-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px auto;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-cyan {
    background: linear-gradient(135deg, rgba(129,140,248,0.2), rgba(99,102,241,0.1));
    border: 1px solid rgba(129,140,248,0.15);
    color: #818cf8;
}

.icon-purple {
    background: linear-gradient(135deg, rgba(192,132,252,0.2), rgba(168,85,247,0.1));
    border: 1px solid rgba(192,132,252,0.15);
    color: #c084fc;
}

.icon-gold {
    background: linear-gradient(135deg, rgba(251,191,36,0.2), rgba(245,158,11,0.1));
    border: 1px solid rgba(251,191,36,0.15);
    color: #fbbf24;
}

.feature-title {
    font-size: 12px;
    font-weight: 600;
    color: #f8fafc;
}

.feature-sub {
    font-size: 10px;
    color: rgba(248,250,252,0.35);
    margin-top: 3px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    margin-bottom: 16px;
    position: relative;
}

.cta-label {
    font-size: 11px;
    font-weight: 600;
    color: #fbbf24;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cta-button {
    width: 100%;
    max-width: 380px;
    padding: 20px 32px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #7c3aed, #db2777, #ea580c);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(124,58,237,0.3);
    font-family: inherit;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(124,58,237,0.35);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-text {
    position: relative;
    z-index: 2;
}

.cta-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer 3s infinite;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 11px;
    color: rgba(248,250,252,0.4);
    display: flex;
    align-items: center;
    gap: 4px;
}

.trust-item svg {
    flex-shrink: 0;
}

/* ===== PROGRESS CARD ===== */
.progress-card {
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    max-width: 380px;
    margin: 0 auto 28px auto;
    background: rgba(255,255,255,0.02);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.progress-label {
    font-size: 11px;
    color: rgba(248,250,252,0.5);
}

.progress-value {
    font-size: 11px;
    color: #f87171;
    font-weight: 600;
}

.progress-track {
    height: 6px;
    background: rgba(255,255,255,0.04);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    width: 25.6%;
    height: 100%;
    background: linear-gradient(90deg, #818cf8, #c084fc, #fbbf24);
    border-radius: 3px;
    animation: progressGlow 3s ease-in-out infinite;
}

.progress-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.progress-footer span {
    font-size: 10px;
    color: rgba(248,250,252,0.3);
}

.progress-remaining {
    color: #f87171 !important;
    font-weight: 600;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: rgba(5,5,8,0.95);
    border-top: 1px solid rgba(124,58,237,0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    animation: slideUp 0.4s ease-out;
}

.sticky-button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s ease;
}

.sticky-button:hover {
    transform: translateY(-1px);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    margin-bottom: 28px;
}

.section-title {
    font-size: 13px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 14px;
    text-align: center;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    background: rgba(255,255,255,0.015);
    transition: background 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.025);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.testimonial-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid transparent;
}

.avatar-cyan {
    border-color: rgba(129,140,248,0.3);
}

.avatar-purple {
    border-color: rgba(192,132,252,0.3);
}

.avatar-gold {
    border-color: rgba(251,191,36,0.3);
}

.testimonial-meta {
    flex: 1;
}

.testimonial-name {
    font-size: 13px;
    font-weight: 500;
    color: #f8fafc;
}

.testimonial-flag {
    font-size: 9px;
    color: rgba(248,250,252,0.35);
    margin-left: 4px;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 10px;
    letter-spacing: 1px;
    margin-top: 2px;
}

.testimonial-time {
    font-size: 9px;
    color: rgba(248,250,252,0.25);
}

.testimonial-text {
    font-size: 12px;
    color: rgba(248,250,252,0.6);
    margin: 0;
    line-height: 1.5;
}

/* ===== FAQ ===== */
.faq-section {
    max-width: 400px;
    margin: 0 auto 28px auto;
    text-align: left;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.015);
}

.faq-question {
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #f8fafc;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255,255,255,0.02);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 16px 14px 16px;
    font-size: 12px;
    color: rgba(248,250,252,0.55);
    line-height: 1.6;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta {
    padding: 22px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(219,39,119,0.05));
    border: 1px solid rgba(124,58,237,0.12);
    margin-bottom: 24px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.bottom-cta-title {
    font-size: 16px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 6px;
}

.bottom-cta-sub {
    font-size: 12px;
    color: rgba(248,250,252,0.5);
    margin-bottom: 16px;
}

.bottom-cta-button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 20px rgba(124,58,237,0.25);
    transition: all 0.3s ease;
}

.bottom-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124,58,237,0.35);
}

/* ===== FOOTER ===== */
.site-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.04);
    text-align: center;
}

.site-footer p {
    font-size: 10px;
    color: rgba(248,250,252,0.2);
    margin: 0;
    line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 20px); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -30px); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -20px); }
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px #ef4444; }
    50% { opacity: 0.4; box-shadow: 0 0 16px #ef4444; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes progressGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(129,140,248,0.3); }
    50% { box-shadow: 0 0 20px rgba(129,140,248,0.5); }
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    h1 {
        font-size: 30px;
    }

    .subtitle {
        font-size: 13px;
    }

    .features-grid {
        gap: 8px;
    }

    .feature-card {
        padding: 14px 6px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-title {
        font-size: 11px;
    }

    .cta-button {
        font-size: 16px;
        padding: 18px 24px;
    }

    .trust-bar {
        gap: 12px;
    }

    .testimonial-card {
        padding: 12px 14px;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT ===== */
@media print {
    .bg-orbs, .sticky-cta, .cta-shimmer {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
