/* ===================================================================
   OptionsGym — shared tokens and primitives used by the landing
   and standalone widgets (waitlist). Palette: GitHub dark dimmed.
   =================================================================== */

:root {
    --og-bg: #0d1117;
    --og-panel: #161b22;
    --og-raised: #1c2230;
    --og-line: #30363d;
    --og-line-soft: #21262d;
    --og-text: #e6edf3;
    --og-muted: #8b949e;
    --og-accent: #58a6ff;
    --og-accent-strong: #1f6feb;
    --og-green: #3fb950;
    --og-red: #f85149;
    --og-amber: #d29922;
}

.og-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.og-section {
    padding-top: 44px;
    padding-bottom: 44px;
}

.og-kicker {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .78rem;
    font-weight: 700;
    color: var(--og-accent);
}

/* ---------- buttons ---------- */
.og-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    padding: 13px 22px;
    border-radius: 11px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform .06s ease, filter .15s ease, border-color .15s ease, color .15s ease, background-color .15s ease;
    white-space: nowrap;
}

.og-btn:active {
    transform: scale(.96);
}

.og-btn--primary {
    background: var(--og-accent);
    color: #04111f;
}

.og-btn--primary:hover {
    filter: brightness(1.08);
    color: #04111f;
}
