/* Payblis registration wizard — monochrome (black / white), aligned with pay.payblis.com layout */

:root {
    --pb-reg-black: #000000;
    --pb-reg-text: #0a0a0a;
    --pb-reg-muted: #6b7280;
    --pb-reg-border: #e5e7eb;
    --pb-reg-surface: #f9fafb;
    --pb-reg-white: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.pb-register-page,
body.pb-auth-login-page {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--pb-reg-text);
    background: var(--pb-reg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.pb-auth-login-page {
    font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.pb-register-page {
    color: var(--pb-reg-text);
}

.pb-register-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(300px, 42%) 1fr;
}

/* ─── Left panel (black) ─────────────────────────────────────── */

.pb-register-aside {
    position: relative;
    background: var(--pb-reg-black);
    color: var(--pb-reg-white);
    overflow: hidden;
}

.pb-register-aside__stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 38%;
    height: 32%;
    background: #1a1a1a;
    clip-path: polygon(0 0, 100% 0, 68% 100%, 0 100%);
}

.pb-register-aside__inner {
    position: relative;
    z-index: 1;
    padding: 2.75rem 2.5rem;
    max-width: 420px;
}

.pb-register-aside__logo {
    display: inline-flex;
    margin-bottom: 2.25rem;
    text-decoration: none;
}

.pb-logo-img--register {
    height: 34px;
    max-width: 150px;
}

.pb-register-aside__lead {
    font-size: 1.0625rem;
    line-height: 1.6;
    font-weight: 500;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.pb-register-aside__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.pb-register-aside__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.pb-register-aside__list i {
    color: var(--pb-reg-white);
    opacity: 0.75;
    margin-top: 0.1rem;
    flex-shrink: 0;
    font-size: 0.875rem;
}

/* ─── Right panel (white) ────────────────────────────────────── */

.pb-register-main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--pb-reg-white);
}

.pb-register-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    background: var(--pb-reg-white);
    border-bottom: 1px solid var(--pb-reg-border);
}

.pb-register-topbar__logo {
    display: none;
    text-decoration: none;
}

.pb-register-topbar__login {
    margin-left: auto;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--pb-reg-muted);
}

.pb-register-topbar__login a {
    color: var(--pb-reg-black);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pb-register-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2.5rem 2rem 3.5rem;
}

.pb-register-form,
.pb-register-success {
    width: 100%;
    max-width: 560px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.pb-register-step__label {
    margin: 0 0 0.65rem;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--pb-reg-black);
    text-transform: uppercase;
}

.pb-register-progress {
    height: 3px;
    background: #ececec;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.pb-register-progress span {
    display: block;
    height: 100%;
    background: var(--pb-reg-black);
    border-radius: inherit;
    transition: width 0.25s ease;
}

.pb-register-title,
.pb-auth-login-title {
    margin: 0 0 0.45rem;
    font-family: inherit;
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.25;
    color: var(--pb-reg-black);
}

.pb-register-subtitle,
.pb-auth-login-subtitle {
    margin: 0 0 1.75rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--pb-reg-muted);
    line-height: 1.55;
}

.pb-register-title {
    font-size: clamp(1.625rem, 3vw, 1.875rem);
}

.pb-register-subtitle {
    line-height: 1.6;
}

.pb-register-type-grid {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.pb-register-type-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.15rem;
    border: 1px solid var(--pb-reg-border);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    background: var(--pb-reg-white);
}

.pb-register-type-card:hover {
    border-color: #d1d5db;
    background: var(--pb-reg-surface);
}

.pb-register-type-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pb-register-type-card:has(input:checked) {
    border-color: var(--pb-reg-black);
    background: var(--pb-reg-surface);
    box-shadow: inset 0 0 0 1px var(--pb-reg-black);
}

.pb-register-type-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #f3f4f6;
    color: var(--pb-reg-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.pb-register-type-card__body {
    display: grid;
    gap: 0.2rem;
}

.pb-register-type-card__body strong {
    font-size: 0.975rem;
    color: var(--pb-reg-black);
}

.pb-register-type-card__body span {
    color: var(--pb-reg-muted);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.pb-register-categories-title {
    margin: 0 0 0.85rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pb-reg-black);
}

.pb-register-categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 1.25rem;
    margin-bottom: 1.35rem;
}

