:root {
    --navy-950: #050F24;
    --navy-900: #0A1B3D;
    --navy-800: #102850;
    --blue-700: #0B5FFF;
    --blue-600: #2E7BFF;
    --blue-500: #4F94FF;
    --sky-100: #EEF4FF;
    --sky-50: #F7FAFF;
    --white: #FFFFFF;
    --gold-500: #F4B942;
    --gain: #17C784;
    --loss: #F0465C;
    --ink-900: #0B1424;
    --ink-700: #33425E;
    --ink-500: #67748F;
    --line: #DCE6F7;
    --shadow: 0 20px 50px -20px rgba(10,27,61,.35);
    --radius: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter',sans-serif;
    color: var(--ink-700);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, h4, .display {
    font-family: 'Space Grotesk',sans-serif;
    color: var(--ink-900);
}

.mono {
    font-family: 'JetBrains Mono',monospace;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    position: relative;
}

::selection {
    background: var(--gold-500);
    color: var(--navy-950);
}

/* ---------- reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.2,.7,.2,1),transform .8s cubic-bezier(.2,.7,.2,1);
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-stagger.in .stagger-item {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

/* ---------- nav ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all .35s ease;
}

    header.scrolled {
        background: rgba(5,15,36,.92);
        backdrop-filter: blur(14px);
        padding: 12px 0;
        box-shadow: 0 8px 30px rgba(0,0,0,.15);
    }

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    letter-spacing: -.02em;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg,var(--blue-600),var(--gold-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk';
    font-weight: 700;
    color: var(--navy-950);
    font-size: 16px;
    box-shadow: 0 6px 16px rgba(11,95,255,.4);
}

.nav-links {
    display: flex;
    gap: 34px;
    align-items: center;
}

    .nav-links a {
        color: rgba(255,255,255,.82);
        font-size: 14.5px;
        font-weight: 500;
        transition: color .2s;
    }

        .nav-links a:hover {
            color: var(--gold-500);
        }

.burger {
    display: none;
    color: #fff;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* mobile nav drawer (added for MVC responsive integration) */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--navy-950);
    z-index: 1100;
    padding: 90px 28px 28px;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -20px 0 50px rgba(0,0,0,.4);
}

    .mobile-nav.open {
        transform: translateX(0);
    }

    .mobile-nav a {
        display: block;
        color: rgba(255,255,255,.85);
        font-size: 16px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1050;
}

    .nav-overlay.open {
        display: block;
    }

/* ---------- hero ---------- */
.hero {
    background: radial-gradient(ellipse 120% 80% at 20% -10%, #123071 0%, var(--navy-950) 55%);
    padding: 170px 0 0;
    position: relative;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
    pointer-events: none;
}

.blob1 {
    width: 520px;
    height: 520px;
    background: var(--blue-600);
    top: -160px;
    right: -120px;
    animation: float1 16s ease-in-out infinite;
}

.blob2 {
    width: 380px;
    height: 380px;
    background: var(--gold-500);
    bottom: -140px;
    left: -100px;
    opacity: .18;
    animation: float2 20s ease-in-out infinite;
}

@keyframes float1 {
    0%,100% {
        transform: translate(0,0)
    }

    50% {
        transform: translate(-40px,50px)
    }
}

@keyframes float2 {
    0%,100% {
        transform: translate(0,0)
    }

    50% {
        transform: translate(40px,-30px)
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: 90px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244,185,66,.12);
    border: 1px solid rgba(244,185,66,.35);
    color: var(--gold-500);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
    letter-spacing: .02em;
}

    .eyebrow .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--gain);
        box-shadow: 0 0 0 0 rgba(23,199,132,.6);
        animation: pulse 1.8s infinite;
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(23,199,132,.6)
    }

    70% {
        box-shadow: 0 0 0 9px rgba(23,199,132,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(23,199,132,0)
    }
}

.hero h1 {
    font-size: clamp(32px,4.6vw,60px);
    line-height: 1.08;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 22px;
}

    .hero h1 em {
        font-style: normal;
        color: transparent;
        background: linear-gradient(90deg,var(--gold-500),#ffd98a);
        -webkit-background-clip: text;
        background-clip: text;
    }

.hero p.lead {
    color: rgba(230,238,255,.78);
    font-size: clamp(15px,2vw,18px);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--blue-700);
    color: #fff;
    box-shadow: 0 12px 28px -8px rgba(11,95,255,.65);
}

    .btn-primary:hover {
        background: var(--blue-600);
        transform: translateY(-3px);
        box-shadow: 0 16px 34px -8px rgba(11,95,255,.8);
    }

