:root {
    --home-ink: #092f49;
    --home-ink-deep: #06243a;
    --home-sea: #167f9f;
    --home-sea-light: #69c7d5;
    --home-green: #4f8e55;
    --home-sand: #e8b979;
    --home-orange: #df8542;
    --home-mist: #edf7f8;
    --home-line: rgba(9, 47, 73, 0.11);
    --home-shadow: 0 24px 70px rgba(6, 36, 58, 0.13);
}

.home-v2-hero {
    position: relative;
    min-height: min(930px, 92vh);
    overflow: hidden;
    background: var(--home-ink-deep);
    color: #ffffff;
}

.home-v2-hero-media,
.home-v2-hero-overlay,
.home-v2-hero-grain {
    position: absolute;
    inset: 0;
}

.home-v2-hero-image {
    width: 100%;
    height: 108%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.88) contrast(1.03);
    transform: scale(1.04);
    will-change: transform;
}

.home-v2-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(4, 27, 44, 0.94) 0%,
            rgba(4, 27, 44, 0.75) 43%,
            rgba(4, 27, 44, 0.26) 76%,
            rgba(4, 27, 44, 0.45) 100%
        ),
        linear-gradient(
            0deg,
            rgba(4, 27, 44, 0.76) 0%,
            transparent 45%
        );
}

.home-v2-hero-grain {
    opacity: 0.13;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
    pointer-events: none;
}

.home-v2-wave {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.home-v2-wave-one {
    top: -24%;
    right: -7%;
    width: 760px;
    height: 760px;
    animation: homeWaveFloat 12s ease-in-out infinite alternate;
}

.home-v2-wave-two {
    right: 14%;
    bottom: -42%;
    width: 600px;
    height: 600px;
    animation: homeWaveFloat 15s ease-in-out infinite alternate-reverse;
}

@keyframes homeWaveFloat {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(-24px, 18px, 0) scale(1.05);
    }
}

.home-v2-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: min(930px, 92vh);
    flex-direction: column;
    justify-content: center;
    padding-top: 110px;
    padding-bottom: 145px;
}

.home-v2-hero-copy {
    max-width: 880px;
}

.home-v2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-v2-eyebrow i {
    width: 38px;
    height: 1px;
    background: var(--home-sand);
}

.home-v2-hero h1 {
    max-width: 960px;
    margin: 0;
    font-size: clamp(4rem, 8vw, 8.6rem);
    line-height: 0.88;
    letter-spacing: -0.072em;
}

.home-v2-hero h1 span,
.home-v2-hero h1 strong {
    display: block;
}

.home-v2-hero h1 span {
    color: #ffffff;
    font-weight: 700;
}

.home-v2-hero h1 strong {
    color: #bce7e4;
    font-weight: 700;
}

.home-v2-hero-copy > p {
    max-width: 650px;
    margin: 31px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.04rem;
    line-height: 1.75;
}

.home-v2-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 34px;
}

.home-v2-proof > div {
    display: flex;
    min-width: 110px;
    flex-direction: column;
}

.home-v2-proof strong {
    color: #ffffff;
    font-size: 1.5rem;
}

.home-v2-proof span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.69rem;
}

.home-v2-floating-stay {
    position: absolute;
    right: 0;
    bottom: 210px;
    display: flex;
    width: 285px;
    flex-direction: column;
    padding: 20px 54px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 20px;
    background: rgba(5, 34, 54, 0.54);
    color: #ffffff;
    text-decoration: none;
    backdrop-filter: blur(18px);
    transition:
        transform 220ms ease,
        background 220ms ease;
}

.home-v2-floating-stay:hover {
    background: rgba(5, 34, 54, 0.72);
    transform: translateY(-5px);
}

.home-v2-floating-label {
    color: var(--home-sand);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-v2-floating-stay strong {
    margin-top: 8px;
    font-size: 1rem;
}

.home-v2-floating-stay small {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.4;
}

.home-v2-floating-stay > i {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.11);
    font-style: normal;
}

