/* StayEasy — supplier public landing (host.php) */
:root {
    --host-ink: #0d1b2a;
    --host-slate: #1e3248;
    --host-teal: #0a9396;
    --host-teal-dark: #087a7d;
    --host-teal-glow: rgba(10, 147, 150, 0.45);
    --host-soft-teal: #94d2bd;
    --host-paper: #f4f7f6;
    --host-border: rgba(13, 27, 42, 0.08);
    --host-card-shadow: 0 0.35rem 1.25rem rgba(13, 27, 42, 0.07);
    --host-card-shadow-hover: 0 1rem 2.5rem rgba(13, 27, 42, 0.12);
}

body.host-landing {
    background: var(--host-paper);
    scroll-behavior: smooth;
}

body.host-landing main {
    color: var(--host-ink);
}

.host-hero {
    position: relative;
    background: var(--host-ink);
    color: #fff;
    overflow: hidden;
    min-height: 39rem;
    isolation: isolate;
}

.host-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 18% 28%, rgba(10, 147, 150, 0.22) 0%, transparent 48%);
    pointer-events: none;
    z-index: 2;
}

.host-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.82;
    transform: scale(1.025);
    animation: host-hero-settle 1.4s ease-out both;
}

.host-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5, 16, 29, 0.96) 0%, rgba(5, 16, 29, 0.8) 42%, rgba(5, 16, 29, 0.2) 72%, rgba(5, 16, 29, 0.32) 100%),
        linear-gradient(0deg, rgba(5, 16, 29, 0.5), transparent 42%);
}

@keyframes host-hero-settle {
    from { transform: scale(1.08); }
    to { transform: scale(1.025); }
}

.host-hero .container {
    position: relative;
    z-index: 3;
}

.host-hero__eyebrow {
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--host-soft-teal);
    font-weight: 600;
}

.host-hero__accent {
    color: var(--host-soft-teal);
    text-shadow: 0 0 40px rgba(148, 210, 189, 0.35);
}

.host-hero .lead {
    max-width: 40rem;
    line-height: 1.6;
}

.host-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.host-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
}

.host-hero__trust i {
    color: var(--host-soft-teal);
    margin-right: 0.25rem;
    display: inline-block;
    animation: host-check-pop 3.8s ease-in-out infinite;
}

.host-hero__trust span:nth-child(2) i {
    animation-delay: 0.35s;
}

.host-hero__trust span:nth-child(3) i {
    animation-delay: 0.7s;
}

@keyframes host-check-pop {
    0%,
    82%,
    100% { transform: scale(1); }
    88% { transform: scale(1.22); }
    94% { transform: scale(0.96); }
}

.btn-host-primary {
    background: linear-gradient(135deg, var(--host-teal), #0bb8bc);
    border: none;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 0.35rem 1rem var(--host-teal-glow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-host-primary i {
    display: inline-block;
    transition: transform 0.25s ease;
}

.btn-host-primary:hover,
.btn-host-primary:focus {
    background: linear-gradient(135deg, var(--host-teal-dark), var(--host-teal));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.25rem var(--host-teal-glow);
}

.btn-host-primary:hover i,
.btn-host-primary:focus i {
    transform: translate(3px, -2px);
}

.host-hero .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.45);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.host-hero .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.host-value-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--host-border);
    border-radius: 1rem;
    background: #fff;
    box-shadow: var(--host-card-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.host-value-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -75%;
    width: 45%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
    transform: rotate(18deg);
    transition: left 0.65s ease;
    pointer-events: none;
}

.host-value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--host-teal), var(--host-soft-teal));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.host-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--host-card-shadow-hover);
    border-color: rgba(10, 147, 150, 0.22);
}

.host-value-card:hover::before {
    opacity: 1;
}

.host-value-card:hover::after {
    left: 135%;
}

.host-value-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(145deg, rgba(10, 147, 150, 0.15), rgba(10, 147, 150, 0.05));
    color: var(--host-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 0 0 0 rgba(10, 147, 150, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    animation: host-value-float 4.2s ease-in-out infinite;
}

.host-reveal-delay-1 .host-value-icon {
    animation-delay: -1.4s;
}

.host-reveal-delay-2 .host-value-icon {
    animation-delay: -2.8s;
}

.host-value-card:hover .host-value-icon {
    color: var(--host-teal-dark);
    transform: translateY(-3px) rotate(-5deg);
    box-shadow: 0 0.55rem 1.25rem rgba(10, 147, 150, 0.18);
    animation-play-state: paused;
}

@keyframes host-value-float {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.host-section-heading {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.host-section-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.5rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--host-teal), var(--host-soft-teal));
}

.host-section-heading--center::after {
    left: 50%;
    transform: translateX(-50%);
}

