/* BoboChat Landing — short, image-led */

.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

[data-theme="light"] .landing-header {
    background: rgba(255, 255, 255, 0.92);
}

.landing-header__logo {
    display: flex;
    align-items: center;
    line-height: 0;
}

.landing-header__logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.landing-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-header__theme {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
}

.landing-header__theme [data-icon] svg {
    width: 18px;
    height: 18px;
}

/* Hero */
.landing-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 24px 40px;
    min-height: min(88vh, 720px);
}

.landing-hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.landing-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.landing-hero__title span {
    color: var(--primary);
}

.landing-hero__lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 380px;
    margin-bottom: 1.5rem;
}

.landing-hero__visual img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border);
}

/* Cities */
.landing-cities {
    background: var(--primary);
    color: white;
    padding: 14px 0;
    overflow: hidden;
}

.landing-cities__track {
    display: flex;
    gap: 2.5rem;
    animation: scrollCities 20s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.landing-cities__track span {
    font-size: 0.9rem;
    font-weight: 600;
}

.landing-cities__track span::before {
    content: '♥';
    margin-right: 10px;
    opacity: 0.75;
}

@keyframes scrollCities {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pillars */
.landing-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 32px;
}

.landing-pillar {
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
}

.landing-pillar img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.landing-pillar__body {
    padding: 1rem 1.1rem 1.2rem;
}

.landing-pillar__body h2 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.landing-pillar__body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Profile previews */
.landing-profiles {
    max-width: 1160px;
    margin: 0 auto;
    padding: 28px 24px 52px;
}

.landing-profiles__intro {
    max-width: 720px;
    margin: 0 auto 24px;
    text-align: center;
}

.landing-profiles__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 0.9rem;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 73, 120, 0.28);
    background: rgba(255, 73, 120, 0.08);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.landing-profiles__intro h2 {
    font-size: clamp(1.55rem, 3.6vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 0.8rem;
}

.landing-profiles__intro p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}

.landing-profiles__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.landing-profile-preview {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.landing-profile-preview__photo-wrap {
    position: relative;
    height: 390px;
    overflow: hidden;
    background: #11182f;
}

.landing-profile-preview__photo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 14, 39, 0.08) 0%, rgba(9, 14, 39, 0.52) 38%, rgba(9, 14, 39, 0.96) 100%);
}

.landing-profile-preview__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    filter: blur(18px) saturate(0.9);
    opacity: 0.95;
}

.landing-profile-preview__status {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
}

.landing-profile-preview__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 16px 16px;
}

.landing-profile-preview__overlay .profile-card__name {
    color: #fff;
    margin-bottom: 4px;
    font-size: 1.35rem;
    line-height: 1.1;
}

.landing-profile-preview__overlay .profile-card__meta {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 10px;
    font-size: 0.88rem;
    line-height: 1.35;
}

.landing-profile-preview__intent {
    margin: 0 0 0.45rem;
    color: #ff5c83;
    font-size: 0.96rem;
    font-weight: 700;
}

.landing-profile-preview__summary {
    margin: 0 0 0.8rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.landing-profile-preview__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    margin: 0;
}

.landing-profile-preview__meta div {
    min-width: 0;
}

.landing-profile-preview__meta dt {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.landing-profile-preview__meta dd {
    margin: 0;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.landing-profile-preview__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
    margin-top: auto;
}

.landing-profile-preview__actions .btn {
    min-width: 0;
    justify-content: center;
}

/* CTA */
.landing-cta {
    max-width: 1100px;
    margin: 0 auto 48px;
    padding: 0 24px;
    text-align: center;
}

.landing-cta h2 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.landing-cta__text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

/* SEO content */
.landing-seo {
    padding: 48px 24px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.landing-seo__inner {
    max-width: 800px;
    margin: 0 auto;
}

.landing-seo h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.landing-seo h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
}

.landing-seo p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.landing-seo__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-seo__tags li {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* FAQ */
.landing-faq {
    padding: 48px 24px 32px;
    max-width: 800px;
    margin: 0 auto;
}

.landing-faq h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    text-align: center;
}

.landing-faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    background: var(--surface);
    overflow: hidden;
}