.btn-ghost {
    background: rgba(255,255,255,.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
}

    .btn-ghost:hover {
        background: rgba(255,255,255,.14);
        transform: translateY(-3px);
    }

.stat-row {
    display: flex;
    gap: 38px;
    flex-wrap: wrap;
    row-gap: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
}

    .stat .num {
        font-family: 'Space Grotesk';
        font-size: clamp(22px,3vw,30px);
        font-weight: 700;
        color: #fff;
    }

    .stat .lbl {
        font-size: 12.5px;
        color: rgba(230,238,255,.55);
        text-transform: uppercase;
        letter-spacing: .06em;
        margin-top: 2px;
    }

/* market panel */
.market-panel {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 22px;
    backdrop-filter: blur(6px);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
    min-width: 0;
}

    .market-panel .mp-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 14px;
        flex-wrap: wrap;
        gap: 8px;
    }

        .market-panel .mp-head h4 {
            color: #fff;
            font-size: 14.5px;
            font-weight: 600;
        }

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--gain);
    font-weight: 600;
}

    .live-badge .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gain);
        animation: pulse 1.8s infinite;
    }

.tv-widget-container {
    border-radius: 14px;
    overflow: hidden;
    background: #0d1830;
}

.ticker-row {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
    margin-top: 14px;
}

.tick-card {
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 12px 14px;
}

    .tick-card .sym {
        color: #fff;
        font-size: 12.5px;
        font-weight: 600;
        letter-spacing: .02em;
    }

    .tick-card .price {
        font-family: 'JetBrains Mono';
        font-size: 15.5px;
        color: #fff;
        margin-top: 4px;
    }

    .tick-card .chg {
        font-family: 'JetBrains Mono';
        font-size: 12px;
        margin-top: 2px;
        font-weight: 600;
    }

.chg.up {
    color: var(--gain);
}

.chg.down {
    color: var(--loss);
}

/* full-width ticker tape */
.tt-strip {
    background: var(--navy-900);
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 0;
}

/* ---------- section heads ---------- */
.section-pad {
    padding: 110px 0;
}

.kicker {
    color: var(--blue-700);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .kicker::before {
        content: '';
        width: 26px;
        height: 2px;
        background: var(--gold-500);
        display: inline-block;
    }

.section-title {
    font-size: clamp(26px,3.4vw,42px);
    font-weight: 700;
    letter-spacing: -.02em;
    max-width: 680px;
    margin-bottom: 18px;
}

.section-sub {
    color: var(--ink-500);
    font-size: clamp(15px,1.6vw,17px);
    max-width: 600px;
}

.head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

/* ---------- persona / professionals gallery ---------- */
.personas {
    background: var(--sky-50);
}

.persona-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

.persona-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow);
}

    .persona-card:nth-child(2) {
        transform: translateY(28px);
    }

    .persona-card:nth-child(4) {
        transform: translateY(28px);
    }

    .persona-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .persona-card:hover img {
        transform: scale(1.08);
    }

.persona-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(5,15,36,0) 40%,rgba(5,15,36,.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
}

    .persona-overlay .tag {
        align-self: flex-start;
        background: rgba(244,185,66,.9);
        color: var(--navy-950);
        font-size: 11px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 999px;
        margin-bottom: 10px;
        letter-spacing: .02em;
    }

    .persona-overlay h4 {
        color: #fff;
        font-size: 19px;
        margin-bottom: 4px;
    }

    .persona-overlay p {
        color: rgba(255,255,255,.75);
        font-size: 13px;
    }

/* ---------- investment groups ---------- */
.groups-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 26px;
}

.group-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}

    .group-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow);
    }

.group-media {
    position: relative;
    height: 190px;
    overflow: hidden;
}

    .group-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }

.group-card:hover .group-media img {
    transform: scale(1.09);
}

