/* ============================================================================
   home.css — Home page section styles
   ----------------------------------------------------------------------------
   Brand-scoped, per-page stylesheet. Loaded on index.php only, AFTER core.css
   so it inherits the :root design tokens (--owf-blue / --owf-red / fonts /
   eases / gutters). Every home-only component lives here under its own
   BEM-ish namespace so it can never leak into the shared theme CSS.

   §1  HERO SLIDER  (.owfhpsli — "OWF Home Page SLIder")
       Premium hero with the brand's BESPOKE editorial headline typography:
       one oversized brand-blue anchor word + stacked supporting words in
       mixed sizes and blue / red / ink — set in the "One World Bold" display
       face (declared in style.css). This is the distinctive look the brand
       used originally; it is intentionally NOT a generic "eyebrow + title".

       • Images are real <img> tags (native lazy-loading) — the browser can
         prioritise the LCP image and defer the rest.
       • Desktop/tablet — bright editorial type directly over the image;
         the photograph remains crisp and unobscured.
       • Phone ≤768px — clean bottom-docked content, safe-area-aware
         controls, horizontal scroll-snap CTAs and dots only.
       • Brand elements use SOLID colours only (blue + red) — no gradients on
         type or pagination.

       Pairs with /file/home/slider.php + the Swiper init in index.php.
   ============================================================================ */

/* ==========================================================================
   §1  HERO SLIDER  (.owfhpsli)
   ========================================================================== */

.owfhpsli {
    /* Own header-height token — core.css defines --owf-hdr-h locally on the
       header element, so it is NOT inheritable here. Keep our own copy. */
    --owfhpsli-hdr: 56px;

    position: relative;
    width: 100%;
    /* Full-bleed: slide up UNDER the transparent, sticky home header. */
    margin-top: calc(-1 * var(--owfhpsli-hdr));
    background: var(--owf-ink, #0a1929);
    overflow: hidden;
    isolation: isolate;
}
/* Header grows to 60px under 992px (core.css) — match the pull-up. */
@media (max-width: 991.98px) {
    .owfhpsli { --owfhpsli-hdr: 60px; }
}

.owfhpsli__swiper { width: 100%; height: 100%; overflow: hidden; }
.owfhpsli__swiper .swiper-wrapper { display: flex; }

/* ---- Slide shell ---- */
.owfhpsli__slide {
    position: relative;
    width: 100%;
    height: clamp(590px, 82vh, 780px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--owf-ink, #0a1929);
}

/* ---- Background image (real <img>, Ken-Burns on the active slide) ---- */
.owfhpsli__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; display: block; }
.owfhpsli__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Per-slide crop focus — set with a .owfhpsli__img--focus-* class below
       (never an inline style). Defaults to centre. */
    object-position: var(--owfhpsli-imgpos, center);
    display: block;
    transform: scale(1.015);
    transition: transform 8s var(--owf-ease-out, cubic-bezier(0.16, 1, 0.3, 1));
    will-change: transform;
}
.owfhpsli__slide.swiper-slide-active .owfhpsli__img { transform: scale(1.055); }

/* Crop-focus presets — bias the cover-crop so a high/low subject isn't
   clipped. Add more named positions here as slides need them. */
.owfhpsli__img--focus-top    { --owfhpsli-imgpos: center 18%; }
.owfhpsli__img--focus-high   { --owfhpsli-imgpos: center 8%; }
.owfhpsli__img--focus-bottom { --owfhpsli-imgpos: center 82%; }

/* ---- Localized fade: white only on the text side, clear over the subject ---- */
.owfhpsli__scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.owfhpsli__slide--right .owfhpsli__scrim {
    background:
        linear-gradient(270deg,
            rgba(255, 255, 255, 0.94) 0%,
            rgba(255, 255, 255, 0.84) 20%,
            rgba(255, 255, 255, 0.50) 36%,
            rgba(255, 255, 255, 0.14) 49%,
            rgba(255, 255, 255, 0) 61%);
}
.owfhpsli__slide--left .owfhpsli__scrim {
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.94) 0%,
            rgba(255, 255, 255, 0.84) 20%,
            rgba(255, 255, 255, 0.50) 36%,
            rgba(255, 255, 255, 0.14) 49%,
            rgba(255, 255, 255, 0) 61%);
}

/* Soft brand glow — subtle depth on the text side */
.owfhpsli__glow { display: none; }
.owfhpsli__slide--right .owfhpsli__glow { right: -8%; }
.owfhpsli__slide--left  .owfhpsli__glow { left:  -8%; }

