/*
 * Numbers Rental — feature marketing block.
 * Exact visual system derived from the EXIF Digital Trace section.
 * Marker: __NUMBERS_RENT_FEATURES_CSS_P1__
 */

.rent-trace-block {
    width: min(100%, 1280px);
    margin: 30px auto 0;
    padding: 36px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.045);
    box-sizing: border-box;
}

.rent-trace-block * {
    box-sizing: border-box;
}

.rent-trace-head {
    max-width: 720px;
    margin: 0 auto 24px;
    text-align: center;
}

.rent-trace-kicker {
    display: none;
}

.rent-trace-title {
    max-width: 780px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(23px, 1.65vw, 28px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.04em;
    text-align: center;
    text-transform: none;
}

.rent-trace-subtitle {
    max-width: 620px;
    margin: 9px auto 0;
    color: rgba(255, 255, 255, 0.49);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.48;
    letter-spacing: 0;
    text-align: center;
}

.rent-trace-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

.rent-trace-card {
    min-width: 0;
    min-height: 178px;
    padding: 22px 22px 21px;
    background: rgba(255, 255, 255, 0.026);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 18px;
    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        background 0.2s ease;
}

.rent-trace-card:hover {
    transform: translateY(-2px);
    border-color: rgba(74, 158, 255, 0.22);
    background: rgba(255, 255, 255, 0.034);
}

.rent-trace-num {
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(74, 158, 255, 0.11);
    border: 1px solid rgba(74, 158, 255, 0.38);
    color: #5aa8ff;
    font-family: "Roboto Mono", Consolas, monospace;
    font-size: 15px;
    font-weight: 900;
}

.rent-trace-card-title {
    margin: 0 0 9px;
    color: #f2f2f2;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
}

.rent-trace-card-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.49);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
}

.rent-trace-note {
    min-height: 56px;
    margin-top: 20px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.49);
    background: rgba(255, 255, 255, 0.024);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 13px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
}

.rent-trace-note-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #f2b84b;
    background: rgba(242, 184, 75, 0.08);
    border: 1px solid rgba(242, 184, 75, 0.38);
    font-family: "Roboto Mono", Consolas, monospace;
    font-size: 12px;
    font-weight: 900;
}

@media (max-width: 1180px) {
    .rent-trace-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .rent-trace-block {
        width: 100%;
        margin-top: 28px;
        padding: 30px 16px 0;
    }

    .rent-trace-head {
        margin-bottom: 21px;
    }

    .rent-trace-title {
        font-size: clamp(22px, 6.2vw, 26px);
        line-height: 1.12;
    }

    .rent-trace-subtitle {
        font-size: 13px;
        line-height: 1.46;
    }

    .rent-trace-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .rent-trace-card {
        min-height: auto;
        padding: 22px 18px 20px;
        border-radius: 16px;
    }

    .rent-trace-num {
        width: 44px;
        height: 44px;
        margin-bottom: 18px;
        font-size: 14px;
    }

    .rent-trace-card-title {
        font-size: 17px;
    }

    .rent-trace-card-text {
        font-size: 13px;
    }

    .rent-trace-note {
        align-items: flex-start;
        justify-content: flex-start;
        padding: 14px;
        font-size: 13px;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rent-trace-card {
        transition: none;
    }

    .rent-trace-card:hover {
        transform: none;
    }
}

/*
 * Numbers Rental — privacy and control panel.
 * Marker: __NUMBERS_RENT_PRIVACY_CSS_P2__
 */

.rent-privacy-block {
    width: min(100%, 1180px);
    margin: 42px auto 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.rent-privacy-block * {
    box-sizing: border-box;
}

.rent-privacy-panel {
    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.022);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 20px;
}

.rent-privacy-intro {
    min-width: 0;
    min-height: 360px;
    padding: 46px 34px 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.012);
}

.rent-privacy-kicker {
    width: fit-content;
    margin: 0 0 18px;
    padding: 7px 10px;
    color: #5aa8ff;
    background: rgba(74, 158, 255, 0.07);
    border: 1px solid rgba(74, 158, 255, 0.22);
    border-radius: 999px;
    font-family: "Roboto Mono", Consolas, monospace;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.09em;
}