.home-v2-search {
    position: absolute;
    right: 20px;
    bottom: 42px;
    left: 20px;
    display: grid;
    grid-template-columns:
        minmax(220px, 1.4fr)
        minmax(145px, 0.8fr)
        minmax(145px, 0.8fr)
        minmax(115px, 0.55fr)
        auto;
    gap: 7px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 28px 72px rgba(1, 16, 27, 0.33);
    backdrop-filter: blur(18px);
}

.home-v2-search label {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
    padding: 9px 14px;
    border-radius: 15px;
    transition: background 180ms ease;
}

.home-v2-search label:hover,
.home-v2-search label:focus-within {
    background: #f1f8f9;
}

.home-v2-search label > span {
    color: var(--home-ink);
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.home-v2-search input,
.home-v2-search select {
    width: 100%;
    min-width: 0;
    height: 29px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #506b7b;
    font: inherit;
    font-size: 0.78rem;
    outline: none;
}

.home-v2-search button {
    display: inline-flex;
    min-width: 190px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 13px 10px 20px;
    border: 0;
    border-radius: 17px;
    background:
        linear-gradient(
            135deg,
            var(--home-green),
            #356e43
        );
    box-shadow: 0 12px 28px rgba(53, 110, 67, 0.25);
    color: #ffffff;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 850;
    cursor: pointer;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.home-v2-search button:hover {
    box-shadow: 0 16px 34px rgba(53, 110, 67, 0.32);
    transform: translateY(-2px);
}

.home-v2-search button i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.14);
    font-style: normal;
}

.home-v2-scroll {
    position: absolute;
    bottom: 25px;
    left: -7px;
    display: none;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    font-weight: 700;
    text-decoration: none;
    transform: rotate(-90deg);
    transform-origin: left center;
}

.home-v2-scroll i {
    position: relative;
    width: 48px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.25);
}

.home-v2-scroll i::after {
    position: absolute;
    inset: 0;
    background: #ffffff;
    content: "";
    animation: homeScrollLine 2s ease infinite;
    transform: translateX(-100%);
}

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

    50%,
    100% {
        transform: translateX(100%);
    }
}

.home-v2-section-header {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 52px;
}

.home-v2-section-kicker {
    color: #15918c;
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.home-v2-section-header h2 {
    max-width: 800px;
    margin: 9px 0 0;
    color: var(--home-ink);
    font-size: clamp(2.5rem, 5vw, 5.2rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.home-v2-section-header p {
    margin: 0;
    color: #71838e;
    font-size: 0.9rem;
    line-height: 1.7;
}

.home-v2-section-header a {
    display: inline-flex;
    margin-top: 15px;
    color: var(--home-sea);
    font-size: 0.76rem;
    font-weight: 850;
    text-decoration: none;
}

.home-v2-coast {
    padding: 115px 0 100px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(105, 199, 213, 0.13),
            transparent 27%
        ),
        #ffffff;
}

.home-v2-coast-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, minmax(105px, 1fr));
    overflow-x: auto;
    padding: 28px 4px 20px;
    scrollbar-width: thin;
}

.home-v2-coast-line {
    position: absolute;
    z-index: 0;
    top: 67px;
    right: 54px;
    left: 54px;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            rgba(22, 127, 159, 0.1),
            rgba(22, 127, 159, 0.55),
            rgba(22, 127, 159, 0.1)
        );
}

.home-v2-coast-stop {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 105px;
    flex-direction: column;
    align-items: center;
    padding: 0 9px;
    color: var(--home-ink);
    text-align: center;
    text-decoration: none;
}

.home-v2-coast-index {
    color: #a0afb8;
    font-size: 0.62rem;
    font-weight: 800;
}

.home-v2-coast-stop > i {
    width: 22px;
    height: 22px;
    margin: 18px 0;
    border: 6px solid #ffffff;
    border-radius: 50%;
    background: #6abcc9;
    box-shadow:
        0 0 0 1px rgba(9, 47, 73, 0.11),
        0 7px 18px rgba(9, 47, 73, 0.13);
    transition:
        background 180ms ease,
        transform 180ms ease;
}

.home-v2-coast-stop:hover > i {
    background: var(--home-orange);
    transform: scale(1.35);
}

