:root {
    --btn-primary-bg: #328fde;
    --btn-primary-shadow: #2b70aa;
    --btn-text-white: #ffffff;
    --btn-inactive-bg: #e5e5e5;
    --btn-inactive-text: #afafaf;
    --btn-radius: 14px;
}

.btn-onboarding {
    display: block;
    width: 100%;
    max-width: 325px;
    height: 44px;
    border-radius: var(--btn-radius);
    border: none;
    font-family: var(--onboarding-font-rounded, 'SF Pro Rounded', sans-serif);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.1s ease;
    text-align: center;
    line-height: 44px;
    text-decoration: none;
    margin: 0 auto 16px;
    position: relative;
    user-select: none;
}

/* Primary Button */
.btn-primary {
    background-color: var(--btn-primary-bg);
    color: var(--btn-text-white);
    box-shadow: 0 4px 0 var(--btn-primary-shadow);
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-primary:active {
    box-shadow: 0 0 0 var(--btn-primary-shadow);
    transform: translateY(4px);
}

/* Secondary Button */
.btn-secondary {
    background-color: transparent;
    color: var(--btn-primary-bg);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: rgba(50, 143, 222, 0.05);
}

.btn-secondary:active {
    transform: scale(0.98);
}

/* Inactive State */
.btn-onboarding.inactive,
.btn-onboarding:disabled {
    background-color: var(--btn-inactive-bg);
    color: var(--btn-inactive-text);
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}