.like-home-hero {
    --like-home-hero-ease: cubic-bezier(.22, .8, .24, 1);
    --like-home-hero-main-height: 590px;
    --like-home-hero-trust-height: 92px;
    --like-home-hero-panel-height: calc(var(--like-home-hero-main-height) + var(--like-home-hero-trust-height) + 2px);
    --like-home-hero-columns: minmax(0, 54fr) minmax(0, 46fr);
    --like-home-hero-action-stack-gap: 22px;
    padding: clamp(14px, 2.2vw, 34px) 0 0;
    overflow: visible;
    color: var(--like-text-primary);
    font-family: var(--like-font-body, "Onest", "Segoe UI", Arial, sans-serif);
}

.like-home-hero,
.like-home-hero * {
    box-sizing: border-box;
}

.site-main :is(h1, h2, h3, h4, h5, h6) {
    text-transform: none;
}

.site-main > .like-home-hero + .home-access-preview::before,
.site-main > .like-home-hero + .home-access-preview::after {
    display: none;
    content: none;
}

.like-home-hero__panel {
    position: relative;
    isolation: isolate;
    height: var(--like-home-hero-panel-height);
    overflow: hidden;
    border: 1px solid var(--like-border-subtle);
    border-radius: clamp(28px, 2.4vw, 36px);
    background:
        radial-gradient(circle at 88% 4%, rgba(var(--like-brand-orange-rgb), .11), transparent 28%),
        radial-gradient(circle at 55% 105%, rgba(191, 125, 67, .09), transparent 35%),
        linear-gradient(135deg, var(--like-surface-2) 0%, var(--like-surface-1) 100%);
    box-shadow: 0 26px 72px rgba(43, 42, 41, .09);
}

.like-home-hero__grid {
    display: grid;
    grid-template-columns: var(--like-home-hero-columns);
    align-items: center;
    height: var(--like-home-hero-main-height);
    min-height: 0;
}

.like-home-hero__copy {
    position: relative;
    z-index: 5;
    padding: clamp(36px, 3.5vw, 52px) clamp(30px, 4.6vw, 72px);
    animation: like-home-hero-copy-in .72s var(--like-home-hero-ease) both;
}

.like-home-hero__title {
    max-width: 640px;
    margin: 0;
    color: var(--like-text-primary);
    font-family: var(--like-font-heading, "Onest", "Segoe UI", Arial, sans-serif);
    font-size: var(--like-primary-title-size);
    font-weight: 700;
    letter-spacing: -.055em;
    line-height: .98;
    text-transform: none;
    text-wrap: balance;
}

.like-home-hero__title-line {
    display: block;
    white-space: nowrap;
}

.like-home-hero__title-accent {
    color: var(--like-accent);
}

.like-home-hero__lead {
    max-width: 650px;
    margin: 26px 0 0;
    color: var(--like-text-secondary);
    font-size: clamp(16px, 1.2vw, 19px);
    font-weight: 400;
    line-height: 1.58;
}

.like-home-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    column-gap: 12px;
    row-gap: var(--like-home-hero-action-stack-gap);
    width: max-content;
    max-width: 100%;
    margin-top: 34px;
}

.like-home-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: var(--like-radius-pill);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .22s var(--like-home-hero-ease), border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.like-home-hero__button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    transition: transform .22s var(--like-home-hero-ease);
}

.like-home-hero__button--primary {
    grid-column: 1 / -1;
    width: max-content;
    max-width: 100%;
    justify-self: start;
    color: var(--like-accent-text);
    background: var(--like-accent);
    box-shadow: 0 14px 28px rgba(var(--like-brand-orange-rgb), .22);
}

.like-home-hero__button--secondary {
    color: var(--like-text-primary);
    border-color: var(--like-border-default);
    background: color-mix(in srgb, var(--like-surface-raised) 82%, transparent);
}

.like-home-hero__button--inquiry {
    padding-inline: 16px;
    color: var(--like-accent-strong, var(--like-accent));
    border-color: color-mix(in srgb, var(--like-accent) 42%, var(--like-border-default));
    background: color-mix(in srgb, var(--like-accent) 8%, var(--like-surface-raised));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .32);
}

.like-home-hero__button:hover {
    transform: translateY(-2px);
}

.like-home-hero__button--primary:hover {
    color: var(--like-accent-text);
    background: var(--like-accent-hover);
    box-shadow: 0 18px 34px rgba(var(--like-brand-orange-rgb), .27);
}