/* Decorative brand ring in the corner opposite the text */
.owfhpsli__ring {
    position: absolute; z-index: 1; width: 440px; height: 440px; border-radius: 50%;
    border: 1px solid rgba(0, 114, 190, 0.14);
    box-shadow: inset 0 0 0 44px rgba(0, 114, 190, 0.045), inset 0 0 0 45px rgba(0, 114, 190, 0.09);
    pointer-events: none;
}
.owfhpsli__slide--right .owfhpsli__ring { top: -150px; right: -150px; }
.owfhpsli__slide--left  .owfhpsli__ring { top: -150px; left:  -150px; }
@media (max-width: 991px) { .owfhpsli__ring { display: none; } }

/* ---- Content shell (uses the locked brand gutter) ---- */
.owfhpsli__inner {
    position: relative; z-index: 2; width: 100%;
    display: flex; align-items: center;
    padding-left: var(--owf-gutter, 28px);
    padding-right: var(--owf-gutter, 28px);
    padding-top: calc(var(--owfhpsli-hdr) + 8px);
    padding-bottom: 84px;
}
.owfhpsli__slide--right .owfhpsli__inner { justify-content: flex-end; }
.owfhpsli__slide--left  .owfhpsli__inner { justify-content: flex-start; }
@media (max-width: 991px) {
    .owfhpsli__inner { padding-left: var(--owf-gutter-mobile, 14px); padding-right: var(--owf-gutter-mobile, 14px); }
}

