.landing-page {
    --landing-bg: #070a16;
    --landing-panel: rgba(22, 25, 44, .76);
    --landing-line: rgba(255, 78, 145, .28);
    --landing-pink: #ff2e73;
    --landing-pink-2: #ff69a8;
    --landing-text: #ffffff;
    --landing-muted: rgba(255, 255, 255, .72);
    --landing-shadow: 0 30px 100px rgba(255, 46, 115, .2);
    margin: -28px 0 -106px;
    overflow: hidden;
    color: var(--landing-text);
    background: linear-gradient(180deg, #070a16 0%, #0b1024 58%, #f8fafc 58%, #ffffff 100%);
}

.landing-page * {
    box-sizing: border-box;
}

.landing-page .landing-nav,
.landing-page > section,
.landing-footer {
    width: min(1440px, calc(100% - 48px));
    margin-right: auto;
    margin-left: auto;
}

.site-header {
    display: none;
}

.container {
    width: 100%;
    padding-top: 0;
}

.landing-nav {
    position: sticky;
    top: 14px;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    margin-top: 14px;
    border: 1px solid var(--landing-line);
    border-radius: 24px;
    padding: 10px 28px;
    background: rgba(12, 13, 28, .72);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
    backdrop-filter: blur(22px);
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}

.landing-logo {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 46, 115, .18);
    box-shadow: 0 14px 34px rgba(255, 46, 115, .34);
}

.landing-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-links {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.2vw, 34px);
}

.landing-links a,
.landing-footer a {
    position: relative;
    color: rgba(255, 255, 255, .88);
    font-weight: 800;
}

.landing-links a::after,
.landing-footer a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--landing-pink), var(--landing-pink-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}

.landing-links a:hover::after,
.landing-links a.is-active::after,
.landing-footer a:hover::after {
    transform: scaleX(1);
}

.landing-links a:hover,
.landing-links a.is-active {
    color: var(--landing-pink-2);
}

.landing-actions,
.hero-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    border-radius: 16px;
    padding: 0 24px;
    border: 1px solid transparent;
    font-weight: 900;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.landing-btn span {
    transition: transform .22s ease;
}

.landing-btn:hover {
    transform: translateY(-4px);
}

.landing-btn:hover span {
    transform: translateX(5px);
}

.landing-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--landing-pink), var(--landing-pink-2));
    box-shadow: 0 18px 42px rgba(255, 46, 115, .32);
}

.landing-btn-primary:hover {
    box-shadow: 0 24px 62px rgba(255, 46, 115, .46);
}

.landing-btn-ghost,
.landing-btn-glass {
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
}

.landing-btn-ghost:hover,
.landing-btn-glass:hover {
    border-color: rgba(255, 105, 168, .78);
    box-shadow: 0 18px 44px rgba(255, 46, 115, .18);
}

.landing-btn-large {
    min-height: 64px;
    border-radius: 18px;
    padding: 0 32px;
}

.landing-hero-html {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    align-items: center;
    min-height: 690px;
    padding: 72px 48px 110px;
}

.landing-hero-html::before {
    content: "";
    position: absolute;
    top: -110px;
    right: calc(50% - 50vw);
    bottom: -68px;
    left: calc(50% - 50vw);
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(7, 10, 22, .96) 0%, rgba(7, 10, 22, .78) 36%, rgba(7, 10, 22, .38) 72%, rgba(7, 10, 22, .76) 100%),
        linear-gradient(180deg, rgba(7, 10, 22, .88) 0%, rgba(7, 10, 22, .22) 52%, rgba(7, 10, 22, .96) 100%),
        url("../images/landing-heart-bg.66c68b003df1.png") center / cover no-repeat;
}

