:root {
    --pcr-navy: #031927;
    --pcr-red: #ba1200;
    --pcr-red-bright: #ef3b2d;
    --pcr-ease: cubic-bezier(.22, 1, .36, 1);
}

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

body.pcr-page-enter { opacity: 0; }

body.pcr-page-ready {
    opacity: 1;
    transition: opacity .34s ease;
}

.pcr-scroll-progress {
    position: fixed;
    inset: 0 auto auto 0;
    width: 0;
    height: 3px;
    z-index: 99999;
    pointer-events: none;
    background: linear-gradient(90deg, var(--pcr-red), var(--pcr-red-bright));
    box-shadow: 0 0 12px rgba(186, 18, 0, .3);
}

header {
    transition:
        box-shadow .28s ease,
        background-color .28s ease,
        backdrop-filter .28s ease,
        transform .28s ease;
}

header.pcr-header-scrolled {
    box-shadow: 0 14px 35px rgba(3, 25, 39, .12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.pcr-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity .72s var(--pcr-ease),
        transform .72s var(--pcr-ease);
    will-change: opacity, transform;
}

.pcr-reveal.pcr-reveal-left {
    transform: translate3d(-26px, 0, 0);
}

.pcr-reveal.pcr-reveal-right {
    transform: translate3d(26px, 0, 0);
}

.pcr-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.pcr-delay-1 { transition-delay: .06s; }
.pcr-delay-2 { transition-delay: .12s; }
.pcr-delay-3 { transition-delay: .18s; }
.pcr-delay-4 { transition-delay: .24s; }
.pcr-delay-5 { transition-delay: .30s; }

.pcr-premium-card {
    transform: translateZ(0);
    transition:
        transform .32s var(--pcr-ease),
        box-shadow .32s var(--pcr-ease),
        border-color .32s ease;
}

.pcr-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(3, 25, 39, .11);
}

.pcr-media-shell { isolation: isolate; }

.pcr-premium-image {
    transition:
        transform 1.1s var(--pcr-ease),
        filter .6s ease;
    will-change: transform;
}

.pcr-media-shell:hover .pcr-premium-image {
    transform: scale(1.035);
}

@media (min-width: 900px) {
    .pcr-parallax-image {
        transform: translate3d(0, var(--pcr-parallax-y, 0px), 0) scale(1.025);
    }

    .pcr-media-shell:hover .pcr-parallax-image {
        transform: translate3d(0, var(--pcr-parallax-y, 0px), 0) scale(1.055);
    }
}

a.pcr-premium-action,
button.pcr-premium-action {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition:
        transform .25s var(--pcr-ease),
        box-shadow .25s ease,
        filter .25s ease;
}

a.pcr-premium-action::after,
button.pcr-premium-action::after {
    content: "";
    position: absolute;
    inset: -120% auto -120% -45%;
    width: 32%;
    transform: rotate(18deg);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, .22),
        transparent
    );
    transition: left .65s var(--pcr-ease);
    pointer-events: none;
}

a.pcr-premium-action:hover,
button.pcr-premium-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(3, 25, 39, .16);
}

a.pcr-premium-action:hover::after,
button.pcr-premium-action:hover::after {
    left: 120%;
}

a.pcr-active-nav { position: relative; }

a.pcr-active-nav::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: -5px;
    height: 2px;
    border-radius: 999px;
    background: var(--pcr-red);
}

.pcr-back-top {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 9990;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--pcr-navy);
    color: #fff;
    box-shadow: 0 16px 34px rgba(3, 25, 39, .22);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s var(--pcr-ease),
        background .25s ease;
}

.pcr-back-top:hover {
    background: var(--pcr-red);
    transform: translateY(-2px);
}

.pcr-back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pcr-mobile-actions { display: none; }

@media (max-width: 767px) {
    body.pcr-has-mobile-actions { padding-bottom: 78px; }

    .pcr-mobile-actions {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 9998;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 18px;
        background: rgba(3, 25, 39, .94);
        box-shadow: 0 18px 42px rgba(3, 25, 39, .30);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .pcr-mobile-actions a {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        padding: 10px 12px;
        font-size: 13px;
        font-weight: 800;
        line-height: 1.15;
        text-align: center;
        text-decoration: none;
    }

    .pcr-mobile-actions .pcr-mobile-primary {
        background: var(--pcr-red);
        color: #fff;
    }

    .pcr-mobile-actions .pcr-mobile-secondary {
        background: #fff;
        color: var(--pcr-navy);
    }

    .pcr-back-top {
        right: 16px;
        bottom: 92px;
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    body,
    .pcr-reveal,
    .pcr-premium-card,
    .pcr-premium-image,
    .pcr-parallax-image,
    .pcr-back-top,
    a.pcr-premium-action,
    button.pcr-premium-action {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }

    .pcr-reveal { opacity: 1 !important; }

    body.pcr-page-enter,
    body.pcr-page-ready {
        opacity: 1 !important;
    }
}

/* PCR-BRAND-ACTIVE-FIX
   The logo links to "/", so generic active-link effects can accidentally
   mark the brand as the active Home navigation item. Keep active styling
   on the actual Home nav link, never on the logo. */
header .pcr-brand-link,
header .pcr-brand-link:hover,
header .pcr-brand-link:focus,
header .pcr-brand-link:active {
    border-bottom: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

header .pcr-brand-link::before,
header .pcr-brand-link::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* PCR-LOGO-LINE-HARD-FIX
   Prevent the homepage logo link/wrapper from receiving the active-nav
   underline. The real site-wide divider is left untouched. */
header .pcr-logo-link,
header .pcr-brand-link {
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    background-image: none !important;
}

header .pcr-logo-link::before,
header .pcr-logo-link::after,
header .pcr-brand-link::before,
header .pcr-brand-link::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Modern browsers: protect any header link that physically contains the PCR logo. */
header a:has(img[src*="pcr-logo"]) {
    border-bottom: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

header a:has(img[src*="pcr-logo"])::before,
header a:has(img[src*="pcr-logo"])::after {
    content: none !important;
    display: none !important;
}