.group-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(5,15,36,.75);
    backdrop-filter: blur(4px);
    color: #fff;
    font-family: 'JetBrains Mono';
    font-size: 11.5px;
    padding: 5px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .group-badge.up {
        color: var(--gain);
    }

.group-body {
    padding: 22px 22px 24px;
}

    .group-body h4 {
        font-size: 18.5px;
        margin-bottom: 8px;
    }

    .group-body p {
        font-size: 14px;
        color: var(--ink-500);
        margin-bottom: 14px;
    }

.group-link {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--blue-700);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .group-link span {
        transition: transform .2s;
    }

.group-card:hover .group-link span {
    transform: translateX(4px);
}

.group-note {
    margin-top: 36px;
    background: var(--sky-100);
    border: 1px dashed var(--blue-500);
    border-radius: 14px;
    padding: 20px 26px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

    .group-note .ic {
        font-size: 20px;
    }

    .group-note p {
        font-size: 14.5px;
        color: var(--ink-700);
    }

    .group-note strong {
        color: var(--navy-950);
    }

/* featured (HMH) card - was inline-styled, now a responsive class */
.groups-grid-single {
    margin-top: 26px;
    grid-template-columns: 1fr;
}

.group-card-featured {
    display: grid;
    grid-template-columns: 340px 1fr;
}

    .group-card-featured .group-media {
        height: auto;
    }

        .group-card-featured .group-media img {
            height: 100%;
        }

        /* NEW: background video for the HMH featured card fills the same frame as the photo */
        .group-card-featured .group-media video.hmh-video {
            width: 100%;
            height: 100%;
            min-height: 260px;
            object-fit: cover;
            display: block;
        }

    .group-card-featured .group-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .group-card-featured .group-body p {
            max-width: 520px;
        }

/* ============================================================
   NEW: live markets video banner ("Choose your pool" section)
   ============================================================ */
.groups-video-banner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 40px;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
    background: var(--navy-950);
    box-shadow: var(--shadow);
}

.gvb-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gvb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,15,36,.35) 0%, rgba(5,15,36,.55) 55%, rgba(5,15,36,.92) 100%);
}

.gvb-content {
    position: relative;
    z-index: 2;
    padding: 32px 36px;
    max-width: 620px;
}

    .gvb-content .live-badge {
        margin-bottom: 14px;
    }

    .gvb-content h3 {
        color: #fff;
        font-size: clamp(19px,2.4vw,26px);
        font-weight: 700;
        margin-bottom: 8px;
        letter-spacing: -.01em;
    }

    .gvb-content p {
        color: rgba(230,238,255,.72);
        font-size: 14px;
        max-width: 54ch;
    }

/* NOTE: "View Pool" now uses the original .group-link text-arrow style
   (defined above, under "investment groups") rather than a filled button —
   simpler, and consistent with the .group-link hover micro-interaction
   already used across the group cards. */

/* ---------- process ---------- */
.process {
    background: var(--navy-950);
    color: #fff;
}

    .process .kicker {
        color: var(--gold-500);
    }

        .process .kicker::before {
            background: var(--gold-500);
        }

    .process .section-title {
        color: #fff;
    }

    .process .section-sub {
        color: rgba(230,238,255,.6);
    }

.steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2px;
    background: rgba(255,255,255,.08);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
}

.step {
    background: var(--navy-950);
    padding: 36px 28px;
    position: relative;
}

    .step .num {
        font-family: 'Space Grotesk';
        font-size: 44px;
        font-weight: 700;
        color: rgba(255,255,255,.12);
        margin-bottom: 14px;
    }

    .step h4 {
        color: #fff;
        font-size: 17px;
        margin-bottom: 10px;
    }

    .step p {
        color: rgba(230,238,255,.6);
        font-size: 13.8px;
    }

.step-arrow {
    position: absolute;
    right: -11px;
    top: 44%;
    color: rgba(255,255,255,.2);
    font-size: 20px;
    z-index: 3;
}

/* ============================================================
   NEW: Business Funding section (sits above PoolRide)
   Reuses the same tokens/components as PoolRide (pr-media,
   pr-chip, group-note, btn-ghost-light) so the visual language
   stays consistent, with its own bf- prefixed classes for the
   layout pieces that are unique to this section.
   ============================================================ */
.funding {
    background: var(--sky-50);
}