.home-v2-coast-stop strong {
    font-size: 0.74rem;
}

.home-v2-coast-stop small {
    margin-top: 5px;
    color: #8797a0;
    font-size: 0.61rem;
}

.home-v2-featured {
    padding: 105px 0 125px;
    background: #f4f8f9;
}

.home-v2-stay-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.home-v2-stay-card {
    overflow: hidden;
    border: 1px solid var(--home-line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(9, 47, 73, 0.07);
    transition:
        transform 240ms ease,
        box-shadow 240ms ease;
}

.home-v2-stay-card:hover {
    box-shadow: var(--home-shadow);
    transform: translateY(-7px);
}

.home-v2-stay-card.is-featured {
    grid-column: span 2;
}

.home-v2-stay-media {
    position: relative;
    display: block;
    height: 270px;
    overflow: hidden;
}

.home-v2-stay-card.is-featured .home-v2-stay-media {
    height: 370px;
}

.home-v2-stay-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 480ms ease;
}

.home-v2-stay-card:hover .home-v2-stay-media img {
    transform: scale(1.045);
}

.home-v2-stay-type,
.home-v2-stay-highlight {
    position: absolute;
    top: 15px;
    display: inline-flex;
    min-height: 31px;
    align-items: center;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 0.67rem;
    font-weight: 850;
}

.home-v2-stay-type {
    left: 15px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--home-ink);
    backdrop-filter: blur(10px);
}

.home-v2-stay-highlight {
    right: 15px;
    background: rgba(223, 133, 66, 0.94);
    color: #ffffff;
}

.home-v2-stay-body {
    padding: 20px;
}

.home-v2-stay-place {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: var(--home-sea);
    font-size: 0.73rem;
    font-weight: 850;
}

.home-v2-stay-place small {
    color: #82939d;
    font-weight: 700;
}

.home-v2-stay-body h3 {
    margin: 8px 0 10px;
    font-size: 1.18rem;
    line-height: 1.3;
}

.home-v2-stay-body h3 a {
    color: var(--home-ink);
    text-decoration: none;
}

.home-v2-stay-card.is-featured h3 {
    font-size: 1.45rem;
}

.home-v2-stay-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 17px;
    color: #748690;
    font-size: 0.75rem;
}

.home-v2-stay-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 19px;
    padding-top: 17px;
    border-top: 1px solid var(--home-line);
}

.home-v2-stay-footer > div {
    display: flex;
    flex-direction: column;
}

.home-v2-stay-footer small,
.home-v2-stay-footer span {
    color: #82939d;
    font-size: 0.66rem;
}

.home-v2-stay-footer strong {
    margin: 2px 0;
    color: var(--home-ink);
    font-size: 1.15rem;
}

.home-v2-stay-footer > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-sea);
    font-size: 0.71rem;
    font-weight: 850;
    text-decoration: none;
}

.home-v2-stay-footer > a i {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 10px;
    background: #edf7f8;
    font-style: normal;
}

.home-v2-empty {
    display: grid;
    min-height: 250px;
    place-content: center;
    border: 1px dashed rgba(9, 47, 73, 0.2);
    border-radius: 24px;
    color: #748690;
    text-align: center;
}

.home-v2-empty span {
    font-size: 2.5rem;
}

.home-v2-moods {
    position: relative;
    overflow: hidden;
    padding: 115px 0 125px;
    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(105, 199, 213, 0.15),
            transparent 23%
        ),
        linear-gradient(
            145deg,
            #062c44,
            #0b3c56 65%,
            #11566d
        );
}

.home-v2-moods::after {
    position: absolute;
    right: -170px;
    bottom: -280px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: "";
}

.home-v2-section-header-light h2 {
    color: #ffffff;
}

.home-v2-section-header-light p {
    color: rgba(255, 255, 255, 0.62);
}

.home-v2-mood-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-v2-mood-card {
    position: relative;
    display: flex;
    min-height: 370px;
    flex-direction: column;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    color: #ffffff;
    text-decoration: none;
    transition:
        transform 240ms ease,
        border-color 240ms ease;
}