.rent-privacy-title {
    max-width: 430px;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(25px, 2vw, 32px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.042em;
}

.rent-privacy-subtitle {
    max-width: 440px;
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

.rent-privacy-list {
    min-width: 0;
    display: grid;
    grid-template-rows: repeat(4, minmax(0, 1fr));
}

.rent-privacy-item {
    min-width: 0;
    min-height: 90px;
    padding: 23px 28px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    background: transparent;
    transition: background 0.18s ease;
}

.rent-privacy-item + .rent-privacy-item {
    border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.rent-privacy-item:hover {
    background: rgba(255, 255, 255, 0.025);
}

.rent-privacy-num {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #5aa8ff;
    background: rgba(74, 158, 255, 0.08);
    border: 1px solid rgba(74, 158, 255, 0.27);
    border-radius: 50%;
    font-family: "Roboto Mono", Consolas, monospace;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.rent-privacy-copy {
    min-width: 0;
    padding-top: 1px;
}

.rent-privacy-item-title {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.91);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
}

.rent-privacy-item-text {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .rent-privacy-panel {
        grid-template-columns: 1fr;
    }

    .rent-privacy-intro {
        min-height: auto;
        padding: 30px 28px 28px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .rent-privacy-title,
    .rent-privacy-subtitle {
        max-width: 680px;
    }
}

@media (max-width: 720px) {
    .rent-privacy-block {
        width: 100%;
        margin-top: 30px;
        padding: 0 16px;
    }

    .rent-privacy-panel {
        border-radius: 16px;
    }

    .rent-privacy-intro {
        padding: 24px 20px 22px;
    }

    .rent-privacy-kicker {
        margin-bottom: 15px;
        padding: 6px 9px;
        font-size: 9.5px;
    }

    .rent-privacy-title {
        font-size: clamp(22px, 6.4vw, 27px);
        line-height: 1.12;
    }

    .rent-privacy-subtitle {
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.5;
    }

    .rent-privacy-item {
        min-height: auto;
        padding: 18px 18px;
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 13px;
    }

    .rent-privacy-num {
        width: 34px;
        height: 34px;
        font-size: 11px;
    }

    .rent-privacy-item-title {
        margin-bottom: 5px;
        font-size: 15.5px;
    }

    .rent-privacy-item-text {
        font-size: 12.8px;
        line-height: 1.5;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rent-privacy-item {
        transition: none;
    }
}

/* Marker: __NUMBERS_RENT_PRIVACY_SPACING_POLISH_P2A__ */

/*
 * Numbers Rental — static media bridge composition prototype.
 * No motion, video, JS or external media assets at this stage.
 * Marker: __NUMBERS_RENT_MEDIA_BRIDGE_CSS_P3A__
 */

.rent-media-bridge {
    width: min(100%, 1180px);
    margin: 34px auto 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.rent-media-bridge *,
.rent-media-bridge *::before,
.rent-media-bridge *::after {
    box-sizing: border-box;
}

.rent-media-bridge__panel {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    isolation: isolate;
    pointer-events: none;
    user-select: none;
    background:
        linear-gradient(
            112deg,
            #0b0d10 0%,
            #10141a 54%,
            #0c1015 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 20px;
}

.rent-media-bridge__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -4;
    background:
        radial-gradient(
            circle at 65% 43%,
            rgba(74, 158, 255, 0.075),
            transparent 29%
        ),
        radial-gradient(
            circle at 82% 24%,
            rgba(255, 255, 255, 0.032),
            transparent 31%
        ),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.27),
            transparent 48%,
            rgba(0, 0, 0, 0.08)
        );
}

.rent-media-bridge__atmosphere {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.46;
    background:
        repeating-linear-gradient(
            115deg,
            transparent 0,
            transparent 18px,
            rgba(255, 255, 255, 0.004) 19px,
            transparent 20px
        );
}

.rent-media-bridge__figure {
    position: absolute;
    left: -7%;
    bottom: -34%;
    z-index: -1;
    width: 61%;
    height: 125%;
    border-radius: 48% 52% 15% 15%;
    opacity: 0.96;
    background:
        radial-gradient(
            ellipse at 47% 22%,
            rgba(35, 39, 45, 0.97) 0 11%,
            rgba(18, 21, 25, 0.99) 23%,
            transparent 24%
        ),
        radial-gradient(
            ellipse at 50% 46%,
            rgba(26, 29, 34, 0.98) 0 31%,
            rgba(13, 15, 18, 0.99) 61%,
            transparent 62%
        );
    filter: drop-shadow(
        22px 0 34px rgba(0, 0, 0, 0.42)
    );
}

.rent-media-bridge__figure::after {
    content: "";
    position: absolute;
    top: 3%;
    right: 12%;
    width: 1px;
    height: 48%;
    opacity: 0.42;
    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(99, 156, 218, 0.32),
            transparent
        );
}

.rent-media-bridge__phone {
    position: absolute;
    left: 55.5%;
    top: 50%;
    z-index: 5;
    width: clamp(174px, 18.4vw, 216px);
    aspect-ratio: 0.515;
    padding: 12px;
    overflow: hidden;
    transform: translate(-50%, -50%) rotate(-4deg);
    background:
        linear-gradient(
            145deg,
            #15181c,
            #07080a 72%
        );
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    box-shadow:
        0 30px 58px rgba(0, 0, 0, 0.58),
        -18px 8px 44px rgba(74, 158, 255, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.065);
}

.rent-media-bridge__phone-speaker {
    position: absolute;
    top: 9px;
    left: 50%;
    z-index: 3;
    width: 36%;
    height: 5px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.09);
    border-radius: 999px;
}

.rent-media-bridge__screen {
    height: 100%;
    padding: 31px 15px 18px;
    overflow: hidden;
    background:
        linear-gradient(
            165deg,
            rgba(24, 31, 40, 0.98),
            rgba(9, 12, 16, 0.99)
        );
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 25px;
    box-shadow:
        inset 0 0 40px rgba(74, 158, 255, 0.045);
}

.rent-media-bridge__screen-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.42);
    font-family: "Roboto Mono", Consolas, monospace;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.rent-media-bridge__screen-head i {
    width: 6px;
    height: 6px;
    background: #5aa8ff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(74, 158, 255, 0.08);
}

.rent-media-bridge__screen-number {
    margin: 20px 0 17px;
    color: rgba(255, 255, 255, 0.84);
    font-family: "Roboto Mono", Consolas, monospace;
    font-size: clamp(9px, 1vw, 12px);
    font-weight: 700;
    letter-spacing: 0.045em;
}

.rent-media-bridge__screen-message {
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 12px 11px;
    background: rgba(255, 255, 255, 0.038);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 13px;
}

.rent-media-bridge__screen-message > span {
    width: 27px;
    height: 27px;
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.21);
    border-radius: 50%;
}

.rent-media-bridge__screen-message small,
.rent-media-bridge__screen-message strong {
    display: block;
    font-family: "Roboto Mono", Consolas, monospace;
}

.rent-media-bridge__screen-message small {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.27);
    font-size: 7px;
    letter-spacing: 0.08em;
}

.rent-media-bridge__screen-message strong {
    color: rgba(255, 255, 255, 0.86);
    font-size: 11px;
    letter-spacing: 0.06em;
}

.rent-media-bridge__screen-message--muted {
    opacity: 0.58;
}

.rent-media-bridge__hand {
    position: absolute;
    z-index: 6;
    width: 155px;
    height: 76px;
    opacity: 0.98;
    background:
        linear-gradient(
            135deg,
            #202329,
            #101216 66%
        );
    border-top: 1px solid rgba(115, 155, 199, 0.12);
    border-radius: 48% 52% 42% 58%;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.rent-media-bridge__hand--left {
    left: calc(55.5% - 174px);
    bottom: 55px;
    transform: rotate(19deg);
}

.rent-media-bridge__hand--right {
    left: calc(55.5% + 24px);
    bottom: 48px;
    transform: rotate(-14deg) scaleX(-1);
}

.rent-media-bridge__sms {
    position: absolute;
    z-index: 4;
    min-width: 230px;
    padding: 16px 17px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 15px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background:
        linear-gradient(
            135deg,
            rgba(31, 37, 45, 0.72),
            rgba(16, 20, 25, 0.58)
        );
    border: 1px solid rgba(255, 255, 255, 0.095);
    border-radius: 15px;
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.31),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.rent-media-bridge__sms-label {
    color: #5aa8ff;
    font-family: "Roboto Mono", Consolas, monospace;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.rent-media-bridge__sms strong {
    grid-column: 1;
    color: rgba(255, 255, 255, 0.88);
    font-family: "Roboto Mono", Consolas, monospace;
    font-size: 15px;
    letter-spacing: 0.06em;
}

.rent-media-bridge__sms small {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    color: rgba(255, 255, 255, 0.29);
    font-family: "Roboto Mono", Consolas, monospace;
    font-size: 8px;
}

.rent-media-bridge__sms--one {
    top: 76px;
    right: 7%;
    transform: rotate(-1.5deg);
}

.rent-media-bridge__sms--two {
    top: 211px;
    right: 13%;
    z-index: 7;
    min-width: 266px;
    transform: rotate(1.2deg);
}

.rent-media-bridge__sms--three {
    right: 4%;
    bottom: 55px;
    z-index: 2;
    min-width: 215px;
    opacity: 0.58;
    transform: scale(0.93) rotate(-1deg);
}

.rent-media-bridge__vignette {
    position: absolute;
    inset: 0;
    z-index: 10;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.2),
            transparent 28%,
            transparent 77%,
            rgba(0, 0, 0, 0.12)
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.08),
            transparent 38%,
            rgba(0, 0, 0, 0.26)
        );
    border-radius: inherit;
}

@media (max-width: 900px) {
    .rent-media-bridge__panel {
        min-height: 450px;
    }

    .rent-media-bridge__figure {
        left: -20%;
        width: 78%;
    }

    .rent-media-bridge__phone {
        left: 49%;
    }

    .rent-media-bridge__hand--left {
        left: calc(49% - 166px);
    }

    .rent-media-bridge__hand--right {
        left: calc(49% + 20px);
    }

    .rent-media-bridge__sms--one {
        right: 4%;
    }

    .rent-media-bridge__sms--two {
        right: 5%;
    }

    .rent-media-bridge__sms--three {
        display: none;
    }
}