.landing-hero-html::after {
    content: "";
    position: absolute;
    right: calc(50% - 50vw);
    bottom: -70px;
    left: calc(50% - 50vw);
    z-index: 1;
    height: 190px;
    background: linear-gradient(180deg, rgba(7, 10, 22, 0), #070a16 64%, rgba(248, 250, 252, .92) 100%);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 610px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border: 1px solid rgba(255, 46, 115, .42);
    border-radius: 999px;
    padding: 0 16px;
    color: #ff88ba;
    background: rgba(255, 46, 115, .12);
    box-shadow: inset 0 0 24px rgba(255, 46, 115, .08);
    font-weight: 800;
}

.hero-copy h1 {
    margin: 30px 0 22px;
    font-size: clamp(56px, 6.4vw, 96px);
    line-height: .98;
    font-weight: 900;
}

.hero-copy h1 span {
    display: block;
    color: var(--landing-pink-2);
}

.hero-copy p {
    max-width: 560px;
    margin: 0;
    color: var(--landing-muted);
    font-size: 20px;
    line-height: 1.72;
}

.hero-cta {
    flex-wrap: wrap;
    margin-top: 36px;
}

.play-dot {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.play-dot::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid currentColor;
}

.floating-hearts {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-hearts img {
    position: absolute;
    left: var(--x);
    bottom: 10%;
    width: calc(42px * var(--s));
    height: auto;
    opacity: .55;
    filter: blur(.2px) drop-shadow(0 10px 26px rgba(255, 46, 115, .48));
    animation: floatHeart 8s ease-in-out infinite;
    animation-delay: var(--d);
}

.inline-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@keyframes floatHeart {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-8deg) scale(1);
        opacity: .25;
    }
    45% {
        transform: translate3d(18px, -170px, 0) rotate(10deg) scale(1.12);
        opacity: .72;
    }
}

.hero-visual {
    position: relative;
    z-index: 2;
    height: min(580px, 52vw);
    min-height: 470px;
    transform-style: preserve-3d;
    transition: transform .18s ease-out;
}

.halo {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
}

.halo-left {
    top: 108px;
    left: 6%;
    width: 150px;
    height: 150px;
    background: rgba(255, 46, 115, .34);
}

.halo-right {
    right: 4%;
    bottom: 88px;
    width: 210px;
    height: 210px;
    background: rgba(255, 46, 115, .42);
}

.couple-photo {
    position: absolute;
    right: -150px;
    bottom: -86px;
    width: auto;
    max-width: none;
    height: min(760px, 66vw);
    filter: drop-shadow(0 34px 70px rgba(0, 0, 0, .42)) saturate(1.08);
    -webkit-mask: linear-gradient(90deg, transparent 0%, #000 12%, #000 76%, transparent 96%);
    mask: linear-gradient(90deg, transparent 0%, #000 12%, #000 76%, transparent 96%);
    transform: translateZ(28px);
    user-select: none;
    pointer-events: none;
}

.hero-visual::after {
    content: none;
}

.match-chip,
.chat-chip {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    padding: 10px 14px;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
    backdrop-filter: blur(18px);
    font-weight: 900;
}

.match-chip {
    top: 22%;
    right: 7%;
}

.chat-chip {
    right: 13%;
    bottom: 18%;
}

.feature-strip,
.stats-strip {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: -86px;
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
}

.feature-strip {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(23, 27, 47, .86);
    backdrop-filter: blur(20px);
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 128px;
    padding: 26px 32px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.mini-feature:last-child {
    border-right: 0;
}

.mini-feature:hover,
.landing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 46, 115, .62);
    box-shadow: 0 24px 60px rgba(255, 46, 115, .16);
}

.icon-bubble,
.card-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle, rgba(255, 46, 115, .22), rgba(255, 46, 115, .08));
}

.icon-bubble img,
.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-feature h3,
.landing-card h3 {
    margin: 0 0 8px;
    color: #fff;
}

.mini-feature p,
.landing-card p {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.55;
}

.stats-strip {
    margin-top: 14px;
    color: #0e1326;
    background: #fff;
}

.stats-strip article {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    column-gap: 14px;
    min-height: 50px;
    padding: 24px;
    border-right: 1px solid #edf0f6;
}

.stats-strip article:last-child {
    border-right: 0;
}