.bf-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}

.bf-steps {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin: 34px 0 6px;
}

.bf-step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px 22px;
}

.bf-step-num {
    font-family: 'Space Grotesk';
    font-size: 22px;
    font-weight: 700;
    color: var(--blue-500);
    margin-bottom: 8px;
}

.bf-step h5 {
    font-size: 15px;
    color: var(--ink-900);
    margin-bottom: 6px;
}

.bf-step p {
    font-size: 13.4px;
    color: var(--ink-500);
}

.bf-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.bf-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .bf-media img {
        width: 100%;
        height: 480px;
        object-fit: cover;
    }

.bf-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,15,36,0) 55%, rgba(5,15,36,.55) 100%);
    pointer-events: none;
}

/* reuses the .pr-chip look-and-feel via a shared class name */
.bf-chip {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 40px -10px rgba(10,27,61,.3);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: calc(50% - 20px);
    z-index: 2;
}

    .bf-chip.chip1 {
        top: 26px;
        left: 26px;
        animation: bob 4s ease-in-out infinite;
    }

    .bf-chip.chip2 {
        bottom: 26px;
        right: 26px;
        animation: bob 4s ease-in-out infinite 1.2s;
    }

    .bf-chip .avatar {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--blue-700);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 13px;
        flex-shrink: 0;
    }

    .bf-chip .txt strong {
        display: block;
        font-size: 13px;
        color: var(--ink-900);
    }

    .bf-chip .txt span {
        font-size: 11.5px;
        color: var(--ink-500);
    }

.bf-gallery {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    margin-top: 60px;
}

.bf-gallery-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
}

    .bf-gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .bf-gallery-card:hover img {
        transform: scale(1.08);
    }

.bf-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,15,36,0) 45%, rgba(5,15,36,.7) 100%);
    pointer-events: none;
}

.bf-gallery-tag {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    background: rgba(5,15,36,.72);
    backdrop-filter: blur(4px);
    color: #fff;
    font-family: 'JetBrains Mono';
    font-size: 11px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 999px;
    letter-spacing: .02em;
}

/* ============================================================
   NEW: PTBN (Business Network) section — sits between Business
   Funding and PoolRide. The video banner reuses the exact
   .groups-video-banner shape under its own ptbn- prefix (rather
   than sharing .gvb-* directly) so each section's banner can
   evolve independently. Cards are a lighter, text-only sibling
   of .group-card — these are illustrative idea posts, not
   photographed investment pools, so there's no .group-media image.
   ============================================================ */
.ptbn {
    background: var(--white);
}

.ptbn-banner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 40px;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
    background: var(--navy-950);
    box-shadow: var(--shadow);
}

.ptbn-banner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ptbn-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,15,36,.35) 0%, rgba(5,15,36,.55) 55%, rgba(5,15,36,.92) 100%);
}

.ptbn-banner-content {
    position: relative;
    z-index: 2;
    padding: 32px 36px;
    max-width: 620px;
}

    .ptbn-banner-content .live-badge {
        margin-bottom: 14px;
    }

    .ptbn-banner-content h3 {
        color: #fff;
        font-size: clamp(19px,2.4vw,26px);
        font-weight: 700;
        margin-bottom: 8px;
        letter-spacing: -.01em;
    }

    .ptbn-banner-content p {
        color: rgba(230,238,255,.72);
        font-size: 14px;
        max-width: 54ch;
    }

.ptbn-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 26px;
    margin-bottom: 36px;
}

.ptbn-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform .35s ease, box-shadow .35s ease;
}

    .ptbn-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow);
    }

.ptbn-card-badge {
    display: inline-block;
    background: var(--sky-100);
    color: var(--blue-700);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: .02em;
    margin-bottom: 14px;
}

.ptbn-card h4 {
    font-size: 17px;
    margin-bottom: 10px;
}

.ptbn-card p {
    font-size: 14px;
    color: var(--ink-500);
    margin-bottom: 18px;
}

.ptbn-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-700);
}

.ptbn-card-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue-700);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.ptbn-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------- poolride ---------- */
.poolride {
    background: linear-gradient(180deg,#fff 0%, var(--sky-50) 100%);
}

.pr-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
}

