@import url(https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap);

.hero-landing {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 82px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
    background: #000
}

.hero-landing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(93, 1, 29, .3) 0, transparent 55%), radial-gradient(ellipse at 30% 40%, rgba(219, 28, 86, .1) 0, transparent 50%), radial-gradient(ellipse at 75% 30%, rgba(93, 1, 29, .15) 0, transparent 50%);
    z-index: 1;
    pointer-events: none
}

.hero-person {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-55%);
    z-index: 2;
    height: 92%;
    display: flex;
    align-items: flex-end;
    pointer-events: none
}

.hero-person img {
    height: 100%;
    max-height: 92vh;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
    filter: contrast(1.05) brightness(.92);
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%)
}

.hero-headline {
    grid-column: 1/-1;
    grid-row: 1;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 3vh 5% 0 0;
    pointer-events: none
}

.hero-headline h1 {
    font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
    font-size: clamp(4rem, 10vw, 10rem);
    font-weight: 400;
    color: #f7f7f3;
    line-height: .92;
    letter-spacing: .02em;
    text-align: right;
    text-shadow: 0 0 80px rgba(0, 0, 0, .6), 0 2px 4px rgba(0, 0, 0, .3);
    margin: 0
}

.hero-tagline {
    position: absolute;
    left: 5%;
    top: 38%;
    z-index: 4;
    max-width: 220px
}

.hero-tagline h2 {
    font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 400;
    color: #f7f7f3;
    line-height: 1.1;
    letter-spacing: .04em;
    margin: 0 0 .8rem
}

.hero-tagline p {
    font-size: .8rem;
    color: rgba(247, 247, 243, .6);
    line-height: 1.5;
    margin: 0
}

.hero-description {
    position: absolute;
    right: 5%;
    bottom: 28%;
    z-index: 4;
    max-width: 340px;
    text-align: right
}

.hero-description p {
    font-size: .85rem;
    color: rgba(247, 247, 243, .65);
    line-height: 1.7;
    margin: 0
}

.hero-description strong {
    color: #f7f7f3;
    font-weight: 600
}

.hero-cta-arrow {
    position: absolute;
    right: 5%;
    bottom: 20%;
    z-index: 5;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid rgba(247, 247, 243, .35);
    background: rgba(247, 247, 243, .06);
    color: #f7f7f3;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .3s ease;
    backdrop-filter: blur(8px)
}

.hero-cta-arrow:hover {
    background: rgba(219, 28, 86, .2);
    border-color: #db1c56;
    transform: scale(1.1);
    box-shadow: 0 0 24px rgba(219, 28, 86, .3)
}

.hero-cta-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transform: rotate(-45deg)
}

.hero-stats {
    position: absolute;
    left: 5%;
    bottom: 5%;
    z-index: 5;
    display: flex;
    gap: 10px
}

.hero-stat-card {
    background: rgba(247, 247, 243, .95);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 120px;
    color: #000;
    backdrop-filter: blur(12px)
}

.hero-stat-card .stat-icon {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-bottom: 6px
}

.hero-stat-card .stat-icon.burgundy {
    background: rgba(93, 1, 29, .12);
    color: #5d011d
}

.hero-stat-card .stat-label {
    font-size: .65rem;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin-bottom: 6px;
    text-transform: none
}

.hero-stat-card .stat-value {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #000;
    line-height: 1;
    letter-spacing: .02em
}

.hero-stat-card .stat-sub {
    font-size: .65rem;
    color: rgba(0, 0, 0, .5);
    margin-top: 3px
}

.hero-stat-card.accent {
    background: rgba(93, 1, 29, .85);
    color: #f7f7f3;
    backdrop-filter: blur(12px)
}

.hero-stat-card.accent .stat-icon {
    background: rgba(247, 247, 243, .15);
    color: #f7f7f3
}

.hero-stat-card.accent .stat-label {
    color: #db1c56;
    font-weight: 700
}

.hero-stat-card.accent p {
    font-size: .65rem;
    color: rgba(247, 247, 243, .7);
    line-height: 1.4;
    margin: 0
}

.hero-categories {
    position: absolute;
    right: 5%;
    bottom: 8%;
    z-index: 5;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 450px
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1px solid rgba(247, 247, 243, .2);
    border-radius: 24px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(247, 247, 243, .7);
    background: rgba(247, 247, 243, .04);
    backdrop-filter: blur(8px);
    transition: all .3s ease;
    cursor: default
}

.hero-pill:hover {
    border-color: rgba(219, 28, 86, .5);
    color: #f7f7f3;
    background: rgba(219, 28, 86, .1)
}

.hero-pill.active {
    background: rgba(247, 247, 243, .12);
    border-color: rgba(247, 247, 243, .4);
    color: #f7f7f3
}

.hero-pill.active::before {
    content: '✦';
    font-size: .6rem
}

.hero-landing .scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5
}

@media (max-width:1200px) {
    .hero-headline h1 {
        font-size: clamp(3.5rem, 8vw, 7rem)
    }

    .hero-tagline h2 {
        font-size: clamp(1.1rem, 2.2vw, 1.6rem)
    }

    .hero-tagline p {
        font-size: .72rem
    }

    .hero-tagline {
        max-width: 180px
    }

    .hero-description {
        max-width: 280px
    }

    .hero-description p {
        font-size: .78rem
    }

    .hero-stat-card {
        padding: 10px 12px;
        min-width: 100px
    }

    .hero-stat-card .stat-value {
        font-size: 1.6rem
    }

    .hero-stat-card .stat-label {
        font-size: .6rem
    }

    .hero-pill {
        padding: 6px 14px;
        font-size: .65rem
    }

    .hero-cta-arrow {
        width: 48px;
        height: 48px
    }
}

