body.landing-body {
    display: block;
}

body.landing-body > main {
    width: 100%;
}

body.landing-body {
    overflow-x: hidden;
}

body.landing-body {
    background: var(--bg-body);
}

.landing-main {
    width: 100%;
}

.landing-right {
    position: relative;
}

.landing-lead {
    color: #667085;
}

.landing-muted {
    color: #667085;
}

.landing-icon {
    font-size: 1.15rem;
    line-height: 1.1;
    color: var(--accent);
}

.landing-icon-accent {
    color: var(--primary);
}

.landing-features {
    max-width: 56ch;
}

.landing-feature-title {
    color: var(--text-main);
}

.landing-email:focus {
    outline: none;
    border-color: rgba(74, 124, 137, 0.6);
    box-shadow: 0 0 0 4px rgba(74, 124, 137, 0.12);
}

.landing-cta-btn:hover {
    box-shadow: 0 14px 30px rgba(74, 124, 137, 0.18);
    transform: translateY(-1px);
}

.landing-cta-btn {
    transition: transform 160ms ease, box-shadow 200ms ease;
}

.landing-ui-base,
.landing-match,
.landing-float,
.landing-feature,
.landing-cta-btn,
.landing-email,
.landing-ui-btn {
    will-change: transform;
}

.landing-feature {
    transition: transform 160ms ease, background-color 160ms ease;
    border-radius: 12px;
}

.landing-feature:hover {
    transform: translateY(-1px);
}

.landing-ui-blur {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-light);
    box-shadow: 0 16px 40px rgba(44, 62, 80, 0.12);
    filter: blur(8px);
    transform: scale(0.985);
    opacity: 0.9;
}

.landing-ui-base {
    position: absolute;
    inset: 22px;
    z-index: 3;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(44, 62, 80, 0.08);
    padding: 18px;
    box-sizing: border-box;
}

.landing-ui-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
}

.landing-ui-profile {
    display: flex;
    gap: 12px;
    align-items: center;
}

.landing-ui-avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(44, 62, 80, 0.12);
}

.landing-ui-name {
    font-weight: 800;
}

.landing-ui-role {
    color: #667085;
    font-size: 0.9rem;
}

.landing-ui-btn {
    color: rgba(44, 62, 80, 0.7);
    background: rgba(255, 255, 255, 0.7);
    transition: transform 160ms ease, background-color 160ms ease, box-shadow 200ms ease;
}

.landing-ui-btn:hover {
    background: rgba(74, 124, 137, 0.06);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(44, 62, 80, 0.10);
}

.landing-ui-section-title {
    margin-top: 14px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(44, 62, 80, 0.55);
}

.landing-ui-lines {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.landing-ui-line {
    height: 10px;
    background: rgba(44, 62, 80, 0.08);
    border-radius: 999px;
}

.landing-ui-paragraph {
    font-size: 0.92rem;
    line-height: 1.45;
}

.landing-match {
    position: relative;
    z-index: 4;
    box-shadow: 0 14px 34px rgba(44, 62, 80, 0.14);
}

.landing-float {
    position: relative;
    z-index: 5;
    transition: transform 160ms ease, box-shadow 200ms ease;
    box-shadow: 0 10px 26px rgba(44, 62, 80, 0.1);
}

.landing-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(44, 62, 80, 0.14);
}

.landing-connector {
    background: rgba(44, 62, 80, 0.14);
}

.landing-animate {
    opacity: 0;
    transform: translateY(10px);
    animation: landing-enter 680ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

@keyframes landing-enter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-animate {
        opacity: 1;
        transform: none;
        animation: none;
    }
    .landing-cta-btn {
        transition: none;
    }
}