.like-home-hero__button--primary:hover svg {
    transform: translateX(3px);
}

.like-home-hero__button--secondary:hover {
    color: var(--like-text-primary);
    border-color: color-mix(in srgb, var(--like-accent) 42%, var(--like-border-default));
    background: var(--like-surface-raised);
}

.like-home-hero__button--inquiry:hover {
    color: var(--like-accent-text);
    border-color: var(--like-accent);
    background: var(--like-accent);
    box-shadow: 0 14px 28px rgba(var(--like-brand-orange-rgb), .2);
}

.like-home-hero__button--inquiry:hover svg {
    transform: translateY(3px);
}

.like-home-hero__benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 650px;
    margin: var(--like-home-hero-action-stack-gap) 0 0;
    padding: 0;
    list-style: none;
}

.like-home-hero__benefits li {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    min-height: 78px;
    padding: 13px 15px;
    color: var(--like-text-primary);
    border: 1px solid var(--like-border-default);
    border-radius: 18px;
    background: color-mix(in srgb, var(--like-surface-raised) 94%, transparent);
    box-shadow: 0 10px 24px rgba(43, 42, 41, .055);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
}

.like-home-hero__benefits svg {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    padding: 3px;
    color: var(--like-accent-strong);
    border: 1px solid color-mix(in srgb, var(--like-accent) 30%, transparent);
    border-radius: 7px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.55;
}

.like-home-hero__visual {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(12px, 2vw, 32px) 0 0;
    isolation: isolate;
    pointer-events: none;
}

.like-home-hero__product-image {
    position: relative;
    z-index: 1;
    display: block;
    flex: 0 0 auto;
    width: min(590px, 100%);
    max-width: none;
    height: auto;
    filter: drop-shadow(0 18px 24px rgba(43, 42, 41, .1));
}

.like-home-hero__trust {
    --hero-partner-logo-color: var(--like-text-secondary);
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    height: var(--like-home-hero-trust-height);
    min-height: 0;
    padding: 18px clamp(30px, 4.6vw, 72px);
    overflow: hidden;
    background: transparent;
}

.like-home-hero__logos {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: clamp(22px, 1.8vw, 28px);
    margin: 0;
    padding: 0 clamp(22px, 1.8vw, 28px) 0 0;
    list-style: none;
}

.like-home-hero__partners-viewport {
    --hero-partner-edge-fade: clamp(24px, 3vw, 46px);
    width: 100%;
    min-width: 0;
    overflow: hidden;
    touch-action: pan-x;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 var(--hero-partner-edge-fade),
        #000 calc(100% - var(--hero-partner-edge-fade)),
        transparent 100%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 var(--hero-partner-edge-fade),
        #000 calc(100% - var(--hero-partner-edge-fade)),
        transparent 100%
    );
}

.like-home-hero__partners-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: like-home-hero-partners-marquee 52s linear infinite;
    will-change: transform;
}

.like-home-hero__partners-viewport:hover .like-home-hero__partners-track {
    animation-play-state: paused;
}

.like-home-hero__logos li {
    display: flex;
    flex: 0 0 var(--hero-partner-logo-slot-width, 88px);
    align-items: center;
    justify-content: center;
    width: var(--hero-partner-logo-slot-width, 88px);
    height: 52px;
}

.like-home-hero__partner-logo {
    display: block;
    width: 100%;
    height: 52px;
    background: var(--hero-partner-logo-color);
    opacity: .68;
    -webkit-mask-image: var(--hero-partner-logo-mask);
    mask-image: var(--hero-partner-logo-mask);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: var(--hero-partner-logo-mask-size, 64px) var(--hero-partner-logo-mask-size, 64px);
    mask-size: var(--hero-partner-logo-mask-size, 64px) var(--hero-partner-logo-mask-size, 64px);
}

