/* === Base === */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0b0f1a;
    color: #e2e8f0;
    min-height: 100vh;
}

.page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Hero === */
.hero {
    text-align: center;
    padding: 80px 0 48px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 2.2rem;
    color: #6366f1;
    filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.5));
}

.logo-text {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === Products === */
.products {
    padding: 32px 0 64px;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #64748b;
    margin-bottom: 24px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* === Product Cards === */
.product-card {
    position: relative;
    background: #131827;
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 32px 24px 28px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card.live {
    cursor: pointer;
}

.product-card.live:hover {
    border-color: #6366f1;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.product-card.coming-soon {
    opacity: 0.6;
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-live {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-soon {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.product-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.product-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.product-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
}

.product-link.coming {
    color: #475569;
}

/* === Footer === */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #1e293b;
    color: #475569;
    font-size: 0.85rem;
}

/* === Responsive === */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .hero { padding: 48px 0 32px; }
    .logo-text { font-size: 2rem; }
}
