
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(0, 0, 0, 1) 50%, rgba(34, 197, 94, 0.1) 100%);
}

.mouse-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(60px);
    transition: transform 0.2s ease-out;
}

.mouse-glow-2 {
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 50%, transparent 100%);
}

.animated-grid {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: 
        linear-gradient(rgba(34, 197, 94, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.5s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-wrapper {
    position: relative;
}

.logo-img {
    width: 2.5rem;
    height: 2.5rem;
    transition: all 0.5s ease;
}

.logo-container:hover .logo-img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.logo-glow {
    position: absolute;
    inset: 0;
    background: rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.logo-container:hover .logo-glow {
    opacity: 1;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    background: linear-gradient(to right, #fff, #d1d5db);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-link {
    position: relative;
    padding: 0.75rem;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #10b981;
    transform: scale(1.1);
}

.social-glow {
    position: absolute;
    inset: 0;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 0.75rem;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-link:hover .social-glow {
    transform: scale(1);
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 5rem;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.hero-inner {
    opacity: 0;
    transform: translateY(4rem);
    animation: fade-in-up 1.5s ease-out 0.3s forwards;
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.05em;
    margin-bottom: 3rem;
}

.title-line {
    display: block;
    margin-bottom: 1rem;
}

.gradient-text {
    position: relative;
    background: linear-gradient(to right, #10b981, #059669, #10b981);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to right, rgba(16, 185, 129, 0.2), rgba(34, 211, 238, 0.2), rgba(16, 185, 129, 0.2));
    filter: blur(3rem);
    opacity: 0.6;
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

.hero-description {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    color: #d1d5db;
    margin-bottom: 4rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.highlight {
    color: #10b981;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 3rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease;
    overflow: hidden;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background: linear-gradient(to right, #10b981, #059669);
    color: white;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.35);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(0.25rem);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: rgba(16, 185, 129, 0.5);
}

.btn-glow {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary .btn-glow {
    background: linear-gradient(to right, rgba(16, 185, 129, 0.4), rgba(5, 150, 105, 0.4));
    filter: blur(15px);
}

.btn-secondary .btn-glow {
    background: linear-gradient(to right, rgba(16, 185, 129, 0.1), rgba(34, 197, 94, 0.1));
}

.btn:hover .btn-glow {
    opacity: 1;
}

/* Products Section */
.products {
    padding: 8rem 2rem;
    position: relative;
}

.products-content {
    max-width: 1400px;
    margin: 0 auto;
}

.products-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(2.5rem);
    animation: fade-in-up 1s ease-out 0.6s forwards;
}

.section-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

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

.product-card {
    position: relative;
    opacity: 0;
    transform: translateY(2.5rem);
    animation: fade-in-up 0.7s ease-out forwards;
    transition: all 0.5s ease;
}

.product-card:nth-child(1) { animation-delay: 0.8s; }
.product-card:nth-child(2) { animation-delay: 0.9s; }
.product-card:nth-child(3) { animation-delay: 1s; }
.product-card:nth-child(4) { animation-delay: 1.1s; }
.product-card:nth-child(5) { animation-delay: 1.2s; }
.product-card:nth-child(6) { animation-delay: 1.3s; }

.product-card:hover {
    transform: translateY(-0.5rem);
}

.card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), transparent, rgba(34, 197, 94, 0.1));
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(20px);
}

.product-card:hover .card-glow {
    opacity: 1;
}

.card-content {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover .card-content {
    border-color: rgba(16, 185, 129, 0.3);
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.card-status {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.status-live {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-beta {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-coming {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.external-link {
    color: #6b7280;
    transition: all 0.3s ease;
}

.product-card:hover .external-link {
    color: #10b981;
    transform: scale(1.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.product-card:hover .card-title {
    color: #10b981;
}

.card-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.card-link:hover {
    color: #059669;
}

.card-link svg {
    transition: transform 0.2s ease;
}

.card-link:hover svg {
    transform: translateX(0.25rem);
}

/* About Section */
.about {
    padding: 8rem 2rem;
    position: relative;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(16, 185, 129, 0.05), transparent, rgba(34, 197, 94, 0.05));
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.about-header {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(2.5rem);
    animation: fade-in-up 1s ease-out 1.4s forwards;
}

.about-header .section-description {
    max-width: 64rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 5rem;
}

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

.feature-card {
    text-align: center;
    opacity: 0;
    transform: translateY(2.5rem);
    animation: fade-in-up 0.7s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 1.6s; }
.feature-card:nth-child(2) { animation-delay: 1.7s; }
.feature-card:nth-child(3) { animation-delay: 1.8s; }

.feature-icon {
    position: relative;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.emoji {
    font-size: 2.5rem;
}

.feature-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(34, 197, 94, 0.1));
    border-radius: 1.5rem;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #10b981;
}

.feature-description {
    color: #9ca3af;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    width: 3rem;
    height: 3rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    background: linear-gradient(to right, #fff, #d1d5db);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 3rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-social-link {
    position: relative;
    padding: 1rem;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    color: #10b981;
    transform: scale(1.1);
}

.footer-social-glow {
    position: absolute;
    inset: 0;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 0.75rem;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.footer-social-link:hover .footer-social-glow {
    transform: scale(1);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-social {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .products,
    .about {
        padding: 4rem 1rem;
    }
    
    .footer {
        padding: 3rem 1rem;
    }
    
    .nav {
        padding: 0 1rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