.home-v2-mood-card::before {
    position: absolute;
    inset: 0;
    opacity: 0.77;
    content: "";
    transition: opacity 240ms ease;
}

.home-v2-mood-card:hover {
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-7px);
}

.home-v2-mood-card:hover::before {
    opacity: 0.9;
}

.home-v2-mood-beach::before {
    background:
        radial-gradient(circle at 80% 15%, #6ec5d2, transparent 35%),
        linear-gradient(145deg, #187a9b, #0c536f);
}

.home-v2-mood-pet::before {
    background:
        radial-gradient(circle at 78% 17%, #80a36c, transparent 34%),
        linear-gradient(145deg, #506d48, #2e4e39);
}

.home-v2-mood-family::before {
    background:
        radial-gradient(circle at 77% 13%, #e3b064, transparent 34%),
        linear-gradient(145deg, #a96735, #744224);
}

.home-v2-mood-calm::before {
    background:
        radial-gradient(circle at 80% 15%, #8297ae, transparent 35%),
        linear-gradient(145deg, #40566c, #263a4d);
}

.home-v2-mood-card > * {
    position: relative;
    z-index: 1;
}

.home-v2-mood-number {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.66rem;
    font-weight: 850;
}

.home-v2-mood-card > i {
    display: grid;
    width: 62px;
    height: 62px;
    margin-top: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 1.5rem;
    font-style: normal;
    backdrop-filter: blur(8px);
}

.home-v2-mood-card h3 {
    margin: auto 0 10px;
    font-size: 1.35rem;
}

.home-v2-mood-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.76rem;
    line-height: 1.55;
}

.home-v2-mood-card strong {
    margin-top: 20px;
    font-size: 0.7rem;
}

.home-v2-how {
    padding: 125px 0;
    background: #ffffff;
}

.home-v2-how-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(70px, 9vw, 140px);
    align-items: center;
}

.home-v2-how-intro h2 {
    margin: 10px 0 0;
    color: var(--home-ink);
    font-size: clamp(2.7rem, 5.2vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.home-v2-how-orbit {
    position: relative;
    display: grid;
    width: 250px;
    height: 250px;
    margin-top: 50px;
    place-items: center;
    border: 1px solid rgba(22, 127, 159, 0.16);
    border-radius: 50%;
}

.home-v2-how-orbit::before,
.home-v2-how-orbit::after {
    position: absolute;
    border: 1px solid rgba(22, 127, 159, 0.1);
    border-radius: 50%;
    content: "";
}

.home-v2-how-orbit::before {
    inset: 28px;
}

.home-v2-how-orbit::after {
    inset: 60px;
}

.home-v2-how-orbit span {
    position: relative;
    z-index: 2;
    color: var(--home-ink);
    font-size: 1.1rem;
    font-weight: 850;
}

.home-v2-how-orbit i {
    position: absolute;
    z-index: 3;
    width: 16px;
    height: 16px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: var(--home-orange);
    box-shadow: 0 5px 16px rgba(9, 47, 73, 0.18);
}

.home-v2-how-orbit i:nth-of-type(1) {
    top: 22px;
    left: 48px;
}

.home-v2-how-orbit i:nth-of-type(2) {
    right: 15px;
    bottom: 78px;
    background: var(--home-green);
}

.home-v2-how-orbit i:nth-of-type(3) {
    bottom: 20px;
    left: 55px;
    background: var(--home-sea-light);
}

.home-v2-steps {
    display: flex;
    flex-direction: column;
}

.home-v2-steps article {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 25px;
    padding: 35px 0;
    border-top: 1px solid var(--home-line);
}

.home-v2-steps article:last-child {
    border-bottom: 1px solid var(--home-line);
}

.home-v2-steps article > span {
    color: var(--home-orange);
    font-size: 0.72rem;
    font-weight: 850;
}

.home-v2-steps h3 {
    margin: 0;
    color: var(--home-ink);
    font-size: 1.35rem;
}

.home-v2-steps p {
    max-width: 590px;
    margin: 9px 0 0;
    color: #71838e;
    font-size: 0.83rem;
    line-height: 1.65;
}

.home-v2-owner {
    padding: 40px 0 125px;
    background: #ffffff;
}

.home-v2-owner-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 70px;
    align-items: center;
    overflow: hidden;
    padding: clamp(45px, 7vw, 90px);
    border-radius: 34px;
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(105, 199, 213, 0.16),
            transparent 30%
        ),
        linear-gradient(145deg, #edf7f7, #f7fbfb);
}

.home-v2-owner-card::before {
    position: absolute;
    top: -170px;
    right: -110px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(9, 47, 73, 0.08);
    border-radius: 50%;
    content: "";
}

.home-v2-owner-copy {
    position: relative;
    z-index: 2;
}

.home-v2-owner-copy h2 {
    max-width: 750px;
    margin: 10px 0 20px;
    color: var(--home-ink);
    font-size: clamp(2.4rem, 4.6vw, 4.8rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.home-v2-owner-copy p {
    max-width: 660px;
    margin: 0;
    color: #647a87;
    font-size: 0.91rem;
    line-height: 1.75;
}

.home-v2-owner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 28px;
}

.home-v2-button-primary,
.home-v2-button-secondary {
    display: inline-flex;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 11px 17px;
    border-radius: 14px;
    font-size: 0.76rem;
    font-weight: 850;
    text-decoration: none;
}

.home-v2-button-primary {
    background: var(--home-ink);
    color: #ffffff;
}

.home-v2-button-primary i {
    font-style: normal;
}

.home-v2-button-secondary {
    border: 1px solid var(--home-line);
    background: #ffffff;
    color: var(--home-ink);
}

.home-v2-owner-visual {
    position: relative;
    z-index: 2;
    min-height: 390px;
}

.home-v2-owner-window {
    position: absolute;
    inset: 20px 15px 20px 30px;
    overflow: hidden;
    border: 1px solid rgba(9, 47, 73, 0.11);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--home-shadow);
    transform: rotate(2deg);
}

.home-v2-owner-window-head {
    display: flex;
    gap: 6px;
    padding: 14px;
    border-bottom: 1px solid var(--home-line);
}

.home-v2-owner-window-head span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d8e3e7;
}

.home-v2-owner-window-body {
    padding: 25px;
}

.home-v2-owner-window-score {
    padding: 18px;
    border-radius: 15px;
    background: #f2f8f8;
}

.home-v2-owner-window-score span {
    color: #71838e;
    font-size: 0.7rem;
    font-weight: 800;
}

.home-v2-owner-window-score strong {
    display: block;
    margin: 8px 0;
    color: var(--home-ink);
    font-size: 2rem;
}

.home-v2-owner-window-score > i {
    display: block;
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(22, 127, 159, 0.12);
}

.home-v2-owner-window-score b {
    display: block;
    width: 82%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        var(--home-sea),
        var(--home-green)
    );
}

.home-v2-owner-window ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.home-v2-owner-window li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #587080;
    font-size: 0.75rem;
    font-weight: 700;
}

.home-v2-owner-window li i {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 8px;
    background: #edf7eb;
    color: var(--home-green);
    font-style: normal;
}

.home-v2-owner-bubble {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 13px;
    border: 1px solid rgba(9, 47, 73, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 13px 34px rgba(9, 47, 73, 0.14);
    backdrop-filter: blur(12px);
    animation: homeBubbleFloat 4s ease-in-out infinite alternate;
}

@keyframes homeBubbleFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-8px);
    }
}

.home-v2-owner-bubble span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 10px;
    background: #edf7f8;
    color: var(--home-sea);
    font-size: 0.75rem;
    font-weight: 850;
}

.home-v2-owner-bubble small {
    color: #587080;
    font-size: 0.65rem;
    font-weight: 750;
}

.home-v2-owner-bubble.bubble-one {
    top: 0;
    left: 0;
}

.home-v2-owner-bubble.bubble-two {
    right: 0;
    bottom: 0;
    animation-delay: 700ms;
}

.home-v2-final {
    padding: 0 0 115px;
    background: #ffffff;
}

.home-v2-final-card {
    display: flex;
    min-height: 330px;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    overflow: hidden;
    padding: clamp(45px, 7vw, 90px);
    border-radius: 34px;
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(105, 199, 213, 0.23),
            transparent 25%
        ),
        linear-gradient(135deg, #082f48, #0c445f);
    color: #ffffff;
}

.home-v2-final-card h2 {
    max-width: 760px;
    margin: 10px 0 15px;
    color: #ffffff;
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.home-v2-final-card p {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.86rem;
    line-height: 1.7;
}

.home-v2-final-card > a {
    display: flex;
    min-width: 220px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 13px 12px 20px;
    border-radius: 17px;
    background: #ffffff;
    color: var(--home-ink);
    font-size: 0.76rem;
    font-weight: 850;
    text-decoration: none;
}

.home-v2-final-card > a i {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 11px;
    background: #edf7f8;
    color: var(--home-sea);
    font-style: normal;
}

[data-home-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 700ms cubic-bezier(.2, .8, .2, 1),
        transform 700ms cubic-bezier(.2, .8, .2, 1);
}

[data-home-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .home-v2-floating-stay {
        display: none;
    }

    .home-v2-search {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-v2-search button {
        min-height: 58px;
        grid-column: span 2;
    }

    .home-v2-hero {
        min-height: 1030px;
    }

    .home-v2-hero-inner {
        min-height: 1030px;
        padding-bottom: 260px;
    }

    .home-v2-stay-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-v2-stay-card.is-featured {
        grid-column: span 2;
    }

    .home-v2-mood-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-v2-owner-card {
        grid-template-columns: 1fr;
    }

    .home-v2-owner-visual {
        min-height: 410px;
    }
}

@media (max-width: 800px) {
    .home-v2-section-header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 38px;
    }

    .home-v2-how-layout {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .home-v2-how-orbit {
        width: 210px;
        height: 210px;
    }

    .home-v2-final-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-v2-final-card > a {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .home-v2-hero {
        min-height: 1040px;
    }

    .home-v2-hero-inner {
        min-height: 1040px;
        justify-content: flex-start;
        padding-top: 145px;
        padding-bottom: 330px;
    }

    .home-v2-hero h1 {
        font-size: clamp(3.6rem, 17vw, 5.5rem);
    }

    .home-v2-hero-copy > p {
        font-size: 0.91rem;
    }

    .home-v2-proof {
        gap: 20px;
    }

    .home-v2-search {
        right: 12px;
        bottom: 25px;
        left: 12px;
        grid-template-columns: 1fr;
        padding: 9px;
        border-radius: 20px;
    }

    .home-v2-search button {
        min-height: 54px;
        grid-column: auto;
    }

    .home-v2-coast,
    .home-v2-featured,
    .home-v2-moods,
    .home-v2-how {
        padding-top: 85px;
        padding-bottom: 90px;
    }

    .home-v2-section-header h2 {
        font-size: clamp(2.5rem, 12vw, 3.8rem);
    }

    .home-v2-coast-track {
        grid-template-columns: repeat(12, 105px);
    }

    .home-v2-stay-grid,
    .home-v2-mood-grid {
        grid-template-columns: 1fr;
    }

    .home-v2-stay-card.is-featured {
        grid-column: auto;
    }

    .home-v2-stay-card.is-featured .home-v2-stay-media,
    .home-v2-stay-media {
        height: 250px;
    }

    .home-v2-mood-card {
        min-height: 325px;
    }

    .home-v2-how-orbit {
        margin-inline: auto;
    }

    .home-v2-steps article {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 15px;
    }

    .home-v2-owner {
        padding-bottom: 90px;
    }

    .home-v2-owner-card,
    .home-v2-final-card {
        border-radius: 24px;
    }

    .home-v2-owner-visual {
        min-height: 340px;
    }

    .home-v2-owner-window {
        inset: 20px 0;
    }

    .home-v2-owner-bubble.bubble-one {
        left: -5px;
    }

    .home-v2-owner-bubble.bubble-two {
        right: -5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-v2-wave,
    .home-v2-owner-bubble,
    .home-v2-scroll i::after {
        animation: none;
    }

    [data-home-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