.owfhpsli__content {
    /* ~47% of the viewport so the text sits in the empty half of the photo
       (the subject fills the other ~50–55%). Floored/capped for readability. */
    width: clamp(440px, 47vw, 900px);
    text-align: left;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.owfhpsli__slide--right .owfhpsli__content { text-align: right; margin-left: auto; }

/* Top-row kicker — mirrors the bottom-left counter: 01. + bar + phrase,
   same Nunito accent face. */
.owfhpsli__eyebrow {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
    font-family: var(--owf-font-accent, 'Nunito', sans-serif);
    font-size: 13px; font-weight: 700; line-height: 1;
    letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--owf-ink-400, #6b7280);
}
.owfhpsli__slide--right .owfhpsli__eyebrow { justify-content: flex-end; }
.owfhpsli__eyebrow-num { color: var(--owf-blue-600, #005c98); font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.owfhpsli__eyebrow-dot { color: var(--owf-red-500, #cc2930); }
.owfhpsli__eyebrow-bar { width: 30px; height: 2px; border-radius: 2px; background: rgba(0, 114, 190, 0.28); flex-shrink: 0; }
.owfhpsli__eyebrow-label { color: var(--owf-ink-500, #4b5563); font-weight: 700; }

/* ── MAGAZINE MASTHEAD — title & subtitle as one unit ─────────────────
   The headline is a single bold statement whose words carry the brand
   colour pattern (blue / ink / red), but ALL share ONE size — so it aligns
   perfectly and wraps into a tight masthead. A blue+red rule links it to
   the subtitle deck below. No size-juggling, no fragile alignment. */
.owfhpsli__hl {
    --hl-blue: var(--owf-blue-600, #005c98);
    --hl-red:  var(--owf-red-500, #cc2930);
    --hl-ink:  var(--owf-ink, #0f1b2d);

    font-family: 'Outfit', var(--owf-font-display, 'Jost'), sans-serif;  /* same face as the gg hero title */
    font-weight: 800;
    font-size: clamp(32px, 3.6vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
}
/* Each line is its own block → the title is ALWAYS exactly two lines,
   with the break controlled in the markup (never 3 or 4). */
.owfhpsli__hl-line { display: block; }

/* Word colours — the brand pattern (solid, forced over theme styles) */
.owfhpsli__hl .is-blue { color: var(--hl-blue) !important; }
.owfhpsli__hl .is-red  { color: var(--hl-red)  !important; }
.owfhpsli__hl .is-ink  { color: var(--hl-ink)  !important; }

/* Blue+red rule — links the headline to the subtitle deck */
.owfhpsli__rule {
    display: block; position: relative;
    width: 52px; height: 3px; border-radius: 3px;
    background: var(--owf-blue-500, #0072be);
    margin: 0 0 14px;
}
.owfhpsli__rule::before {
    content: ''; position: absolute; left: 0; top: 0;
    width: 17px; height: 100%; border-radius: 3px;
    background: var(--owf-red-500, #cc2930);
}
.owfhpsli__slide--right .owfhpsli__rule { margin-left: auto; }
.owfhpsli__slide--right .owfhpsli__rule::before { left: auto; right: 0; }

/* Subtitle / deck — paired with the title: same edge, quieter voice */
.owfhpsli__tagline {
    font-family: var(--owf-font-display, 'Jost'), sans-serif;
    font-size: clamp(15px, 0.55vw + 10px, 19px);
    font-weight: 500;
    color: var(--owf-ink-700, #1f2937);
    margin: 0 0 16px 0;
    letter-spacing: 0;
    line-height: 1.45;
}
.owfhpsli__slide--right .owfhpsli__tagline { margin-left: auto; }

/* Description — full text, compact type */
.owfhpsli__desc {
    font-family: var(--owf-font-body, 'Open Sans', sans-serif);
    font-size: clamp(11px, 0.18vw + 8px, 12.5px);
    line-height: 1.6;
    color: var(--owf-ink-500, #4b5563);
    margin: 0 0 20px 0;
    max-width: 90%;                 /* keep the copy off the photo/subject side */
    border-left: 2px solid var(--owf-blue-200, #99c7eb);
    padding-left: 13px;
}
.owfhpsli__slide--right .owfhpsli__desc {
    border-left: 0;
    border-right: 2px solid var(--owf-blue-200, #99c7eb);
    padding-left: 0;
    padding-right: 13px;
    margin-left: auto;
}
/* Slide 2 (the left-aligned slide, subject on the right) — narrower so the
   copy stays clear of the photo. */
.owfhpsli__slide--left .owfhpsli__desc { max-width: 75%; }

/* ---- CTA buttons (solid brand colours) ---- */
.owfhpsli__actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.owfhpsli__slide--right .owfhpsli__actions { justify-content: flex-end; }
.owfhpsli__btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    min-height: 50px; padding: 8px 9px 8px 20px; border-radius: 12px;
    font-family: var(--owf-font-ui, 'Jost', sans-serif);
    font-size: clamp(12px, 0.25vw + 9px, 13px);
    font-weight: 700; letter-spacing: 0.035em; text-transform: none;
    text-decoration: none; white-space: nowrap; cursor: pointer;
    position: relative; overflow: hidden; -webkit-tap-highlight-color: transparent;
    transition: transform 0.4s var(--owf-ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1)),
        background 0.35s var(--owf-ease, ease), color 0.3s ease,
        box-shadow 0.4s var(--owf-ease, ease), border-color 0.3s ease;
}
.owfhpsli__btn i {
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 32px; width: 32px; height: 32px; border-radius: 9px;
    font-size: 14px;
    transition: transform 0.4s var(--owf-ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1)), background 0.3s ease;
}
/* Per-slide button accent — set on .owfhpsli__actions; both buttons inherit.
   BRAND colours only (blue / red). */
.owfhpsli__actions        { --btn-accent: var(--owf-blue-500, #0072be); }
.owfhpsli__actions--blue  { --btn-accent: var(--owf-blue-500, #0072be); }
.owfhpsli__actions--red   { --btn-accent: var(--owf-red-500, #cc2930); }

.owfhpsli__btn--primary {
    background: var(--btn-accent); color: #fff !important;
    border: 1px solid var(--btn-accent);
    box-shadow: 0 12px 24px -10px rgba(10, 25, 41, 0.5);
}
.owfhpsli__btn--primary i { background: rgba(255, 255, 255, 0.2); }
.owfhpsli__btn--primary::before {
    content: ''; position: absolute; top: 0; left: -120%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.8s var(--owf-ease, ease);
}
.owfhpsli__btn--primary:hover { transform: translateY(-2px); color: #fff !important; filter: brightness(0.93); box-shadow: 0 16px 30px -11px rgba(10, 25, 41, 0.6); }
.owfhpsli__btn--primary:hover::before { left: 120%; }
.owfhpsli__btn--primary:hover i { transform: translateX(4px); }
/* Ghost — neutral glass, but its icon glyph + hover pick up the slide accent */
.owfhpsli__btn--ghost {
    background: rgba(255, 255, 255, 0.84); color: var(--owf-ink-700, #1f2937);
    border: 1px solid rgba(10, 25, 41, 0.16);
}
.owfhpsli__btn--ghost i { background: rgba(10, 25, 41, 0.06); color: var(--btn-accent); }
.owfhpsli__btn--ghost:hover { transform: translateY(-2px); background: #fff; border-color: var(--btn-accent); color: var(--btn-accent); }
.owfhpsli__btn--ghost:hover i { transform: translateX(4px); }
.owfhpsli__btn:active { transform: translateY(0) scale(0.98); }
.owfhpsli__btn:focus-visible {
    outline: 3px solid rgba(0, 114, 190, 0.28);
    outline-offset: 3px;
}

/* ---- Staggered reveal — plays only on the active slide ---- */
.owfhpsli__slide .owfhpsli__hl,
.owfhpsli__slide .owfhpsli__eyebrow,
.owfhpsli__slide .owfhpsli__rule,
.owfhpsli__slide .owfhpsli__tagline,
.owfhpsli__slide .owfhpsli__desc,
.owfhpsli__slide .owfhpsli__actions {
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.7s var(--owf-ease-out, ease), transform 0.8s var(--owf-ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}
.owfhpsli__slide.swiper-slide-active .owfhpsli__eyebrow { opacity: 1; transform: none; transition-delay: 0.08s; }
.owfhpsli__slide.swiper-slide-active .owfhpsli__hl      { opacity: 1; transform: none; transition-delay: 0.16s; }
.owfhpsli__slide.swiper-slide-active .owfhpsli__rule    { opacity: 1; transform: none; transition-delay: 0.26s; }
.owfhpsli__slide.swiper-slide-active .owfhpsli__tagline { opacity: 1; transform: none; transition-delay: 0.32s; }
.owfhpsli__slide.swiper-slide-active .owfhpsli__desc    { opacity: 1; transform: none; transition-delay: 0.42s; }
.owfhpsli__slide.swiper-slide-active .owfhpsli__actions { opacity: 1; transform: none; transition-delay: 0.52s; }

/* ═══════════════════════════════════════════════════════════════════
   Bottom chrome — pagination + arrows (right) · progress
   ═══════════════════════════════════════════════════════════════════ */

.owfhpsli__nav { position: absolute; z-index: 6; right: var(--owf-gutter, 28px); bottom: 24px; display: flex; align-items: center; gap: 14px; }
.owfhpsli__dots { display: flex !important; align-items: center; gap: 7px; position: static !important; width: auto !important; }
.owfhpsli__dots .swiper-pagination-bullet {
    width: 9px; height: 9px; border-radius: 999px;
    background: rgba(0, 114, 190, 0.30) !important; opacity: 1 !important; margin: 0 !important;
    cursor: pointer; transition: width 0.45s var(--owf-ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1)), background 0.3s ease;
}
.owfhpsli__dots .swiper-pagination-bullet-active { width: 30px; border-radius: 5px; background: var(--owf-red-500, #cc2930) !important; }
.owfhpsli__arrows { display: flex; align-items: center; gap: 8px; }
.owfhpsli__arrow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.78); border: 1px solid rgba(255, 255, 255, 0.9);
    color: var(--owf-blue-600, #005c98); font-size: 16px; cursor: pointer;
    box-shadow: 0 10px 24px -10px rgba(10, 25, 41, 0.35);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: transform 0.35s var(--owf-ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1)), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.owfhpsli__arrow:hover { background: var(--owf-blue-500, #0072be); border-color: var(--owf-blue-600, #005c98); color: #fff; transform: scale(1.06); }
.owfhpsli__arrow.swiper-button-disabled { opacity: 0.4; cursor: default; }

.owfhpsli__progress { position: absolute; left: 0; right: 0; bottom: 0; z-index: 6; height: 3px; background: rgba(0, 114, 190, 0.14); }
.owfhpsli__progress-bar { height: 100%; width: 100%; transform: scaleX(0); transform-origin: left; background: var(--owf-blue-500, #0072be); }
@keyframes owfhpsli-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .owfhpsli__slide { height: clamp(540px, 76vh, 700px); }
    /* A little wider share on tablet, where the photo reads smaller. */
    .owfhpsli__content { width: clamp(360px, 56vw, 600px); }
}

/* ───────── Phone — NATIVE-APP layout (content docked to bottom) ───────── */
@media (max-width: 768px) {
    .owfhpsli { background: #eef4f8; }
    /* Match the gg hero height on mobile */
    .owfhpsli__slide { height: 50vh; min-height: 440px; max-height: 560px; align-items: stretch; }
    .owfhpsli__img { transform: none !important; object-position: var(--owfhpsli-imgpos, center 28%); }
    /* Portrait mobile frame crops the sides — bias the crop toward the side
       the people are on so the subject stays in view.
       align=right slides → subject on the LEFT; align=left slide → on the RIGHT. */
    .owfhpsli__slide--right .owfhpsli__img { object-position: 24% center; }
    .owfhpsli__slide--left  .owfhpsli__img { object-position: 76% center; }
    /* Per-slide mobile crop overrides (set via 'mcrop' in the markup). */
    .owfhpsli__img--mc1 { object-position: 0% 15px !important; }
    .owfhpsli__img--mc2 { object-position: 100% -35px !important; transform: scale(1.2) !important; }
    .owfhpsli__img--mc3 { object-position: -10% -35px !important; transform: scale(1.2) !important; }
    .owfhpsli__img--mc4 { object-position: 0% 65px !important; transform: scale(1.2) !important; }
    .owfhpsli__img--mc5 { object-position: 0% 6px !important; transform: scale(1.09) !important; }

    /* Mobile text sits at the bottom, so its localized fade follows it. */
    .owfhpsli__slide--right .owfhpsli__scrim,
    .owfhpsli__slide--left  .owfhpsli__scrim {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0, rgba(255, 255, 255, 0) 70px),
            linear-gradient(180deg,
                rgba(8, 27, 43, 0) 18%,
                rgba(8, 27, 43, 0.30) 38%,
                rgba(8, 27, 43, 0.78) 66%,
                rgba(8, 27, 43, 0.95) 100%);
    }

    /* Dock the content cleanly over the lower part of the image. */
    .owfhpsli__inner {
        align-items: flex-end; justify-content: flex-start !important;
        padding: 44px 12px calc(16px + env(safe-area-inset-bottom));
    }
    .owfhpsli__content, .owfhpsli__slide--right .owfhpsli__content {
        width: 100%; max-width: 560px; text-align: left; margin: 0 auto;
        padding: 0 6px;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
    }

    /* Ink flips to white for the dark card, but blue & red stay the REAL
       brand colours. Title is forced onto ONE line (font scales to fit). */
    .owfhpsli__hl {
        --hl-ink:  #ffffff;
        --hl-blue: var(--owf-blue-500, #0072be);
        --hl-red:  var(--owf-red-500, #cc2930);
        font-size: clamp(14.5px, 4.55vw, 29px);
        max-width: none;
        white-space: nowrap;
        margin: 0 0 8px;
    }
    .owfhpsli__hl-line { display: inline; }   /* flow the two lines into one */
    .owfhpsli__eyebrow { justify-content: flex-start !important; color: rgba(255, 255, 255, 0.7); margin-bottom: 11px; font-size: 10.5px; letter-spacing: 1.2px; }
    .owfhpsli__eyebrow-num { color: #7cc0ef; font-size: 15px; }
    .owfhpsli__eyebrow-bar { width: 22px; }
    .owfhpsli__eyebrow-dot { color: #ff6b72; }
    .owfhpsli__eyebrow-bar { background: rgba(255, 255, 255, 0.35); }
    .owfhpsli__eyebrow-label { color: #dcecfa; }
    /* Accent rule flips light over the dark card */
    .owfhpsli__rule, .owfhpsli__slide--right .owfhpsli__rule { margin: 0 0 8px; background: #7cc0ef; }
    .owfhpsli__rule::before, .owfhpsli__slide--right .owfhpsli__rule::before { left: 0; right: auto; background: #ff6b72; }
    /* Undo the desktop right-edge push — everything left-aligned on the card */
    .owfhpsli__slide--right .owfhpsli__hl,
    .owfhpsli__slide--right .owfhpsli__tagline { margin-left: 0; }

    .owfhpsli__tagline, .owfhpsli__desc { margin-left: 0; margin-right: 0; max-width: none; }
    .owfhpsli__tagline { color: #dcecfa; font-size: 15px; font-weight: 500; margin-bottom: 8px; }
    .owfhpsli__desc,
    .owfhpsli__slide--right .owfhpsli__desc,
    .owfhpsli__slide--left  .owfhpsli__desc {
        color: rgba(255, 255, 255, 0.88);
        border-left: 3px solid var(--owf-blue-400, #338fd7); border-right: 0;
        padding-left: 10px; padding-right: 0; margin-left: 0; margin-right: 0;
        font-size: 10px; line-height: 1.58; margin-bottom: 14px;
        max-width: none;              /* full width on mobile */
    }

    /* CTAs → horizontal scroll-snap chip row (edge-to-edge) */
    .owfhpsli__actions, .owfhpsli__slide--right .owfhpsli__actions {
        flex-wrap: nowrap; overflow-x: auto; overflow-y: visible; gap: 8px;
        padding: 2px 0; margin: 0; justify-content: flex-start;
        scroll-snap-type: x mandatory; scroll-padding-left: 0;
        -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none;
    }
    .owfhpsli__actions::-webkit-scrollbar { display: none; width: 0; height: 0; }
    .owfhpsli__btn { flex-shrink: 0; scroll-snap-align: start; min-height: 40px; padding: 6px 7px 6px 13px; font-size: 11px; border-radius: 10px; gap: 9px; }
    .owfhpsli__btn i { flex-basis: 26px; width: 26px; height: 26px; border-radius: 7px; font-size: 12px; }
    .owfhpsli__btn--ghost { background: rgba(255, 255, 255, 0.14); color: #fff; border-color: rgba(255, 255, 255, 0.35); }
    .owfhpsli__btn--ghost i { background: rgba(255, 255, 255, 0.18); color: #fff; }

    /* App chrome: hide arrows AND pagination — buttons sit lower instead */
    .owfhpsli__arrows { display: none; }
    .owfhpsli__nav { display: none; }
    .owfhpsli__progress { background: rgba(255, 255, 255, 0.18); }
    .owfhpsli__progress-bar { background: var(--owf-red-500, #cc2930); }
    .owfhpsli__ring { display: none; }
}

@media (max-width: 480px) {
    .owfhpsli__slide { height: 48vh; min-height: 420px; max-height: 520px; }
    .owfhpsli__content, .owfhpsli__slide--right .owfhpsli__content { padding: 0 4px; }
    .owfhpsli__btn { min-height: 38px; padding: 5px 6px 5px 12px; }
}

@media (max-width: 380px) {
    .owfhpsli__slide { height: 46vh; min-height: 400px; max-height: 480px; }
    .owfhpsli__tagline { font-size: 13px; }
    .owfhpsli__content, .owfhpsli__slide--right .owfhpsli__content { padding: 0 2px; }
    .owfhpsli__btn { font-size: 11px; }
}

@media (orientation: landscape) and (max-height: 560px) {
    .owfhpsli__slide { height: 100svh; min-height: 440px; }
    .owfhpsli__inner { align-items: center; padding: 76px 58px 44px; }
    .owfhpsli__content, .owfhpsli__slide--right .owfhpsli__content { max-width: 520px; margin: 0; padding: 0; }
    .owfhpsli__nav { bottom: 10px; }
}

/* ---- Motion-safety ---- */
@media (prefers-reduced-motion: reduce) {
    .owfhpsli__img,
    .owfhpsli__slide.swiper-slide-active .owfhpsli__img { transition: none; transform: scale(1.04); }
    .owfhpsli__slide .owfhpsli__hl,
    .owfhpsli__slide .owfhpsli__eyebrow,
    .owfhpsli__slide .owfhpsli__tagline,
    .owfhpsli__slide .owfhpsli__desc,
    .owfhpsli__slide .owfhpsli__actions { opacity: 1; transform: none; transition: none; }
    .owfhpsli__progress-bar { animation: none !important; transform: scaleX(1); }
}


/* ==========================================================================
   §2  USP — editorial value strip, WHITE  (.owfhpusp)
   --------------------------------------------------------------------------
   White band: header panel (left) + six compact editorial cards (right).
   Per-card brand colour (--uc/--ucg) drives an outline folio that ignites on
   hover, an accent line with a draw-in underline, and a soft glow spot.
   Full descriptions (no clamp). Subtle floating brand shapes behind. Card 06
   is the CTA. Jost/Open Sans only. Full-bleed. Motion respects reduced-motion.
   ========================================================================== */
.owfhpusp {
    position: relative;
    overflow: hidden;
    color: var(--owf-ink, #0a1929);
    font-family: var(--owf-font-body, 'Open Sans', sans-serif);
    -webkit-font-smoothing: antialiased;
    background:
        radial-gradient(ellipse at 14% 12%, rgba(0, 114, 190, 0.05) 0%, transparent 44%),
        radial-gradient(ellipse at 88% 90%, rgba(204, 41, 48, 0.04) 0%, transparent 48%),
        #ffffff;
}

/* Floating ambient shapes */
.owfhpusp__shape { position: absolute; z-index: 0; border-radius: 50%; pointer-events: none; will-change: transform; }
.owfhpusp__shape--1 { top: -140px; right: -100px; width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(0, 114, 190, 0.10) 0%, transparent 70%); animation: owfhpuspFloat1 18s ease-in-out infinite; }
.owfhpusp__shape--2 { bottom: -160px; left: -110px; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(204, 41, 48, 0.07) 0%, transparent 70%); animation: owfhpuspFloat2 23s ease-in-out infinite; }
.owfhpusp__shape--ring { top: 20%; left: 26%; width: 110px; height: 110px; background: none;
    border: 1.5px solid rgba(0, 114, 190, 0.08); animation: owfhpuspFloat3 15s ease-in-out infinite; }
@keyframes owfhpuspFloat1 { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(28px,22px,0) scale(1.08); } }
@keyframes owfhpuspFloat2 { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(-26px,-30px,0) scale(0.94); } }
@keyframes owfhpuspFloat3 { 0%,100% { transform: translate3d(0,0,0) rotate(0deg); } 50% { transform: translate3d(-16px,20px,0) rotate(14deg); } }

.owfhpusp__band {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: minmax(176px, 206px) 1fr;
    border-top: 1px solid var(--owf-ink-100, #e5e7eb);
    border-bottom: 1px solid var(--owf-ink-100, #e5e7eb);
}

/* ── Header panel ── */
.owfhpusp__anchor {
    display: flex; flex-direction: column; justify-content: center;
    padding: clamp(18px, 1.7vw, 26px) clamp(9px, 0.7vw, 13px);
    border-right: 1px solid var(--owf-ink-100, #e5e7eb);
}
.owfhpusp__anchor-eyebrow {
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px;
    font-family: var(--owf-font-accent, 'Nunito', sans-serif);
    font-size: 8.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--owf-blue, #0072be);
}
.owfhpusp__anchor-bar { width: 18px; height: 2px; border-radius: 2px; background: var(--owf-red, #cc2930); }
.owfhpusp__anchor-title {
    margin: 0 0 8px; font-family: var(--owf-font-display, 'Jost', sans-serif);
    font-weight: 700; font-size: clamp(13px, 1vw, 16px); line-height: 1.22; letter-spacing: -0.01em; color: var(--owf-ink, #0a1929);
}
.owfhpusp__anchor-title span { display: block; font-weight: 400; color: var(--owf-ink-400, #6b7280); }
.owfhpusp__anchor-sub { margin: 0; font-size: 10px; line-height: 1.5; color: var(--owf-ink-400, #6b7280); }

/* ── Cards track ── */
.owfhpusp__grid { list-style: none; margin: 0; padding: 0; min-width: 0; display: grid; grid-template-columns: repeat(6, 1fr); }

.owfhpusp__item {
    --uc: var(--owf-blue, #0072be);
    --ucg: rgba(0, 114, 190, 0.10);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; gap: 8px;
    padding: clamp(13px, 1.05vw, 16px) clamp(8px, 0.55vw, 11px);
    border-right: 1px solid var(--owf-ink-100, #e5e7eb);
    transition: background 0.5s var(--owf-ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}
.owfhpusp__item:last-child { border-right: 0; }
.owfhpusp__item:hover { background: rgba(0, 114, 190, 0.028); }
.owfhpusp__item > *:not(.owfhpusp__glow) { position: relative; z-index: 1; }

/* Six per-card colours (readable on white) */
.owfhpusp__item--c1 { --uc: #e0554d; --ucg: rgba(224, 85, 77, 0.11); }
.owfhpusp__item--c2 { --uc: #8e75b5; --ucg: rgba(142, 117, 181, 0.11); }
.owfhpusp__item--c3 { --uc: #2f8f8f; --ucg: rgba(47, 143, 143, 0.11); }
.owfhpusp__item--c4 { --uc: #3a70b2; --ucg: rgba(58, 112, 178, 0.11); }
.owfhpusp__item--c5 { --uc: #d98b00; --ucg: rgba(217, 139, 0, 0.11); }
.owfhpusp__item--c6 { --uc: #d95375; --ucg: rgba(217, 83, 117, 0.11); }

/* Glow spot */
.owfhpusp__glow {
    position: absolute; z-index: 0; right: -46px; bottom: -46px; width: 190px; height: 190px; border-radius: 50%;
    background: radial-gradient(circle, var(--ucg) 0%, transparent 70%);
    opacity: 0.6; pointer-events: none;
    transition: opacity 0.6s var(--owf-ease, ease), transform 0.6s var(--owf-ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}
.owfhpusp__item:hover .owfhpusp__glow { opacity: 1; transform: scale(1.2); }

/* Top row: kicker + outline folio */
.owfhpusp__item-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.owfhpusp__cat {
    margin-top: 3px; font-family: var(--owf-font-accent, 'Nunito', sans-serif);
    font-size: 9px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--owf-ink-400, #6b7280);
}
.owfhpusp__number {
    font-family: var(--owf-font-display, 'Jost', sans-serif); font-weight: 700;
    font-size: clamp(24px, 2vw, 34px); line-height: 1; letter-spacing: -0.02em;
    color: transparent; -webkit-text-stroke: 1px rgba(10, 25, 41, 0.16);
    transition: -webkit-text-stroke-color 0.5s var(--owf-ease, ease), transform 0.5s var(--owf-ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}
.owfhpusp__item:hover .owfhpusp__number { -webkit-text-stroke-color: var(--uc); transform: scale(1.05) translateY(-2px); }

/* Body */
.owfhpusp__item-body { display: flex; flex-direction: column; align-items: flex-start; }
.owfhpusp__h {
    margin: 0 0 5px; font-family: var(--owf-font-display, 'Jost', sans-serif);
    font-weight: 700; font-size: clamp(10px, 0.72vw, 11.5px); line-height: 1.24; color: var(--owf-ink, #0a1929); white-space: nowrap;
}
.owfhpusp__accent {
    position: relative; display: inline-block; margin-bottom: 8px;
    font-family: var(--owf-font-accent, 'Nunito', sans-serif);
    font-size: 9px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--uc);
}
.owfhpusp__accent::after {
    content: ''; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px; background: var(--uc);
    transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--owf-ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}
.owfhpusp__item:hover .owfhpusp__accent::after { transform: scaleX(1); }
.owfhpusp__p {
    margin: 0; font-family: var(--owf-font-body, 'Open Sans', sans-serif);
    font-size: 10px; line-height: 1.5; color: var(--owf-ink-500, #4b5563);
}

/* ── Card 06 — CTA ── */
.owfhpusp__item--cta { --uc: var(--owf-blue, #0072be); --ucg: rgba(0, 114, 190, 0.12);
    background: linear-gradient(160deg, rgba(0, 114, 190, 0.05), rgba(255, 255, 255, 0)); }
.owfhpusp__cta {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; white-space: nowrap;
    padding: 7px 14px; border-radius: 0; border: 1px solid var(--owf-blue, #0072be);
    font-family: var(--owf-font-display, 'Jost', sans-serif); font-size: 9.5px; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase; color: var(--owf-blue, #0072be); text-decoration: none;
    transition: background 0.35s var(--owf-ease, ease), color 0.35s ease;
}
.owfhpusp__cta i { font-size: 13px; transition: transform 0.3s var(--owf-ease-out, cubic-bezier(0.16, 1, 0.3, 1)); }
.owfhpusp__cta:hover { background: var(--owf-blue, #0072be); color: #fff; }
.owfhpusp__cta:hover i { transform: translateX(3px); }

/* ── Tablet: 3 columns per row ── */
@media (max-width: 1100px) {
    .owfhpusp__band { grid-template-columns: 1fr; }
    .owfhpusp__anchor { border-right: 0; border-bottom: 1px solid var(--owf-ink-100, #e5e7eb); }
    .owfhpusp__grid { grid-template-columns: repeat(3, 1fr); }
    .owfhpusp__item:nth-child(3n) { border-right: 0; }
    .owfhpusp__item:nth-child(-n+3) { border-bottom: 1px solid var(--owf-ink-100, #e5e7eb); }
}

/* ── Phone: swipe strip ── */
@media (max-width: 680px) {
    .owfhpusp__grid {
        grid-template-columns: none; display: flex; overflow-x: auto;
        scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .owfhpusp__grid::-webkit-scrollbar { display: none; }
    .owfhpusp__item { flex: 0 0 60%; scroll-snap-align: start; }
    .owfhpusp__item:nth-child(3n) { border-right: 1px solid var(--owf-ink-100, #e5e7eb); }
    .owfhpusp__item:nth-child(-n+3) { border-bottom: 0; }
    .owfhpusp__item:last-child { border-right: 0; }
    .owfhpusp__accent::after { transform: scaleX(1); }
    /* glow spot → top-right corner, smaller */
    .owfhpusp__glow { top: -36px; right: -36px; bottom: auto; width: 122px; height: 122px; }
    /* ring → top-right, smaller */
    .owfhpusp__shape--ring { top: 0%; left: auto; right: 0; width: 80px; height: 80px; }
}

@media (prefers-reduced-motion: reduce) {
    .owfhpusp__shape { animation: none !important; }
}