.landing-faq__item summary {
    padding: 1rem 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.landing-faq__item summary::-webkit-details-marker { display: none; }

.landing-faq__item p {
    padding: 0 1.1rem 1rem;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.landing-footer__tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

/* Footer */
.landing-footer {
    border-top: 1px solid var(--border);
    padding: 28px 24px;
    text-align: center;
}

.landing-footer__logo {
    line-height: 0;
    margin-bottom: 0.75rem;
}

.landing-footer__logo-img {
    height: 56px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.landing-footer__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 0.75rem;
}

.landing-footer__links a {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.landing-footer__links a:hover { color: var(--primary); }

.landing-footer__copy {
    font-size: 0.78rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 860px) {
    .landing-hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding-top: 88px;
    }

    .landing-hero__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .landing-hero__visual {
        order: -1;
        max-width: 420px;
        margin: 0 auto;
    }

    .landing-hero__visual img {
        max-height: 380px;
    }

    .landing-pillars {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .landing-pillar img {
        height: 260px;
    }

    .landing-profiles__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

}

@media (max-width: 480px) {
    .landing-header__actions {
        gap: 6px;
        flex-shrink: 0;
    }

    .landing-header__actions .btn--sm {
        padding: 8px 10px;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .landing-header__theme {
        width: 36px;
        height: 36px;
        padding: 0;
    }

    .landing-hero { padding: 84px 16px 32px; }
    .landing-pillars { padding: 32px 16px 24px; }

    .landing-profiles {
        padding: 24px 16px 40px;
    }

    .landing-profiles__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .landing-profile-preview__photo-wrap,
    .landing-profile-preview__photo {
        height: 320px;
    }

    .landing-profile-preview__overlay {
        padding: 14px 12px 12px;
    }

    .landing-profile-preview__overlay .profile-card__name {
        font-size: 1.02rem;
    }

    .landing-profile-preview__overlay .profile-card__meta,
    .landing-profile-preview__summary,
    .landing-profile-preview__meta dd {
        font-size: 0.74rem;
    }

    .landing-profile-preview__summary {
        -webkit-line-clamp: 3;
    }

    .landing-profile-preview__meta {
        gap: 6px 10px;
    }

    .landing-profile-preview__meta dt {
        font-size: 0.64rem;
    }

    .landing-profile-preview__actions {
        padding: 10px;
        gap: 8px;
    }

    .landing-profile-preview__actions .btn {
        font-size: 0.76rem;
        padding: 8px 4px;
    }
}

/* Gen Z landing refresh: expressive type, social proof, and a brighter visual rhythm. */
.landing {
    --landing-bg: #0c0b16;
    --landing-panel: #151326;
    --landing-panel-soft: #1d1933;
    --landing-lime: #d7ff5f;
    --landing-pink: #ff477e;
    --landing-blue: #7c8cff;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 83% 5%, rgba(124, 140, 255, 0.22), transparent 26rem),
        radial-gradient(circle at 8% 24%, rgba(255, 71, 126, 0.13), transparent 24rem),
        var(--landing-bg);
    color: #f8f7ff;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.landing::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.22;
    background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 70%);
}

[data-theme="light"] .landing {
    --landing-bg: #f7f5ff;
    --landing-panel: #ffffff;
    --landing-panel-soft: #eeecfb;
    color: #17162a;
    background:
        radial-gradient(circle at 83% 5%, rgba(124, 140, 255, 0.2), transparent 26rem),
        radial-gradient(circle at 8% 24%, rgba(255, 71, 126, 0.12), transparent 24rem),
        var(--landing-bg);
}

[data-theme="light"] .landing::before {
    background-image: linear-gradient(rgba(23,22,42,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(23,22,42,0.05) 1px, transparent 1px);
}

.landing-header {
    padding: 14px max(20px, calc((100vw - 1180px) / 2));
    background: rgba(12, 11, 22, 0.68);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

[data-theme="light"] .landing-header {
    background: rgba(247, 245, 255, 0.78);
    border-bottom-color: rgba(23,22,42,0.08);
}

.landing-header__logo-img {
    height: 48px;
    filter: drop-shadow(0 6px 16px rgba(255, 71, 126, 0.18));
}

.landing-header__actions .btn {
    border-radius: 999px;
}

.landing-header__actions .btn--ghost {
    color: inherit;
}

.landing-header__theme {
    color: inherit;
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
}

.landing-hero {
    position: relative;
    max-width: 1180px;
    min-height: 760px;
    padding: 146px 24px 78px;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 56px;
}

.landing-hero__copy {
    position: relative;
    z-index: 2;
    align-self: center;
    animation: landingRise 0.8s ease both;
}

.landing-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    margin-bottom: 20px;
    border: 1px solid rgba(215, 255, 95, 0.28);
    border-radius: 999px;
    background: rgba(215, 255, 95, 0.08);
    color: var(--landing-lime);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.landing-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--landing-lime);
    box-shadow: 0 0 0 5px rgba(215,255,95,0.1), 0 0 18px var(--landing-lime);
}

.landing-hero__title {
    max-width: 690px;
    margin-bottom: 22px;
    font-size: clamp(3.7rem, 7.1vw, 7.2rem);
    font-weight: 700;
    line-height: 0.91;
    letter-spacing: -0.075em;
}

.landing-hero__title span {
    display: inline-block;
    color: var(--landing-pink);
    background: linear-gradient(100deg, var(--landing-pink), #ff9b6a 72%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-hero__lead {
    max-width: 470px;
    margin-bottom: 28px;
    color: rgba(248,247,255,0.68);
    font-size: 1.08rem;
    line-height: 1.65;
}

[data-theme="light"] .landing-hero__lead {
    color: rgba(23,22,42,0.66);
}

.landing-hero__cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.landing .btn--primary {
    background: linear-gradient(110deg, #ff3d70, #e93653 70%, #ff765e);
    box-shadow: 0 12px 32px rgba(255,61,112,0.2);
}

.landing .btn--primary:hover {
    background: linear-gradient(110deg, #ff5e86, #f04460 70%, #ff8b74);
    box-shadow: 0 16px 38px rgba(255,61,112,0.32);
}

.landing .btn--outline {
    border-color: rgba(255,255,255,0.28);
    color: inherit;
}

.landing .btn--outline:hover {
    border-color: var(--landing-lime);
    background: var(--landing-lime);
    color: #17162a;
}

.landing-hero__proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.landing-hero__proof-avatars {
    display: flex;
    padding-left: 8px;
}

.landing-hero__proof-avatars span {
    display: grid;
    width: 30px;
    height: 30px;
    margin-left: -8px;
    place-items: center;
    border: 2px solid var(--landing-bg);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--landing-blue), var(--landing-pink));
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
}

.landing-hero__proof-avatars span:nth-child(2) { background: linear-gradient(135deg, #ffb366, #ff477e); }
.landing-hero__proof-avatars span:nth-child(3) { background: linear-gradient(135deg, #75d9c7, #4e63dd); }
.landing-hero__proof-avatars span:nth-child(4) { background: var(--landing-panel-soft); color: var(--landing-lime); }

.landing-hero__proof p {
    color: rgba(248,247,255,0.62);
    font-size: 0.76rem;
    line-height: 1.35;
}

[data-theme="light"] .landing-hero__proof p { color: rgba(23,22,42,0.6); }
.landing-hero__proof strong { display: block; color: inherit; font-size: 0.84rem; }

.landing-hero__visual {
    position: relative;
    display: grid;
    min-height: 590px;
    place-items: center;
    animation: landingRise 0.9s 0.1s ease both;
}

.landing-hero__visual-glow {
    position: absolute;
    width: 78%;
    height: 72%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,71,126,0.36), rgba(124,140,255,0.1) 52%, transparent 72%);
    filter: blur(24px);
    transform: rotate(-16deg);
}

.landing-hero__image-card {
    position: relative;
    z-index: 1;
    width: min(100%, 430px);
    height: 560px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.03));
    box-shadow: 0 34px 70px rgba(0,0,0,0.36), 0 0 0 1px rgba(255,71,126,0.12);
    transform: rotate(3deg);
}

.landing-hero__image-card::before,
.landing-hero__image-card::after {
    content: '';
    position: absolute;
    z-index: -1;
    border-radius: 34px;
    border: 1px solid rgba(215,255,95,0.22);
}

.landing-hero__image-card::before { inset: -13px 12px 13px -12px; transform: rotate(-7deg); }
.landing-hero__image-card::after { inset: 14px -13px -14px 12px; transform: rotate(8deg); border-color: rgba(124,140,255,0.24); }

.landing-hero__image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.landing-hero__image-label {
    position: absolute;
    left: 25px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    background: rgba(12,11,22,0.72);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    backdrop-filter: blur(12px);
}

.landing-hero__sticker {
    position: absolute;
    z-index: 3;
    padding: 10px 14px;
    border-radius: 8px 20px 20px 20px;
    background: var(--landing-lime);
    color: #17162a;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(-8deg);
    box-shadow: 0 12px 22px rgba(215,255,95,0.18);
}

.landing-hero__sticker--top { top: 50px; right: 5%; }

.landing-hero__float {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 192px;
    padding: 11px 13px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 17px;
    background: rgba(25,21,46,0.82);
    box-shadow: 0 18px 34px rgba(0,0,0,0.26);
    backdrop-filter: blur(16px);
    animation: landingFloat 5s ease-in-out infinite;
}

.landing-hero__float--match { left: -20px; bottom: 108px; }
.landing-hero__float--chat { right: -18px; bottom: 220px; animation-delay: -2.2s; }

.landing-hero__float-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--landing-pink), #ff9d62);
    color: #fff;
    font-weight: 700;
}

.landing-hero__float--chat .landing-hero__float-icon { background: linear-gradient(135deg, var(--landing-blue), #5eead4); }
.landing-hero__float strong,
.landing-hero__float small { display: block; }
.landing-hero__float strong { color: #fff; font-size: 0.78rem; }
.landing-hero__float small { margin-top: 2px; color: rgba(255,255,255,0.58); font-size: 0.64rem; }

@keyframes landingFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes landingRise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.landing-cities {
    position: relative;
    padding: 17px 0;
    background: var(--landing-lime);
    color: #17162a;
    transform: rotate(-1.2deg) scale(1.02);
}

.landing-cities__track { gap: 3rem; animation-duration: 26s; }
.landing-cities__track span { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.landing-cities__track span::before { content: '*'; color: var(--landing-pink); font-size: 1.1rem; }

.landing-pillars {
    position: relative;
    max-width: 1180px;
    padding: 92px 24px 58px;
    gap: 18px;
}

.landing-pillar {
    position: relative;
    border-color: rgba(255,255,255,0.1);
    border-radius: 24px;
    background: linear-gradient(155deg, rgba(255,255,255,0.1), rgba(255,255,255,0.025));
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

[data-theme="light"] .landing-pillar {
    border-color: rgba(23,22,42,0.1);
    background: rgba(255,255,255,0.82);
}

.landing-pillar:hover { transform: translateY(-8px); border-color: rgba(215,255,95,0.4); }
.landing-pillar:nth-child(2) { transform: translateY(12px); }
.landing-pillar:nth-child(2):hover { transform: translateY(4px); }
.landing-pillar__number {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 2;
    color: var(--landing-lime);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.landing-pillar img { height: 205px; filter: saturate(0.85); }
.landing-pillar__body { padding: 1.25rem 1.25rem 1.35rem; }
.landing-pillar__kicker { margin-bottom: 7px !important; color: var(--landing-pink) !important; font-size: 0.7rem !important; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.landing-pillar__body h2 { font-size: 1.28rem; letter-spacing: -0.03em; }
.landing-pillar__body p:last-child { color: rgba(248,247,255,0.62); }
[data-theme="light"] .landing-pillar__body p:last-child { color: rgba(23,22,42,0.62); }

.landing-profiles { max-width: 1180px; padding-top: 64px; }
.landing-profiles__intro { margin-bottom: 34px; }
.landing-profiles__intro h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
.landing-profiles__eyebrow { color: var(--landing-lime); border-color: rgba(215,255,95,0.28); background: rgba(215,255,95,0.08); }
.landing-profiles__grid { gap: 18px; }
.landing-profile-preview { border-color: rgba(255,255,255,0.1); background: var(--landing-panel); border-radius: 24px; box-shadow: 0 20px 46px rgba(0,0,0,0.2); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.landing-profile-preview:hover { transform: translateY(-7px) rotate(-0.5deg); box-shadow: 0 26px 56px rgba(0,0,0,0.28); }
.landing-profile-preview__photo-wrap { height: 370px; }
.landing-profile-preview__photo { filter: blur(15px) saturate(1.1); }
.landing-profile-preview__status { border-radius: 999px; background: rgba(12,11,22,0.68); }
.landing-profile-preview__intent { color: var(--landing-pink); }
.landing-profile-preview__actions { border-top: 1px solid rgba(255,255,255,0.08); }

.landing-seo { background: rgba(255,255,255,0.035); border-color: rgba(255,255,255,0.08); }
[data-theme="light"] .landing-seo { background: rgba(255,255,255,0.66); border-color: rgba(23,22,42,0.08); }
.landing-seo__inner { max-width: 920px; }
.landing-seo h2, .landing-faq h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); letter-spacing: -0.04em; }
.landing-seo__tags li { border-color: rgba(215,255,95,0.22); background: rgba(215,255,95,0.06); color: inherit; }
.landing-faq { padding-top: 72px; }
.landing-faq__item { border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.045); border-radius: 16px; }
[data-theme="light"] .landing-faq__item { border-color: rgba(23,22,42,0.1); background: rgba(255,255,255,0.76); }
.landing-faq__item summary { font-size: 0.98rem; }

.landing-cta {
    position: relative;
    max-width: 1120px;
    margin-top: 28px;
    padding: 72px 24px 80px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 34px;
    background: radial-gradient(circle at 50% 0%, rgba(255,71,126,0.24), transparent 52%), linear-gradient(135deg, rgba(124,140,255,0.15), rgba(255,255,255,0.04));
    overflow: hidden;
}

.landing-cta::after { content: 'BoboChat'; position: absolute; right: -12px; bottom: -52px; color: rgba(255,255,255,0.035); font-size: 9rem; font-weight: 700; letter-spacing: -0.1em; pointer-events: none; }
.landing-cta h2 { position: relative; z-index: 1; font-size: clamp(2.1rem, 5vw, 4rem); letter-spacing: -0.06em; }
.landing-cta__text { position: relative; z-index: 1; color: rgba(248,247,255,0.68); }
.landing-cta .landing-hero__cta { position: relative; z-index: 1; justify-content: center; }
.landing-footer { border-color: rgba(255,255,255,0.08); }

@media (max-width: 860px) {
    .landing-hero { grid-template-columns: 1fr; gap: 20px; padding-top: 126px; }
    .landing-hero__copy { text-align: center; }
    .landing-hero__eyebrow { margin-bottom: 16px; }
    .landing-hero__lead { margin-left: auto; margin-right: auto; }
    .landing-hero__cta, .landing-hero__proof { justify-content: center; }
    .landing-hero__visual { order: initial; min-height: 520px; }
    .landing-hero__image-card { height: 490px; max-width: 370px; }
    .landing-hero__sticker--top { top: 24px; right: 8%; }
    .landing-hero__float--match { left: 4%; bottom: 74px; }
    .landing-hero__float--chat { right: 3%; bottom: 190px; }
    .landing-pillar:nth-child(2) { transform: none; }
    .landing-pillar:nth-child(2):hover { transform: translateY(-8px); }
}

@media (max-width: 480px) {
    .landing-header { padding: 10px 12px; }
    .landing-header__logo-img { height: 40px; }
    .landing-header__actions .btn--ghost { display: none; }
    .landing-header__actions .btn--sm { padding: 8px 10px; font-size: 0.72rem; }
    .landing-hero { min-height: auto; padding: 112px 16px 62px; }
    .landing-hero__title { font-size: clamp(3.2rem, 16vw, 4.8rem); }
    .landing-hero__lead { font-size: 0.96rem; }
    .landing-hero__cta { display: grid; grid-template-columns: 1fr; width: 100%; }
    .landing-hero__cta .btn { width: 100%; }
    .landing-hero__proof { align-items: flex-start; justify-content: flex-start; text-align: left; }
    .landing-hero__visual { min-height: 430px; margin-top: 16px; }
    .landing-hero__image-card { width: 78%; height: 410px; border-radius: 26px; }
    .landing-hero__image-card img { border-radius: 19px; }
    .landing-hero__float { min-width: 0; max-width: 178px; padding: 9px; }
    .landing-hero__float--match { left: 0; bottom: 42px; }
    .landing-hero__float--chat { right: 0; bottom: 150px; }
    .landing-hero__float strong { font-size: 0.68rem; }
    .landing-hero__float small { font-size: 0.58rem; }
    .landing-hero__sticker--top { top: 4px; right: 1%; font-size: 0.66rem; }
    .landing-pillars { padding: 68px 16px 30px; }
    .landing-pillar img { height: 180px; }
    .landing-profiles { padding: 42px 16px 34px; }
    .landing-profiles__intro { text-align: left; }
    .landing-profiles__intro h2 { font-size: 2rem; }
    .landing-profiles__grid { gap: 10px; }
    .landing-profile-preview { border-radius: 18px; }
    .landing-profile-preview__photo-wrap { height: 290px; }
    .landing-profile-preview__overlay { padding: 12px 10px 10px; }
    .landing-profile-preview__overlay .profile-card__name { font-size: 0.98rem; }
    .landing-profile-preview__overlay .profile-card__meta, .landing-profile-preview__summary, .landing-profile-preview__meta dd { font-size: 0.69rem; }
    .landing-profile-preview__meta dt { font-size: 0.58rem; }
    .landing-profile-preview__actions { padding: 8px; gap: 6px; }
    .landing-profile-preview__actions .btn { font-size: 0.68rem; padding: 8px 3px; }
    .landing-cta { margin: 12px 16px 34px; padding: 54px 18px 58px; border-radius: 26px; }
    .landing-cta h2 { font-size: 2.25rem; }
    .landing-faq { padding-left: 16px; padding-right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    .landing-cities__track, .landing-hero__float { animation: none; }
    .landing-pillar, .landing-profile-preview { transition: none; }
}