.stats-strip img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.stats-strip strong {
    font-size: 38px;
    font-weight: 900;
}

.stats-strip p {
    grid-column: 2;
    margin: 0;
    color: #6f7483;
}

.landing-section {
    padding: 20px 0;
    color: #0e1326;
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    padding: 0 14px;
    color: var(--landing-pink);
    background: #fff0f6;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.landing-section h2,
.premium-section h2 {
    margin: 14px 0 10px;
    font-size: clamp(36px, 5vw, 56px);
    color: #6f7483;
    line-height: 1.04;
    font-weight: 900;
}

.section-lead,
.premium-section p {
    max-width: 680px;
    margin: 0 auto;
    color: #6f7483;
    font-size: 18px;
    line-height: 1.7;
}

.landing-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 38px;
}

.landing-card {
    min-height: 260px;
    border: 1px solid #f2d5e2;
    border-radius: 24px;
    padding: 28px;
    text-align: left;
    background: #fff;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.landing-card h3 {
    margin-top: 22px;
    color: #0e1326;
}

.landing-card p {
    color: #6f7483;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
    align-items: center;
    gap: 48px;
    text-align: left;
}

.split-section .section-lead {
    margin-left: 0;
}

.safety-panel {
    display: grid;
    gap: 14px;
    border-radius: 28px;
    padding: 24px;
    color: #fff;
    background: linear-gradient(145deg, #151a33, #090d1c);
    box-shadow: 0 26px 80px rgba(15, 23, 42, .2);
}

.safety-panel div {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, .06);
}

.safety-panel img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.safety-panel span {
    color: rgba(255, 255, 255, .68);
}

.premium-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 46px;
    border-radius: 32px;
    padding: 46px;
    background:
        radial-gradient(circle at 82% 20%, rgba(255, 255, 255, .25), transparent 12rem),
        linear-gradient(135deg, var(--landing-pink), var(--landing-pink-2));
    box-shadow: 0 30px 80px rgba(255, 46, 115, .3);
}

.premium-icon {
    width: clamp(92px, 12vw, 150px);
    height: auto;
    flex: 0 0 auto;
    filter: drop-shadow(0 18px 38px rgba(0, 0, 0, .16));
}

.premium-section .section-kicker {
    color: #fff;
    background: rgba(255, 255, 255, .18);
}

.premium-section h2,
.premium-section p {
    color: #fff;
}

.premium-section p {
    margin-left: 0;
}

.premium-section .landing-btn-primary {
    background: #090d1c;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}

.landing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid #edf0f6;
    padding: 34px 0 46px;
    color: #0e1326;
}

.landing-footer .landing-brand,
.landing-footer a {
    color: #0e1326;
}

.landing-footer p {
    margin: 0;
    color: #6f7483;
}

.landing-footer div {
    display: flex;
    gap: 20px;
}

.mobile-sticky-cta {
    display: none;
}

@media (max-width: 1180px) {
    .landing-links {
        display: none;
    }

    .landing-hero-html {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 52px;
    }

    .hero-copy {
        max-width: 780px;
    }

    .hero-visual {
        height: 520px;
    }

    .couple-photo {
        right: 50%;
        width: auto;
        height: min(690px, 82vw);
        transform: translateX(50%) translateZ(28px);
    }

    .feature-strip,
    .stats-strip,
    .landing-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mini-feature:nth-child(2),
    .stats-strip article:nth-child(2) {
        border-right: 0;
    }

    .mini-feature:nth-child(-n+2),
    .stats-strip article:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }
}

