/* Simulation hub — teal palette, container layout */

body {
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 50%, #0369a1 100%);
}

.sim-hub {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.sim-hub-lead h1 {
    margin: 0 0 8px 0;
    color: #0f766e;
    font-size: 1.6em;
}

.sim-hub-lead p {
    margin: 0;
    color: #64748b;
    font-size: 0.95em;
    line-height: 1.5;
    max-width: 720px;
}

.sim-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sim-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.sim-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d9488, #06b6d4);
}

.sim-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.18);
    border-color: #99f6e4;
}

.sim-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sim-icon-large {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0d9488, #0891b2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5em;
}

.sim-info h3 {
    margin: 0 0 6px 0;
    color: #0f766e;
    font-size: 1.15em;
}

.sim-info p {
    margin: 0;
    color: #666;
    font-size: 0.88em;
    line-height: 1.45;
}

.feature-tag {
    display: inline-block;
    align-self: flex-start;
    background: #ccfbf1;
    color: #0f766e;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
}

@media (max-width: 768px) {
    .sim-cards {
        grid-template-columns: 1fr;
    }
}
