/* ---------------- HERO ---------------- */
.hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-light) 100%);
    color: var(--white);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 180, 255, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 180, 255, 0.1), transparent 40%);
    pointer-events: none;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    position: relative;
}
.hero h1 span { color: var(--electric-blue); }
.hero p {
    font-size: 1.15rem;
    font-weight: 300;
    opacity: 0.85;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

/* ---------------- APPLICATIONS GRID ---------------- */
.apps-section {
    max-width: 1280px;
    margin: -3rem auto 4rem;
    padding: 0 2rem;
    position: relative;
}
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

/* ---------------- CARD ---------------- */
.app-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 25, 41, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--gray-200);
}
.app-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 180, 255, 0.18);
}
.app-card .icon-wrap {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-light));
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}
.app-card .icon-wrap i {
    font-size: 2.75rem;
    color: var(--electric-blue);
}
.app-card .body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.app-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}
.app-card p {
    font-size: 0.92rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    flex: 1;
}

.btn-launch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--electric-blue);
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease;
}
.btn-launch:hover {
    background: var(--electric-blue-2);
    transform: translateX(2px);
}

/* ---------------- COMING SOON ---------------- */
.app-card.coming-soon .icon-wrap {
    background: linear-gradient(135deg, #2a3142, #4a5568);
}
.app-card.coming-soon .icon-wrap i { color: var(--gray-400); }

.coming-soon-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(0, 180, 255, 0.05),
            rgba(0, 180, 255, 0.05) 10px,
            rgba(0, 180, 255, 0.1) 10px,
            rgba(0, 180, 255, 0.1) 20px
        ),
        linear-gradient(135deg, #f5f7fa, #e4e9f0);
    padding: 2rem 1rem;
    border-top: 2px dashed var(--electric-blue);
    border-bottom: 2px dashed var(--electric-blue);
}
.coming-soon-image .badge {
    background: var(--electric-blue);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 180, 255, 0.3);
}
.coming-soon-image .label {
    color: var(--gray-600);
    font-size: 0.85rem;
    font-weight: 500;
}

.ribbon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--electric-blue);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 180, 255, 0.4);
}

/* ---------------- EMPTY STATE ---------------- */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-600);
    background: var(--white);
    border-radius: 14px;
    border: 2px dashed var(--gray-200);
}
.empty-state i {
    font-size: 3rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 640px) {
    .hero h1 { font-size: 2.2rem; }
    .hero p  { font-size: 1rem; }
    .apps-section { padding: 0 1rem; }
}