@media (max-width: 760px) {
    .landing-page {
        margin-right: 0;
        margin-bottom: -106px;
        margin-left: 0;
        background: linear-gradient(180deg, #070a16 0%, #0b1024 62%, #f8fafc 62%, #fff 100%);
    }

    .landing-page .landing-nav,
    .landing-page > section,
    .landing-footer {
        width: min(100% - 24px, 680px);
    }

    .landing-nav {
        top: 10px;
        min-height: 64px;
        padding: 8px 14px;
    }

    .landing-brand {
        font-size: 20px;
    }

    .landing-logo {
        width: 36px;
        height: 36px;
        border-radius: 14px;
    }

    .landing-actions .landing-btn-ghost {
        display: none;
    }

    .landing-actions .landing-btn-primary {
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
    }

    .landing-hero-html {
        min-height: auto;
        padding: 48px 0 118px;
    }

    .hero-copy h1 {
        font-size: clamp(46px, 15vw, 70px);
    }

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

    .hero-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .landing-btn-large {
        width: 100%;
    }

    .hero-visual {
        min-height: 430px;
        height: 430px;
    }

    .couple-photo {
        right: 50%;
        bottom: -18px;
        width: auto;
        height: min(560px, 135vw);
        transform: translateX(50%) translateZ(28px);
    }

    .match-chip {
        top: 18%;
        right: 6%;
    }

    .chat-chip {
        right: 8%;
        bottom: 20%;
    }

    .feature-strip,
    .stats-strip,
    .landing-card-grid,
    .split-section {
        grid-template-columns: 1fr;
    }

    .feature-strip {
        margin-top: -78px;
    }

    .mini-feature,
    .stats-strip article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .stats-strip article {
        border-bottom-color: #edf0f6;
    }

    .mini-feature:last-child,
    .stats-strip article:last-child {
        border-bottom: 0;
    }

    .landing-section {
        padding: 62px 0;
    }

    .premium-section,
    .landing-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .premium-section {
        padding: 28px;
    }

    .landing-footer {
        padding-bottom: 86px;
    }

    .landing-footer div {
        flex-wrap: wrap;
    }

    .mobile-sticky-cta {
        position: fixed;
        right: 14px;
        bottom: 14px;
        left: 14px;
        z-index: 100;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 56px;
        border-radius: 18px;
        color: #fff;
        background: linear-gradient(135deg, var(--landing-pink), var(--landing-pink-2));
        box-shadow: 0 18px 48px rgba(255, 46, 115, .44);
        font-weight: 900;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-hearts span,
    .floating-hearts img,
    .landing-btn,
    .landing-card,
    .mini-feature,
    .hero-visual {
        animation: none;
        transition: none;
    }
}

.login-page {
    --login-bg: #060816;
    --login-panel: rgba(14, 15, 31, .66);
    --login-panel-strong: rgba(18, 19, 38, .82);
    --login-line: rgba(255, 78, 145, .28);
    --login-pink: #ff2e73;
    --login-pink-2: #ff67a7;
    --login-text: #ffffff;
    --login-muted: rgba(255, 255, 255, .68);
    position: relative;
    min-height: 100vh;
    margin: -28px calc(50% - 50vw) -106px;
    overflow: hidden;
    color: var(--login-text);
    background:
        linear-gradient(90deg, rgba(5, 7, 19, .92) 0%, rgba(5, 7, 19, .44) 46%, rgba(5, 7, 19, .92) 100%),
        linear-gradient(180deg, rgba(5, 7, 19, .28) 0%, rgba(5, 7, 19, .86) 100%),
        url("../images/login-heart-bg.5311984bca50.png") center / cover no-repeat,
        #050713;
}

body.page-accounts-login,
body.page-accounts-signup {
    min-height: 100svh;
    background: #050713;
}

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

.login-page a {
    text-decoration: none;
}

.login-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(520px, .88fr);
    gap: clamp(38px, 6vw, 86px);
    width: min(1540px, calc(100% - 72px));
    min-height: 100vh;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 54px) 0;
}

.login-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: min(920px, calc(100vh - 84px));
    border-radius: 0;
    background: transparent;
}

.login-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 8, 20, 0), rgba(6, 8, 20, .58));
    pointer-events: none;
}

.login-brand {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    width: fit-content;
    color: #fff;
    font-size: clamp(26px, 2.2vw, 36px);
    font-weight: 900;
    letter-spacing: 0;
}

.login-brand span span {
    color: var(--login-pink-2);
}