.pb-register-category {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.8125rem;
    color: var(--pb-reg-text);
    cursor: pointer;
}

.pb-register-category input {
    width: 15px;
    height: 15px;
    accent-color: var(--pb-reg-black);
}

.pb-register-terms {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    cursor: pointer;
    color: var(--pb-reg-text);
}

.pb-register-terms input {
    margin-top: 0.15rem;
    accent-color: var(--pb-reg-black);
}

.pb-register-terms a {
    color: var(--pb-reg-black);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pb-register-fields {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.pb-register-fields--grid {
    grid-template-columns: 1fr 1fr;
}

.pb-register-field {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.pb-register-field > span {
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pb-reg-black);
}

.pb-register-field > span em {
    font-style: normal;
    color: var(--pb-reg-muted);
    font-weight: 400;
}

.pb-register-field .form-control,
.pb-register-field .form-select {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--pb-reg-border);
    border-radius: 8px;
    font: inherit;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 400;
    background: var(--pb-reg-white);
    color: var(--pb-reg-text);
}

.pb-register-field .form-control::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.pb-register-field .form-control:focus,
.pb-register-field .form-select:focus {
    outline: none;
    border-color: var(--pb-reg-black);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.pb-register-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--pb-reg-muted);
}

.pb-register-hint code {
    font-size: 0.8125rem;
    background: var(--pb-reg-surface);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
}

.pb-register-hint--success {
    color: #15803d;
}

.pb-register-hint--warning {
    color: #b45309;
}

.pb-register-hint--warning {
    color: #b45309;
}

/* ─── Country picker (step 4) ───────────────────────────────── */

.pb-country-picker {
    position: relative;
}

.pb-country-picker__control {
    position: relative;
}

.pb-country-picker__input {
    width: 100%;
    padding-right: 2.25rem;
}

.pb-country-picker__chevron {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--pb-reg-muted);
    font-size: 0.75rem;
}

.pb-country-picker__list {
    position: absolute;
    z-index: 20;
    left: 0;
    right: 0;
    top: calc(100% + 0.35rem);
    max-height: 240px;
    overflow-y: auto;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    background: var(--pb-reg-white);
    border: 1px solid var(--pb-reg-border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pb-country-picker__option {
    display: block;
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    padding: 0.55rem 0.85rem;
    font: inherit;
    color: var(--pb-reg-text);
    cursor: pointer;
}

.pb-country-picker__option:hover,
.pb-country-picker__option.is-active {
    background: var(--pb-reg-surface);
}

.pb-country-picker__empty {
    padding: 0.65rem 0.85rem;
    font-size: 0.8125rem;
    color: var(--pb-reg-muted);
}

.pb-referral-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.pb-referral-input-wrap .form-control {
    padding-right: 2.5rem;
}

.pb-referral-input-wrap .form-control[readonly] {
    background: var(--pb-reg-surface);
}

.pb-referral-clear {
    position: absolute;
    right: 0.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--pb-reg-muted);
    cursor: pointer;
}

.pb-referral-clear:hover,
.pb-referral-clear:focus-visible {
    background: var(--pb-reg-surface);
    color: var(--pb-reg-black);
}

.pb-register-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 0.25rem;
}

.pb-register-actions--end {
    justify-content: flex-end;
}

.pb-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 120px;
    padding: 0 1.35rem;
    border-radius: 8px;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, opacity 0.15s;
}

.pb-register-btn--primary {
    background: var(--pb-reg-black);
    color: var(--pb-reg-white);
}

.pb-register-btn--primary:hover {
    background: #1a1a1a;
}

.pb-register-btn--ghost {
    background: var(--pb-reg-white);
    border-color: var(--pb-reg-border);
    color: var(--pb-reg-black);
}

.pb-register-btn--ghost:hover {
    background: var(--pb-reg-surface);
    border-color: #d1d5db;
}

.pb-alert {
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
}

.pb-alert--error {
    background: #fafafa;
    color: var(--pb-reg-black);
    border: 1px solid #d1d5db;
}

.pb-alert--success {
    background: var(--pb-reg-surface);
    color: var(--pb-reg-black);
    border: 1px solid var(--pb-reg-border);
}