.host-section-kicker {
    color: var(--host-teal-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.host-section-kicker--light {
    color: var(--host-soft-teal);
}

.host-steps-row {
    position: relative;
}

@media (min-width: 992px) {
    .host-steps-row::before {
        content: "";
        position: absolute;
        top: 2.35rem;
        left: 8%;
        right: 8%;
        height: 2px;
        background: linear-gradient(90deg, var(--host-teal), rgba(10, 147, 150, 0.15));
        z-index: 0;
    }
}

.host-step-card {
    position: relative;
    z-index: 1;
    border: 1px solid var(--host-border);
    border-radius: 1rem;
    background: #fff;
    box-shadow: var(--host-card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.host-step-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(10, 147, 150, 0);
    transition: box-shadow 0.3s ease;
    pointer-events: none;
}

.host-step-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--host-card-shadow-hover);
    border-color: rgba(10, 147, 150, 0.2);
}

.host-step-card:hover::after {
    box-shadow: inset 0 0 0 1px rgba(10, 147, 150, 0.16);
}

.host-step-card:hover .host-step-icon {
    transform: scale(1.12) rotate(-4deg);
}

.host-step-num {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--host-teal), var(--host-teal-dark));
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.25rem 0.75rem var(--host-teal-glow);
    margin-bottom: 0.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.host-step-card:hover .host-step-num {
    transform: scale(1.08);
    box-shadow: 0 0.5rem 1.15rem var(--host-teal-glow);
}

.host-step-card:hover .host-step-num::after {
    animation: host-step-ring 0.65s ease-out;
}

.host-step-num {
    position: relative;
}

.host-step-num::after {
    content: "";
    position: absolute;
    inset: -0.3rem;
    border: 1px solid rgba(10, 147, 150, 0.38);
    border-radius: 50%;
    opacity: 0;
}

@keyframes host-step-ring {
    from { opacity: 0.8; transform: scale(0.72); }
    to { opacity: 0; transform: scale(1.35); }
}

.host-step-icon {
    font-size: 1.35rem;
    color: var(--host-teal);
    opacity: 0.88;
    margin-bottom: 0.35rem;
    transition: transform 0.25s ease;
}

.host-step-icon i {
    display: inline-block;
    transition: color 0.25s ease, filter 0.25s ease;
    animation: host-step-icon-drift 3.8s ease-in-out infinite;
}

.host-steps-row li:nth-child(2) .host-step-icon i {
    animation-delay: -0.75s;
}

.host-steps-row li:nth-child(3) .host-step-icon i {
    animation-delay: -1.5s;
}

.host-steps-row li:nth-child(4) .host-step-icon i {
    animation-delay: -2.25s;
}

.host-steps-row li:nth-child(5) .host-step-icon i {
    animation-delay: -3s;
}

.host-step-card:hover .host-step-icon i {
    color: var(--host-teal-dark);
    filter: drop-shadow(0 0.35rem 0.4rem rgba(10, 147, 150, 0.2));
}

@keyframes host-step-icon-drift {
    0%,
    100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-3px) rotate(2deg); }
}

.host-cta-band {
    --host-pointer-x: 70%;
    --host-pointer-y: 35%;
    background: linear-gradient(135deg, var(--host-ink) 0%, #1a3d4d 50%, var(--host-slate) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: 0 1.5rem 3.5rem rgba(13, 27, 42, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.host-cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(
        28rem circle at var(--host-pointer-x) var(--host-pointer-y),
        rgba(148, 210, 189, 0.14),
        transparent 64%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.host-cta-band:hover::after {
    opacity: 1;
}

.host-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 25%, rgba(10, 147, 150, 0.32), transparent 45%),
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: auto, 36px 36px, 36px 36px;
    pointer-events: none;
}

.host-cta-band .row {
    position: relative;
    z-index: 1;
}

.host-cta-band__content {
    padding: clamp(2rem, 5vw, 4.25rem);
}

.host-cta-band__content h2 {
    max-width: 39rem;
    text-wrap: balance;
}

.host-cta-band__icon {
    display: inline-grid;
    place-items: center;
    width: 3.2rem;
    height: 3.2rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(148, 210, 189, 0.3);
    border-radius: 1rem;
    color: var(--host-soft-teal);
    background: rgba(148, 210, 189, 0.1);
    font-size: 1.4rem;
    animation: host-icon-breathe 3.5s ease-in-out infinite;
}

.host-cta-band__copy {
    color: rgba(255, 255, 255, 0.7);
    max-width: 41rem;
}

.host-cta-benefits {
    display: grid;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
}

.host-cta-benefits i {
    display: inline-grid;
    place-items: center;
    width: 1.55rem;
    height: 1.55rem;
    margin-right: 0.45rem;
    border-radius: 50%;
    color: var(--host-ink);
    background: var(--host-soft-teal);
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.host-cta-benefits li:hover i {
    transform: scale(1.12) rotate(-8deg);
}

.host-cta-benefits li {
    transition: color 0.25s ease, transform 0.25s ease;
}

.host-cta-benefits li:hover {
    color: #fff;
    transform: translateX(4px);
}

.host-cta-journey {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
}

.host-cta-journey::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    right: 14%;
    left: 14%;
    height: 1px;
    background: linear-gradient(90deg, rgba(148, 210, 189, 0.15), rgba(148, 210, 189, 0.55), rgba(148, 210, 189, 0.15));
}

.host-cta-journey__step {
    position: relative;
    z-index: 1;
    padding: 0.85rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.055);
    text-align: center;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.host-cta-journey__step:hover {
    transform: translateY(-4px);
    border-color: rgba(148, 210, 189, 0.38);
    background: rgba(148, 210, 189, 0.1);
}

