/* ================================================================
   UTILITIES — Reusable atomic classes
   ================================================================ */

/* Pill shape — used by badges, buttons, links */
.pill {
    display: inline-flex;
    align-items: center;
    border-radius: var(--pill);
}

/* Gradient text — used by h1 and coming-soon badge */
.grad-text {
    background: linear-gradient(140deg, var(--ink-900) 0%, var(--ink-700) 60%, var(--sky) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Dark filled button — used by CTA and product links */
.btn-dark {
    background: var(--ink-900);
    color: #fff;
    padding: 0.75rem 1.7rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .18);
    transition: all var(--ease);
    text-decoration: none;
}

.btn-dark:hover {
    background: var(--ink-800);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, .22);
}

/* Shared section headings */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.6rem;
    text-align: center;
    color: var(--ink-900);
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--ink-400);
    margin-bottom: 3rem;
}