.pr-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .pr-media img {
        width: 100%;
        height: 520px;
        object-fit: cover;
    }

    /* NEW: background video fills the same frame as the original photo */
    .pr-media video.pr-video {
        width: 100%;
        height: 520px;
        object-fit: cover;
        display: block;
    }

.pr-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,15,36,0) 55%, rgba(5,15,36,.55) 100%);
    pointer-events: none;
}

.pr-lagos-tag {
    position: absolute;
    left: 26px;
    bottom: 22px;
    z-index: 2;
    background: rgba(5,15,36,.72);
    backdrop-filter: blur(4px);
    color: #fff;
    font-family: 'JetBrains Mono';
    font-size: 11.5px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    letter-spacing: .02em;
}

.pr-chip {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 40px -10px rgba(10,27,61,.3);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: calc(50% - 20px);
    z-index: 2;
}

    .pr-chip.chip1 {
        top: 26px;
        left: 26px;
        animation: bob 4s ease-in-out infinite;
    }

    .pr-chip.chip2 {
        bottom: 26px;
        right: 26px;
        animation: bob 4s ease-in-out infinite 1.2s;
    }

@keyframes bob {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.pr-chip .avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue-700);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.pr-chip .txt strong {
    display: block;
    font-size: 13px;
    color: var(--ink-900);
}

.pr-chip .txt span {
    font-size: 11.5px;
    color: var(--ink-500);
}

.pr-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.pr-feat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

    .pr-feat .ic {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: var(--sky-100);
        color: var(--blue-700);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 19px;
        flex-shrink: 0;
    }

    .pr-feat h5 {
        font-size: 15.5px;
        color: var(--ink-900);
        margin-bottom: 4px;
    }

    .pr-feat p {
        font-size: 13.8px;
        color: var(--ink-500);
    }

/* ============================================================
   NEW: PoolRide CTA buttons ("Find a Ride" / "Drive with PoolRide")
   ============================================================ */
.pr-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Light-background variant of .btn-ghost, since the PoolRide section
   sits on a white/sky background rather than the dark hero. */
.btn-ghost-light {
    background: transparent;
    color: var(--navy-950);
    border: 1px solid var(--line);
}

    .btn-ghost-light:hover {
        background: var(--sky-100);
        border-color: var(--blue-500);
        transform: translateY(-3px);
    }

/* ============================================================
   NEW: PoolRide global reach — additional city footage
   (London, Cape Town, Paris) beneath the main pr-grid, using the
   same rounded/overlay/tag language as .pr-media / .pr-lagos-tag.
   ============================================================ */
.pr-global {
    margin-top: 64px;
}

.pr-global-head {
    max-width: 640px;
    margin: 0 auto 32px;
    text-align: center;
}

    .pr-global-head .kicker {
        justify-content: center;
    }

    .pr-global-head h3 {
        font-size: clamp(20px,2.6vw,28px);
        font-weight: 700;
        letter-spacing: -.01em;
        margin-bottom: 10px;
    }

    .pr-global-head p {
        color: var(--ink-500);
        font-size: 14.5px;
    }

.pr-global-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.pr-global-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
}

.pr-global-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pr-global-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,15,36,0) 45%, rgba(5,15,36,.7) 100%);
    pointer-events: none;
}

.pr-global-tag {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    background: rgba(5,15,36,.72);
    backdrop-filter: blur(4px);
    color: #fff;
    font-family: 'JetBrains Mono';
    font-size: 11px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 999px;
    letter-spacing: .02em;
}

/* ---------- trust band ---------- */
.trust {
    background: var(--navy-900);
    color: #fff;
    overflow: hidden;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    padding: 70px 0 50px;
}

