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

body {
    font-family: "Segoe UI", "Arial", sans-serif;
    background: radial-gradient(circle at top, #7c7fdc 0%, #5a55b3 40%, #3c2f6f 100%);
    color: #0f172a;
    min-height: 100vh;
}

.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.hero {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 36px;
    backdrop-filter: blur(6px);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #f8fafc;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: rgba(248, 250, 252, 0.7);
}

h1 {
    font-size: 2.8rem;
    color: #ffffff;
    text-shadow: 0 6px 16px rgba(15, 23, 42, 0.35);
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(248, 250, 252, 0.85);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn.primary {
    background: #22c55e;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.45);
}

.btn.ghost {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.btn.ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.2);
}

.hero-card h2 {
    font-size: 1.4rem;
    color: #1e293b;
}

.hero-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    color: #475569;
}

.hero-card li::before {
    content: "•";
    color: #22c55e;
    margin-right: 10px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    background: #f1f5f9;
    padding: 16px;
    border-radius: 16px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
}

.section {
    background: #ffffff;
    border-radius: 26px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.section-title {
    margin-bottom: 24px;
}

.section-title h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.section-title p {
    color: #64748b;
}

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

.card {
    border-radius: 20px;
    padding: 22px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.15);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.card h3 {
    font-size: 1.2rem;
    color: #0f172a;
}

.tag {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag.ready {
    background: rgba(34, 197, 94, 0.15);
    color: #15803d;
}

.tag.soon {
    background: rgba(251, 191, 36, 0.2);
    color: #b45309;
}

.tag.idea {
    background: rgba(59, 130, 246, 0.2);
    color: #1d4ed8;
}

.card p {
    color: #475569;
    line-height: 1.5;
}

.meta {
    list-style: none;
    display: grid;
    gap: 6px;
    color: #64748b;
    font-size: 0.9rem;
}

.meta li::before {
    content: "✓";
    color: #22c55e;
    margin-right: 8px;
}

.card-link {
    margin-top: auto;
    text-decoration: none;
    color: #1d4ed8;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.card-link::after {
    content: "→";
    font-size: 1rem;
}

.card-link:hover {
    color: #1e40af;
}

.card-link.disabled {
    color: #94a3b8;
    pointer-events: none;
}

.card-link.disabled::after {
    content: "⏳";
}

.footer {
    text-align: center;
    color: rgba(248, 250, 252, 0.8);
    font-size: 0.9rem;
}

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

    h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 26px;
    }
}

@media (max-width: 600px) {
    .page {
        padding: 32px 16px 24px;
        gap: 32px;
    }

    .hero {
        padding: 24px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }
}
