/**
 * tp-hero.css — Hero section
 * Imported via tyro-partnership.css
 */

.tp-hero {
    position: relative;
    background: var(--tp-white);
    box-shadow: var(--tp-shadow-lg);
    padding: 96px 0 104px;
    overflow: hidden;
    text-align: center;
    border-radius: 20px;
}

/* Subtle dot grid */
.tp-hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}



/* Logo pair */
.tp-hero__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 44px;
    opacity: 0;
    animation: tp-fade-up 0.65s ease forwards;
}

.tp-hero__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-hero__logo {
    max-height: 160px;
    max-width: 420px;
    width: auto;
    object-fit: contain;
    display: block;
}

.tp-logo-fallback {
    font-family: var(--tp-font);
    font-size: 22px;
    font-weight: 800;
    color: var(--tp-dark);
}

.tp-hero__x {
    color: rgba(0,0,0,0.2);
    flex-shrink: 0;
}

/* Badge */
.tp-hero__badge {
    display: inline-block;
    background: var(--tp-brand-light);
    color: var(--tp-brand);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 999px;
    border: 1px solid rgba(15,138,190,0.2);
    margin-bottom: 24px;
    opacity: 0;
    animation: tp-fade-up 0.65s 0.12s ease forwards;
}

/* Headline */
.tp-hero__title {
    font-family: var(--tp-font);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--tp-dark);
    line-height: 1.22;
    margin-bottom: 22px;
    letter-spacing: -0.025em;
    opacity: 0;
    animation: tp-fade-up 0.65s 0.2s ease forwards;
}

.tp-hero__title-accent {
    color: var(--tp-brand);
}

/* Subtext */
.tp-hero__sub {
    color: var(--tp-muted);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.75;
    opacity: 0;
    animation: tp-fade-up 0.65s 0.28s ease forwards;
}

/* Date pill */
.tp-hero__date-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffbb0075;
    color: #000000;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 999px;
    opacity: 0;
    animation: tp-fade-up 0.65s 0.34s ease forwards;
}

.tp-hero__date-pill strong {
    font-size: 17px;
    font-weight: 800;
    color: #5a3d00;
    letter-spacing: -0.01em;
}