.login-logo {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(255, 46, 115, .36);
}

.login-logo img,
.login-badge img,
.login-feature-card img,
.login-input-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-badge {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: clamp(38px, 5vw, 72px);
    border: 1px solid rgba(255, 78, 145, .36);
    border-radius: 18px;
    padding: 11px 18px;
    color: #ff8cbd;
    background: rgba(255, 46, 115, .1);
    box-shadow: inset 0 0 22px rgba(255, 46, 115, .12), 0 16px 42px rgba(0, 0, 0, .18);
    font-size: 17px;
    font-weight: 800;
    backdrop-filter: blur(18px);
}

.login-badge img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
}

.login-couple-scene {
    position: absolute;
    right: -7%;
    bottom: 5%;
    left: -8%;
    z-index: 2;
    height: 78%;
    pointer-events: none;
    transform: perspective(1200px) rotateX(var(--login-tilt-y, 0deg)) rotateY(var(--login-tilt-x, 0deg));
    transform-style: preserve-3d;
    transition: transform .25s ease-out;
}

.login-couple {
    position: absolute;
    bottom: -8%;
    left: -4%;
    width: min(112%, 1080px);
    height: auto;
    filter: saturate(1.12) contrast(1.08) drop-shadow(0 36px 80px rgba(0, 0, 0, .58));
    -webkit-mask: linear-gradient(90deg, transparent 0%, #000 10%, #000 77%, transparent 96%);
    mask: linear-gradient(90deg, transparent 0%, #000 10%, #000 77%, transparent 96%);
}

.login-feature-row {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    padding: 22px;
    background: rgba(18, 19, 38, .62);
    box-shadow: 0 24px 90px rgba(0, 0, 0, .32);
    backdrop-filter: blur(22px);
}

.login-feature-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    align-items: center;
    min-height: 96px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    padding: 8px 20px;
    transition: transform .22s ease, filter .22s ease;
}

.login-feature-card:last-child {
    border-right: 0;
}

.login-feature-card:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 18px 32px rgba(255, 46, 115, .22));
}

.login-feature-card > span {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 46, 115, .15);
    box-shadow: 0 18px 46px rgba(255, 46, 115, .22);
}

.login-feature-card strong {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font-size: 17px;
}

.login-feature-card p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    line-height: 1.55;
}

.login-panel-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: min(100%, 560px);
    border: 1px solid var(--login-line);
    border-radius: 34px;
    padding: clamp(30px, 4vw, 54px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02)),
        var(--login-panel);
    box-shadow: 0 34px 110px rgba(0, 0, 0, .46), inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(26px);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.login-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 105, 168, .45);
    box-shadow: 0 42px 130px rgba(0, 0, 0, .52), 0 0 60px rgba(255, 46, 115, .12), inset 0 1px 0 rgba(255, 255, 255, .1);
}

.login-card-header {
    margin-bottom: 34px;
    text-align: center;
}

.login-card-header h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 3.35vw, 48px);
    line-height: 1.05;
    letter-spacing: 0;
}

.login-card-header h1 span,
.login-card-header p span {
    color: var(--login-pink-2);
}

.login-card-header p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
}

.login-form {
    display: grid;
    gap: 22px;
}

.login-field {
    display: grid;
    gap: 10px;
}

.login-field label {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.login-input-shell {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 62px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.login-input-shell:focus-within {
    border-color: rgba(255, 92, 159, .92);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 0 0 4px rgba(255, 46, 115, .12), 0 0 34px rgba(255, 46, 115, .18);
}

.login-input-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-left: 8px;
    overflow: hidden;
    border-radius: 15px;
    opacity: .78;
}

.login-input-shell input {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    min-width: 0;
    height: 60px;
    border: 0;
    border-radius: 12px;
    outline: 0;
    padding: 0 16px 0 4px;
    color: #fff !important;
    background: transparent !important;
    box-shadow: inset 0 0 0 1000px transparent !important;
    font: inherit;
    font-size: 16px;
    caret-color: var(--login-pink-2);
    -webkit-text-fill-color: #fff;
    transition: background-color 9999s ease-in-out 0s, color .2s ease;
}

.login-input-shell input::placeholder {
    color: rgba(255, 255, 255, .52);
}

.login-input-shell input:-webkit-autofill,
.login-input-shell input:-webkit-autofill:hover,
.login-input-shell input:-webkit-autofill:focus,
.login-input-shell input:-webkit-autofill:active {
    border: 0;
    color: #fff !important;
    background-color: transparent !important;
    box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0) !important;
    background-clip: content-box !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: var(--login-pink-2);
}