.host-cta-journey__step > span {
    display: inline-grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.45rem;
    border-radius: 0.7rem;
    color: var(--host-soft-teal);
    background: #123a46;
    box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, color 0.3s ease;
}

.host-cta-journey__step:hover > span {
    color: #fff;
    transform: scale(1.08) rotate(-5deg);
}

.host-cta-journey__step small,
.host-cta-journey__step strong {
    display: block;
}

.host-cta-journey__step small {
    margin-bottom: 0.12rem;
    color: var(--host-soft-teal);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.host-cta-journey__step strong {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.75rem;
    line-height: 1.35;
}

.host-account-action {
    padding: 1.15rem;
    border: 1px solid rgba(148, 210, 189, 0.18);
    border-radius: 1.1rem;
    background: linear-gradient(135deg, rgba(148, 210, 189, 0.11), rgba(255, 255, 255, 0.045));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.host-account-action:hover {
    border-color: rgba(148, 210, 189, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0.9rem 2rem rgba(0, 0, 0, 0.12);
}

.host-account-action__heading {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.9rem;
}

.host-account-action__heading strong,
.host-account-action__heading small {
    display: block;
}

.host-account-action__heading strong {
    color: #fff;
    font-size: 0.9rem;
}

.host-account-action__heading small {
    margin-top: 0.1rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.7rem;
}

.host-account-action__spark {
    display: inline-grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, var(--host-teal), #0bb8bc);
    box-shadow: 0 0.35rem 1rem rgba(10, 147, 150, 0.35);
    animation: host-spark 3.2s ease-in-out infinite;
}

.host-account-action__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem 1.15rem;
}

.host-account-action .btn {
    min-width: min(100%, 22rem);
}

.host-cta-primary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.host-cta-primary::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -80%;
    bottom: -80%;
    left: -35%;
    width: 20%;
    background: rgba(255, 255, 255, 0.32);
    transform: rotate(18deg);
    transition: left 0.65s ease;
}

.host-cta-primary:hover::before,
.host-cta-primary:focus::before {
    left: 125%;
}

.host-cta-text-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.host-cta-text-link i {
    font-size: 1.15rem;
    transition: transform 0.25s ease;
}

.host-cta-text-link:hover,
.host-cta-text-link:focus {
    color: #fff;
    transform: translateX(2px);
}

.host-cta-text-link:hover i,
.host-cta-text-link:focus i {
    transform: translateY(3px);
}

.host-account-action p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.75rem;
}

.host-account-action .host-cta-login {
    color: rgba(255, 255, 255, 0.72);
}

.host-cta-login a {
    color: var(--host-soft-teal);
    font-weight: 600;
    text-underline-offset: 0.2rem;
    transition: color 0.2s ease;
}

.host-cta-login a:hover,
.host-cta-login a:focus {
    color: #fff;
}

.host-cta-media {
    --host-tilt-x: 0deg;
    --host-tilt-y: 0deg;
    position: relative;
    height: 100%;
    min-height: 31rem;
    overflow: hidden;
    transform: perspective(1100px) rotateX(var(--host-tilt-x)) rotateY(var(--host-tilt-y));
    transform-origin: center;
    transition: transform 0.18s ease-out;
    will-change: transform;
}

.host-cta-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 27, 42, 0.42), transparent 42%);
    pointer-events: none;
}

.host-cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.3, 1);
}

.host-cta-media:hover img {
    transform: scale(1.045);
}

.host-cta-media__label {
    position: absolute;
    z-index: 2;
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 1rem;
    background: rgba(7, 25, 37, 0.78);
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    animation: host-label-float 4.5s ease-in-out infinite;
}

.host-cta-media__status {
    position: absolute;
    z-index: 2;
    top: 1.25rem;
    right: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    max-width: calc(100% - 2.5rem);
    padding: 0.65rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0.75rem 1.8rem rgba(13, 27, 42, 0.18);
    color: var(--host-ink);
    animation: host-label-float 4.5s -2.2s ease-in-out infinite;
}

.host-cta-media__status > i {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
    border-radius: 0.6rem;
    color: #fff;
    background: var(--host-teal);
}

.host-cta-media__status strong,
.host-cta-media__status small {
    display: block;
}

.host-cta-media__status strong {
    font-size: 0.76rem;
}

.host-cta-media__status small {
    color: #64748b;
    font-size: 0.65rem;
}

.host-cta-media__label > span {
    display: inline-grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    flex: 0 0 auto;
    border-radius: 0.75rem;
    color: #fff;
    background: var(--host-teal);
    animation: host-support-pulse 3s ease-in-out infinite;
}

.host-cta-media__label strong,
.host-cta-media__label small {
    display: block;
}

.host-cta-media__label small {
    color: rgba(255, 255, 255, 0.68);
}

@keyframes host-icon-breathe {
    0%,
    100% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(148, 210, 189, 0); }
    50% { transform: translateY(-3px); box-shadow: 0 0 0 0.5rem rgba(148, 210, 189, 0.06); }
}

