/* ==========================================================================
   Section 1 — Hero (.bp-hero)
   GSAP-driven entrance animation; opacity:0 below prevents FOUC.
   ========================================================================== */

/* FOUC protection — GSAP fades these in via the registerSectionAnimation
   helper (onPlay = playHero). Must use .fromTo() in JS, not .from(), since
   .from() reads the current opacity:0 as its target. */
.bp-fixed-header,
.bp-hero__chart-coin,
.bp-hero__title-line,
.bp-hero__title-sub,
.bp-hero__cta,
.bp-social-icons {
    opacity: 0;
}

.bp-hero {
    min-height: 100vh;
}

.bp-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    max-width: 1200px;
}

.bp-hero__text {
    flex: 0 1 42%;
    text-align: center;
    order: 2;
}

.bp-hero__visual {
    flex: 0 1 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
}

.bp-hero__chart-coin {
    display: block;
    width: 100%;
    max-width: 640px;
    height: auto;
    object-fit: contain;
}

.bp-hero__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 72px;
    color: #ffffff;
}

.bp-hero__title-line {
    display: block;
}

.bp-hero__title-sub {
    display: block;
    margin-top: 40px;
}

.bp-hero__highlight {
    color: #E01C24;
    font-size: 2rem;
    font-weight: 700;
    vertical-align: super;
}

.bp-hero__big {
    color: #E01C24;
    font-size: 7rem;
    font-weight: 900;
    display: inline-block;
    line-height: 1.1;
    padding-bottom: 0.15em;
}

.bp-hero__cta {
    padding: 24px 72px;
    font-size: 1.875rem;
}

/* --- Social icons positioning — universal appearance lives in landing-base.css.
       Hero pins them to bottom-left; position:absolute (not fixed) since the
       GSAP transform on #smooth-content would absolute-ize fixed children. --- */
.bp-hero .bp-social-icons {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
}

@media (max-width: 768px) {
    .bp-hero__content {
        flex-direction: column;
        text-align: center;
    }
    .bp-hero__text { text-align: center; order: 1; }
    .bp-hero__visual { order: 2; }
    .bp-hero__chart-coin { max-height: 250px; }
    .bp-hero__title { font-size: 1.5rem; margin-bottom: 32px; }
    .bp-hero__title-sub { margin-top: 16px; }
    .bp-hero__highlight {
        display: block;
        font-size: 1.75rem;
        margin-bottom: 4px;
    }
    .bp-hero__big { display: block; font-size: 3.5rem; }
    .bp-hero__cta { padding: 14px 36px; font-size: 1.125rem; }

    .bp-hero .bp-social-icons {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}