.pb-alert--warning {
    background: var(--pb-reg-surface);
    color: var(--pb-reg-black);
    border: 1px solid var(--pb-reg-border);
}

.pb-text-muted {
    color: var(--pb-reg-muted);
}

.pb-text-muted a {
    color: var(--pb-reg-black);
}

@media (max-width: 960px) {
    .pb-register-shell {
        grid-template-columns: 1fr;
    }

    .pb-register-aside {
        display: none;
    }

    .pb-register-topbar__logo {
        display: inline-flex;
    }

    .pb-register-topbar {
        padding: 1rem 1.25rem;
    }

    .pb-register-content {
        padding: 1.75rem 1.25rem 2.5rem;
    }

    .pb-register-categories {
        grid-template-columns: 1fr;
    }

    .pb-register-fields--grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Login — fintech / banking app ───────────────────────────── */

body.pb-auth-login-page {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0b1220;
    background: #eef1f6;
}

.pb-auth-fintech {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(1200px 600px at 12% -10%, rgba(15, 23, 42, 0.14), transparent 55%),
        radial-gradient(900px 500px at 100% 0%, rgba(30, 41, 59, 0.10), transparent 50%),
        linear-gradient(165deg, #f7f8fb 0%, #e8edf5 48%, #dfe6f1 100%);
}

.pb-auth-fintech__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.55;
}

.pb-auth-fintech__glow--a {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
    background: rgba(148, 163, 184, 0.35);
}

.pb-auth-fintech__glow--b {
    width: 360px;
    height: 360px;
    bottom: 8%;
    left: -100px;
    background: rgba(100, 116, 139, 0.22);
}

.pb-auth-fintech__grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}

.pb-auth-login-main {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.25rem 2rem;
}

.pb-auth-login-shell {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.pb-auth-brand {
    text-align: center;
    padding: 0.25rem 0.5rem 0.15rem;
}

.pb-auth-brand__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-bottom: 0.85rem;
}

.pb-logo-img--auth {
    height: 42px;
    width: auto;
    max-width: 200px;
    display: block;
}

.pb-auth-brand__tagline {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #64748b;
}

.pb-auth-login-panel {
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 20px;
    padding: 1.75rem 1.5rem 1.6rem;
    box-shadow:
        0 1px 1px rgba(15, 23, 42, 0.03),
        0 12px 40px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pb-auth-card-head {
    margin-bottom: 1.35rem;
}

.pb-auth-login-title {
    text-align: left;
    margin: 0 0 0.35rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #0b1220;
    line-height: 1.2;
}

.pb-auth-login-subtitle {
    text-align: left;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #64748b;
    font-weight: 400;
}

.pb-auth-login-form {
    display: grid;
    gap: 0;
}

.pb-auth-login-page .pb-register-field > span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}

.pb-auth-login-page .pb-register-field .form-control {
    border-radius: 12px;
    border-color: #e2e8f0;
    background: #f8fafc;
    min-height: 48px;
    padding: 0.75rem 0.95rem;
    font-size: 0.975rem;
    color: #0b1220;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.pb-auth-login-page .pb-register-field .form-control:focus {
    background: #fff;
    border-color: #0b1220;
    box-shadow: 0 0 0 3px rgba(11, 18, 32, 0.08);
}

.pb-auth-login-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0.15rem 0 1.25rem;
}

.pb-auth-login-remember {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    color: #475569;
    cursor: pointer;
    margin: 0;
    font-weight: 500;
}

.pb-auth-login-remember input {
    width: 15px;
    height: 15px;
    accent-color: #0b1220;
}

.pb-auth-login-forgot {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0b1220;
    text-decoration: none;
    white-space: nowrap;
}

.pb-auth-login-forgot:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pb-auth-login-submit {
    width: 100%;
    min-height: 50px;
    border-radius: 12px;
    font-size: 0.975rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    background: #0b1220;
    box-shadow: 0 8px 20px rgba(11, 18, 32, 0.18);
}

.pb-auth-login-submit:hover {
    background: #111827;
}

.pb-auth-login-footer {
    margin-top: 1.35rem;
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
}

.pb-auth-login-footer a {
    font-weight: 600;
    color: #0b1220;
    text-decoration: none;
}

