* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated background elements */
.bg-decoration {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-decoration::before,
.bg-decoration::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.bg-decoration::before {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #22c55e, #10b981);
    top: -200px;
    right: -200px;
    animation-delay: -5s;
}

.bg-decoration::after {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Header */
.header {
    position: relative;
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    padding: 4rem 1.5rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.header-content {
    position: relative;
    z-index: 1;
}

.header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

.header p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #22c55e, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #cbd5e1;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
}

/* Buttons */
.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn.primary {
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: white;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.btn.primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s;
}

.btn.primary:hover::before {
    left: 100%;
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5);
}

.btn.primary:active {
    transform: translateY(-1px);
}

.coming-soon {
    color: #94a3b8;
    font-size: 0.95rem;
    font-style: italic;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.6s ease-out backwards;
}

.feature:nth-child(1) {
    animation-delay: 0.5s;
}
.feature:nth-child(2) {
    animation-delay: 0.6s;
}
.feature:nth-child(3) {
    animation-delay: 0.7s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(34, 197, 94, 0.1),
        rgba(16, 185, 129, 0.05)
    );
    opacity: 0;
    transition: opacity 0.4s;
}

.feature:hover::before {
    opacity: 1;
}

.feature:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e, #10b981);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    transition: transform 0.4s;
}

.feature:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #f8fafc;
    font-weight: 700;
}

.feature p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

.footer p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: 3rem 1rem;
    }

    .container {
        padding: 3rem 1rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .hero {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 2.5rem 1rem;
    }

    .container {
        padding: 2rem 1rem;
    }

    .feature {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon svg {
        width: 35px;
        height: 35px;
    }
}
