.amb.creator-mode {
    background:
        radial-gradient(ellipse 55% 60% at 15% 50%, rgba(232, 184, 75, .08) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 85% 20%, rgba(232, 184, 75, .05) 0%, transparent 60%),
        radial-gradient(ellipse 30% 40% at 60% 90%, rgba(139, 92, 246, .05) 0%, transparent 60%);
}

.amb.fan-mode {
    background:
        radial-gradient(ellipse 55% 60% at 15% 50%, rgba(0, 212, 255, .07) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 85% 20%, rgba(0, 212, 255, .05) 0%, transparent 60%),
        radial-gradient(ellipse 30% 40% at 60% 90%, rgba(139, 92, 246, .05) 0%, transparent 60%);
}

.left {
    position: relative;
    overflow: hidden;
    background: #000;
    display: flex;
    flex-direction: column;
}

/* Slides */
.slides-track {
    display: flex;
    height: 100%;
    transition: transform .95s cubic-bezier(.77, 0, .18, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.55) saturate(1.15);
}

/* .slide-bg {
    width: 100%;
    height: 100%;
} */

.bg1 {
    background: linear-gradient(145deg, #08001A, #1A0040, #3800A0, rgba(139, 92, 246, .25));
}

.bg2 {
    background: linear-gradient(145deg, #001828, #003868, #006FBC, rgba(0, 212, 255, .2));
}

.bg3 {
    background: linear-gradient(145deg, #100008, #2D0018, #650038, rgba(255, 64, 128, .22));
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(65px);
    animation: orbP 8s ease-in-out infinite alternate;
}

.o1 {
    width: 360px;
    height: 360px;
    top: -70px;
    left: -60px;
    animation-delay: 0s;
}

.o2 {
    width: 240px;
    height: 240px;
    bottom: 80px;
    right: -40px;
    animation-delay: -3s;
}

.o3 {
    width: 170px;
    height: 170px;
    top: 45%;
    left: 40%;
    animation-delay: -5.5s;
}

@keyframes orbP {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.38) translate(20px, -20px);
    }
}

/* .slide::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .3) 45%, transparent 75%),
        linear-gradient(to right, rgba(0, 0, 0, .1) 0%, transparent 55%);
} */

/* Slide body */
.s-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(28px, 3.5vw, 52px) clamp(28px, 3.5vw, 52px) clamp(32px, 4vw, 60px);
    z-index: 3;
}

.lbadge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lbadge.req {
    background: rgba(255, 64, 128, 0.15);
    color: var(--pink);
    border: 1px solid rgba(255, 64, 128, 0.2);
}

.lbadge.opt {
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted2);
    border: 1px solid var(--border2);
}

.s-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(232, 184, 75, .38);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-lt);
    backdrop-filter: blur(10px);
    background: rgba(232, 184, 75, .08);
    margin-bottom: 18px;
}

.s-tag::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
    animation: dotpulse 2.2s infinite;
}

@keyframes dotpulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(232, 184, 75, .65);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(232, 184, 75, 0);
    }
}

.s-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3.8vw, 50px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .55);
    margin-bottom: 12px;
}

.s-title em {
    font-style: normal;
    color: var(--gold-lt);
}

.s-desc {
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 400;
    color: rgba(255, 255, 255, .6);
    line-height: 1.72;
    max-width: 380px;
    margin-bottom: 24px;
}

.s-stats {
    display: flex;
    gap: clamp(18px, 2.5vw, 36px);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.st-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    color: var(--gold-lt);
    display: block;
}

.st-l {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, .4);
    margin-top: 2px;
    display: block;
    letter-spacing: .4px;
}

/* Slider chrome */
.s-logo {
    position: absolute;
    top: clamp(18px, 2.5vw, 28px);
    left: clamp(18px, 2.5vw, 32px);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
    text-decoration: none;
}

.logo-gem {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
    display: grid;
    place-items: center;
    font-size: 18px;
    box-shadow: 0 4px 22px rgba(232, 184, 75, .45);
}