@keyframes host-label-float {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes host-support-pulse {
    0%,
    100% { box-shadow: 0 0 0 0 rgba(148, 210, 189, 0); }
    50% { box-shadow: 0 0 0 0.45rem rgba(148, 210, 189, 0.12); }
}

@keyframes host-spark {
    0%,
    100% { transform: rotate(0) scale(1); }
    50% { transform: rotate(8deg) scale(1.06); }
}

.host-signup-section {
    --host-pointer-x: 65%;
    --host-pointer-y: 35%;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    color: #fff;
    background:
        radial-gradient(28rem circle at var(--host-pointer-x) var(--host-pointer-y), rgba(148, 210, 189, 0.16), transparent 65%),
        linear-gradient(135deg, #0b2030 0%, #103b48 58%, #0b2535 100%);
    box-shadow: 0 1.5rem 3.5rem rgba(13, 27, 42, 0.16);
}

.host-signup-section .row {
    position: relative;
    z-index: 1;
}

.host-signup-content {
    padding: clamp(2.25rem, 5vw, 4.5rem);
}

.host-signup-content h2 {
    max-width: 35rem;
    text-wrap: balance;
}

.host-signup-copy {
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.host-signup-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
}

.host-signup-points i {
    display: inline-block;
    margin-right: 0.3rem;
    color: var(--host-soft-teal);
    transition: transform 0.25s ease;
}

.host-signup-points li:hover i {
    color: #fff;
}

.host-signup-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem 1.25rem;
}

.host-signup-login {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    font-weight: 600;
    text-underline-offset: 0.25rem;
    transition: color 0.2s ease;
}

.host-signup-login:hover,
.host-signup-login:focus {
    color: #fff;
}

.host-signup-note {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.74rem;
}

.host-signup-media {
    --host-tilt-x: 0deg;
    --host-tilt-y: 0deg;
    position: relative;
    height: 100%;
    min-height: 29rem;
    overflow: hidden;
    transform: perspective(1100px) rotateX(var(--host-tilt-x)) rotateY(var(--host-tilt-y));
    transition: transform 0.18s ease-out;
    will-change: transform;
}

.host-signup-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 32, 48, 0.32), transparent 40%);
    pointer-events: none;
}

.host-signup-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.3, 1);
}

.host-signup-media:hover img {
    transform: none;
}

.host-signup-section .host-cta-primary::before {
    display: none;
}

.host-signup-section .btn-host-primary:hover,
.host-signup-section .btn-host-primary:focus {
    transform: none;
    box-shadow: 0 0.35rem 0.9rem rgba(10, 147, 150, 0.3);
}

.host-signup-media__caption {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 2;
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    color: #fff;
    background: rgba(8, 28, 39, 0.8);
    box-shadow: 0 0.7rem 1.8rem rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    font-size: 0.75rem;
    font-weight: 600;
}

.host-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.host-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.host-reveal-delay-1 { transition-delay: 0.08s; }
.host-reveal-delay-2 { transition-delay: 0.16s; }
.host-reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    .host-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .host-value-card:hover,
    .host-step-card:hover,
    .btn-host-primary:hover,
    .host-hero .btn-outline-light:hover {
        transform: none;
    }
    .host-hero__background,
    .host-hero__trust i,
    .host-value-icon,
    .host-step-icon,
    .host-step-icon i,
    .host-step-num::after,
    .host-cta-band__icon,
    .host-account-action__spark,
    .host-cta-media,
    .host-cta-media img,
    .host-cta-media__label,
    .host-cta-media__status,
    .host-cta-media__label > span,
    .host-signup-media,
    .host-signup-media img {
        transform: none !important;
        animation: none;
        transition: none;
    }
    body.host-landing {
        scroll-behavior: auto;
    }
}

@media (max-width: 991.98px) {
    .host-hero {
        min-height: auto;
    }

    .host-hero__background {
        object-position: 62% center;
    }

    .host-hero__overlay {
        background: linear-gradient(90deg, rgba(5, 16, 29, 0.95), rgba(5, 16, 29, 0.64));
    }

    .host-cta-media {
        min-height: 24rem;
    }

    .host-signup-media {
        min-height: 23rem;
    }
}

@media (max-width: 575.98px) {
    .host-hero__actions .btn {
        width: 100%;
    }

    .host-hero__overlay {
        background: rgba(5, 16, 29, 0.78);
    }

    .host-hero__background {
        object-position: 68% center;
    }

    .host-account-action .btn {
        width: 100%;
        padding-inline: 1rem !important;
        font-size: 1rem;
    }

    .host-cta-journey {
        grid-template-columns: 1fr;
    }

    .host-cta-journey::before {
        display: none;
    }

    .host-cta-journey__step {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        text-align: left;
    }

    .host-cta-journey__step > span {
        margin-bottom: 0;
    }

    .host-account-action__buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .host-cta-text-link {
        align-self: center;
    }

    .host-cta-media {
        min-height: 19rem;
    }

    .host-signup-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .host-signup-actions .btn {
        width: 100%;
        padding-inline: 1rem !important;
    }

    .host-signup-login {
        align-self: center;
    }

    .host-signup-media {
        min-height: 18rem;
    }
}
/* StayEasy — supplier public landing (host.php) */
:root {
    --host-ink: #0d1b2a;
    --host-slate: #1e3248;
    --host-teal: #0a9396;
    --host-teal-dark: #087a7d;
    --host-teal-glow: rgba(10, 147, 150, 0.45);
    --host-soft-teal: #94d2bd;
    --host-paper: #f4f7f6;
    --host-border: rgba(13, 27, 42, 0.08);
    --host-card-shadow: 0 0.35rem 1.25rem rgba(13, 27, 42, 0.07);
    --host-card-shadow-hover: 0 1rem 2.5rem rgba(13, 27, 42, 0.12);
}