.login-input-shell:has(input:-webkit-autofill) {
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .035);
}

.login-input-shell input:focus {
    background: transparent !important;
}

.login-password-toggle {
    flex: 0 0 auto;
    margin-right: 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .06);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.login-password-toggle:hover {
    border-color: rgba(255, 105, 168, .58);
    color: #fff;
    background: rgba(255, 46, 115, .16);
}

.login-forgot {
    justify-self: end;
    margin-top: -6px;
    color: var(--login-pink-2);
    font-size: 15px;
    font-weight: 900;
    transition: color .2s ease, text-shadow .2s ease;
}

.login-forgot:hover {
    color: #fff;
    text-shadow: 0 0 18px rgba(255, 46, 115, .72);
}

.login-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    min-height: 64px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--login-pink), var(--login-pink-2));
    box-shadow: 0 18px 48px rgba(255, 46, 115, .34);
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.login-submit span:last-child {
    font-size: 26px;
    transition: transform .22s ease;
}

.login-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 68px rgba(255, 46, 115, .5), 0 0 34px rgba(255, 46, 115, .26);
    filter: saturate(1.06);
}

.login-submit:hover span:last-child {
    transform: translateX(6px);
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, .62);
}

.login-divider::before,
.login-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .14);
}

.login-socials {
    display: grid;
    gap: 12px;
}

.login-socials form {
    margin: 0;
}

.login-social-button {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    min-height: 58px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    padding: 0 18px;
    color: #fff;
    background: rgba(255, 255, 255, .04);
    cursor: default;
    transition: border-color .22s ease, transform .22s ease, background .22s ease;
    width: 100%;
}

.login-social-button:not(:disabled) {
    cursor: pointer;
}

.login-social-button:not(:disabled):hover {
    transform: translateY(-3px);
    border-color: rgba(255, 105, 168, .42);
    background: rgba(255, 255, 255, .07);
}

.login-social-button:disabled {
    opacity: .52;
    filter: grayscale(.35);
}

.login-social-button span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    background: #2474ff;
    font-weight: 900;
}

.login-social-button span img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.login-social-button:first-child span {
    background: conic-gradient(from -40deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
}

.login-social-button strong {
    text-align: center;
    font-size: 16px;
}

.login-social-note {
    margin: -2px 0 0;
    color: rgba(255, 255, 255, .54);
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
}

.email-verification-page {
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 48px 20px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 46, 115, .14), transparent 32%),
        radial-gradient(circle at 82% 78%, rgba(122, 92, 255, .13), transparent 34%),
        #050713;
}

body.page-accounts-email_verification_sent,
body.page-accounts-email_verified,
body.page-site-account_confirm_email,
body.page-site-account_email_verification_sent {
    background: #050713;
}

.email-verification-card {
    width: min(100%, 600px);
    padding: 44px;
    border: 1px solid rgba(255, 74, 145, .3);
    border-radius: 24px;
    background: rgba(15, 17, 34, .9);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .42), 0 0 42px rgba(255, 46, 115, .08);
    backdrop-filter: blur(22px);
    color: #fff;
    text-align: center;
}

.email-verification-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    object-fit: contain;
}

.email-verification-kicker {
    display: block;
    margin-bottom: 10px;
    color: #ff5ba0;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.email-verification-card h1 {
    margin: 0 0 16px;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.1;
}