.s-ctrls {
    position: absolute;
    top: clamp(18px, 2.5vw, 28px);
    right: clamp(14px, 2vw, 24px);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.cb {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(232, 184, 75, .25);
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(10px);
    color: var(--gold-lt);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 13px;
    transition: background .2s, transform .18s;
}

.cb:hover {
    background: rgba(232, 184, 75, .2);
    transform: scale(1.1);
}

.s-dots {
    position: absolute;
    bottom: clamp(16px, 2vw, 22px);
    right: clamp(18px, 2.5vw, 28px);
    z-index: 10;
    display: flex;
    gap: 6px;
}

.sdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: all .3s;
}

.sdot.on {
    background: var(--gold);
    width: 22px;
    border-radius: 4px;
}

.s-prog {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, .06);
    z-index: 10;
}

.s-pf {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
    width: 0%;
    transition: width .12s linear;
}

/* ══════════════════════════════════════════════
   RIGHT — FORM PANEL
══════════════════════════════════════════════ */
.right {
    background: var(--panel);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.right::-webkit-scrollbar {
    width: 3px;
}

.right::-webkit-scrollbar-thumb {
    background: rgba(232, 184, 75, .18);
    border-radius: 2px;
}

/* ── Role Switcher Tabs ── */
.tabs {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--borderW);
    flex-shrink: 0;
}

.tab {
    flex: 1;
    padding: 20px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted2);
    border-bottom: 2px solid transparent;
    transition: color .25s, border-color .25s, background .25s;
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: .3px;
}

.tab:hover {
    color: var(--muted);
    background: rgba(255, 255, 255, .02);
}

.tab.active.creator-tab {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background: rgba(232, 184, 75, .04);
}

.tab.active.fan-tab {
    color: var(--cyan);
    border-bottom-color: var(--cyan);
    background: rgba(0, 212, 255, .04);
}

.tab-emoji {
    font-size: 16px;
}

.tab-sep {
    width: 1px;
    background: var(--borderW);
}

/* ── Form Wrap ── */
.form-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(32px, 4vh, 60px) clamp(32px, 5vw, 72px);
}

/* Form panel - one visible at a time */
.form-panel {
    display: none;
    width: 100%;
    animation: fIn .45s cubic-bezier(.22, 1, .36, 1) both;
}

.form-panel.show {
    display: flex;
    flex-direction: column;
}

@keyframes fIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Eyebrow */
.eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.creator-panel .eyebrow {
    color: var(--gold);
}

.fan-panel .eyebrow {
    color: var(--cyan);
}

/* Headline */
.f-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 10px;
}

.creator-panel .f-title em {
    font-style: normal;
    color: var(--gold-lt);
}

.fan-panel .f-title em {
    font-style: normal;
    color: var(--cyan);
}

.f-sub {
    font-size: 14.5px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--borderW);
}

.f-sub strong {
    color: var(--text);
    font-weight: 600;
}

/* Fields */
.fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 22px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.creator-panel .field label {
    color: rgba(232, 184, 75, .65);
}

.fan-panel .field label {
    color: rgba(0, 212, 255, .55);
}

.field-wrap {
    position: relative;
}

.field-wrap .fi {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
    pointer-events: none;
    z-index: 1;
}

.creator-panel .fi {
    color: rgba(232, 184, 75, .4);
}

.fan-panel .fi {
    color: rgba(0, 212, 255, .35);
}

.field input {
    width: 100%;
    background: var(--surface);
    border: 1.5px solid var(--borderW);
    border-radius: var(--r);
    padding: 15px 16px 15px 48px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 400;
    color: var(--text);
    outline: none;
    transition: border-color .22s, box-shadow .22s, background .22s;
}

.field input::placeholder {
    color: rgba(255, 255, 255, .16);
}

.creator-panel .field input:focus {
    border-color: rgba(232, 184, 75, .5);
    box-shadow: 0 0 0 4px rgba(232, 184, 75, .07);
    background: rgba(232, 184, 75, .02);
}

.fan-panel .field input:focus {
    border-color: rgba(0, 212, 255, .45);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, .07);
    background: rgba(0, 212, 255, .02);
}

.field input.has-eye {
    padding-right: 48px;
}

.eye-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--muted2);
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    transition: color .2s;
}

.creator-panel .eye-btn:hover {
    color: var(--gold);
}

.fan-panel .eye-btn:hover {
    color: var(--cyan);
}