.pb-auth-login-footer a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pb-auth-fintech-foot {
    text-align: center;
    display: grid;
    gap: 0.75rem;
    padding: 0 0.25rem;
}

.pb-auth-fintech-foot__secure {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
}

.pb-auth-fintech-foot__secure svg {
    flex-shrink: 0;
    opacity: 0.85;
}

.pb-auth-fintech-foot__register {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}

.pb-auth-fintech-foot__register a {
    font-weight: 600;
    color: #0b1220;
    text-decoration: none;
}

.pb-auth-fintech-foot__register a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pb-auth-login-page .pb-install-back {
    color: #64748b;
}

.pb-auth-login-page .pb-install-tabs {
    background: #f1f5f9;
}

@media (max-width: 480px) {
    .pb-auth-login-main {
        padding: 1.75rem 1rem 1.5rem;
        align-items: flex-start;
    }

    .pb-auth-login-panel {
        padding: 1.4rem 1.15rem 1.3rem;
        border-radius: 18px;
    }

    .pb-logo-img--auth {
        height: 36px;
    }

    .pb-auth-login-row {
        flex-wrap: wrap;
        gap: 0.65rem;
    }

    .pb-auth-login-title {
        font-size: 1.35rem;
    }
}

/* ─── PWA install banner — dark Smart App Banner ──────────────── */

.pb-pwa-banner {
    display: none;
    box-sizing: border-box;
    width: 100%;
    align-items: center;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 50;
    margin: 0;
    padding: calc(10px + env(safe-area-inset-top, 0px)) 14px 10px 12px;
    background: rgba(11, 18, 32, 0.94);
    color: #f5f5f7;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
}

.pb-pwa-banner.is-open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.pb-pwa-banner.is-closing {
    display: flex;
    transform: translateY(-100%);
    opacity: 0;
}

@media (min-width: 821px) {
    .pb-pwa-banner.is-open,
    .pb-pwa-banner.is-closing {
        display: none;
    }
}

body.pb-has-pwa-banner .pb-auth-login-main {
    padding-top: 1rem;
}

.pb-pwa-banner__close {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(235, 235, 245, 0.7);
    display: grid;
    place-items: center;
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.pb-pwa-banner__close:active {
    background: rgba(255, 255, 255, 0.2);
}

.pb-pwa-banner__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 13px;
    object-fit: cover;
    background: #ffffff;
    box-shadow:
        0 0 0 0.5px rgba(255, 255, 255, 0.18),
        0 2px 8px rgba(0, 0, 0, 0.35);
}

.pb-pwa-banner__copy {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding-right: 4px;
}

.pb-pwa-banner__title {
    display: block;
    font-size: 15px;
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #f5f5f7;
}

.pb-pwa-banner__meta {
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
    color: rgba(235, 235, 245, 0.55);
}

.pb-pwa-banner__text {
    margin: 1px 0 0;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(235, 235, 245, 0.4);
}

.pb-pwa-banner__cta {
    flex-shrink: 0;
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 66px;
    height: 28px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #0b1220;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
}

.pb-pwa-banner__cta:active {
    opacity: 0.88;
}

.pb-pwa-banner--android .pb-pwa-banner__cta {
    font-size: 13px;
    font-weight: 650;
}

/* ─── Install guide page ──────────────────────────────────────── */

.pb-install-back {
    display: inline-block;
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--pb-reg-muted);
    text-decoration: none;
}

.pb-install-back:hover {
    color: var(--pb-reg-black);
}

.pb-install-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    padding: 0.3rem;
    background: #f3f4f6;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.pb-install-tab {
    border: 0;
    background: transparent;
    border-radius: 9px;
    padding: 0.65rem 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--pb-reg-muted);
    cursor: pointer;
}

.pb-install-tab.is-active {
    background: #fff;
    color: var(--pb-reg-black);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.pb-install-steps {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.pb-install-steps li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.pb-install-step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #0a0a0a;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    margin-top: 0.1rem;
}

.pb-install-steps strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 650;
    margin-bottom: 0.2rem;
}

.pb-install-steps p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--pb-reg-muted);
}

.pb-install-steps em {
    font-style: normal;
    font-weight: 600;
    color: var(--pb-reg-black);
}

.pb-install-open-app {
    margin-top: 0.25rem;
}

