/* Landing page */

.app-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.app-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 20px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.15s, transform 0.1s;
}

.app-card:active {
    transform: scale(0.98);
}

.app-card:hover {
    background: var(--surface2);
}

.app-card.coming-soon {
    opacity: 0.5;
    pointer-events: none;
}

.app-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-info {
    flex: 1;
    min-width: 0;
}

.app-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.app-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.3;
}

.app-arrow {
    flex-shrink: 0;
    color: var(--text-dim);
}

/* Back button in header */
.header-back {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    text-decoration: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
    margin-right: 4px;
}

.header-back:hover {
    background: var(--surface2);
    color: var(--text);
}