body.host-landing {
    background: var(--host-paper);
    scroll-behavior: smooth;
}

body.host-landing main {
    color: var(--host-ink);
}

.host-hero {
    position: relative;
    background: var(--host-ink);
    color: #fff;
    overflow: hidden;
    min-height: 39rem;
    isolation: isolate;
}

.host-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 18% 28%, rgba(10, 147, 150, 0.22) 0%, transparent 48%);
    pointer-events: none;
    z-index: 2;
}

.host-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.82;
    transform: scale(1.025);
    animation: host-hero-settle 1.4s ease-out both;
}

.host-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5, 16, 29, 0.96) 0%, rgba(5, 16, 29, 0.8) 42%, rgba(5, 16, 29, 0.2) 72%, rgba(5, 16, 29, 0.32) 100%),
        linear-gradient(0deg, rgba(5, 16, 29, 0.5), transparent 42%);
}

@keyframes host-hero-settle {
    from { transform: scale(1.08); }
    to { transform: scale(1.025); }
}

.host-hero .container {
    position: relative;
    z-index: 3;
}

.host-hero__eyebrow {
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--host-soft-teal);
    font-weight: 600;
}

.host-hero__accent {
    color: var(--host-soft-teal);
    text-shadow: 0 0 40px rgba(148, 210, 189, 0.35);
}

.host-hero .lead {
    max-width: 40rem;
    line-height: 1.6;
}

.host-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.host-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
}

.host-hero__trust i {
    color: var(--host-soft-teal);
    margin-right: 0.25rem;
    display: inline-block;
    animation: host-check-pop 3.8s ease-in-out infinite;
}

.host-hero__trust span:nth-child(2) i {
    animation-delay: 0.35s;
}

.host-hero__trust span:nth-child(3) i {
    animation-delay: 0.7s;
}

@keyframes host-check-pop {
    0%,
    82%,
    100% { transform: scale(1); }
    88% { transform: scale(1.22); }
    94% { transform: scale(0.96); }
}

.btn-host-primary {
    background: linear-gradient(135deg, var(--host-teal), #0bb8bc);
    border: none;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 0.35rem 1rem var(--host-teal-glow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-host-primary i {
    display: inline-block;
    transition: transform 0.25s ease;
}

.btn-host-primary:hover,
.btn-host-primary:focus {
    background: linear-gradient(135deg, var(--host-teal-dark), var(--host-teal));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.25rem var(--host-teal-glow);
}

.btn-host-primary:hover i,
.btn-host-primary:focus i {
    transform: translate(3px, -2px);
}

.host-hero .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.45);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.host-hero .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.host-value-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--host-border);
    border-radius: 1rem;
    background: #fff;
    box-shadow: var(--host-card-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.host-value-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -75%;
    width: 45%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
    transform: rotate(18deg);
    transition: left 0.65s ease;
    pointer-events: none;
}

.host-value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--host-teal), var(--host-soft-teal));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.host-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--host-card-shadow-hover);
    border-color: rgba(10, 147, 150, 0.22);
}

.host-value-card:hover::before {
    opacity: 1;
}

.host-value-card:hover::after {
    left: 135%;
}

.host-value-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(145deg, rgba(10, 147, 150, 0.15), rgba(10, 147, 150, 0.05));
    color: var(--host-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 0 0 0 rgba(10, 147, 150, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    animation: host-value-float 4.2s ease-in-out infinite;
}

.host-reveal-delay-1 .host-value-icon {
    animation-delay: -1.4s;
}

.host-reveal-delay-2 .host-value-icon {
    animation-delay: -2.8s;
}

.host-value-card:hover .host-value-icon {
    color: var(--host-teal-dark);
    transform: translateY(-3px) rotate(-5deg);
    box-shadow: 0 0.55rem 1.25rem rgba(10, 147, 150, 0.18);
    animation-play-state: paused;
}

@keyframes host-value-float {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.host-section-heading {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.host-section-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.5rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--host-teal), var(--host-soft-teal));
}

.host-section-heading--center::after {
    left: 50%;
    transform: translateX(-50%);
}