/* Remember row */
.row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.check-wrap {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    user-select: none;
}

.check-wrap input {
    width: 17px;
    height: 17px;
    border-radius: 5px;
    cursor: pointer;
    flex-shrink: 0;
}

.creator-panel .check-wrap input {
    accent-color: var(--gold);
}

.fan-panel .check-wrap input {
    accent-color: var(--cyan);
}

.check-wrap span {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
}

.forgot-link {
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s;
}

.creator-panel .forgot-link {
    color: rgba(232, 184, 75, .6);
}

.creator-panel .forgot-link:hover {
    color: var(--gold-lt);
}

.fan-panel .forgot-link {
    color: rgba(0, 212, 255, .55);
}

.fan-panel .forgot-link:hover {
    color: var(--cyan);
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 16px;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    margin-bottom: 20px;
}

.login-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .18), transparent);
    opacity: 0;
    transition: opacity .22s;
}

.login-btn:hover {
    transform: translateY(-2px);
}

.login-btn:hover::before {
    opacity: 1;
}

.login-btn:active {
    transform: none;
}

.creator-panel .login-btn {
    background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 50%, var(--gold-lt) 100%);
    color: #000;
    box-shadow: 0 8px 28px rgba(232, 184, 75, .28);
}

.creator-panel .login-btn:hover {
    box-shadow: 0 14px 42px rgba(232, 184, 75, .45);
}

.fan-panel .login-btn {
    background: linear-gradient(135deg, #004D60 0%, #009BBF 50%, var(--cyan) 100%);
    color: #000;
    box-shadow: 0 8px 28px rgba(0, 212, 255, .2);
}

.fan-panel .login-btn:hover {
    box-shadow: 0 14px 42px rgba(0, 212, 255, .38);
}

/* Divider */
.or-div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--muted2);
    margin-bottom: 18px;
}

.or-div::before,
.or-div::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--borderW);
}

/* Social buttons */
.socials {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 26px;
}

.s-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid var(--borderW);
    border-radius: 12px;
    padding: 13px;
    background: var(--surface);
    cursor: pointer;
    transition: border-color .22s, background .22s, transform .18s;
    font-size: 19px;
}

.creator-panel .s-btn:hover {
    border-color: rgba(232, 184, 75, .3);
    background: rgba(232, 184, 75, .04);
    transform: translateY(-2px);
}

.fan-panel .s-btn:hover {
    border-color: rgba(0, 212, 255, .25);
    background: rgba(0, 212, 255, .04);
    transform: translateY(-2px);
}

/* Footer note */
.form-footer {
    text-align: center;
    font-size: 13.5px;
    font-weight: 400;
    color: var(--muted);
}

.form-footer a {
    font-weight: 700;
    text-decoration: none;
    transition: color .2s;
}

.creator-panel .form-footer a {
    color: var(--gold-lt);
}

.creator-panel .form-footer a:hover {
    text-decoration: underline;
}

.fan-panel .form-footer a {
    color: var(--cyan);
}

.fan-panel .form-footer a:hover {
    text-decoration: underline;
}

/* Welcome back banner */
.wb-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--gold-dim);
    border: 1px solid rgba(232, 184, 75, .15);
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 26px;
}

.fan-panel .wb-banner {
    background: rgba(0, 212, 255, .07);
    border-color: rgba(0, 212, 255, .15);
}

.wb-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.wb-text {
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.6;
}

.wb-text strong {
    color: var(--text);
    font-weight: 700;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 960px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .left {
        height: 52vw;
        min-height: 419px;
        max-height: 340px;
    }

    body {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .right {
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .form-wrap {
        justify-content: flex-start;
        padding: 32px 28px 48px;
    }
}

@media (max-width: 600px) {
    .left {
        height: 60vw;
        max-height: 280px;
    }

    .form-wrap {
        padding: 28px 20px 44px;
    }

    .s-body {
        padding: 20px 22px 32px;
    }

    .s-title {
        font-size: 22px;
    }

    .s-stats {
        gap: 16px;
    }

    .f-title {
        font-size: 30px;
    }
}

@media (max-width: 420px) {
    .socials {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .tabs .tab {
        font-size: 12px;
        padding: 16px 10px;
    }
}