/* ================================================================
   TRACK-RECORDS.CSS
   Hero styles only — PDF card styles are reused from
   investor-charter.css (ic-pdf-card, ic-pdf-grid, ic-empty).
   Load via enqueue.php on track records page only.
================================================================ */

/* ----------------------------------------------------------------
   PAGE HERO
---------------------------------------------------------------- */
.tr-hero {
    position: relative;
    background: var(--color-blue);
    padding: 160px 20px 120px;
    overflow: hidden;
}

.tr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
            -58deg,
            transparent,
            transparent 72px,
            rgba(255, 255, 255, 0.015) 72px,
            rgba(255, 255, 255, 0.015) 73px
    );
    pointer-events: none;
}

.tr-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 1.2rem;
}

.tr-hero__eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-orange);
    flex-shrink: 0;
}

.tr-hero__title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 600;
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 1.5rem;
}

.tr-hero__title em {
    font-style: normal;
    color: var(--color-orange);
}

.tr-hero__sub {
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    color: rgba(255, 255, 255, 0.72);
    max-width: 580px;
    line-height: 1.75;
    margin: 0;
}

.tr-hero__slice {
    position: absolute;
    bottom: -2px;
    left: -2px;
    right: -2px;
    height: 80px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 30%, 100% 100%);
    pointer-events: none;
}

/* ----------------------------------------------------------------
   BODY & SECTION HEADINGS
---------------------------------------------------------------- */
.tr-body {
    padding: 80px 0 100px;
}

.tr-section__title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--color-primary);
    margin: 0 0 0.6rem;
    display: inline-block;
}

.tr-section__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--color-orange);
    margin-top: 10px;
}

.tr-section__sub {
    color: var(--color-muted);
    font-size: 1rem;
    margin: 16px 0 40px;
    max-width: 520px;
}

/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 1279px) {
    .tr-hero { padding: 130px 0 100px; }
}

@media (max-width: 768px) {
    .tr-body { padding: 60px 20px 80px; }
    .tr-hero { padding: 110px 20px 80px; }
    .tr-hero__slice { height: 48px; }
}