@media (max-width: 720px) {
    .rent-media-bridge {
        width: 100%;
        margin-top: 30px;
        padding: 0 16px;
    }

    .rent-media-bridge__panel {
        min-height: 430px;
        border-radius: 16px;
    }

    .rent-media-bridge__figure {
        left: -34%;
        bottom: -41%;
        width: 128%;
        height: 124%;
        opacity: 0.78;
    }

    .rent-media-bridge__phone {
        left: 50%;
        top: 57%;
        width: 158px;
        border-radius: 28px;
    }

    .rent-media-bridge__screen {
        padding:
            28px
            12px
            14px;
        border-radius: 21px;
    }

    .rent-media-bridge__hand {
        width: 118px;
        height: 59px;
    }

    .rent-media-bridge__hand--left {
        left: calc(50% - 126px);
        bottom: 38px;
    }

    .rent-media-bridge__hand--right {
        left: calc(50% + 12px);
        bottom: 33px;
    }

    .rent-media-bridge__sms {
        min-width: 178px;
        padding: 13px 14px;
        border-radius: 13px;
    }

    .rent-media-bridge__sms strong {
        font-size: 13px;
    }

    .rent-media-bridge__sms--one {
        top: 31px;
        right: 16px;
    }

    .rent-media-bridge__sms--two {
        top: 137px;
        left: 13px;
        right: auto;
        z-index: 3;
        min-width: 188px;
        opacity: 0.7;
    }
}