.email-verification-card p {
    margin: 0 auto 22px;
    max-width: 470px;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    line-height: 1.65;
}

.email-verification-card p strong {
    display: block;
    margin-top: 5px;
    color: #fff;
    overflow-wrap: anywhere;
}

.email-verification-note {
    margin: 0 0 24px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    line-height: 1.5;
}

.email-verification-card form {
    margin: 0;
}

.email-verification-primary,
.email-verification-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.email-verification-primary {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, #ff246f, #a743ff);
    box-shadow: 0 14px 30px rgba(255, 36, 111, .24);
    cursor: pointer;
}

.email-verification-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(255, 36, 111, .34);
}

.email-verification-secondary {
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .74);
    background: rgba(255, 255, 255, .03);
}

.email-verification-secondary:hover {
    border-color: rgba(255, 91, 160, .4);
    color: #fff;
}

.email-verification-status {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border: 1px solid rgba(0, 210, 106, .5);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 210, 106, .18);
    box-shadow: 0 0 30px rgba(0, 210, 106, .18);
    font-size: 30px;
    font-weight: 900;
}

@media (max-width: 640px) {
    .email-verification-page {
        min-height: 100svh;
        padding: 20px 14px;
    }

    .email-verification-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
}

.login-register {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .72);
    text-align: center;
    font-size: 16px;
}

.login-register a {
    color: var(--login-pink-2);
    font-weight: 900;
}

.login-register a:hover {
    color: #fff;
    text-shadow: 0 0 18px rgba(255, 46, 115, .72);
}

.login-error,
.login-field-errors {
    border: 1px solid rgba(255, 105, 168, .38);
    border-radius: 14px;
    color: #ffd5e5;
    background: rgba(255, 46, 115, .12);
}

.login-error {
    padding: 14px 16px;
}

.login-error ul,
.login-field-errors ul {
    margin: 0;
    padding-left: 18px;
}

.login-field-errors {
    padding: 10px 12px;
    font-size: 14px;
}

.signup-shell {
    grid-template-columns: minmax(0, 1.08fr) minmax(560px, .92fr);
}

.signup-visual {
    justify-content: space-between;
}

.signup-hero-copy {
    position: relative;
    z-index: 4;
    width: min(520px, 80%);
    margin-top: auto;
    margin-bottom: clamp(26px, 4vw, 54px);
}

.signup-hero-copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 5.2vw, 72px);
    line-height: .98;
    letter-spacing: 0;
}

.signup-hero-copy h1 span {
    display: block;
    color: var(--login-pink-2);
}

.signup-hero-copy p {
    max-width: 470px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: 17px;
    line-height: 1.7;
}

.signup-feature-row {
    margin-top: 0;
}

.signup-card {
    width: min(100%, 600px);
    padding: clamp(24px, 2.4vw, 34px);
}

.signup-card-header {
    margin-bottom: 18px;
}

.signup-card-header h1 {
    font-size: clamp(34px, 2.8vw, 42px);
}

.signup-card-header p {
    margin-top: 12px;
    font-size: 16px;
}

.signup-form {
    gap: 12px;
}

.signup-field-group {
    display: grid;
    gap: 10px;
}

.signup-field-group > label {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.signup-name-grid,
.signup-date-grid {
    display: grid;
    gap: 10px;
}

.signup-name-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signup-date-grid {
    grid-template-columns: 1fr 1fr 1fr;
}

.signup-date-grid select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 14px;
    padding: 0 16px;
    color: #fff;
    background:
        linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, .76) 50%) calc(100% - 21px) 22px / 7px 7px no-repeat,
        linear-gradient(135deg, rgba(255, 255, 255, .76) 50%, transparent 50%) calc(100% - 16px) 22px / 7px 7px no-repeat,
        rgba(255, 255, 255, .035);
    outline: 0;
    appearance: none;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.signup-date-grid select:focus {
    border-color: rgba(255, 92, 159, .92);
    box-shadow: 0 0 0 4px rgba(255, 46, 115, .12), 0 0 34px rgba(255, 46, 115, .18);
}