@media (max-width:900px) {
    .hero-headline h1 {
        font-size: clamp(2.6rem, 7vw, 5rem)
    }

    .hero-tagline {
        max-width: 150px;
        top: 35%
    }

    .hero-tagline h2 {
        font-size: clamp(.95rem, 2vw, 1.3rem)
    }

    .hero-tagline p {
        font-size: .65rem
    }

    .hero-description {
        max-width: 220px;
        bottom: 30%
    }

    .hero-description p {
        font-size: .7rem;
        line-height: 1.5
    }

    .hero-person {
        height: 80%
    }

    .hero-stat-card {
        padding: 8px 10px;
        min-width: 85px;
        border-radius: 8px
    }

    .hero-stat-card .stat-value {
        font-size: 1.4rem
    }

    .hero-stat-card .stat-label {
        font-size: .55rem
    }

    .hero-stat-card .stat-icon {
        width: 18px;
        height: 18px;
        font-size: 10px;
        margin-bottom: 4px
    }

    .hero-stat-card .stat-sub {
        font-size: .55rem
    }

    .hero-stat-card.accent p {
        font-size: .55rem
    }

    .hero-pill {
        padding: 5px 10px;
        font-size: .58rem
    }

    .hero-categories {
        max-width: 320px
    }

    .hero-cta-arrow {
        width: 42px;
        height: 42px
    }

    .hero-cta-arrow svg {
        width: 16px;
        height: 16px
    }
}

@media (max-width:768px) {
    .hero-landing {
        min-height: calc(100vh - 60px);
        min-height: calc(100svh - 60px);
        padding-bottom: 80px
    }

    .hero-headline {
        padding: 1.6vh 4% 0 0
    }

    .hero-headline h1 {
        font-size: clamp(2.8rem, 10vw, 4.8rem);
        line-height: .9
    }

    .hero-tagline {
        max-width: 132px;
        top: 25%;
        left: 4%
    }

    .hero-tagline h2 {
        font-size: clamp(.8rem, 2.5vw, 1.1rem);
        margin-bottom: .4rem
    }

    .hero-tagline p {
        font-size: .58rem;
        line-height: 1.4
    }

    .hero-person {
        height: 90%
    }

    .hero-description {
        max-width: 210px;
        bottom: 33%;
        right: 4%
    }

    .hero-description p {
        font-size: .66rem;
        line-height: 1.5
    }

    .hero-stats {
        left: 4%;
        bottom: calc(14px + env(safe-area-inset-bottom, 0px));
        gap: 6px;
        max-width: calc(100% - 44%)
    }

    .hero-stat-card {
        padding: 6px 8px;
        min-width: 70px;
        border-radius: 7px
    }

    .hero-stat-card .stat-value {
        font-size: 1.1rem
    }

    .hero-stat-card .stat-label {
        font-size: .5rem;
        margin-bottom: 3px
    }

    .hero-stat-card .stat-icon {
        width: 15px;
        height: 15px;
        font-size: 8px;
        margin-bottom: 3px;
        border-radius: 3px
    }

    .hero-stat-card .stat-sub {
        font-size: .48rem
    }

    .hero-stat-card.accent p {
        font-size: .48rem
    }

    .hero-categories {
        right: 4%;
        bottom: calc(14px + env(safe-area-inset-bottom, 0px));
        max-width: min(52%, 240px);
        gap: 5px;
        flex-direction: column;
        align-items: flex-end
    }

    .hero-pill {
        padding: 4px 8px;
        font-size: .5rem;
        gap: 3px
    }

    .hero-cta-arrow {
        right: 4%;
        bottom: 28%;
        width: 36px;
        height: 36px
    }

    .hero-cta-arrow svg {
        width: 14px;
        height: 14px
    }
}

@media (max-width:480px) {
    .hero-headline h1 {
        font-size: clamp(2.6rem, 12vw, 4rem)
    }

    .hero-tagline {
        max-width: 118px;
        top: 25%
    }

    .hero-tagline h2 {
        font-size: clamp(.7rem, 2.8vw, .95rem)
    }

    .hero-tagline p {
        font-size: .52rem
    }

    .hero-person {
        height: 88%
    }

    .hero-description {
        max-width: 180px;
        bottom: 31%
    }

    .hero-description p {
        font-size: .62rem
    }

    .hero-stat-card {
        min-width: 60px;
        padding: 5px 6px
    }

    .hero-stat-card .stat-value {
        font-size: .95rem
    }

    .hero-stat-card .stat-label {
        font-size: .45rem
    }

    .hero-stat-card .stat-sub {
        font-size: .42rem
    }

    .hero-stat-card.accent p {
        font-size: .42rem
    }

    .hero-categories {
        max-width: 56%;
        gap: 4px
    }

    .hero-pill {
        padding: 3px 6px;
        font-size: .45rem
    }

    .hero-cta-arrow {
        width: 32px;
        height: 32px;
        bottom: 25%
    }

    .hero-cta-arrow svg {
        width: 12px;
        height: 12px
    }

    .hero-landing .scroll-indicator {
        bottom: calc(98px + env(safe-area-inset-bottom, 0px))
    }
}

@media (prefers-reduced-motion:reduce) {
    .hero-person img {
        filter: none
    }
}