@media (max-width: 430px) {
    .rent-media-bridge__panel {
        min-height: 405px;
    }

    .rent-media-bridge__phone {
        top: 59%;
        width: 148px;
    }

    .rent-media-bridge__sms--one {
        right: 10px;
    }

    .rent-media-bridge__sms--two {
        left: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rent-media-bridge *,
    .rent-media-bridge *::before,
    .rent-media-bridge *::after {
        animation: none !important;
        transition: none !important;
    }
}

/*
 * Numbers Rental — media bridge asset-ready shell.
 * Keeps fallback scene, separates future poster/video layers.
 * Marker: __NUMBERS_RENT_MEDIA_BRIDGE_CSS_P3B__
 */

.rent-media-bridge__panel {
    position: relative;
}

.rent-media-bridge__media-stage,
.rent-media-bridge__overlay {
    position: absolute;
    inset: 0;
}

.rent-media-bridge__media-stage {
    z-index: 1;
}

.rent-media-bridge__overlay {
    z-index: 6;
}

.rent-media-bridge__poster {
    position: absolute;
    inset: 0;
    display: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.rent-media-bridge__poster--desktop,
.rent-media-bridge__poster--mobile {
    background-image: none;
}

.rent-media-bridge__fallback-scene {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.rent-media-bridge__panel[data-media-state="fallback"] .rent-media-bridge__fallback-scene {
    display: block;
}

.rent-media-bridge__panel[data-media-state="fallback"] .rent-media-bridge__poster {
    display: none;
}

.rent-media-bridge__panel[data-media-state="poster-desktop"] .rent-media-bridge__fallback-scene,
.rent-media-bridge__panel[data-media-state="poster-mobile"] .rent-media-bridge__fallback-scene {
    display: none;
}

.rent-media-bridge__panel[data-media-state="poster-desktop"] .rent-media-bridge__poster--desktop {
    display: block;
}

.rent-media-bridge__panel[data-media-state="poster-mobile"] .rent-media-bridge__poster--mobile {
    display: block;
}

.rent-media-bridge__atmosphere {
    opacity: 0.34;
}

.rent-media-bridge__figure {
    left: -10%;
    bottom: -30%;
    width: 59%;
    opacity: 0.9;
    filter: blur(0.6px) drop-shadow(22px 0 34px rgba(0, 0, 0, 0.42));
}

.rent-media-bridge__figure::after {
    opacity: 0.24;
}

.rent-media-bridge__hand {
    opacity: 0.72;
    filter: blur(0.7px);
}

.rent-media-bridge__phone {
    z-index: 4;
}

.rent-media-bridge__sms {
    z-index: 7;
}

.rent-media-bridge__sms--three {
    opacity: 0.44;
}

.rent-media-bridge__vignette {
    z-index: 10;
    pointer-events: none;
}

@media (max-width: 720px) {
    .rent-media-bridge__figure {
        left: -30%;
        bottom: -40%;
        width: 125%;
        opacity: 0.74;
    }

    .rent-media-bridge__hand {
        opacity: 0.62;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rent-media-bridge__poster,
    .rent-media-bridge__fallback-scene,
    .rent-media-bridge__overlay {
        transition: none !important;
    }
}

/*
 * Numbers Rental — activate approved desktop poster.
 * Desktop uses poster; mobile retains the existing CSS fallback.
 * Marker: __NUMBERS_RENT_MEDIA_BRIDGE_CSS_P3C2__
 */

.rent-media-bridge__poster--desktop {
    background-image: url("/assets/media/numbers-rent/numbers-rent-media-desktop-poster.webp");
    background-position: center center;
    background-size: cover;
}

.rent-media-bridge__panel[data-media-state="poster-desktop"]
.rent-media-bridge__overlay {
    display: none;
}

@media (max-width: 720px) {
    .rent-media-bridge__panel[data-media-state="poster-desktop"]
    .rent-media-bridge__poster--desktop {
        display: none;
    }

    .rent-media-bridge__panel[data-media-state="poster-desktop"]
    .rent-media-bridge__fallback-scene {
        display: block;
    }

    .rent-media-bridge__panel[data-media-state="poster-desktop"]
    .rent-media-bridge__overlay {
        display: block;
    }
}

/*
 * Numbers Rental — activate approved mobile poster.
 * Desktop composition remains unchanged.
 * Marker: __NUMBERS_RENT_MEDIA_BRIDGE_CSS_P3D2__
 */

.rent-media-bridge__poster--mobile {
    background-color: #090c10;
    background-image: url("/assets/media/numbers-rent/numbers-rent-media-mobile-poster.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 720px) {
    .rent-media-bridge__panel {
        min-height: 0;
        aspect-ratio: 1122 / 1402;
    }

    .rent-media-bridge__panel[data-media-state="poster-desktop"]
    .rent-media-bridge__poster--desktop {
        display: none;
    }

    .rent-media-bridge__panel[data-media-state="poster-desktop"]
    .rent-media-bridge__poster--mobile {
        display: block;
    }

    .rent-media-bridge__panel[data-media-state="poster-desktop"]
    .rent-media-bridge__fallback-scene {
        display: none;
    }

    .rent-media-bridge__panel[data-media-state="poster-desktop"]
    .rent-media-bridge__overlay {
        display: none;
    }
}

/*
 * Numbers Rental — restrained cinematic poster motion.
 * No JavaScript, GIF or video.
 * Marker: __NUMBERS_RENT_MEDIA_BRIDGE_CSS_P4A__
 */

.rent-media-bridge__media-stage::after {
    content: "";
    position: absolute;
    inset: -4%;
    z-index: 4;
    pointer-events: none;
    opacity: 0.2;
    background:
        radial-gradient(
            ellipse at 58% 52%,
            rgba(90, 168, 255, 0.075) 0,
            rgba(74, 158, 255, 0.026) 27%,
            transparent 56%
        );
}

@media (prefers-reduced-motion: no-preference) {
    .rent-media-bridge__poster--desktop {
        transform-origin: 54% 52%;
        will-change: transform;
        animation:
            rent-media-poster-drift-desktop
            14s
            ease-in-out
            infinite
            alternate;
    }

    .rent-media-bridge__media-stage::after {
        will-change: opacity, transform;
        animation:
            rent-media-light-drift
            11s
            ease-in-out
            infinite
            alternate;
    }

    @keyframes rent-media-poster-drift-desktop {
        0% {
            transform:
                translate3d(-0.1%, 0.05%, 0)
                scale(1.012);
        }

        100% {
            transform:
                translate3d(0.28%, -0.16%, 0)
                scale(1.028);
        }
    }

    @keyframes rent-media-poster-drift-mobile {
        0% {
            transform:
                translate3d(-0.05%, 0.05%, 0)
                scale(1.008);
        }

        100% {
            transform:
                translate3d(0.12%, -0.12%, 0)
                scale(1.019);
        }
    }

    @keyframes rent-media-light-drift {
        0% {
            opacity: 0.16;
            transform: translate3d(-0.65%, 0.05%, 0);
        }

        100% {
            opacity: 0.37;
            transform: translate3d(0.72%, -0.18%, 0);
        }
    }
}

@media (max-width: 720px) and (prefers-reduced-motion: no-preference) {
    .rent-media-bridge__poster--desktop {
        animation: none;
        transform: none;
        will-change: auto;
    }

    .rent-media-bridge__poster--mobile {
        transform-origin: 50% 56%;
        will-change: transform;
        animation:
            rent-media-poster-drift-mobile
            13s
            ease-in-out
            infinite
            alternate;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rent-media-bridge__poster--desktop,
    .rent-media-bridge__poster--mobile,
    .rent-media-bridge__media-stage::after {
        animation: none !important;
        transform: none !important;
        will-change: auto;
    }

    .rent-media-bridge__media-stage::after {
        opacity: 0.16;
    }
}

/*
 * Numbers Rental — visibly testable cinematic motion.
 * Isolated override over P4A; no JS and no video.
 * Marker: __NUMBERS_RENT_MEDIA_BRIDGE_CSS_P4B2__
 */

@media (prefers-reduced-motion: no-preference) {
    .rent-media-bridge__poster--desktop {
        transform-origin: 54% 52%;
        animation-name: rent-media-poster-drift-desktop-p4b2;
        animation-duration: 7s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-direction: alternate;
    }

    .rent-media-bridge__media-stage::after {
        animation-name: rent-media-light-drift-p4b2;
        animation-duration: 6s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-direction: alternate;
    }

    @keyframes rent-media-poster-drift-desktop-p4b2 {
        0% {
            transform:
                translate3d(-0.45%, 0.18%, 0)
                scale(1.018);
        }

        100% {
            transform:
                translate3d(1.05%, -0.42%, 0)
                scale(1.068);
        }
    }

    @keyframes rent-media-poster-drift-mobile-p4b2 {
        0% {
            transform:
                translate3d(-0.28%, 0.16%, 0)
                scale(1.014);
        }

        100% {
            transform:
                translate3d(0.55%, -0.34%, 0)
                scale(1.050);
        }
    }

    @keyframes rent-media-light-drift-p4b2 {
        0% {
            opacity: 0.14;
            transform: translate3d(-1.4%, 0.15%, 0);
        }

        100% {
            opacity: 0.52;
            transform: translate3d(1.5%, -0.45%, 0);
        }
    }
}

@media (max-width: 720px) and (prefers-reduced-motion: no-preference) {
    .rent-media-bridge__poster--desktop {
        animation: none;
        transform: none;
        will-change: auto;
    }

    .rent-media-bridge__poster--mobile {
        transform-origin: 50% 56%;
        animation-name: rent-media-poster-drift-mobile-p4b2;
        animation-duration: 7s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-direction: alternate;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rent-media-bridge__poster--desktop,
    .rent-media-bridge__poster--mobile,
    .rent-media-bridge__media-stage::after {
        animation: none !important;
        transform: none !important;
    }
}



/*
 * Numbers Rental — dynamic desktop SMS overlay.
 * Marker: __NUMBERS_RENT_MEDIA_BRIDGE_CSS_P5A__
 */

.rent-media-bridge__sms-demo {
    position: absolute;
    inset: 0;
    z-index: 9;
    pointer-events: none;
}

.rent-media-bridge__sms-demo[hidden] {
    display: none !important;
}

.rent-media-bridge__sms-stack {
    position: absolute;
    top: clamp(52px, 13%, 92px);
    left: clamp(24px, 5vw, 76px);
    width: clamp(238px, 25vw, 318px);
    height: 246px;
}

.rent-media-bridge__sms-card {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    min-height: 72px;
    padding: 12px 14px 13px;
    overflow: hidden;
    border: 1px solid rgba(116, 179, 255, 0.18);
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            rgba(14, 19, 27, 0.91),
            rgba(8, 12, 18, 0.84)
        );
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.29);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: rgba(244, 248, 255, 0.96);
    opacity: 0;
    transform:
        translate3d(0, -18px, 0)
        scale(0.985);
    transition:
        transform 460ms cubic-bezier(0.22, 0.72, 0.2, 1),
        opacity 360ms ease,
        border-color 360ms ease;
    will-change: transform, opacity;
}

.rent-media-bridge__sms-card::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: rgba(96, 169, 255, 0.58);
}

.rent-media-bridge__sms-card[data-slot="0"] {
    z-index: 4;
    opacity: 1;
    transform:
        translate3d(0, 0, 0)
        scale(1);
}

.rent-media-bridge__sms-card[data-slot="1"] {
    z-index: 3;
    opacity: 0.82;
    transform:
        translate3d(0, 82px, 0)
        scale(0.985);
}

.rent-media-bridge__sms-card[data-slot="2"] {
    z-index: 2;
    opacity: 0.56;
    transform:
        translate3d(0, 164px, 0)
        scale(0.97);
}

.rent-media-bridge__sms-card[data-slot="3"] {
    z-index: 1;
    opacity: 0;
    transform:
        translate3d(0, 238px, 0)
        scale(0.955);
}

.rent-media-bridge__sms-card-head,
.rent-media-bridge__sms-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.rent-media-bridge__sms-card-head span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.025em;
}

.rent-media-bridge__sms-card-head span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(102, 174, 255, 0.88);
}

.rent-media-bridge__sms-card time {
    color: rgba(188, 201, 220, 0.64);
    font-size: 10px;
    font-variant-numeric: tabular-nums;
}

.rent-media-bridge__sms-card p {
    margin: 7px 0 9px;
    overflow: hidden;
    color: rgba(206, 217, 232, 0.78);
    font-size: 11px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rent-media-bridge__sms-card strong {
    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;
    font-size: 18px;
    font-weight: 650;
    letter-spacing: 0.045em;
    font-variant-numeric: tabular-nums;
}

.rent-media-bridge__sms-card-foot span {
    padding: 4px 7px;
    border:
        1px solid
        rgba(111, 174, 247, 0.15);
    border-radius: 999px;
    background: rgba(64, 123, 190, 0.09);
    color: rgba(157, 203, 255, 0.78);
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.03em;
}

@media (max-width: 720px) {
    .rent-media-bridge__sms-demo {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rent-media-bridge__sms-card {
        transition: none !important;
        will-change: auto;
    }
}


/*
 * Numbers Rental — dynamic mobile SMS overlay.
 * Two-card mobile composition over approved poster.
 * Marker: __NUMBERS_RENT_MEDIA_BRIDGE_CSS_P5B__
 */

@media (max-width: 720px) {
    .rent-media-bridge__sms-demo {
        display: block !important;
    }

    .rent-media-bridge__sms-stack {
        top: 5.5%;
        left: 5%;
        width: min(74%, 280px);
        height: 148px;
    }

    .rent-media-bridge__sms-card {
        min-height: 0;
        padding: 9px 10px 10px;
        border-radius: 12px;
        box-shadow:
            0 10px 24px rgba(0, 0, 0, 0.27);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }

    .rent-media-bridge__sms-card[data-slot="0"] {
        opacity: 1;
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    .rent-media-bridge__sms-card[data-slot="1"] {
        opacity: 0.72;
        transform:
            translate3d(10px, 69px, 0)
            scale(0.97);
    }

    .rent-media-bridge__sms-card[data-slot="2"],
    .rent-media-bridge__sms-card[data-slot="3"] {
        visibility: hidden;
        opacity: 0;
        transform:
            translate3d(12px, 132px, 0)
            scale(0.95);
    }

    .rent-media-bridge__sms-card-head,
    .rent-media-bridge__sms-card-foot {
        gap: 8px;
    }

    .rent-media-bridge__sms-card-head span {
        gap: 5px;
        font-size: 10px;
    }

    .rent-media-bridge__sms-card-head span::before {
        width: 5px;
        height: 5px;
    }

    .rent-media-bridge__sms-card time {
        font-size: 9px;
    }

    .rent-media-bridge__sms-card p {
        margin: 4px 0 6px;
        font-size: 10px;
        line-height: 1.25;
    }

    .rent-media-bridge__sms-card strong {
        font-size: 15px;
        letter-spacing: 0.04em;
    }

    .rent-media-bridge__sms-card-foot span {
        padding: 3px 6px;
        font-size: 8px;
    }
}

@media (max-width: 430px) {
    .rent-media-bridge__sms-stack {
        top: 4.5%;
        left: 4%;
        width: min(78%, 260px);
        height: 140px;
    }

    .rent-media-bridge__sms-card {
        padding: 8px 9px 9px;
    }

    .rent-media-bridge__sms-card[data-slot="1"] {
        transform:
            translate3d(8px, 65px, 0)
            scale(0.97);
    }
}


/*
 * Numbers Rental — mobile SMS composition polish.
 * One primary card plus one compact previous message.
 * Marker: __NUMBERS_RENT_MEDIA_BRIDGE_CSS_P5B1__
 */

@media (max-width: 720px) {
    .rent-media-bridge__sms-stack {
        top: 3.2%;
        left: 4%;
        width: min(50%, 196px);
        height: 118px;
    }

    .rent-media-bridge__sms-card {
        padding: 8px 9px 9px;
        border-radius: 11px;
        box-shadow:
            0 8px 20px rgba(0, 0, 0, 0.26);
    }

    .rent-media-bridge__sms-card[data-slot="0"] {
        right: 0;
        left: 0;
        width: auto;
        opacity: 1;
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    .rent-media-bridge__sms-card[data-slot="1"] {
        right: auto;
        left: 8px;
        width: 88%;
        padding: 7px 8px 8px;
        opacity: 0.46;
        transform:
            translate3d(0, 58px, 0)
            scale(0.94);
    }

    .rent-media-bridge__sms-card[data-slot="1"]
    [data-rent-media-sms-text] {
        display: none;
    }

    .rent-media-bridge__sms-card[data-slot="1"]
    .rent-media-bridge__sms-card-foot {
        margin-top: 4px;
    }

    .rent-media-bridge__sms-card[data-slot="1"]
    [data-rent-media-sms-status] {
        display: none;
    }

    .rent-media-bridge__sms-card[data-slot="1"]
    .rent-media-bridge__sms-card-head span {
        font-size: 9px;
    }

    .rent-media-bridge__sms-card[data-slot="1"]
    .rent-media-bridge__sms-card time {
        font-size: 8px;
    }

    .rent-media-bridge__sms-card[data-slot="1"]
    .rent-media-bridge__sms-card-foot strong {
        font-size: 13px;
    }

    .rent-media-bridge__sms-card[data-slot="2"],
    .rent-media-bridge__sms-card[data-slot="3"] {
        visibility: hidden;
        opacity: 0;
    }
}

@media (max-width: 430px) {
    .rent-media-bridge__sms-stack {
        top: 3%;
        left: 3.5%;
        width: min(50%, 190px);
        height: 114px;
    }

    .rent-media-bridge__sms-card {
        padding: 7px 8px 8px;
    }

    .rent-media-bridge__sms-card[data-slot="1"] {
        left: 7px;
        transform:
            translate3d(0, 55px, 0)
            scale(0.94);
    }
}
/*
 * Numbers Rental — lifecycle scroll story.
 * Transparent page-level vertical rail with restrained
 * viewport reveals. Existing P7A semantic contract preserved.
 * Markers:
 * __NUMBERS_RENT_LIFECYCLE_CSS_P7A__
 * __NUMBERS_RENT_LIFECYCLE_SCROLL_CSS_P7D__
 */

.rent-lifecycle-block {
    --lifecycle-progress: 0;
    width: min(1180px, calc(100% - 48px));
    margin: 88px auto 58px;
    font-family: inherit;
}

.rent-lifecycle-block *,
.rent-lifecycle-block *::before,
.rent-lifecycle-block *::after {
    box-sizing: border-box;
}

.rent-lifecycle-panel {
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.rent-lifecycle-head {
    display: block;
    max-width: 760px;
    margin: 0 auto 82px;
    padding: 0;
    border: 0;
    text-align: center;
    transition:
        opacity 560ms ease,
        transform 560ms ease;
}

.rent-lifecycle-heading {
    min-width: 0;
}

.rent-lifecycle-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 21px;
    padding: 7px 13px;
    border: 1px solid rgba(74, 158, 255, 0.36);
    border-radius: 999px;
    color: #65adff;
    font-family: "Roboto Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.25px;
}

.rent-lifecycle-title {
    max-width: 760px;
    margin: 0 auto;
    color: #f1f1f1;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -1.55px;
}

.rent-lifecycle-subtitle {
    max-width: 620px;
    margin: 22px auto 0;
    color: #858585;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.72;
}

.rent-lifecycle-rail {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
    padding: 8px 0 36px;
}

.rent-lifecycle-track {
    position: absolute;
    z-index: 0;
    top: 20px;
    bottom: 78px;
    left: 50%;
    width: 1px;
    overflow: hidden;
    background: #30343a;
    transform: translateX(-50%);
}

.rent-lifecycle-track-fill {
    display: block;
    width: 100%;
    height: 100%;
    background: #4a9eff;
    opacity: 0.84;
    transform:
        scaleY(var(--lifecycle-progress));
    transform-origin: 50% 0;
    will-change: transform;
}

.rent-lifecycle-step {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        84px
        minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    min-height: 224px;
    transition:
        opacity 620ms ease,
        transform 620ms
            cubic-bezier(0.22, 1, 0.36, 1);
}

.rent-lifecycle-step:last-of-type {
    min-height: 148px;
}

.rent-lifecycle-node {
    position: relative;
    z-index: 2;
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 1px solid #3a4149;
    border-radius: 50%;
    color: #69afff;
    font-family: "Roboto Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    transition:
        background-color 300ms ease,
        border-color 300ms ease,
        color 300ms ease;
}

.rent-lifecycle-step::after {
    content: "";
    position: absolute;
    top: 19px;
    width: 34px;
    height: 1px;
    background: #333940;
    transition:
        background-color 300ms ease,
        width 300ms ease;
}

.rent-lifecycle-step:nth-of-type(odd)::after {
    right: calc(50% + 20px);
}

.rent-lifecycle-step:nth-of-type(even)::after {
    left: calc(50% + 20px);
}

.rent-lifecycle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 17px;
    color: #579ce9;
    opacity: 0.74;
    transition:
        color 300ms ease,
        opacity 300ms ease,
        transform 420ms ease;
}

.rent-lifecycle-icon svg {
    width: 25px;
    height: 25px;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rent-lifecycle-copy {
    min-width: 0;
    max-width: 390px;
}

.rent-lifecycle-step:nth-of-type(odd)
.rent-lifecycle-icon,
.rent-lifecycle-step:nth-of-type(odd)
.rent-lifecycle-copy {
    grid-column: 1;
    justify-self: end;
    margin-right: 48px;
    text-align: right;
}

.rent-lifecycle-step:nth-of-type(even)
.rent-lifecycle-icon,
.rent-lifecycle-step:nth-of-type(even)
.rent-lifecycle-copy {
    grid-column: 3;
    justify-self: start;
    margin-left: 48px;
    text-align: left;
}

.rent-lifecycle-step:nth-of-type(odd)
.rent-lifecycle-icon,
.rent-lifecycle-step:nth-of-type(even)
.rent-lifecycle-icon {
    grid-row: 1;
}

.rent-lifecycle-step:nth-of-type(odd)
.rent-lifecycle-copy,
.rent-lifecycle-step:nth-of-type(even)
.rent-lifecycle-copy {
    grid-row: 2;
}

.rent-lifecycle-step-title {
    margin: 0 0 9px;
    color: #eeeeee;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.28px;
}

.rent-lifecycle-step-text {
    max-width: 390px;
    margin: 0;
    color: #828282;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
}

.rent-lifecycle-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 17px;
}

.rent-lifecycle-step:nth-of-type(odd)
.rent-lifecycle-chips {
    justify-content: flex-end;
}

.rent-lifecycle-step:nth-of-type(even)
.rent-lifecycle-chips {
    justify-content: flex-start;
}

.rent-lifecycle-chip {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 5px 9px;
    background: rgba(74, 158, 255, 0.035);
    border: 1px solid rgba(74, 158, 255, 0.20);
    border-radius: 999px;
    color: #69abf5;
    font-family: "Roboto Mono", monospace;
    font-size: 8px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.72px;
    white-space: nowrap;
}

.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-head {
    opacity: 0.18;
    transform: translateY(18px);
}

.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-head.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-step {
    opacity: 0.14;
}

.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-step:nth-of-type(odd) {
    transform: translate3d(-22px, 18px, 0);
}

.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-step:nth-of-type(even) {
    transform: translate3d(22px, 18px, 0);
}

.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-step.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.rent-lifecycle-step.is-visible
.rent-lifecycle-node {
    background: rgba(74, 158, 255, 0.075);
    border-color: rgba(74, 158, 255, 0.68);
    color: #78b8ff;
}

.rent-lifecycle-step.is-visible::after {
    width: 42px;
    background: rgba(74, 158, 255, 0.38);
}

.rent-lifecycle-step.is-visible
.rent-lifecycle-icon {
    color: #72b5ff;
    opacity: 1;
    transform: translateY(-2px);
}

@media (max-width: 760px) {
    .rent-lifecycle-block {
        width: calc(100% - 28px);
        margin: 54px auto 34px;
    }

    .rent-lifecycle-head {
        max-width: none;
        margin: 0 0 52px;
        text-align: left;
    }

    .rent-lifecycle-kicker {
        min-height: 28px;
        margin-bottom: 18px;
        padding: 6px 11px;
        font-size: 9px;
        letter-spacing: 1.05px;
    }

    .rent-lifecycle-title {
        max-width: 560px;
        margin: 0;
        font-size: clamp(29px, 8vw, 39px);
        letter-spacing: -0.9px;
    }

    .rent-lifecycle-subtitle {
        max-width: 560px;
        margin: 17px 0 0;
        font-size: 13px;
        line-height: 1.68;
    }

    .rent-lifecycle-rail {
        padding: 2px 0 22px;
    }

    .rent-lifecycle-track {
        top: 18px;
        bottom: 66px;
        left: 19px;
        transform: none;
    }

    .rent-lifecycle-step {
        grid-template-columns:
            38px
            38px
            minmax(0, 1fr);
        grid-template-rows: auto;
        align-items: start;
        column-gap: 12px;
        min-height: 184px;
    }

    .rent-lifecycle-step:last-of-type {
        min-height: 132px;
    }

    .rent-lifecycle-node {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        width: 38px;
        height: 38px;
    }

    .rent-lifecycle-step::after {
        display: none;
    }

    .rent-lifecycle-step:nth-of-type(odd)
    .rent-lifecycle-icon,
    .rent-lifecycle-step:nth-of-type(even)
    .rent-lifecycle-icon {
        grid-column: 2;
        grid-row: 1;
        justify-self: start;
        width: 36px;
        height: 36px;
        margin: 1px 0 0;
        text-align: left;
    }

    .rent-lifecycle-step:nth-of-type(odd)
    .rent-lifecycle-copy,
    .rent-lifecycle-step:nth-of-type(even)
    .rent-lifecycle-copy {
        grid-column: 3;
        grid-row: 1;
        justify-self: stretch;
        max-width: none;
        margin: 0;
        padding-top: 5px;
        text-align: left;
    }

    .rent-lifecycle-step-title {
        margin-bottom: 8px;
        font-size: 16px;
    }

    .rent-lifecycle-step-text {
        max-width: 100%;
        font-size: 12px;
        line-height: 1.62;
    }

    .rent-lifecycle-step:nth-of-type(odd)
    .rent-lifecycle-chips,
    .rent-lifecycle-step:nth-of-type(even)
    .rent-lifecycle-chips {
        justify-content: flex-start;
    }

    .rent-lifecycle-chips {
        gap: 6px;
        margin-top: 13px;
    }

    .rent-lifecycle-chip {
        min-height: 23px;
        padding: 5px 8px;
        font-size: 8px;
        letter-spacing: 0.55px;
    }

    .rent-lifecycle-block.is-scroll-ready
    .rent-lifecycle-step:nth-of-type(odd),
    .rent-lifecycle-block.is-scroll-ready
    .rent-lifecycle-step:nth-of-type(even) {
        transform: translate3d(0, 18px, 0);
    }

    .rent-lifecycle-block.is-scroll-ready
    .rent-lifecycle-step.is-visible {
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 430px) {
    .rent-lifecycle-step {
        grid-template-columns:
            34px
            32px
            minmax(0, 1fr);
        column-gap: 10px;
        min-height: 174px;
    }

    .rent-lifecycle-track {
        left: 17px;
    }

    .rent-lifecycle-node {
        width: 34px;
        height: 34px;
        font-size: 9px;
    }

    .rent-lifecycle-step:nth-of-type(odd)
    .rent-lifecycle-icon,
    .rent-lifecycle-step:nth-of-type(even)
    .rent-lifecycle-icon {
        width: 32px;
        height: 32px;
    }

    .rent-lifecycle-icon svg {
        width: 22px;
        height: 22px;
    }

    .rent-lifecycle-step:nth-of-type(odd)
    .rent-lifecycle-copy,
    .rent-lifecycle-step:nth-of-type(even)
    .rent-lifecycle-copy {
        padding-top: 3px;
    }

    .rent-lifecycle-step-title {
        font-size: 15px;
    }

    .rent-lifecycle-chip {
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rent-lifecycle-head,
    .rent-lifecycle-step,
    .rent-lifecycle-node,
    .rent-lifecycle-icon,
    .rent-lifecycle-step::after,
    .rent-lifecycle-track-fill {
        transition: none !important;
    }

    .rent-lifecycle-block.is-scroll-ready
    .rent-lifecycle-head,
    .rent-lifecycle-block.is-scroll-ready
    .rent-lifecycle-step {
        opacity: 1;
        transform: none;
    }
}

/*
 * Numbers Rental — lifecycle shadow and rail polish.
 * Keeps the transparent page-level composition while
 * strengthening sequential reveal and route hierarchy.
 * Marker: __NUMBERS_RENT_LIFECYCLE_POLISH_CSS_P7H__
 */

.rent-lifecycle-block {
    --lifecycle-progress-y: 0%;
}

.rent-lifecycle-rail {
    max-width: 1080px;
}

.rent-lifecycle-track {
    width: 18px;
    overflow: visible;
    background: transparent;
}

.rent-lifecycle-track::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    border-radius: 999px;
    background:
        linear-gradient(
            to bottom,
            rgba(58, 67, 77, 0) 0%,
            rgba(58, 67, 77, 0.74) 7%,
            rgba(58, 67, 77, 0.74) 93%,
            rgba(58, 67, 77, 0) 100%
        );
    transform: translateX(-50%);
}

.rent-lifecycle-track::after {
    content: "";
    position: absolute;
    z-index: 3;
    top: var(--lifecycle-progress-y);
    left: 50%;
    width: 8px;
    height: 8px;
    background: #6aaeff;
    border: 2px solid #191919;
    border-radius: 50%;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.58);
    transform: translate(-50%, -50%);
    transition:
        top 90ms linear;
    pointer-events: none;
}

.rent-lifecycle-track-fill {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background:
        linear-gradient(
            to bottom,
            rgba(80, 163, 255, 0.55),
            #5da8fa 48%,
            #72b6ff
        );
    border-radius: 999px;
    opacity: 0.94;
    transform:
        translateX(-50%)
        scaleY(var(--lifecycle-progress));
    transform-origin: 50% 0;
}

.rent-lifecycle-step {
    min-height: 208px;
}

.rent-lifecycle-step:last-of-type {
    min-height: 140px;
}

.rent-lifecycle-node {
    width: 42px;
    height: 42px;
    background: #191b1e;
    border-color: #3b4651;
    box-shadow:
        0 0 0 6px #191919,
        0 7px 18px rgba(0, 0, 0, 0.28);
}

.rent-lifecycle-step::after {
    top: 20px;
    width: 56px;
    height: 1px;
}

.rent-lifecycle-step:nth-of-type(odd)::after {
    right: calc(50% + 22px);
    background:
        linear-gradient(
            to right,
            rgba(46, 54, 62, 0),
            rgba(55, 65, 75, 0.92)
        );
}

.rent-lifecycle-step:nth-of-type(even)::after {
    left: calc(50% + 22px);
    background:
        linear-gradient(
            to right,
            rgba(55, 65, 75, 0.92),
            rgba(46, 54, 62, 0)
        );
}

.rent-lifecycle-step:nth-of-type(odd)
.rent-lifecycle-icon,
.rent-lifecycle-step:nth-of-type(odd)
.rent-lifecycle-copy {
    margin-right: 62px;
}

.rent-lifecycle-step:nth-of-type(even)
.rent-lifecycle-icon,
.rent-lifecycle-step:nth-of-type(even)
.rent-lifecycle-copy {
    margin-left: 62px;
}

.rent-lifecycle-copy {
    position: relative;
    max-width: 410px;
    padding-bottom: 10px;
}

.rent-lifecycle-step-title {
    color: #f0f0f0;
    font-size: 20px;
}

.rent-lifecycle-step-text {
    max-width: 410px;
    color: #898989;
}

.rent-lifecycle-chip {
    background: rgba(74, 158, 255, 0.028);
    border-color: rgba(74, 158, 255, 0.24);
    color: #71b1f8;
}

.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-step {
    opacity: 1;
    transform: none;
}

.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-step
.rent-lifecycle-icon,
.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-step
.rent-lifecycle-copy {
    opacity: 0;
    filter:
        blur(8px)
        brightness(0.56);
    will-change:
        opacity,
        transform,
        filter;
    transition:
        opacity 720ms ease,
        transform 880ms
            cubic-bezier(0.22, 1, 0.36, 1),
        filter 720ms ease;
}

.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-step:nth-of-type(odd)
.rent-lifecycle-icon,
.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-step:nth-of-type(odd)
.rent-lifecycle-copy {
    transform:
        translate3d(-42px, 26px, 0);
}

.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-step:nth-of-type(even)
.rent-lifecycle-icon,
.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-step:nth-of-type(even)
.rent-lifecycle-copy {
    transform:
        translate3d(42px, 26px, 0);
}

.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-step.is-visible
.rent-lifecycle-icon,
.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-step.is-visible
.rent-lifecycle-copy {
    opacity: 1;
    filter:
        blur(0)
        brightness(1);
    transform:
        translate3d(0, 0, 0);
}

.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-step.is-visible
.rent-lifecycle-copy {
    transition-delay: 70ms;
}

.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-step
.rent-lifecycle-chips {
    opacity: 0;
    transform:
        translate3d(0, 8px, 0);
    transition:
        opacity 440ms ease,
        transform 520ms
            cubic-bezier(0.22, 1, 0.36, 1);
}

.rent-lifecycle-block.is-scroll-ready
.rent-lifecycle-step.is-visible
.rent-lifecycle-chips {
    opacity: 1;
    transform:
        translate3d(0, 0, 0);
    transition-delay: 220ms;
}

.rent-lifecycle-step.is-visible
.rent-lifecycle-node {
    background:
        linear-gradient(
            180deg,
            rgba(74, 158, 255, 0.14),
            rgba(74, 158, 255, 0.045)
        ),
        #191b1e;
    border-color: rgba(91, 171, 255, 0.76);
    color: #83c0ff;
}

.rent-lifecycle-step.is-visible:nth-of-type(odd)::after {
    width: 62px;
    background:
        linear-gradient(
            to right,
            rgba(74, 158, 255, 0),
            rgba(86, 168, 255, 0.58)
        );
}

.rent-lifecycle-step.is-visible:nth-of-type(even)::after {
    width: 62px;
    background:
        linear-gradient(
            to right,
            rgba(86, 168, 255, 0.58),
            rgba(74, 158, 255, 0)
        );
}

.rent-lifecycle-step.is-visible
.rent-lifecycle-icon {
    color: #7abbff;
}

@media (max-width: 760px) {
    .rent-lifecycle-track {
        width: 16px;
    }

    .rent-lifecycle-step {
        min-height: 170px;
    }

    .rent-lifecycle-step:last-of-type {
        min-height: 122px;
    }

    .rent-lifecycle-node {
        width: 38px;
        height: 38px;
        box-shadow:
            0 0 0 5px #191919,
            0 6px 15px rgba(0, 0, 0, 0.26);
    }

    .rent-lifecycle-step:nth-of-type(odd)
    .rent-lifecycle-icon,
    .rent-lifecycle-step:nth-of-type(even)
    .rent-lifecycle-icon,
    .rent-lifecycle-step:nth-of-type(odd)
    .rent-lifecycle-copy,
    .rent-lifecycle-step:nth-of-type(even)
    .rent-lifecycle-copy {
        margin-right: 0;
        margin-left: 0;
    }

    .rent-lifecycle-block.is-scroll-ready
    .rent-lifecycle-step:nth-of-type(odd)
    .rent-lifecycle-icon,
    .rent-lifecycle-block.is-scroll-ready
    .rent-lifecycle-step:nth-of-type(even)
    .rent-lifecycle-icon,
    .rent-lifecycle-block.is-scroll-ready
    .rent-lifecycle-step:nth-of-type(odd)
    .rent-lifecycle-copy,
    .rent-lifecycle-block.is-scroll-ready
    .rent-lifecycle-step:nth-of-type(even)
    .rent-lifecycle-copy {
        transform:
            translate3d(0, 24px, 0);
    }

    .rent-lifecycle-block.is-scroll-ready
    .rent-lifecycle-step.is-visible
    .rent-lifecycle-icon,
    .rent-lifecycle-block.is-scroll-ready
    .rent-lifecycle-step.is-visible
    .rent-lifecycle-copy {
        transform:
            translate3d(0, 0, 0);
    }
}

@media (max-width: 430px) {
    .rent-lifecycle-step {
        min-height: 162px;
    }

    .rent-lifecycle-node {
        width: 34px;
        height: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rent-lifecycle-track::after,
    .rent-lifecycle-step
    .rent-lifecycle-icon,
    .rent-lifecycle-step
    .rent-lifecycle-copy,
    .rent-lifecycle-step
    .rent-lifecycle-chips {
        transition: none !important;
    }

    .rent-lifecycle-block.is-scroll-ready
    .rent-lifecycle-step
    .rent-lifecycle-icon,
    .rent-lifecycle-block.is-scroll-ready
    .rent-lifecycle-step
    .rent-lifecycle-copy,
    .rent-lifecycle-block.is-scroll-ready
    .rent-lifecycle-step
    .rent-lifecycle-chips {
        opacity: 1;
        filter: none;
        transform: none;
    }
}

/*
 * Numbers Rental — final conversion CTA.
 * Escrow CTA composition adapted without an outer card background.
 * Marker: __NUMBERS_RENT_FINAL_CTA_CSS_P8C__
 */

#rentCatalog {
    scroll-margin-top: 92px;
}

.rent-final-cta {
    position: relative;
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 72px 20px 78px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rent-final-cta::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: 92px;
    height: 1px;
    background: #4a9eff;
    opacity: 0.72;
    transform: translateX(-50%);
}

.rent-final-cta__inner {
    max-width: 880px;
    margin: 0 auto;
}

.rent-final-cta__title {
    margin: 0;
    color: #f4f4f4;
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.025em;
}

.rent-final-cta__subtitle {
    max-width: 760px;
    margin: 16px auto 0;
    color: #858585;
    font-size: 16px;
    line-height: 1.7;
}

.rent-final-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.rent-final-cta__button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.rent-final-cta__button svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

.rent-final-cta__button--primary {
    border: 1px solid #4a9eff;
    background: #4a9eff;
    color: #fff;
}

.rent-final-cta__button--primary:hover {
    border-color: #2d7cd6;
    background: #2d7cd6;
    color: #fff;
    transform: translateY(-1px);
}

.rent-final-cta__button--secondary {
    border: 1px solid rgba(74, 158, 255, 0.3);
    background: rgba(74, 158, 255, 0.11);
    color: #4a9eff;
}

.rent-final-cta__button--secondary:hover {
    border-color: #4a9eff;
    background: #4a9eff;
    color: #fff;
    transform: translateY(-1px);
}

.rent-final-cta__button:focus-visible {
    outline: 2px solid rgba(74, 158, 255, 0.9);
    outline-offset: 3px;
}

@media (max-width: 640px) {
    #rentCatalog {
        scroll-margin-top: 76px;
    }

    .rent-final-cta {
        padding: 56px 20px 62px;
    }

    .rent-final-cta__title {
        font-size: 28px;
    }

    .rent-final-cta__subtitle {
        margin-top: 13px;
        font-size: 14px;
        line-height: 1.65;
    }

    .rent-final-cta__actions {
        gap: 9px;
        margin-top: 24px;
    }

    .rent-final-cta__button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rent-final-cta__button {
        transition: none;
    }

    .rent-final-cta__button:hover {
        transform: none;
    }
}

/*
 * Numbers Rental FAQ — exact Escrow FAQ extraction.
 * 31 leaf rules + 3 responsive wrappers.
 * Only namespace changed.
 * Marker: __NUMBERS_RENT_FAQ_CSS_P8E4__
 */

.rent-faq-scope {
    --bp-accent: #4a9eff;
    --bp-radius: 14px;
    --bp-radius-sm: 10px;
    --bp-text: #f0f0f0;
    --bp-text-muted: #555555;
    --bp-text-secondary: #888888;
    --bp-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.rent-faq-scope {
/* clamp(1280px, 86vw, 1420px) caused horizontal overflow on screens < 1488px
       (86vw < 1280px minimum → max-width locked to 1280px → scrollbar flash → layout jank).
       Fixed: simple max-width, width: 100% stays within viewport always. */
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px 60px;
    box-sizing: border-box;
}

.rent-faq-container {
max-width: 1200px;
    margin: 0 auto;
}

.rent-faq-section {
padding: 48px 0 56px;
}

.rent-faq-inner {
max-width: 900px;
    margin: 0 auto;
    padding: 28px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--bp-radius);
}

.rent-faq-header {
margin-bottom: 24px;
}

.rent-faq-title {
display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--bp-text);
    margin: 0 0 8px 0;
}

.rent-faq-title::before {
content: '❓';
    font-size: 20px;
}

.rent-faq-subtitle {
color: var(--bp-text-secondary);
    font-size: 14px;
    margin: 0;
}

.rent-faq-list {
display: flex;
    flex-direction: column;
    gap: 10px;
}

.rent-faq-item {
background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--bp-radius-sm);
    overflow: hidden;
    transition: border-color var(--bp-transition), background var(--bp-transition);
    cursor: pointer;
}

.rent-faq-item:hover {
border-color: rgba(74, 158, 255, 0.30);
    background: rgba(255,255,255,0.04);
}

.rent-faq-item.rent-active {
border-color: rgba(74, 158, 255, 0.40);
    background: rgba(74, 158, 255, 0.05);
}

.rent-faq-question {
padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    user-select: none;
}

.rent-faq-q {
font-size: 14px;
    font-weight: 500;
    color: #e0e0e0;
    line-height: 1.5;
}

.rent-faq-chevron {
flex-shrink: 0;
    color: var(--bp-text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.rent-faq-chevron svg {
width: 14px;
    height: 14px;
    display: block;
}

.rent-faq-item.rent-active .rent-faq-chevron {
transform: rotate(180deg);
    color: var(--bp-accent);
}

.rent-faq-answer {
max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.rent-faq-item.rent-active .rent-faq-answer {
max-height: 600px;
}

.rent-faq-answer-content {
padding: 0 20px 20px;
    font-size: 13px;
    color: #a0a0a0;
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 16px;
    margin-top: 0;
}

.rent-faq-answer-content strong {
color: var(--bp-accent);
    font-weight: 600;
}

@media (max-width: 768px) {
.rent-faq-inner {
padding: 16px;
        border-radius: var(--bp-radius-sm);
}

.rent-faq-title {
font-size: 16px;
}

.rent-faq-question {
padding: 14px 16px;
}

.rent-faq-answer-content {
padding: 12px 16px 16px; font-size: 13px;
}
}

@media (max-width: 768px) {
.rent-faq-scope {
padding: 0 16px 40px;
}

.rent-faq-section {
padding: 32px 0 40px;
}

.rent-faq-inner {
padding: 16px;
}

.rent-faq-question {
padding: 14px 16px;
}

.rent-faq-answer-content {
padding: 12px 16px 16px; font-size: 13px;
}
}

@media (max-width: 480px) {
.rent-faq-container {
padding: 0 14px;
}
}