.host-section-kicker {
    color: var(--host-teal-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.host-section-kicker--light {
    color: var(--host-soft-teal);
}

.host-steps-row {
    position: relative;
}

@media (min-width: 992px) {
    .host-steps-row::before {
        content: "";
        position: absolute;
        top: 2.35rem;
        left: 8%;
        right: 8%;
        height: 2px;
        background: linear-gradient(90deg, var(--host-teal), rgba(10, 147, 150, 0.15));
        z-index: 0;
    }
}

.host-step-card {
    position: relative;
    z-index: 1;
    border: 1px solid var(--host-border);
    border-radius: 1rem;
    background: #fff;
    box-shadow: var(--host-card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.host-step-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(10, 147, 150, 0);
    transition: box-shadow 0.3s ease;
    pointer-events: none;
}

.host-step-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--host-card-shadow-hover);
    border-color: rgba(10, 147, 150, 0.2);
}

.host-step-card:hover::after {
    box-shadow: inset 0 0 0 1px rgba(10, 147, 150, 0.16);
}

.host-step-card:hover .host-step-icon {
    transform: scale(1.12) rotate(-4deg);
}

.host-step-num {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--host-teal), var(--host-teal-dark));
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.25rem 0.75rem var(--host-teal-glow);
    margin-bottom: 0.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.host-step-card:hover .host-step-num {
    transform: scale(1.08);
    box-shadow: 0 0.5rem 1.15rem var(--host-teal-glow);
}

.host-step-card:hover .host-step-num::after {
    animation: host-step-ring 0.65s ease-out;
}

.host-step-num {
    position: relative;
}

.host-step-num::after {
    content: "";
    position: absolute;
    inset: -0.3rem;
    border: 1px solid rgba(10, 147, 150, 0.38);
    border-radius: 50%;
    opacity: 0;
}

@keyframes host-step-ring {
    from { opacity: 0.8; transform: scale(0.72); }
    to { opacity: 0; transform: scale(1.35); }
}

.host-step-icon {
    font-size: 1.35rem;
    color: var(--host-teal);
    opacity: 0.88;
    margin-bottom: 0.35rem;
    transition: transform 0.25s ease;
}

.host-step-icon i {
    display: inline-block;
    transition: color 0.25s ease, filter 0.25s ease;
    animation: host-step-icon-drift 3.8s ease-in-out infinite;
}

.host-steps-row li:nth-child(2) .host-step-icon i {
    animation-delay: -0.75s;
}

.host-steps-row li:nth-child(3) .host-step-icon i {
    animation-delay: -1.5s;
}

.host-steps-row li:nth-child(4) .host-step-icon i {
    animation-delay: -2.25s;
}

.host-steps-row li:nth-child(5) .host-step-icon i {
    animation-delay: -3s;
}

.host-step-card:hover .host-step-icon i {
    color: var(--host-teal-dark);
    filter: drop-shadow(0 0.35rem 0.4rem rgba(10, 147, 150, 0.2));
}

@keyframes host-step-icon-drift {
    0%,
    100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-3px) rotate(2deg); }
}

.host-cta-band {
    --host-pointer-x: 70%;
    --host-pointer-y: 35%;
    background: linear-gradient(135deg, var(--host-ink) 0%, #1a3d4d 50%, var(--host-slate) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: 0 1.5rem 3.5rem rgba(13, 27, 42, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.host-cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(
        28rem circle at var(--host-pointer-x) var(--host-pointer-y),
        rgba(148, 210, 189, 0.14),
        transparent 64%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.host-cta-band:hover::after {
    opacity: 1;
}

.host-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 25%, rgba(10, 147, 150, 0.32), transparent 45%),
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: auto, 36px 36px, 36px 36px;
    pointer-events: none;
}

.host-cta-band .row {
    position: relative;
    z-index: 1;
}

.host-cta-band__content {
    padding: clamp(2rem, 5vw, 4.25rem);
}

.host-cta-band__content h2 {
    max-width: 39rem;
    text-wrap: balance;
}

.host-cta-band__icon {
    display: inline-grid;
    place-items: center;
    width: 3.2rem;
    height: 3.2rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(148, 210, 189, 0.3);
    border-radius: 1rem;
    color: var(--host-soft-teal);
    background: rgba(148, 210, 189, 0.1);
    font-size: 1.4rem;
    animation: host-icon-breathe 3.5s ease-in-out infinite;
}

.host-cta-band__copy {
    color: rgba(255, 255, 255, 0.7);
    max-width: 41rem;
}

.host-cta-benefits {
    display: grid;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
}

.host-cta-benefits i {
    display: inline-grid;
    place-items: center;
    width: 1.55rem;
    height: 1.55rem;
    margin-right: 0.45rem;
    border-radius: 50%;
    color: var(--host-ink);
    background: var(--host-soft-teal);
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.host-cta-benefits li:hover i {
    transform: scale(1.12) rotate(-8deg);
}

.host-cta-benefits li {
    transition: color 0.25s ease, transform 0.25s ease;
}

.host-cta-benefits li:hover {
    color: #fff;
    transform: translateX(4px);
}

.host-cta-journey {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
}

.host-cta-journey::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    right: 14%;
    left: 14%;
    height: 1px;
    background: linear-gradient(90deg, rgba(148, 210, 189, 0.15), rgba(148, 210, 189, 0.55), rgba(148, 210, 189, 0.15));
}

.host-cta-journey__step {
    position: relative;
    z-index: 1;
    padding: 0.85rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.055);
    text-align: center;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.host-cta-journey__step:hover {
    transform: translateY(-4px);
    border-color: rgba(148, 210, 189, 0.38);
    background: rgba(148, 210, 189, 0.1);
}