.signup-date-grid select option {
    color: #101224;
    background: #fff;
}

.signup-terms {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    align-items: start;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.55;
}

.signup-card .login-field {
    gap: 8px;
}

.signup-card .login-input-shell {
    min-height: 50px;
}

.signup-card .login-input-shell input {
    height: 48px;
}

.signup-card .login-input-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
}

.signup-card .login-password-toggle {
    padding: 7px 11px;
}

.signup-card .login-social-button {
    min-height: 48px;
}

.signup-card .login-divider {
    gap: 12px;
}

.signup-terms input {
    width: 22px;
    height: 22px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 7px;
    background: rgba(255, 255, 255, .04);
    accent-color: var(--login-pink);
}

.signup-terms a {
    color: var(--login-pink-2);
    font-weight: 800;
}

.signup-terms a:hover {
    color: #fff;
}

.signup-consents {
    display: grid;
    gap: 12px;
    min-width: 0;
    margin: 0;
    border: 0;
    padding: 0;
}

.signup-consents legend {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    font-weight: 800;
}

.signup-terms-optional {
    opacity: .86;
}

.signup-submit {
    min-height: 52px;
}

@media (max-width: 1180px) {
    .login-shell {
        grid-template-columns: 1fr;
        width: min(100% - 40px, 900px);
        gap: 30px;
    }

    .login-visual {
        min-height: 580px;
        border-radius: 0 0 32px 32px;
    }

    .login-couple-scene {
        right: -4%;
        bottom: 0;
        left: -6%;
        height: 80%;
    }

    .login-panel-wrap {
        margin-top: -180px;
        padding-bottom: 46px;
    }

    .signup-panel-wrap {
        margin-top: -110px;
    }

    .signup-hero-copy {
        width: min(620px, 86%);
        margin-top: auto;
        margin-bottom: 210px;
    }
}

@media (max-width: 760px) {
    .login-page {
        width: 100%;
        min-height: 100svh;
        margin: 0;
    }

    .login-shell {
        width: min(100% - 24px, 560px);
        padding-top: 18px;
    }

    .login-visual {
        position: absolute;
        inset: 0;
        min-height: auto;
        opacity: .9;
    }

    .login-visual::after {
        background: linear-gradient(180deg, rgba(6, 8, 20, .36), rgba(6, 8, 20, .96) 58%, rgba(6, 8, 20, .98));
    }

    .login-brand {
        margin: 12px 0 0 12px;
        font-size: 24px;
    }

    .login-logo {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .login-badge,
    .login-feature-row {
        display: none;
    }

    .login-couple-scene {
        top: 96px;
        right: -42%;
        bottom: auto;
        left: -32%;
        height: 560px;
        opacity: .62;
    }

    .login-couple {
        width: 900px;
        max-width: none;
    }

    .login-panel-wrap {
        position: relative;
        z-index: 5;
        align-items: flex-start;
        min-height: calc(100svh - 104px);
        margin-top: 104px;
        padding-bottom: 28px;
    }

    .login-card {
        border-radius: 26px;
        padding: 26px 18px;
    }

    .login-card-header h1 {
        font-size: 38px;
    }

    .login-card-header p {
        font-size: 16px;
    }

    .login-input-shell,
    .login-submit {
        min-height: 58px;
    }

    .login-social-button {
        grid-template-columns: 34px 1fr 34px;
        padding: 0 12px;
    }

    .login-social-button strong {
        font-size: 14px;
    }

    .signup-hero-copy,
    .signup-feature-row {
        display: none;
    }

    .signup-panel-wrap {
        margin-top: 104px;
    }

    .signup-card {
        padding: 24px 16px;
    }

    .signup-card-header h1 {
        font-size: 34px;
    }

    .signup-name-grid,
    .signup-date-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .login-card,
    .login-feature-card,
    .login-submit,
    .login-submit span:last-child,
    .login-couple-scene {
        animation: none;
        transition: none;
    }
}
