/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #0a0118 0%, #1a0b2e 50%, #0a0118 100%);
    color: #e8e3f0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 900;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-hero {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: white;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.4);
}

.btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.6);
}

.btn-outline {
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid rgba(168, 85, 247, 0.3);
    color: #a855f7;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
}

.btn-secondary {
    background: rgba(42, 24, 66, 0.5);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #e8e3f0;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(42, 24, 66, 0.8);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(42, 24, 66, 0.5);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
    color: #b4a5c7;
}

.badge .icon {
    width: 1rem;
    height: 1rem;
    color: #a855f7;
}

/* Card */
.card {
    background: rgba(42, 24, 66, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: scale(1.05);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

/* Section */
.section {
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #b4a5c7;
    max-width: 42rem;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.blob-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(168, 85, 247, 0.2);
}

.blob-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(236, 72, 153, 0.2);
    animation-delay: 1s;
}

.blob-3 {
    top: 50%;
    left: 50%;
    width: 16rem;
    height: 16rem;
    background: rgba(6, 182, 212, 0.2);
    animation-delay: 2s;
}

.blob-4 {
    top: 25%;
    right: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(168, 85, 247, 0.3);
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.blob-5 {
    bottom: 25%;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(6, 182, 212, 0.3);
    filter: blur(80px);
    animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

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

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeIn 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: #b4a5c7;
    max-width: 36rem;
}

.stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 1rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: #b4a5c7;
}

.divider {
    width: 1px;
    height: 3rem;
    background: rgba(168, 85, 247, 0.2);
}

.hero-image {
    position: relative;
    animation: scaleIn 0.8s ease-out 0.2s both;
}

.image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #06b6d4 100%);
    border-radius: 1.5rem;
    filter: blur(40px);
    opacity: 0.5;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.hero-image img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.floating-emoji {
    position: absolute;
    font-size: 2.5rem;
    animation: float 4s ease-in-out infinite;
}

.emoji-1 {
    top: -1rem;
    right: -1rem;
    animation-delay: 0.5s;
}

.emoji-2 {
    bottom: -1rem;
    left: -1rem;
    animation-delay: 1.5s;
}

.emoji-3 {
    top: 25%;
    left: -1.5rem;
    font-size: 2rem;
    animation-delay: 1s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid #a855f7;
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: #a855f7;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Features Section */
.features-section {
    position: relative;
}

.bg-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.decoration-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.decoration-blob-1 {
    top: 25%;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(168, 85, 247, 0.1);
}

.decoration-blob-2 {
    bottom: 25%;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(6, 182, 212, 0.1);
}

.decoration-blob-3 {
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(236, 72, 153, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    cursor: pointer;
}

.feature-icon {
    display: inline-flex;
    padding: 0.75rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.4);
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.gradient-1 {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.gradient-2 {
    background: linear-gradient(135deg, #ec4899, #06b6d4);
}

.gradient-3 {
    background: linear-gradient(135deg, #06b6d4, #a855f7);
}

.gradient-4 {
    background: linear-gradient(135deg, #a855f7, #06b6d4);
}

.gradient-5 {
    background: linear-gradient(135deg, #ec4899, #a855f7);
}

.gradient-6 {
    background: linear-gradient(135deg, #06b6d4, #ec4899);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-title {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-description {
    color: #b4a5c7;
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.connection-line {
    display: none;
}

@media (min-width: 1024px) {
    .connection-line {
        display: block;
        position: absolute;
        top: 33%;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #a855f7, #ec4899, #06b6d4);
        opacity: 0.3;
    }
}

.step-card {
    position: relative;
}

.step-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.125rem;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.4);
}

.step-icon {
    display: inline-flex;
    padding: 0.75rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #06b6d4, #a855f7);
    margin-bottom: 1rem;
}

.step-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-title {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-description {
    color: #b4a5c7;
    margin-bottom: 1rem;
}

.step-emoji {
    font-size: 2.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-emoji {
    transform: scale(1.25);
}

.mobile-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .mobile-indicators {
        display: none;
    }
}

.indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    animation: pulse 2s ease-in-out infinite;
}

.indicator:nth-child(2) {
    animation-delay: 0.2s;
}

.indicator:nth-child(3) {
    animation-delay: 0.4s;
}

.indicator:nth-child(4) {
    animation-delay: 0.6s;
}

/* Social Proof Section */
.stats-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-value-large {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    position: relative;
    overflow: hidden;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    color: rgba(168, 85, 247, 0.1);
}

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

.avatar {
    font-size: 2.5rem;
}

.testimonial-name {
    font-weight: 700;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #b4a5c7;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #06b6d4;
    font-size: 1rem;
}

.testimonial-text {
    color: #b4a5c7;
}

.viral-hook {
    text-align: center;
}

.hook-card {
    display: inline-block;
    border-color: rgba(168, 85, 247, 0.2);
    padding: 2rem;
}

.hook-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hook-description {
    color: #b4a5c7;
}

/* CTA Section */
.cta-section {
    position: relative;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    opacity: 0.1;
}

.cta-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-title {
    font-size: 4rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    color: #b4a5c7;
    max-width: 42rem;
    margin: 0 auto;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 2rem;
    font-size: 0.875rem;
    color: #b4a5c7;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #06b6d4;
    animation: pulse 2s ease-in-out infinite;
}

.benefit:nth-child(3) .benefit-dot {
    animation-delay: 0.2s;
}

.benefit:nth-child(5) .benefit-dot {
    animation-delay: 0.4s;
}

.social-login {
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-login-text {
    font-size: 0.875rem;
    color: #b4a5c7;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.emoji {
    font-size: 1.25rem;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #a855f7 0%, #ec4899 50%, #06b6d4 100%);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr repeat(4, auto);
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.4);
}

.logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 900;
}

.brand-description {
    font-size: 0.875rem;
    color: #b4a5c7;
}

.brand-tagline {
    font-size: 0.875rem;
    color: #b4a5c7;
}

.footer-links h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: #b4a5c7;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: #a855f7;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #b4a5c7;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: #b4a5c7;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-bottom-links a:hover {
    color: #a855f7;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .cta-title {
        font-size: 2.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .divider {
        display: none;
    }

    .benefits .divider {
        display: none;
    }
}