.auth-launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 12px;
    font-weight: 800;
}

.auth-launch-badge--light {
    background: rgba(13, 122, 85, 0.08);
    border-color: rgba(13, 122, 85, 0.16);
    color: #0f5132;
}

.auth-hero-title--launch {
    max-width: 12ch;
}

.auth-hero-lead--launch {
    max-width: 45ch;
}

.auth-hero-stack {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
}

.auth-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.auth-hero-metric {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-hero-metric strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
}

.auth-hero-metric span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.6;
}

.auth-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.auth-hero-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.auth-hero-link:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.auth-hero-link--solid {
    background: #fff;
    color: #0d7a55;
}

.auth-hero-link--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.auth-card-utility {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.auth-card-utility strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}

.auth-card-utility span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #64748b;
}

.auth-card-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 15px;
    border-radius: 12px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.auth-panel-grid {
    display: grid;
    gap: 14px;
}

.auth-panel-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-side-note {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-side-note strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
}

.auth-side-note span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.7;
}

.auth-inline-tips {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.auth-inline-tip {
    padding: 12px 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 13px;
    color: #334155;
    line-height: 1.7;
}

.auth-inline-tip strong {
    color: #0f172a;
}

.launch-highlight-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.launch-highlight-card {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(226, 232, 240, 0.95);
}

.launch-highlight-card strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}

.launch-highlight-card span {
    display: block;
    margin-top: 8px;
    color: #475569;
    font-size: 13px;
    line-height: 1.8;
}

.launch-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.launch-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
}

.launch-cta-link--wa {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
}

.launch-cta-link--login {
    background: linear-gradient(135deg, #0d7a55 0%, #109f6f 100%);
    color: #fff;
    border: 1px solid rgba(13, 122, 85, 0.16);
}

html.dark .auth-card-utility,
html.dark .auth-inline-tip {
    background: rgba(15, 23, 42, 0.55);
    border-color: rgba(148, 163, 184, 0.18);
}

html.dark .auth-card-utility strong,
html.dark .auth-inline-tip strong {
    color: #e2e8f0;
}

html.dark .auth-card-utility span,
html.dark .auth-inline-tip {
    color: #cbd5e1;
}

html.dark .auth-card-wa {
    background: rgba(4, 120, 87, 0.18);
    border-color: rgba(52, 211, 153, 0.3);
    color: #86efac;
}

@media (max-width: 960px) {
    .auth-hero-metrics,
    .launch-highlight-row,
    .auth-panel-grid--two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .auth-hero-cta-row,
    .launch-cta-row {
        flex-direction: column;
    }

    .auth-hero-link,
    .launch-cta-link,
    .auth-card-wa {
        width: 100%;
    }
}
