
.lh-hero {
    position: relative;
    overflow: hidden;
    background: #000;
    box-sizing: border-box;
}

.lh-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 5vw, 64px);
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding:
        calc(var(--header-pill-top, 10px) + var(--header-pill-h, 54px) + clamp(28px, 5vw, 56px))
        clamp(20px, 4vw, 40px)
        clamp(56px, 8vw, 96px);
    box-sizing: border-box;
}

.lh-hero__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(16px, 2.5vw, 28px);
    min-width: 0;
    position: relative;
    z-index: 2;
}

.lh-hero__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 2px;
}

.lh-hero__brand-logo {
    display: block;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
}

.lh-hero__brand-name {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: var(--text-weight-bold);
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--text);
}

.lh-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: var(--text-size-footnote);
    font-weight: var(--text-weight-semibold);
    letter-spacing: -0.01em;
    color: var(--text-secondary);
}

.lh-hero__eyebrow-icon {
    font-size: 18px;
    color: var(--text);
}

.lh-hero__title {
    margin: 0;
    max-width: 12em;
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: var(--text-weight-bold);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--text);
}

.lh-hero__lead {
    margin: 0;
    max-width: 28em;
    font-size: clamp(1rem, 1.8vw, 1.1875rem);
    font-weight: var(--text-weight-regular);
    line-height: var(--line-relaxed);
    letter-spacing: -0.015em;
    color: var(--text-secondary);
}

.lh-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.lh-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: var(--control-height-lg);
    padding: 0 28px;
    font-size: var(--text-size-callout);
    font-weight: var(--text-weight-semibold);
    letter-spacing: -0.01em;
    text-decoration: none;
    white-space: nowrap;
    corner-shape: squircle;
    border-radius: calc((var(--control-height-lg) / 2) * 44.53125);
    transition: opacity var(--motion-normal) var(--ease-standard),
        background-color var(--motion-normal) var(--ease-standard);
}

.lh-hero__btn--primary {
    background: var(--button-primary-bg);
    color: var(--button-primary-text);
}

.lh-hero__btn--primary:hover {
    opacity: 0.88;
}

.lh-hero__btn--ghost {
    background: var(--button-secondary-bg);
    color: var(--button-secondary-text);
}

.lh-hero__btn--ghost:hover {
    background: var(--button-hover-bg);
}

.lh-hero__visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    height: clamp(460px, 72vh, 760px);
    min-width: 0;
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    overflow: visible;
}

.lh-hero__marquee {
    position: relative;
    z-index: 1;
    min-width: 0;
    height: 100%;
    overflow: visible;
}

.lh-hero__track {
    display: flex;
    flex-direction: column;
    gap: 36px;
    will-change: transform;
}

.lh-hero__marquee--up .lh-hero__track {
    animation: lh-marquee-up 78s linear infinite;
}

.lh-hero__marquee--down .lh-hero__track {
    animation: lh-marquee-down 72s linear infinite;
}

@keyframes lh-marquee-up {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

@keyframes lh-marquee-down {
    from { transform: translateY(-50%); }
    to { transform: translateY(0); }
}

.lh-hero__card {
    --width: 100%;
    position: relative;
    display: block;
    flex-shrink: 0;
    aspect-ratio: 1;
    overflow: visible;
    background: transparent;
    text-decoration: none;
    transition: transform var(--motion-normal) var(--ease-standard);
}

.lh-hero__card:hover {
    transform: scale(1.03);
}

.lh-hero__card-bloom {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    object-fit: cover;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1.85);
    filter: blur(48px) saturate(1.25) brightness(1.08);
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
}

.lh-hero__card-cover {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    object-fit: cover;
    background: var(--card);
    corner-shape: squircle;
    border-radius: calc(100% * 0.22265625);
    box-shadow: var(--shadow-sm);
    pointer-events: none;
    user-select: none;
}

.lh-hero__card--placeholder {
    background: transparent;
    pointer-events: none;
}

.lh-hero__card--placeholder .lh-hero__card-cover {
    object-fit: contain;
    padding: 18%;
    opacity: 0.35;
    background: var(--fill-secondary);
}

@media (max-width: 960px) {
    .lh-hero__inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding:
            calc(var(--header-pill-top, 10px) + var(--header-pill-h, 54px) + 16px)
            16px
            clamp(28px, 6vw, 40px);
    }

    .lh-hero__title {
        max-width: none;
        font-size: clamp(2rem, 8.5vw, 2.75rem);
    }

    .lh-hero__copy {
        position: relative;
        z-index: 3;
        width: 100%;
        flex: 0 0 auto;
        background: #000;
    }

    .lh-hero__visual {
        display: none !important;
    }

    .lh-hero__lead {
        display: none;
    }
}

@media (max-width: 520px) {
    .lh-hero__inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .lh-hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .lh-hero__btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lh-hero__marquee--up .lh-hero__track,
    .lh-hero__marquee--down .lh-hero__track {
        animation: none;
    }
}
