/* ==========================================================================
   Sophicly Start Gate v1.0.0 — "this attempt counts" front-door card.
   Brand-locked: dark surface, canonical push-button gradient on Begin.
   ========================================================================== */

.sgate {
    --sgate-font: 'Proxima Soft', system-ui, -apple-system, sans-serif;
    font-family: var(--sgate-font);
    max-width: 640px;
    margin: 24px auto;
    -webkit-font-smoothing: antialiased;
}

.sgate-card {
    background: #2a2b2e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
}

.sgate-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #51dacf;
    background: rgba(81,218,207,0.12);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.sgate-heading {
    font-size: 22px;
    font-weight: 700;
    color: #f0f0f2;
    margin-bottom: 12px;
    line-height: 1.25;
}

.sgate-body {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,0.62);
    max-width: 460px;
    margin: 0 auto 24px;
}

.sgate-begin {
    appearance: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    padding: 13px 38px;
    border-radius: 30px;
    background: linear-gradient(135deg, #5333ed 0%, #2c003e 100%);
    box-shadow: 0 6px 18px rgba(83,51,237,0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sgate-begin:hover {
    transform: translateY(-1px);
    box-shadow: 0 9px 24px rgba(83,51,237,0.45);
}

.sgate-begin:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(83,51,237,0.3);
}
