/* Samn theme: app-specific components on top of webkit/static/core.css.
   Samn uses the default design tokens, so no overrides are needed. */

/* ===========================
   15. Setup page
   =========================== */
.setup-platform {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.setup-platform:first-of-type {
    margin-top: 0.25rem;
    padding-top: 0;
    border-top: none;
}
.setup-platform h4 {
    margin: 0 0 0.6rem;
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ===========================
   16. Services grid
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition:
        box-shadow 0.15s,
        border-color 0.15s;
}
.service-card:hover {
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.1);
    border-color: #4f46e5;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
}

.service-name {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 600;
}
.service-desc {
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    color: var(--muted);
    flex: 1;
}
.service-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4f46e5;
    text-decoration: none;
    align-self: flex-start;
}
.service-link:hover {
    text-decoration: none;
}