.host-cta-journey__step > span {
    display: inline-grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.45rem;
    border-radius: 0.7rem;
    color: var(--host-soft-teal);
    background: #123a46;
    box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, color 0.3s ease;
}

.host-cta-journey__step:hover > span {
    color: #fff;
    transform: scale(1.08) rotate(-5deg);
}

.host-cta-journey__step small,
.host-cta-journey__step strong {
    display: block;
}

.host-cta-journey__step small {
    margin-bottom: 0.12rem;
    color: var(--host-soft-teal);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.host-cta-journey__step strong {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.75rem;
    line-height: 1.35;
}

.host-account-action {
    padding: 1.15rem;
    border: 1px solid rgba(148, 210, 189, 0.18);
    border-radius: 1.1rem;
    background: linear-gradient(135deg, rgba(148, 210, 189, 0.11), rgba(255, 255, 255, 0.045));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.host-account-action:hover {
    border-color: rgba(148, 210, 189, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0.9rem 2rem rgba(0, 0, 0, 0.12);
}

.host-account-action__heading {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.9rem;
}

.host-account-action__heading strong,
.host-account-action__heading small {
    display: block;
}

.host-account-action__heading strong {
    color: #fff;
    font-size: 0.9rem;
}

.host-account-action__heading small {
    margin-top: 0.1rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.7rem;
}

.host-account-action__spark {
    display: inline-grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, var(--host-teal), #0bb8bc);
    box-shadow: 0 0.35rem 1rem rgba(10, 147, 150, 0.35);
    animation: host-spark 3.2s ease-in-out infinite;
}

.host-account-action__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem 1.15rem;
}

.host-account-action .btn {
    min-width: min(100%, 22rem);
}

.host-cta-primary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.host-cta-primary::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -80%;
    bottom: -80%;
    left: -35%;
    width: 20%;
    background: rgba(255, 255, 255, 0.32);
    transform: rotate(18deg);
    transition: left 0.65s ease;
}

.host-cta-primary:hover::before,
.host-cta-primary:focus::before {
    left: 125%;
}

.host-cta-text-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.host-cta-text-link i {
    font-size: 1.15rem;
    transition: transform 0.25s ease;
}

.host-cta-text-link:hover,
.host-cta-text-link:focus {
    color: #fff;
    transform: translateX(2px);
}

.host-cta-text-link:hover i,
.host-cta-text-link:focus i {
    transform: translateY(3px);
}

.host-account-action p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.75rem;
}

.host-account-action .host-cta-login {
    color: rgba(255, 255, 255, 0.72);
}

.host-cta-login a {
    color: var(--host-soft-teal);
    font-weight: 600;
    text-underline-offset: 0.2rem;
    transition: color 0.2s ease;
}

.host-cta-login a:hover,
.host-cta-login a:focus {
    color: #fff;
}

.host-cta-media {
    --host-tilt-x: 0deg;
    --host-tilt-y: 0deg;
    position: relative;
    height: 100%;
    min-height: 31rem;
    overflow: hidden;
    transform: perspective(1100px) rotateX(var(--host-tilt-x)) rotateY(var(--host-tilt-y));
    transform-origin: center;
    transition: transform 0.18s ease-out;
    will-change: transform;
}

.host-cta-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 27, 42, 0.42), transparent 42%);
    pointer-events: none;
}

.host-cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.3, 1);
}

.host-cta-media:hover img {
    transform: scale(1.045);
}

.host-cta-media__label {
    position: absolute;
    z-index: 2;
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 1rem;
    background: rgba(7, 25, 37, 0.78);
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    animation: host-label-float 4.5s ease-in-out infinite;
}

.host-cta-media__status {
    position: absolute;
    z-index: 2;
    top: 1.25rem;
    right: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    max-width: calc(100% - 2.5rem);
    padding: 0.65rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0.75rem 1.8rem rgba(13, 27, 42, 0.18);
    color: var(--host-ink);
    animation: host-label-float 4.5s -2.2s ease-in-out infinite;
}

.host-cta-media__status > i {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
    border-radius: 0.6rem;
    color: #fff;
    background: var(--host-teal);
}

.host-cta-media__status strong,
.host-cta-media__status small {
    display: block;
}

.host-cta-media__status strong {
    font-size: 0.76rem;
}

.host-cta-media__status small {
    color: #64748b;
    font-size: 0.65rem;
}

.host-cta-media__label > span {
    display: inline-grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    flex: 0 0 auto;
    border-radius: 0.75rem;
    color: #fff;
    background: var(--host-teal);
    animation: host-support-pulse 3s ease-in-out infinite;
}

.host-cta-media__label strong,
.host-cta-media__label small {
    display: block;
}

.host-cta-media__label small {
    color: rgba(255, 255, 255, 0.68);
}

@keyframes host-icon-breathe {
    0%,
    100% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(148, 210, 189, 0); }
    50% { transform: translateY(-3px); box-shadow: 0 0 0 0.5rem rgba(148, 210, 189, 0.06); }
}