.trust-item {
    text-align: left;
}

    .trust-item .ic {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .trust-item h4 {
        color: #fff;
        font-size: 16.5px;
        margin-bottom: 8px;
    }

    .trust-item p {
        color: rgba(230,238,255,.6);
        font-size: 13.6px;
    }

.marquee-wrap {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 22px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee {
    display: inline-flex;
    gap: 50px;
    animation: scroll-left 26s linear infinite;
}

    .marquee span {
        font-family: 'JetBrains Mono';
        font-size: 13px;
        color: rgba(230,238,255,.55);
        letter-spacing: .05em;
    }

@keyframes scroll-left {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ---------- CTA banner ---------- */
.cta-band {
    background: linear-gradient(120deg,var(--blue-700),#0642B8);
    border-radius: 28px;
    padding: 60px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .cta-band::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(244,185,66,.25);
        border-radius: 50%;
        filter: blur(60px);
        top: -100px;
        right: -60px;
    }

    .cta-band h3 {
        color: #fff;
        font-size: clamp(22px,3vw,30px);
        max-width: 460px;
        position: relative;
        z-index: 2;
    }

    .cta-band p {
        color: rgba(255,255,255,.8);
        margin-top: 10px;
        position: relative;
        z-index: 2;
    }

    .cta-band .btn-primary {
        background: #fff;
        color: var(--navy-950);
        box-shadow: 0 12px 28px -8px rgba(0,0,0,.35);
        position: relative;
        z-index: 2;
    }

        .cta-band .btn-primary:hover {
            background: var(--gold-500);
        }

/* ---------- footer ---------- */
footer {
    background: var(--navy-950);
    color: rgba(230,238,255,.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    max-width: 280px;
    color: rgba(230,238,255,.55);
    margin-bottom: 20px;
}

.social-row {
    display: flex;
    gap: 10px;
}

    .social-row a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        transition: background .2s, transform .2s;
    }

        .social-row a:hover {
            background: var(--blue-700);
            transform: translateY(-3px);
        }

footer h5 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 18px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

footer ul li {
    margin-bottom: 11px;
    font-size: 14px;
}

    footer ul li a:hover {
        color: var(--gold-500);
    }

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

    .foot-bottom .legal-links {
        display: flex;
        gap: 22px;
        flex-wrap: wrap;
    }

.lang-curr {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .lang-curr select {
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.15);
        color: #fff;
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 13px;
    }

/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

/* Large tablets / small laptops */
@media (max-width:1100px) {
    .wrap {
        padding: 0 26px;
    }

    .groups-grid {
        grid-template-columns: repeat(2,1fr);
    }

    /* NEW: video banner scales down a touch on smaller laptops */
    .groups-video-banner {
        min-height: 230px;
    }

    /* NEW: global PoolRide gallery keeps a comfortable 3-up until tablets */
    .pr-global-grid {
        gap: 18px;
    }

    /* NEW: Business Funding gallery keeps 3-up until tablets */
    .bf-gallery {
        gap: 18px;
    }

    /* NEW: PTBN video banner scales down a touch on smaller laptops */
    .ptbn-banner {
        min-height: 230px;
    }
}

/* Tablets */
@media (max-width:980px) {
    .hero {
        padding-top: 130px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .persona-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .persona-card:nth-child(2), .persona-card:nth-child(4) {
        transform: none;
    }

    .groups-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .steps {
        grid-template-columns: repeat(2,1fr);
    }

    .step-arrow {
        display: none;
    }

    .pr-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pr-media img {
        height: 380px;
    }

    /* NEW: keep video in step with the photo's responsive height */
    .pr-media video.pr-video {
        height: 380px;
    }

    /* NEW: global PoolRide gallery drops to 2-up on tablets */
    .pr-global-grid {
        grid-template-columns: repeat(2,1fr);
    }

    /* NEW: Business Funding — stack media under text, drop steps to 2-up (already 2) and gallery to 2-up */
    .bf-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

        .bf-grid > .reveal:first-child {
            order: 1;
        }

    .bf-media {
        order: 2;
    }

        .bf-media img {
            height: 360px;
        }

    .bf-gallery {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 40px;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .section-pad {
        padding: 80px 0;
    }

    .group-card-featured {
        grid-template-columns: 1fr;
    }

        .group-card-featured .group-media {
            height: 220px;
        }

            .group-card-featured .group-media video.hmh-video {
                min-height: 220px;
            }

    /* NEW */
    .groups-video-banner {
        min-height: 200px;
    }

    .gvb-content {
        padding: 26px 24px;
    }

        .gvb-content h3 {
            font-size: 19px;
        }

    /* NEW: PTBN — cards drop to 2-up, banner matches the groups-video-banner tablet treatment */
    .ptbn-cards {
        grid-template-columns: repeat(2,1fr);
    }

    .ptbn-banner {
        min-height: 200px;
    }

    .ptbn-banner-content {
        padding: 26px 24px;
    }

        .ptbn-banner-content h3 {
            font-size: 19px;
        }
}

/* Phones */
@media (max-width:600px) {
    .wrap {
        padding: 0 20px;
    }

    .persona-grid {
        grid-template-columns: 1fr;
    }

    .groups-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-band {
        padding: 40px 26px;
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-row {
        gap: 24px;
    }

    .hero {
        padding-top: 110px;
    }

    .section-pad {
        padding: 60px 0;
    }

    .market-panel {
        padding: 16px;
    }

    .pr-media img {
        height: 280px;
    }

    /* NEW: match phone-sized video height to the photo fallback */
    .pr-media video.pr-video {
        height: 280px;
    }

    .pr-chip {
        position: static;
        max-width: 100%;
        margin-top: 10px;
        animation: none;
    }

        .pr-chip.chip1 {
            margin-top: 0;
        }

    .pr-media {
        display: flex;
        flex-direction: column;
    }

    /* NEW: on phones the chips stack below the media, so the absolutely
       positioned Lagos tag and overlay would otherwise float oddly */
    .pr-lagos-tag {
        position: static;
        display: inline-block;
        margin-top: 10px;
    }

    .pr-media-overlay {
        display: none;
    }

    /* NEW: global PoolRide gallery stacks to a single column on phones */
    .pr-global-grid {
        grid-template-columns: 1fr;
    }

    .pr-global-card {
        aspect-ratio: 16/10;
    }

    /* NEW: Business Funding — single column steps/gallery, static chips on phones */
    .bf-steps {
        grid-template-columns: 1fr;
    }

    .bf-gallery {
        grid-template-columns: 1fr;
    }

    .bf-gallery-card {
        aspect-ratio: 16/10;
    }

    .bf-media img {
        height: 260px;
    }

    .bf-chip {
        position: static;
        max-width: 100%;
        margin-top: 10px;
        animation: none;
    }

        .bf-chip.chip1 {
            margin-top: 0;
        }

    .bf-media {
        display: flex;
        flex-direction: column;
    }

    .bf-media-overlay {
        display: none;
    }

    .bf-cta {
        flex-direction: column;
        align-items: stretch;
    }

        .bf-cta .btn {
            width: 100%;
        }

    .foot-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    /* NEW */
    .groups-video-banner {
        min-height: 0;
        flex-direction: column;
        background: var(--navy-950);
    }

    .gvb-content {
        position: static;
        padding: 20px;
        max-width: none;
    }

    .gvb-video {
        position: relative;
        height: 180px;
    }

    .gvb-overlay {
        display: none;
    }

    .pr-cta {
        flex-direction: column;
        align-items: stretch;
    }

        .pr-cta .btn {
            width: 100%;
        }

    /* NEW: PTBN — single-column cards, stacked CTA buttons, banner matches the
       groups-video-banner phone treatment (video stacks above static content) */
    .ptbn-cards {
        grid-template-columns: 1fr;
    }

    .ptbn-cta {
        flex-direction: column;
        align-items: stretch;
    }

        .ptbn-cta .btn {
            width: 100%;
        }

    .ptbn-banner {
        min-height: 0;
        flex-direction: column;
        background: var(--navy-950);
    }

    .ptbn-banner-content {
        position: static;
        padding: 20px;
        max-width: none;
    }

    .ptbn-banner-video {
        position: relative;
        height: 180px;
    }

    .ptbn-banner-overlay {
        display: none;
    }
}

/* Small phones */
@media (max-width:420px) {
    .hero h1 {
        font-size: 30px;
    }

    .btn {
        padding: 13px 22px;
        font-size: 14px;
    }

    .stat-row {
        gap: 18px;
    }

    .stat .num {
        font-size: 22px;
    }

    .cta-band h3 {
        font-size: 22px;
    }

    .group-card-featured .group-media {
        height: 180px;
    }

        .group-card-featured .group-media video.hmh-video {
            min-height: 180px;
        }
}

/* =====================================================
   Accessibility: respect reduced-motion preference by
   freezing background videos on their poster frame.
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    .gvb-video, .pr-video, .hmh-video, .pr-global-video, .ptbn-banner-video {
        display: none;
    }
}
