.auth-marketing-page {
    min-height: 100vh;
    padding: 14px 18px 40px;
    background:
        linear-gradient(rgba(138, 98, 213, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 98, 213, 0.06) 1px, transparent 1px),
        radial-gradient(circle at top center, rgba(181, 119, 255, 0.16), transparent 28%),
        #fcfbff;
    background-size: 40px 40px, 40px 40px, auto, auto;
}

.auth-marketing-page--compact {
    padding-bottom: 64px;
}

.marketing-nav {
    width: min(1280px, calc(100% - 8px));
    margin: 0 auto;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 12px;
    border: 1px solid rgba(16, 26, 45, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 40px rgba(123, 87, 197, 0.08);
}

.marketing-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #251739;
}

.marketing-brand strong {
    font-size: 22px;
    font-weight: 800;
}

.marketing-brand-badge {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(180deg, #7f4ce0, #5d2ee6);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(127, 76, 224, 0.22);
}

.marketing-brand-badge--small {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 11px;
}

.marketing-nav-links,
.marketing-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.marketing-nav-links a,
.auth-card-footer a {
    color: #413857;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.marketing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid rgba(39, 29, 63, 0.12);
}

.marketing-button--ghost {
    background: rgba(255, 255, 255, 0.9);
    color: #201535;
    box-shadow: 0 8px 24px rgba(44, 33, 76, 0.06);
}

.marketing-button--primary {
    color: #fff;
    background: linear-gradient(90deg, #7f4ce0 0%, #b948cc 55%, #ff7a18 100%);
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(168, 76, 210, 0.25);
}

.marketing-button--full {
    width: 100%;
}

.auth-hero-grid {
    width: min(1280px, calc(100% - 8px));
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 420px);
    gap: 28px;
    align-items: center;
}

.auth-hero-copy {
    padding: 24px 8px 24px 10px;
}

.auth-hero-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(127, 76, 224, 0.12);
    color: #8c61d8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
}

.auth-hero-copy h1 {
    margin: 18px 0 18px;
    max-width: 760px;
    color: #120a27;
    font-size: clamp(56px, 8vw, 92px);
    line-height: 0.92;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.auth-hero-copy h1 span {
    background: linear-gradient(90deg, #7f4ce0 0%, #d54da7 52%, #ff7a18 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.auth-hero-copy p {
    max-width: 700px;
    margin: 0;
    color: #5c5574;
    font-size: 22px;
    line-height: 1.55;
}

.auth-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.auth-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 760px;
    margin-top: 44px;
}

.auth-hero-stats article {
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 26, 45, 0.06);
}

.auth-hero-stats strong {
    display: block;
    margin-bottom: 4px;
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
    background: linear-gradient(90deg, #7f4ce0 0%, #d54da7 52%, #ff7a18 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.auth-hero-stats span {
    color: #665f7d;
    font-size: 13px;
    font-weight: 600;
}

.auth-glass-card {
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 28px 60px rgba(105, 77, 177, 0.14);
    backdrop-filter: blur(16px);
}

.auth-glass-card--wide {
    width: min(560px, 100%);
}

.auth-single-shell {
    width: min(1280px, calc(100% - 8px));
    min-height: calc(100vh - 160px);
    margin: 0 auto;
    display: grid;
    place-items: center;
}

.auth-card-headline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.auth-card-headline h2 {
    margin: 2px 0 0;
    color: #1c1234;
    font-size: 30px;
    line-height: 1.05;
}

.auth-helper-copy {
    margin: 0 0 20px;
    color: #5d5777;
    font-size: 15px;
    line-height: 1.65;
}

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

.auth-field {
    display: grid;
    gap: 8px;
}

.auth-field span {
    color: #2d2345;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.auth-field input {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(91, 79, 128, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    color: #201535;
    font-size: 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.auth-field input:focus {
    outline: none;
    border-color: rgba(127, 76, 224, 0.42);
    box-shadow: 0 0 0 4px rgba(127, 76, 224, 0.12);
}

.auth-card-footer {
    margin-top: 16px;
    text-align: center;
}

@media (max-width: 1100px) {
    .marketing-nav-links {
        display: none;
    }

    .auth-hero-grid {
        grid-template-columns: 1fr;
    }

    .auth-glass-card {
        max-width: 520px;
    }
}

@media (max-width: 720px) {
    .auth-marketing-page {
        padding: 12px 12px 28px;
    }

    .marketing-nav {
        flex-wrap: wrap;
        justify-content: center;
        padding: 12px;
    }

    .marketing-nav-actions {
        width: 100%;
        justify-content: center;
    }

    .auth-hero-copy h1 {
        font-size: clamp(44px, 14vw, 68px);
    }

    .auth-hero-copy p {
        font-size: 18px;
    }

    .auth-hero-stats {
        grid-template-columns: 1fr;
    }
}