@keyframes host-label-float {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes host-support-pulse {
    0%,
    100% { box-shadow: 0 0 0 0 rgba(148, 210, 189, 0); }
    50% { box-shadow: 0 0 0 0.45rem rgba(148, 210, 189, 0.12); }
}

@keyframes host-spark {
    0%,
    100% { transform: rotate(0) scale(1); }
    50% { transform: rotate(8deg) scale(1.06); }
}

.host-signup-section {
    --host-pointer-x: 65%;
    --host-pointer-y: 35%;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    color: #fff;
    background:
        radial-gradient(28rem circle at var(--host-pointer-x) var(--host-pointer-y), rgba(148, 210, 189, 0.16), transparent 65%),
        linear-gradient(135deg, #0b2030 0%, #103b48 58%, #0b2535 100%);
    box-shadow: 0 1.5rem 3.5rem rgba(13, 27, 42, 0.16);
}

.host-signup-section .row {
    position: relative;
    z-index: 1;
}

.host-signup-content {
    padding: clamp(2.25rem, 5vw, 4.5rem);
}

.host-signup-content h2 {
    max-width: 35rem;
    text-wrap: balance;
}

.host-signup-copy {
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.host-signup-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
}

.host-signup-points i {
    display: inline-block;
    margin-right: 0.3rem;
    color: var(--host-soft-teal);
    transition: transform 0.25s ease;
}

.host-signup-points li:hover i {
    color: #fff;
}

.host-signup-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem 1.25rem;
}

.host-signup-login {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    font-weight: 600;
    text-underline-offset: 0.25rem;
    transition: color 0.2s ease;
}

.host-signup-login:hover,
.host-signup-login:focus {
    color: #fff;
}

.host-signup-note {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.74rem;
}

.host-signup-media {
    --host-tilt-x: 0deg;
    --host-tilt-y: 0deg;
    position: relative;
    height: 100%;
    min-height: 29rem;
    overflow: hidden;
    transform: perspective(1100px) rotateX(var(--host-tilt-x)) rotateY(var(--host-tilt-y));
    transition: transform 0.18s ease-out;
    will-change: transform;
}

.host-signup-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 32, 48, 0.32), transparent 40%);
    pointer-events: none;
}

.host-signup-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.3, 1);
}

.host-signup-media:hover img {
    transform: none;
}

.host-signup-section .host-cta-primary::before {
    display: none;
}

.host-signup-section .btn-host-primary:hover,
.host-signup-section .btn-host-primary:focus {
    transform: none;
    box-shadow: 0 0.35rem 0.9rem rgba(10, 147, 150, 0.3);
}

.host-signup-media__caption {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 2;
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    color: #fff;
    background: rgba(8, 28, 39, 0.8);
    box-shadow: 0 0.7rem 1.8rem rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    font-size: 0.75rem;
    font-weight: 600;
}

.host-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.host-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.host-reveal-delay-1 { transition-delay: 0.08s; }
.host-reveal-delay-2 { transition-delay: 0.16s; }
.host-reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    .host-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .host-value-card:hover,
    .host-step-card:hover,
    .btn-host-primary:hover,
    .host-hero .btn-outline-light:hover {
        transform: none;
    }
    .host-hero__background,
    .host-hero__trust i,
    .host-value-icon,
    .host-step-icon,
    .host-step-icon i,
    .host-step-num::after,
    .host-cta-band__icon,
    .host-account-action__spark,
    .host-cta-media,
    .host-cta-media img,
    .host-cta-media__label,
    .host-cta-media__status,
    .host-cta-media__label > span,
    .host-signup-media,
    .host-signup-media img {
        transform: none !important;
        animation: none;
        transition: none;
    }
    body.host-landing {
        scroll-behavior: auto;
    }
}

@media (max-width: 991.98px) {
    .host-hero {
        min-height: auto;
    }

    .host-hero__background {
        object-position: 62% center;
    }

    .host-hero__overlay {
        background: linear-gradient(90deg, rgba(5, 16, 29, 0.95), rgba(5, 16, 29, 0.64));
    }

    .host-cta-media {
        min-height: 24rem;
    }

    .host-signup-media {
        min-height: 23rem;
    }
}

@media (max-width: 575.98px) {
    .host-hero__actions .btn {
        width: 100%;
    }

    .host-hero__overlay {
        background: rgba(5, 16, 29, 0.78);
    }

    .host-hero__background {
        object-position: 68% center;
    }

    .host-account-action .btn {
        width: 100%;
        padding-inline: 1rem !important;
        font-size: 1rem;
    }

    .host-cta-journey {
        grid-template-columns: 1fr;
    }

    .host-cta-journey::before {
        display: none;
    }

    .host-cta-journey__step {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        text-align: left;
    }

    .host-cta-journey__step > span {
        margin-bottom: 0;
    }

    .host-account-action__buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .host-cta-text-link {
        align-self: center;
    }

    .host-cta-media {
        min-height: 19rem;
    }

    .host-signup-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .host-signup-actions .btn {
        width: 100%;
        padding-inline: 1rem !important;
    }

    .host-signup-login {
        align-self: center;
    }

    .host-signup-media {
        min-height: 18rem;
    }
}