@keyframes like-home-hero-partners-marquee {
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (hover: none), (pointer: coarse) {
    .like-home-hero__partners-viewport {
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .like-home-hero__partners-viewport::-webkit-scrollbar {
        display: none;
    }

    .like-home-hero__partners-track {
        animation: none;
        will-change: auto;
    }

    .like-home-hero__logos[aria-hidden="true"] {
        display: none;
    }
}

html[data-like-theme="dark"] .like-home-hero__panel {
    background:
        radial-gradient(circle at 88% 4%, rgba(var(--like-brand-orange-rgb), .12), transparent 28%),
        linear-gradient(135deg, var(--like-surface-1), var(--like-surface-2));
    box-shadow: var(--like-shadow-md);
}

@keyframes like-home-hero-copy-in {
    from { opacity: 0; transform: translate3d(0, 18px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (max-width: 1240px) {
    .like-home-hero {
        --like-home-hero-main-height: 590px;
        --like-home-hero-columns: minmax(0, 55fr) minmax(0, 45fr);
    }

    .like-home-hero__copy {
        padding-right: 30px;
    }

    .like-home-hero__actions {
        column-gap: 10px;
    }

    .like-home-hero__button {
        padding-inline: 17px;
        font-size: 13px;
    }

    .like-home-hero__benefits {
        gap: 11px 16px;
    }
}

@media (max-width: 1180px) {
    .like-home-hero {
        --like-home-hero-main-height: 1180px;
        --like-home-hero-columns: 1fr;
    }

    .like-home-hero__grid {
        grid-template-rows: 600px 580px;
        align-items: stretch;
    }

    .like-home-hero__copy {
        padding-bottom: 36px;
    }

    .like-home-hero__title {
        max-width: 760px;
    }

    .like-home-hero__title-line {
        display: inline;
        white-space: normal;
    }

    .like-home-hero__lead {
        max-width: 720px;
    }

    .like-home-hero__visual {
        padding: 0 24px 20px;
    }

    .like-home-hero__product-image {
        width: min(560px, 95%);
    }
}

@media (max-width: 760px) {
    .like-home-hero {
        --like-home-hero-main-height: 1120px;
        --like-home-hero-trust-height: 78px;
        --like-home-hero-action-stack-gap: 16px;
        padding-top: 10px;
    }

    .like-home-hero__panel {
        border-radius: 28px;
    }

    .like-home-hero__grid {
        grid-template-rows: 680px 440px;
    }

    .like-home-hero__copy {
        padding: 36px 22px 30px;
    }

    .like-home-hero__title {
        line-height: 1.01;
    }

    .like-home-hero__lead {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.55;
    }

    .like-home-hero__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 8px;
        row-gap: var(--like-home-hero-action-stack-gap);
        width: 100%;
        margin-top: 26px;
    }

    .like-home-hero__button {
        min-width: 0;
        width: 100%;
        min-height: 52px;
        gap: 6px;
        padding-inline: 8px;
        font-size: clamp(10px, 3.05vw, 12px);
        white-space: normal;
    }

    .like-home-hero__button svg {
        flex: 0 0 auto;
        width: 16px;
        height: 16px;
    }

    .like-home-hero__button--primary {
        grid-column: 1 / -1;
    }

    .like-home-hero__button--inquiry {
        grid-column: auto;
        min-height: 48px;
    }

    .like-home-hero__benefits {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: var(--like-home-hero-action-stack-gap);
    }

    .like-home-hero__benefits li {
        min-height: 60px;
        padding: 12px 14px;
        border-radius: 15px;
    }

    .like-home-hero__visual {
        padding: 0 0 18px;
    }

    .like-home-hero__product-image {
        width: min(420px, 105%);
    }

    .like-home-hero__trust {
        padding: 10px 14px;
    }

    .like-home-hero__partners-viewport {
        --hero-partner-edge-fade: 18px;
    }

    .like-home-hero__logos {
        gap: 18px;
        padding-right: 18px;
    }

    .like-home-hero__logos li,
    .like-home-hero__partner-logo {
        height: 46px;
    }
}

@media (max-width: 390px) {
    .like-home-hero {
        --like-home-hero-main-height: 1130px;
    }

    .like-home-hero__grid {
        grid-template-rows: 700px 430px;
    }

    .like-home-hero__copy {
        padding-inline: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .like-home-hero__copy {
        animation: none;
    }

    .like-home-hero__button,
    .like-home-hero__button svg {
        transition: none;
    }

    .like-home-hero__partners-viewport {
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
    }

    .like-home-hero__partners-viewport::-webkit-scrollbar {
        display: none;
    }

    .like-home-hero__partners-track {
        animation: none;
        transform: none;
        will-change: auto;
    }

    .like-home-hero__logos[aria-hidden="true"] {
        display: none;
    }
}
