/* =========================================================
   BODYPOWER WORKSHOPS
   Core Design System
   ========================================================= */

:root {
    --bp-bg: #050505;
    --bp-bg-soft: #0f0f10;
    --bp-panel: #151515;

    --bp-white: #f5f5f2;
    --bp-silver: #b7b7b2;
    --bp-muted: #8d8d87;

    --bp-gold: #d4aa2a;
    --bp-gold-soft: rgba(212, 170, 42, 0.14);
    --bp-gold-strong: #e0b93f;

    --bp-border: rgba(255, 255, 255, 0.12);

    --bp-container: 1440px;

    --bp-radius-sm: 6px;
    --bp-radius-md: 12px;
    --bp-radius-lg: 20px;

    --bp-transition: 220ms ease;
}

/* RESET */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bp-bg);
    color: var(--bp-white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

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

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

button,
input {
    font: inherit;
}

/* SHARED CONTAINER */

.bp-container {
    width: min(calc(100% - 40px), var(--bp-container));
    margin-inline: auto;
}

/* ACCESSIBILITY */

:focus-visible {
    outline: 2px solid var(--bp-gold);
    outline-offset: 4px;
}

/* TEMPORARY FOUNDATION SCREEN */

.build-test {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.build-test__inner {
    max-width: 800px;
}

.build-test__label {
    margin-bottom: 20px;
   color: var(--bp-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.build-test h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 8vw, 92px);
    line-height: 0.92;
    letter-spacing: -0.04em;
}

.build-test p {
    margin: 0;
    color: var(--bp-silver);
    font-size: 18px;
    line-height: 1.6;
}

/* MOBILE */

@media (max-width: 767px) {
    .bp-container {
        width: min(calc(100% - 28px), var(--bp-container));
    }

    .build-test {
        padding: 32px 14px;
    }

    .build-test h1 {
        font-size: clamp(40px, 14vw, 62px);
    }

    .build-test p {
        font-size: 16px;
    }
}
/* =========================================================
   HEADER
   ========================================================= */

.bp-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bp-header__inner {
    min-height: 104px;
    display: grid;
    grid-template-columns: 300px 1fr auto;
    align-items: center;
    gap: 40px;
}

.bp-brand {
    display: block;
    width: 280px;
}

.bp-brand img {
    width: 100%;
    height: auto;
}

.bp-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 3vw, 52px);
}

.bp-nav a {
    position: relative;
    color: var(--bp-silver);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition:
        color var(--bp-transition),
        transform var(--bp-transition);
}

.bp-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -12px;
    height: 1px;
    background: var(--bp-gold);
    transition: right var(--bp-transition);
}

.bp-nav a:hover {
    color: var(--bp-white);
}

.bp-nav a:hover::after {
    right: 0;
}

.bp-header__tickets {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 48px;
    padding: 0 23px;
    border: 1px solid var(--bp-gold);
    color: var(--bp-white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition:
        background var(--bp-transition),
        color var(--bp-transition);
}

.bp-header__tickets:hover {
    background: var(--bp-gold);
    color: #070707;
}


/* =========================================================
   HERO
   ========================================================= */

.bp-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    padding: 166px 0 70px;
    background:
        radial-gradient(
            circle at 78% 42%,
            rgba(212, 170, 42, 0.075),
            transparent 28%
        ),
        linear-gradient(
            90deg,
            #050505 0%,
            #050505 48%,
            #080808 100%
        );
}

.bp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.17;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(
        90deg,
        transparent,
        #000 52%,
        #000
    );
}

.bp-hero::after {
    content: "";
    position: absolute;
    right: -5vw;
    bottom: 8%;
    width: 48vw;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--bp-gold),
        transparent
    );
    transform: rotate(-22deg);
    box-shadow:
        0 0 28px rgba(212, 170, 42, 0.35);
}

.bp-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.75fr);
    gap: clamp(50px, 7vw, 130px);
    align-items: center;
    min-height: calc(100svh - 236px);
}

.bp-hero__content {
    max-width: 850px;
}

.bp-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--bp-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.bp-hero__eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: var(--bp-gold);
}

.bp-hero__title {
    max-width: 820px;
    margin: 0;
    font-size: clamp(68px, 6.25vw, 120px);
    font-weight: 900;
    line-height: 0.82;
    letter-spacing: -0.065em;
    text-transform: uppercase;
}

.bp-hero__title span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(245, 245, 242, 0.78);
}

.bp-hero__intro {
    max-width: 650px;
    margin: 35px 0 0;
    color: var(--bp-silver);
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.65;
}

.bp-hero__event {
    display: flex;
    flex-wrap: wrap;
    gap: 36px 54px;
    margin-top: 35px;
}

.bp-hero__event > div {
    position: relative;
    padding-left: 16px;
    border-left: 1px solid var(--bp-gold);
}

.bp-hero__event small {
    display: block;
    margin-bottom: 4px;
    color: var(--bp-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.bp-hero__event strong {
    font-size: 13px;
    letter-spacing: 0.08em;
}

.bp-hero__topics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    max-width: 720px;
    margin-top: 34px;
}

.bp-hero__topics a {
    min-height: 49px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    border: 1px solid var(--bp-border);
    background: rgba(255, 255, 255, 0.018);
    color: var(--bp-silver);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition:
        border-color var(--bp-transition),
        background var(--bp-transition),
        color var(--bp-transition),
        transform var(--bp-transition);
}

.bp-hero__topics a span {
    color: var(--bp-gold);
    font-size: 8px;
}

.bp-hero__topics a:hover {
    transform: translateY(-2px);
    border-color: var(--bp-gold);
    background: var(--bp-gold-soft);
    color: var(--bp-white);
}

.bp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.bp-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 24px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition:
        transform var(--bp-transition),
        background var(--bp-transition),
        border-color var(--bp-transition),
        color var(--bp-transition);
}

.bp-button:hover {
    transform: translateY(-2px);
}

.bp-button--primary {
    background: var(--bp-gold);
    border: 1px solid var(--bp-gold);
    color: #070707;
}

.bp-button--primary:hover {
    background: var(--bp-gold-strong);
    border-color: var(--bp-gold-strong);
}

.bp-button--secondary {
    border: 1px solid var(--bp-border);
    color: var(--bp-white);
}

.bp-button--secondary:hover {
    border-color: var(--bp-gold);
}


/* =========================================================
   HERO VISUAL AREA
   ========================================================= */

.bp-hero__athletes {
    position: absolute;
    z-index: 3;

    right: 5%;
    bottom: -2%;

    width: auto;
    height: 104%;
    max-width: none;

    object-fit: contain;
    object-position: center bottom;

    display: block;
    opacity: 1;
    visibility: visible;

    pointer-events: none;

    filter: drop-shadow(
        -25px 10px 35px rgba(0, 0, 0, 0.55)
    );
}
.bp-hero__visual {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 55px;
    border-left: 1px solid rgba(255,255,255,0.075);
    
    overflow: hidden;
}

.bp-hero__visual::before,
.bp-hero__visual::after {
    content: "";
    position: absolute;
}

.bp-hero__visual::before {
    width: min(500px, 42vw);
    aspect-ratio: 1;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(212, 170, 42, 0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 0 55px rgba(255,255,255,0.018),
        0 0 0 110px rgba(255,255,255,0.012);
}

.bp-hero__visual::after {
    inset: 13% 6% 13% 10%;
    border-top: 1px solid rgba(255,255,255,.075);
    border-right: 1px solid rgba(255,255,255,.075);
}

.bp-hero__visual-number {
    position: absolute;
    top: 50%;
    left: 50%;
  color: rgba(212, 170, 42, 0.055);
    font-size: clamp(250px, 29vw, 520px);
    font-weight: 900;
    line-height: 0.7;
    letter-spacing: -0.1em;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.bp-hero__visual-line {
    position: absolute;
    top: 13%;
    right: 6%;
    width: 80px;
    height: 4px;
    background: var(--bp-gold);
}

.bp-hero__visual-line::before,
.bp-hero__visual-line::after {
    content: "";
    position: absolute;
    top: 0;
    width: 28px;
    height: 4px;
    background: var(--bp-white);
    transform: skewX(-35deg);
}

.bp-hero__visual-line::before {
    right: 94px;
}

.bp-hero__visual-line::after {
    right: 130px;
}

.bp-hero__visual-message {
    position: relative;
    z-index: 2;
    max-width: 370px;
    padding: 28px;
    background: rgba(5,5,5,.74);
    border: 1px solid rgba(255,255,255,.11);
    backdrop-filter: blur(8px);
}

.bp-hero__visual-message small {
    display: block;
    margin-bottom: 18px;
    color: var(--bp-gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
}

.bp-hero__visual-message strong {
    display: block;
    font-size: clamp(27px, 2.1vw, 40px);
    line-height: .95;
    letter-spacing: -.04em;
}

.bp-hero__visual-message span {
    display: block;
    margin-top: 17px;
    color: var(--bp-silver);
    font-size: 13px;
}


/* =========================================================
   HERO MOBILE
   ========================================================= */

@media (max-width: 980px) {
    
  .bp-hero__athletes {
    right: 50%;
    bottom: -15%;

    transform: translateX(50%);

    width: auto;
    height: 115%;
    max-width: none;

    object-fit: contain;
    object-position: center bottom;

    opacity: 1;
}
.bp-hero__visual-number {
    display: block;
    z-index: 2;

    top: 47%;
    left: 50%;

    color: rgba(212, 170, 42, 0.065);
    font-size: 270px;
}

.bp-hero__visual-message {
    position: absolute;
    z-index: 5;

    left: 16px;
    right: 16px;
    bottom: 14px;

    width: auto;
    max-width: none;

    padding: 16px 18px;

    background: rgba(5, 5, 5, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.13);

    backdrop-filter: blur(10px);
}

.bp-hero__visual-message small {
    margin-bottom: 9px;
    font-size: 7px;
}

.bp-hero__visual-message strong {
    font-size: 24px;
}

.bp-hero__visual-message span {
    margin-top: 8px;
    font-size: 11px;
}

    .bp-header {
        position: relative;
        background: #050505;
    }

    .bp-header__inner {
        min-height: 84px;
        grid-template-columns: 1fr auto;
        gap: 15px;
    }

    .bp-brand {
        width: 205px;
    }

    .bp-nav {
        display: none;
    }

    .bp-header__tickets {
        min-height: 42px;
        padding: 0 15px;
        font-size: 9px;
    }

    .bp-hero {
        min-height: auto;
        padding: 60px 0 0;
    }

    .bp-hero__grid {
    display: flex;
    flex-direction: column;
    min-height: auto;
}

    .bp-hero__content {
        max-width: none;
    }

    .bp-hero__title {
        font-size: clamp(53px, 13vw, 88px);
        line-height: 0.84;
    }

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

    .bp-hero__visual {
    order: -1;

    width: calc(100% + 28px);
    min-height: 430px;

    margin:
        -20px -14px
        38px;

    padding: 0;

    border-top: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);

    overflow: hidden;
}

    .bp-hero__visual::before {
        width: 280px;
    }

    .bp-hero__visual-message {
        width: 100%;
        max-width: 330px;
    }

}


@media (max-width: 520px) {

    .bp-header__inner {
        min-height: 73px;
    }

    .bp-brand {
        width: 168px;
    }

    .bp-header__tickets {
        min-height: 38px;
        padding-inline: 12px;
    }

    .bp-header__tickets span {
        display: none;
    }

    .bp-hero {
        padding-top: 45px;
    }

    .bp-hero__eyebrow {
        margin-bottom: 21px;
        font-size: 10px;
    }

    .bp-hero__title {
        font-size: clamp(48px, 15vw, 70px);
    }

    .bp-hero__intro {
        margin-top: 27px;
        font-size: 15px;
    }

    .bp-hero__event {
        display: grid;
        gap: 17px;
        margin-top: 27px;
    }

    .bp-hero__topics {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
        margin-top: 27px;
    }

    .bp-hero__topics a {
        min-height: 46px;
        padding-inline: 11px;
        font-size: 8.5px;
    }

    .bp-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bp-button {
        width: 100%;
    }

}
/* =========================================================
   FINAL HERO COMPOSITION
   Desktop + Mobile
   Keep this at the VERY END of the stylesheet
   ========================================================= */


/* ---------- DESKTOP ---------- */

.bp-hero__visual {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.bp-hero__athletes {
    position: absolute;
    z-index: 3;

    right: 1%;
    bottom: -16%;

    width: auto;
    height: 118%;
    max-width: none;

    object-fit: contain;
    object-position: center bottom;

    transform: none;
    opacity: 1;
    visibility: visible;

    pointer-events: none;
}

.bp-hero__visual-number {
    display: block;

    position: absolute;
    z-index: 1;

    top: 49%;
    left: 45%;

    color: rgba(212, 170, 42, 0.055);

    font-size: clamp(260px, 26vw, 470px);
}

.bp-hero__visual-line {
    z-index: 6;
    top: 8%;
    right: 4%;
}

.bp-hero__visual-message {
    position: absolute;

    z-index: 7;

    right: 3%;
    left: auto;
    bottom: 3%;

    width: min(350px, 72%);
    max-width: 350px;

    padding: 22px 24px;

    background: rgba(5, 5, 5, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.14);

    backdrop-filter: blur(12px);
}

.bp-hero__visual-message small {
    display: block;

    margin-bottom: 11px;

    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.bp-hero__visual-message strong {
    display: block;

    font-size: clamp(25px, 2vw, 34px);
    line-height: 0.92;
}

.bp-hero__visual-message span {
    display: block;

    margin-top: 11px;

    color: var(--bp-silver);

    font-size: 11px;
}


/* =========================================================
   MOBILE — HEADLINE + ATHLETES AS ONE COMPOSITION
   ========================================================= */

@media (max-width: 980px) {

    .bp-hero {
        position: relative;

        min-height: auto;

        padding:
            34px
            0
            54px;
    }

    .bp-hero__grid {
        position: relative;

        display: block;

        min-height: auto;
    }

    .bp-hero__content {
        position: relative;

        z-index: 5;

        max-width: none;
    }


    /* Athlete artwork becomes part of the opening screen */

    .bp-hero__visual {
        position: absolute;

        z-index: 1;

        top: 0;
        left: -14px;
        right: auto;

        width: calc(100% + 28px);
        height: 540px;
        min-height: 0;

        margin: 0;
        padding: 0;

        border: 0;

        overflow: hidden;

        pointer-events: none;
    }


    .bp-hero__athletes {
        position: absolute;

        z-index: 3;

        right: -12%;
        bottom: -13%;

        width: auto;
        height: 108%;
        max-width: none;

        object-fit: contain;
        object-position: center bottom;

        transform: none;

        opacity: 1;
    }


    /* 26 = 2026 */

    .bp-hero__visual-number {
        display: block;

        z-index: 1;

        top: 43%;
        left: 53%;

        color: rgba(212, 170, 42, 0.075);

        font-size: 255px;
    }


    .bp-hero__visual-line {
        z-index: 6;

        top: 7%;
        right: 7%;
    }


    /* Overlay hides/crops lower body deliberately */

    .bp-hero__visual-message {
        position: absolute;

        z-index: 7;

        left: 18px;
        right: 18px;
        bottom: 12px;

        width: auto;
        max-width: none;

        padding: 15px 17px;

        background: rgba(5, 5, 5, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.14);

        backdrop-filter: blur(12px);
    }

    .bp-hero__visual-message small {
        margin-bottom: 8px;

        font-size: 7px;
    }

    .bp-hero__visual-message strong {
        font-size: 23px;
        line-height: 0.92;
    }

    .bp-hero__visual-message span {
        margin-top: 7px;

        font-size: 10px;
    }


    /* Headline stays in front of the artwork */

    .bp-hero__eyebrow {
        position: relative;

        z-index: 8;
    }

    .bp-hero__title {
        position: relative;

        z-index: 8;

        width: 78%;
        max-width: 390px;

        font-size: clamp(50px, 13vw, 74px);
        line-height: 0.83;
    }


    /*
       The artwork is absolute, so this creates room beneath
       the opening composition before normal content continues.
    */

    .bp-hero__intro {
        margin-top: 340px;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 520px) {

    .bp-hero {
        padding-top: 26px;
    }

    .bp-hero__visual {
        height: 500px;
    }

    .bp-hero__title {
        width: 79%;

        font-size: clamp(46px, 13.2vw, 60px);
    }

    .bp-hero__athletes {
        right: -18%;
        bottom: -14%;

        height: 110%;
    }

    .bp-hero__visual-number {
        top: 43%;
        left: 54%;

        font-size: 225px;
    }

    .bp-hero__visual-message {
        left: 14px;
        right: 14px;
        bottom: 11px;

        padding: 13px 14px;
    }

    .bp-hero__visual-message strong {
        font-size: 21px;
    }

    .bp-hero__visual-message span {
        font-size: 10px;
    }

    .bp-hero__intro {
        margin-top: 315px;
    }

}
/* =========================================================
   FINAL PHONE HERO POSITIONING
   Keep headline clear + retain athlete artwork
   ========================================================= */

/* =========================================================
   FINAL PHONE HERO — REFINED
   Headline + athletes together
   ========================================================= */

/* =========================================================
   FINAL PHONE HERO
   CONTENT FIRST → ATHLETES AFTER CTA
   ========================================================= */

@media (max-width: 520px) {

    .bp-hero {
        padding: 34px 0 0;
    }

    /*
       Restore natural HTML order:
       content first, athlete visual afterwards
    */
    .bp-hero__grid {
        display: block;
        min-height: auto;
    }

    .bp-hero__content {
        position: relative;
        z-index: 5;
        max-width: none;
    }


    /* BODYPOWER 2026 */

    .bp-hero__eyebrow {
        position: relative;
        z-index: 5;

        width: 100%;
        padding-right: 0;

        margin-bottom: 22px;
    }


    /* Main headline */

    .bp-hero__title {
        position: relative;
        z-index: 5;

        width: 100%;
        max-width: 100%;

        font-size: clamp(48px, 14vw, 64px);
        line-height: 0.84;
    }


    /* Normal content follows headline immediately */

    .bp-hero__intro {
        position: relative;
        z-index: 5;

        margin-top: 28px;

        font-size: 15px;
        line-height: 1.65;
    }


    /* Date / venue */

    .bp-hero__event {
        position: relative;
        z-index: 5;

        margin-top: 28px;
    }


    /* Make the six key subjects prominent */

    .bp-hero__topics {
        position: relative;
        z-index: 5;

        grid-template-columns: 1fr 1fr;

        gap: 6px;

        margin-top: 28px;
    }

    .bp-hero__topics a {
        min-height: 52px;

        padding: 0 12px;

        font-size: 9px;
    }


    /* CTAs before athlete artwork */

    .bp-hero__actions {
        position: relative;
        z-index: 5;

        display: grid;
        grid-template-columns: 1fr;

        gap: 9px;

        margin-top: 24px;
    }

    .bp-button {
        width: 100%;
        min-height: 58px;
    }


    /* =====================================================
       BODYPOWER CAMPAIGN VISUAL
       Appears AFTER topics + CTAs
       ===================================================== */

    .bp-hero__visual {
        position: relative;

        top: auto;
        left: auto;
        right: auto;

        width: calc(100% + 28px);
        height: 455px;
        min-height: 455px;

        margin:
            42px
            -14px
            0;

        padding: 0;

        border-top: 1px solid rgba(255,255,255,.08);
        border-left: 0;
        border-bottom: 0;

        overflow: hidden;

        pointer-events: none;
    }


    /* Athletes */

    .bp-hero__athletes {
        position: absolute;

        z-index: 3;

        right: -10%;
        bottom: -18%;

        width: auto;
        height: 112%;
        max-width: none;

        transform: none;

        object-fit: contain;
        object-position: center bottom;

        opacity: 1;
    }


    /* Faint 26 / 2026 device */

    .bp-hero__visual-number {
        display: block;

        position: absolute;

        z-index: 1;

        top: 48%;
        left: 50%;

        font-size: 225px;

        color: rgba(212, 170, 42, 0.07);
    }


    /* Two white + one gold BODYPOWER detail */

    .bp-hero__visual-line {
        top: 8%;
        right: 6%;

        width: 48px;
        height: 3px;

        z-index: 6;
    }

    .bp-hero__visual-line::before,
    .bp-hero__visual-line::after {
        width: 18px;
        height: 3px;
    }

    .bp-hero__visual-line::before {
        right: 58px;
    }

    .bp-hero__visual-line::after {
        right: 82px;
    }


    /* ONE BODY card hides the lower-leg crop */

    .bp-hero__visual-message {
        position: absolute;

        z-index: 8;

        left: 14px;
        right: 14px;
        bottom: 12px;

        width: auto;
        max-width: none;

        padding: 15px 16px;

        background: rgba(5,5,5,.94);
        border: 1px solid rgba(255,255,255,.14);

        backdrop-filter: blur(12px);
    }

    .bp-hero__visual-message small {
        margin-bottom: 8px;

        font-size: 7px;
    }

    .bp-hero__visual-message strong {
        font-size: 22px;
        line-height: 0.94;
    }

    .bp-hero__visual-message span {
        margin-top: 8px;

        font-size: 10px;
    }

}
/* FINAL MOBILE ATHLETE POSITION */

@media (max-width: 520px) {

    .bp-hero__athletes {
        left: 50%;
        right: auto;

        transform: translateX(-50%);

        bottom: -18%;

        width: auto;
        height: 108%;
        max-width: none;

        object-fit: contain;
        object-position: center bottom;
    }

}
/* =========================================================
   SECTION 02 — BODYPOWER EVOLUTION
   ========================================================= */

.bp-evolution {
    position: relative;

    padding: 130px 0;

    background:
        linear-gradient(
            180deg,
            #050505 0%,
            #090806 100%
        );

    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);

    overflow: hidden;
}

.bp-evolution::before {
    content: "EVOLUTION";

    position: absolute;

    right: -1%;
    bottom: -8%;

    font-size: clamp(120px, 16vw, 270px);
    font-weight: 900;
    line-height: .75;

    color: rgba(255,255,255,.018);

    pointer-events: none;
}

.bp-evolution__index,
.bp-paths__index {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 44px;

    color: var(--bp-gold);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;

    text-transform: uppercase;
}

.bp-evolution__index span,
.bp-paths__index span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border: 1px solid rgba(212,170,42,.42);

    font-size: 9px;
}

.bp-evolution__grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, .85fr);

    gap: clamp(70px, 10vw, 180px);

    align-items: end;
}

.bp-evolution__title {
    margin: 0;

    font-size: clamp(60px, 7.4vw, 118px);
    line-height: .82;

    letter-spacing: -.055em;

    color: var(--bp-white);
}

.bp-evolution__title span {
    color: transparent;

    -webkit-text-stroke:
        1px rgba(212,170,42,.8);

    text-stroke:
        1px rgba(212,170,42,.8);
}

.bp-evolution__copy {
    max-width: 500px;

    padding-left: 30px;

    border-left: 1px solid rgba(212,170,42,.45);
}

.bp-evolution__copy p {
    margin: 0 0 19px;

    color: var(--bp-silver);

    font-size: 15px;
    line-height: 1.75;
}

.bp-evolution__copy .bp-evolution__lead {
    color: var(--bp-white);

    font-size: 19px;
    line-height: 1.5;
}

.bp-evolution__copy .bp-evolution__statement {
    margin-top: 31px;
    margin-bottom: 0;

    color: var(--bp-gold);

    font-weight: 800;

    letter-spacing: .02em;
}


/* =========================================================
   SECTION 03 — CHOOSE YOUR PATH
   ========================================================= */

.bp-paths {
    position: relative;

    padding: 135px 0 150px;

    background: #050505;

    overflow: hidden;
}

.bp-paths::before {
    content: "06";

    position: absolute;

    top: 7%;
    right: -1%;

    color: rgba(212,170,42,.025);

    font-size: clamp(250px, 37vw, 620px);
    font-weight: 900;
    line-height: .7;

    pointer-events: none;
}

.bp-paths__header {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 470px);

    gap: 80px;

    align-items: end;

    margin-bottom: 72px;
}

.bp-paths__header h2 {
    margin: 0;

    color: var(--bp-white);

    font-size: clamp(70px, 8vw, 126px);
    line-height: .78;

    letter-spacing: -.055em;
}

.bp-paths__header h2 span {
    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.68);
}

.bp-paths__intro {
    padding-left: 28px;

    border-left: 1px solid rgba(212,170,42,.45);

    color: var(--bp-silver);

    font-size: 15px;
    line-height: 1.7;
}

.bp-paths__intro strong {
    display: block;

    margin-top: 16px;

    color: var(--bp-white);
}


/* ---------- PATH GRID ---------- */

.bp-paths__grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 8px;
}


/* ---------- INDIVIDUAL PATH ---------- */

.bp-path-card {
    position: relative;

    min-height: 330px;

    display: flex;
    flex-direction: column;

    padding: 27px;

    border: 1px solid rgba(255,255,255,.12);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.022),
            rgba(255,255,255,.002)
        );

    color: inherit;

    text-decoration: none;

    overflow: hidden;

    transition:
        transform .28s ease,
        border-color .28s ease,
        background .28s ease;
}

.bp-path-card::before {
    content: "";

    position: absolute;

    inset: auto 0 0 0;

    height: 3px;

    background: var(--bp-gold);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .28s ease;
}

.bp-path-card::after {
    content: "";

    position: absolute;

    top: -70px;
    right: -70px;

    width: 160px;
    height: 160px;

    border: 1px solid rgba(212,170,42,.14);

    border-radius: 50%;

    transition: transform .4s ease;
}

.bp-path-card:hover {
    transform: translateY(-6px);

    border-color: rgba(212,170,42,.6);

    background:
        linear-gradient(
            145deg,
            rgba(212,170,42,.08),
            rgba(255,255,255,.015)
        );
}

.bp-path-card:hover::before {
    transform: scaleX(1);
}

.bp-path-card:hover::after {
    transform: scale(1.3);
}


/* ---------- NUMBER ---------- */

.bp-path-card__number {
    color: var(--bp-gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .12em;
}


/* ---------- CONTENT ---------- */

.bp-path-card__content {
    margin-top: auto;

    max-width: 90%;
}

.bp-path-card__content small {
    display: block;

    margin-bottom: 14px;

    color: var(--bp-muted);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .13em;
}

.bp-path-card__content h3 {
    margin: 0 0 15px;

    color: var(--bp-white);

    font-size: clamp(28px, 2.7vw, 44px);
    line-height: .92;

    letter-spacing: -.035em;
}

.bp-path-card__content p {
    margin: 0;

    color: var(--bp-silver);

    font-size: 12px;
    line-height: 1.6;
}


/* ---------- ARROW ---------- */

.bp-path-card__arrow {
    position: absolute;

    top: 25px;
    right: 27px;

    color: var(--bp-white);

    font-size: 20px;

    transition:
        color .25s ease,
        transform .25s ease;
}

.bp-path-card:hover .bp-path-card__arrow {
    color: var(--bp-gold);

    transform: translateX(5px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

    .bp-evolution {
        padding: 90px 0;
    }

    .bp-evolution__grid {
        grid-template-columns: 1fr;

        gap: 52px;
    }

    .bp-evolution__copy {
        max-width: 650px;
    }


    .bp-paths {
        padding: 95px 0 110px;
    }

    .bp-paths__header {
        grid-template-columns: 1fr;

        gap: 42px;

        margin-bottom: 52px;
    }

    .bp-paths__intro {
        max-width: 600px;
    }

    .bp-paths__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .bp-evolution {
        padding: 72px 0;
    }

    .bp-evolution__index,
    .bp-paths__index {
        margin-bottom: 30px;
    }

    .bp-evolution__title {
        font-size: 53px;
        line-height: .84;
    }

    .bp-evolution__copy {
        padding-left: 18px;
    }

    .bp-evolution__copy .bp-evolution__lead {
        font-size: 17px;
    }


    .bp-paths {
        padding: 75px 0 90px;
    }

    .bp-paths__header h2 {
        font-size: 58px;
    }

    .bp-paths__intro {
        padding-left: 18px;
    }


    /*
       One large selectable path per row.
       Feels more like choosing a mission than browsing cards.
    */

    .bp-paths__grid {
        grid-template-columns: 1fr;

        gap: 7px;
    }

    .bp-path-card {
        min-height: 190px;

        padding: 21px;
    }

    .bp-path-card__content {
        max-width: 88%;
    }

    .bp-path-card__content h3 {
        font-size: 32px;
    }

    .bp-path-card__content p {
        max-width: 290px;
    }

}
/* =========================================================
   TOPIC WORLD — MASTER SYSTEM
   GLP-1
   ========================================================= */

.bp-topic-world {
    position: relative;

    padding: 140px 0 150px;

    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(212, 170, 42, .075),
            transparent 29%
        ),
        linear-gradient(
            180deg,
            #080806 0%,
            #050505 46%,
            #080806 100%
        );

    border-top: 1px solid rgba(255,255,255,.08);

    overflow: hidden;

    scroll-margin-top: 80px;
}


/* HUGE BACKGROUND 03 */

.bp-topic-world::before {
    content: attr(data-topic-number);

    position: absolute;

    z-index: 0;

    top: 70px;
    right: -3%;

    color: rgba(212,170,42,.027);

    font-size: clamp(300px, 42vw, 700px);
    font-weight: 900;
    line-height: .7;

    letter-spacing: -.09em;

    pointer-events: none;
}


/* subtle technical grid */

.bp-topic-world::after {
    content: "";

    position: absolute;

    z-index: 0;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        );

    background-size: 110px 110px;

    mask-image:
        linear-gradient(
            180deg,
            transparent,
            #000 18%,
            #000 82%,
            transparent
        );

    pointer-events: none;
}

.bp-topic-world .bp-container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   TOPIC INTRO
   ========================================================= */

.bp-topic-world__header {
    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(340px, .88fr);

    gap: clamp(70px, 10vw, 170px);

    align-items: end;

    padding-bottom: 78px;
}


/* 03 / GLP-1 */

.bp-topic-world__index {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 35px;

    color: var(--bp-gold);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .19em;

    text-transform: uppercase;
}

.bp-topic-world__index span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(212,170,42,.48);

    color: var(--bp-gold);

    font-size: 10px;
}


/* main headline */

.bp-topic-world__identity h2 {
    margin: 0;

    color: var(--bp-white);

    font-size: clamp(66px, 7.3vw, 118px);
    line-height: .82;

    letter-spacing: -.055em;
}

.bp-topic-world__identity h2 span {
    color: transparent;

    -webkit-text-stroke:
        1px rgba(212,170,42,.8);

    text-stroke:
        1px rgba(212,170,42,.8);
}


/* right intro */

.bp-topic-world__intro {
    position: relative;

    max-width: 520px;

    padding-left: 30px;

    border-left:
        1px solid rgba(212,170,42,.5);
}

.bp-topic-world__intro p {
    margin:
        0
        0
        18px;

    color: var(--bp-silver);

    font-size: 14px;
    line-height: 1.75;
}

.bp-topic-world__lead {
    color: var(--bp-white) !important;

    font-size: 20px !important;
    font-weight: 700;

    line-height: 1.45 !important;
}

.bp-topic-world__intro strong {
    display: block;

    margin-top: 25px;

    color: var(--bp-gold);

    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   THE QUESTION
   ========================================================= */

.bp-topic-world__question {
    position: relative;

    display: grid;

    grid-template-columns:
        170px
        minmax(0, 1fr);

    gap: 35px;

    align-items: center;

    padding:
        33px
        40px;

    margin-bottom: 95px;

    border:
        1px solid rgba(212,170,42,.42);

    background:
        linear-gradient(
            90deg,
            rgba(212,170,42,.10),
            rgba(212,170,42,.018)
        );

    overflow: hidden;
}

.bp-topic-world__question::after {
    content: "?";

    position: absolute;

    right: 24px;
    top: 50%;

    transform: translateY(-50%);

    color: rgba(212,170,42,.055);

    font-size: 150px;
    font-weight: 900;
    line-height: 1;

    pointer-events: none;
}

.bp-topic-world__question span {
    color: var(--bp-gold);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}

.bp-topic-world__question strong {
    position: relative;
    z-index: 2;

    max-width: 900px;

    color: var(--bp-white);

    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.28;
}


/* =========================================================
   CLINICS INTRO
   ========================================================= */

.bp-topic-world__clinics-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 430px);

    gap: 70px;

    align-items: end;

    margin-bottom: 48px;
}

.bp-topic-world__clinics-heading small {
    display: block;

    margin-bottom: 20px;

    color: var(--bp-gold);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .17em;
}

.bp-topic-world__clinics-heading h3 {
    margin: 0;

    color: var(--bp-white);

    font-size: clamp(48px, 5.2vw, 83px);
    line-height: .84;

    letter-spacing: -.045em;
}

.bp-topic-world__clinics-heading h3 span {
    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.55);
}

.bp-topic-world__clinics-heading > p {
    margin: 0;

    padding-left: 25px;

    border-left:
        1px solid rgba(255,255,255,.14);

    color: var(--bp-silver);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   CLINIC GRID
   ========================================================= */

.bp-clinic-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 8px;
}


/* clinic panel */

.bp-clinic-card {
    position: relative;

    min-height: 390px;

    display: flex;
    flex-direction: column;

    padding: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.03),
            rgba(255,255,255,.004)
        );

    border:
        1px solid rgba(255,255,255,.12);

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}


/* gold edge indicator */

.bp-clinic-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 0;

    background: var(--bp-gold);

    transition: height .35s ease;
}


/* technical circle */

.bp-clinic-card::after {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    right: -100px;
    bottom: -105px;

    border:
        1px solid rgba(212,170,42,.11);

    border-radius: 50%;

    transition:
        transform .45s ease,
        border-color .3s ease;
}


/* hover */

.bp-clinic-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(212,170,42,.5);

    background:
        linear-gradient(
            145deg,
            rgba(212,170,42,.07),
            rgba(255,255,255,.008)
        );
}

.bp-clinic-card:hover::before {
    height: 100%;
}

.bp-clinic-card:hover::after {
    transform: scale(1.22);

    border-color:
        rgba(212,170,42,.25);
}


/* top row */

.bp-clinic-card__top {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.bp-clinic-card__number {
    color: var(--bp-gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .14em;
}

.bp-clinic-card__type {
    color: var(--bp-muted);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .15em;
}


/* main content */

.bp-clinic-card__body {
    position: relative;
    z-index: 2;

    margin-top: auto;

    padding-top: 80px;

    max-width: 88%;
}

.bp-clinic-card__body small {
    display: block;

    margin-bottom: 16px;

    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .12em;

    line-height: 1.5;
}

.bp-clinic-card__body h4 {
    margin:
        0
        0
        18px;

    color: var(--bp-white);

    font-size: clamp(34px, 3.4vw, 55px);
    line-height: .88;

    letter-spacing: -.04em;
}

.bp-clinic-card__body p {
    margin: 0;

    max-width: 470px;

    color: var(--bp-silver);

    font-size: 12px;
    line-height: 1.65;
}


/* Explore session */

.bp-clinic-card__action {
    position: relative;
    z-index: 3;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 28px;

    padding-top: 20px;

    border-top:
        1px solid rgba(255,255,255,.10);

    color: var(--bp-white);

    text-decoration: none;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .15em;

    transition:
        color .25s ease;
}

.bp-clinic-card__action span {
    color: var(--bp-gold);

    font-size: 18px;

    transition:
        transform .25s ease;
}

.bp-clinic-card:hover .bp-clinic-card__action {
    color: var(--bp-gold);
}

.bp-clinic-card:hover .bp-clinic-card__action span {
    transform: translateX(5px);
}


/* =========================================================
   GLP-1 SECTION CTA
   ========================================================= */

.bp-topic-world__cta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    margin-top: 65px;

    padding:
        30px
        34px;

    border:
        1px solid rgba(212,170,42,.42);

    background:
        linear-gradient(
            90deg,
            rgba(212,170,42,.085),
            rgba(255,255,255,.008)
        );
}

.bp-topic-world__cta small {
    display: block;

    margin-bottom: 8px;

    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .16em;
}

.bp-topic-world__cta strong {
    color: var(--bp-white);

    font-size: clamp(18px, 2vw, 27px);
}

.bp-topic-world__cta > a {
    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 35px;

    min-height: 58px;

    padding:
        0
        25px;

    background: var(--bp-gold);

    color: #070707;

    text-decoration: none;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .14em;

    transition:
        transform .25s ease,
        background .25s ease;
}

.bp-topic-world__cta > a:hover {
    transform: translateY(-3px);

    background: var(--bp-gold-strong);
}

.bp-topic-world__cta > a span {
    font-size: 18px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

    .bp-topic-world {
        padding:
            100px
            0
            110px;
    }

    .bp-topic-world__header {
        grid-template-columns: 1fr;

        gap: 50px;

        padding-bottom: 55px;
    }

    .bp-topic-world__intro {
        max-width: 650px;
    }

    .bp-topic-world__question {
        margin-bottom: 70px;
    }

    .bp-topic-world__clinics-heading {
        grid-template-columns: 1fr;

        gap: 34px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .bp-topic-world {
        padding:
            76px
            0
            85px;
    }


    /* background 03 */

    .bp-topic-world::before {
        top: 160px;

        font-size: 300px;
    }


    /* headline */

    .bp-topic-world__header {
        gap: 35px;

        padding-bottom: 45px;
    }

    .bp-topic-world__index {
        margin-bottom: 28px;
    }

    .bp-topic-world__identity h2 {
        font-size: 55px;
        line-height: .84;
    }


    /* intro */

    .bp-topic-world__intro {
        padding-left: 18px;
    }

    .bp-topic-world__lead {
        font-size: 17px !important;
    }


    /* THE QUESTION */

    .bp-topic-world__question {
        grid-template-columns: 1fr;

        gap: 13px;

        padding:
            23px
            20px;

        margin-bottom: 60px;
    }

    .bp-topic-world__question strong {
        padding-right: 0;

        font-size: 18px;
    }

    .bp-topic-world__question::after {
        font-size: 105px;
    }


    /* clinics heading */

    .bp-topic-world__clinics-heading {
        margin-bottom: 32px;
    }

    .bp-topic-world__clinics-heading h3 {
        font-size: 46px;
    }

    .bp-topic-world__clinics-heading > p {
        padding-left: 18px;
    }


    /* single mission per row */

    .bp-clinic-grid {
        grid-template-columns: 1fr;

        gap: 7px;
    }

    .bp-clinic-card {
        min-height: 315px;

        padding: 22px;
    }

    .bp-clinic-card__body {
        max-width: 94%;

        padding-top: 55px;
    }

    .bp-clinic-card__body h4 {
        font-size: 37px;
    }


    /* bottom CTA */

    .bp-topic-world__cta {
        flex-direction: column;

        align-items: stretch;

        gap: 25px;

        margin-top: 42px;

        padding:
            24px
            20px;
    }

    .bp-topic-world__cta > a {
        width: 100%;
    }

}
/* =========================================================
   TOPIC SWITCHING SYSTEM
   ========================================================= */


/*
   Only the selected topic world is displayed.
*/

.bp-topic-world[data-topic-world] {
    display: none;
}

.bp-topic-world[data-topic-world].is-active {
    display: block;

    animation:
        bp-topic-world-in
        .38s
        ease
        both;
}


@keyframes bp-topic-world-in {

    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Active CHOOSE YOUR PATH card */

.bp-path-card.is-active {
    border-color:
        rgba(212, 170, 42, .75);

    background:
        linear-gradient(
            145deg,
            rgba(212, 170, 42, .10),
            rgba(255,255,255,.012)
        );
}

.bp-path-card.is-active::before {
    transform: scaleX(1);
}

.bp-path-card.is-active .bp-path-card__number,
.bp-path-card.is-active .bp-path-card__arrow {
    color: var(--bp-gold);
}


/* Mobile transition is deliberately quicker */

@media (max-width: 520px) {

    .bp-topic-world[data-topic-world].is-active {
        animation-duration: .22s;
    }

}
/* =========================================================
   SESSION DETAIL EXPERIENCE
   ========================================================= */

.bp-session-detail {
    position: relative;

    margin-top: 10px;
    padding: 38px;

    border: 1px solid rgba(212,170,42,.52);

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(212,170,42,.10),
            transparent 27%
        ),
        #0a0a09;

    overflow: hidden;
}


/* hidden state */

.bp-session-detail[hidden] {
    display: none !important;
}


/* opening animation */

.bp-session-detail.is-open {
    animation:
        bp-session-open
        .38s
        ease
        both;
}

@keyframes bp-session-open {

    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* technical background number */

.bp-session-detail::before {
    content: var(--session-number, "01");

    position: absolute;

    right: -15px;
    top: 60px;

    color: rgba(212,170,42,.035);

    font-size: clamp(240px, 28vw, 470px);
    font-weight: 900;
    line-height: .7;

    pointer-events: none;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.bp-session-detail__top {
    position: relative;
    z-index: 2;

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

    gap: 30px;

    padding-bottom: 28px;

    border-bottom:
        1px solid rgba(255,255,255,.10);
}

.bp-session-detail__label {
    display: flex;
    align-items: center;

    gap: 13px;

    color: var(--bp-muted);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .15em;
}

.bp-session-detail__label span {
    color: var(--bp-gold);
}


/* close */

.bp-session-detail__close {
    appearance: none;

    padding: 0;

    border: 0;

    background: transparent;

    color: var(--bp-silver);

    font-family: inherit;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;

    cursor: pointer;

    transition: color .2s ease;
}

.bp-session-detail__close:hover {
    color: var(--bp-gold);
}


/* =========================================================
   HERO
   ========================================================= */

.bp-session-detail__hero {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(310px, .8fr);

    gap: clamp(60px, 9vw, 150px);

    align-items: end;

    padding: 70px 0;
}

.bp-session-detail__hero small {
    display: block;

    margin-bottom: 20px;

    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .16em;
}

.bp-session-detail__hero h3 {
    margin: 0;

    color: var(--bp-white);

    font-size: clamp(52px, 6vw, 96px);
    line-height: .82;

    letter-spacing: -.05em;
}

.bp-session-detail__hero h3 span {
    color: transparent;

    -webkit-text-stroke:
        1px rgba(212,170,42,.82);
}


.bp-session-detail__hero-copy {
    padding-left: 26px;

    border-left:
        1px solid rgba(212,170,42,.45);
}

.bp-session-detail__hero-copy p {
    margin: 0 0 17px;

    color: var(--bp-silver);

    font-size: 13px;
    line-height: 1.7;
}

.bp-session-detail__hero-copy
.bp-session-detail__lead {
    color: var(--bp-white);

    font-size: 18px;
    font-weight: 700;

    line-height: 1.45;
}


/* =========================================================
   CHALLENGE
   ========================================================= */

.bp-session-detail__question {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        200px
        minmax(0,1fr);

    gap: 30px;

    align-items: center;

    padding: 28px 30px;

    border-top:
        1px solid rgba(212,170,42,.4);

    border-bottom:
        1px solid rgba(212,170,42,.4);

    background:
        rgba(212,170,42,.04);
}

.bp-session-detail__question span {
    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .17em;
}

.bp-session-detail__question strong {
    max-width: 900px;

    color: var(--bp-white);

    font-size: clamp(17px, 1.7vw, 24px);

    line-height: 1.35;
}


/* =========================================================
   INFORMATION GRID
   ========================================================= */

.bp-session-detail__information {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    margin-top: 9px;

    gap: 8px;
}


.bp-session-detail__block {
    position: relative;

    min-height: 410px;

    padding: 27px;

    border:
        1px solid rgba(255,255,255,.11);

    background:
        rgba(255,255,255,.015);
}


.bp-session-detail__block-number {
    display: block;

    margin-bottom: 65px;

    color: var(--bp-gold);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .14em;
}


.bp-session-detail__block > small {
    display: block;

    margin-bottom: 15px;

    color: var(--bp-muted);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .15em;
}


.bp-session-detail__block h4 {
    margin: 0 0 25px;

    color: var(--bp-white);

    font-size: clamp(29px, 3vw, 45px);
    line-height: .9;

    letter-spacing: -.035em;
}


/* learning points */

.bp-session-detail__block ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.bp-session-detail__block li {
    position: relative;

    margin-bottom: 13px;

    padding-left: 18px;

    color: var(--bp-silver);

    font-size: 11px;
    line-height: 1.55;
}

.bp-session-detail__block li::before {
    content: "+";

    position: absolute;

    left: 0;

    color: var(--bp-gold);

    font-weight: 800;
}


/* audience tags */

.bp-session-detail__tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}

.bp-session-detail__tags span {
    padding: 10px 12px;

    border:
        1px solid rgba(255,255,255,.12);

    color: var(--bp-silver);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .11em;
}


/* session facts */

.bp-session-detail__facts {
    display: grid;
}

.bp-session-detail__facts > div {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 13px 0;

    border-bottom:
        1px solid rgba(255,255,255,.09);
}

.bp-session-detail__facts span {
    color: var(--bp-muted);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .11em;
}

.bp-session-detail__facts strong {
    color: var(--bp-white);

    font-size: 10px;

    text-align: right;
}


/* =========================================================
   BOOKING
   ========================================================= */

.bp-session-detail__booking {
    position: relative;
    z-index: 2;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 50px;

    margin-top: 9px;

    padding: 29px 31px;

    border:
        1px solid rgba(212,170,42,.45);

    background:
        linear-gradient(
            90deg,
            rgba(212,170,42,.10),
            rgba(255,255,255,.005)
        );
}

.bp-session-detail__booking small {
    display: block;

    margin-bottom: 8px;

    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .15em;
}

.bp-session-detail__booking strong {
    display: block;

    color: var(--bp-white);

    font-size: clamp(20px, 2vw, 28px);
}

.bp-session-detail__booking p {
    margin:
        8px
        0
        0;

    color: var(--bp-muted);

    font-size: 11px;
}


.bp-session-detail__booking > a {
    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 30px;

    min-height: 58px;

    padding: 0 25px;

    background: var(--bp-gold);

    color: #050505;

    text-decoration: none;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .13em;

    transition:
        transform .2s ease,
        background .2s ease;
}

.bp-session-detail__booking > a:hover {
    transform: translateY(-3px);

    background: var(--bp-gold-strong);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

    .bp-session-detail__hero {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .bp-session-detail__hero-copy {
        max-width: 650px;
    }

    .bp-session-detail__information {
        grid-template-columns: 1fr 1fr;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .bp-session-detail {
        margin-top: 7px;

        padding: 20px;
    }


    .bp-session-detail__top {
        padding-bottom: 20px;
    }


    .bp-session-detail__hero {
        gap: 30px;

        padding:
            45px
            0;
    }

    .bp-session-detail__hero h3 {
        font-size: 47px;
    }

    .bp-session-detail__hero-copy {
        padding-left: 17px;
    }


    .bp-session-detail__question {
        grid-template-columns: 1fr;

        gap: 12px;

        padding:
            21px
            18px;
    }


    .bp-session-detail__information {
        grid-template-columns: 1fr;

        gap: 7px;
    }


    .bp-session-detail__block {
        min-height: auto;

        padding: 22px;
    }

    .bp-session-detail__block-number {
        margin-bottom: 40px;
    }


    .bp-session-detail__booking {
        flex-direction: column;

        align-items: stretch;

        gap: 24px;

        padding:
            23px
            20px;
    }

    .bp-session-detail__booking > a {
        width: 100%;
    }

}

/* =========================================================
   FINAL BODYPOWER CONVERSION SECTION
   ========================================================= */

.bp-final-cta {
    position: relative;
    padding: 150px 0 160px;
    background:
        radial-gradient(
            circle at 82% 34%,
            rgba(212,170,42,.10),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #050505 0%,
            #090806 100%
        );
    border-top: 1px solid rgba(255,255,255,.09);
    overflow: hidden;
}

.bp-final-cta::before {
    content: "26";
    position: absolute;
    z-index: 0;
    right: -3%;
    bottom: -12%;
    color: rgba(212,170,42,.04);
    font-size: clamp(320px, 38vw, 650px);
    font-weight: 900;
    line-height: .7;
    letter-spacing: -.09em;
    pointer-events: none;
}

.bp-final-cta__label {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 60px;

    color: var(--bp-gold);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.bp-final-cta__label span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border: 1px solid rgba(212,170,42,.45);

    font-size: 9px;
}

.bp-final-cta__grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(330px, 440px);

    gap: clamp(70px, 9vw, 150px);
    align-items: end;
}


/* LEFT */

.bp-final-cta__content h2 {
    margin: 0;

    color: var(--bp-white);

    font-size: clamp(72px, 8vw, 128px);
    line-height: .80;
    letter-spacing: -.06em;
}

.bp-final-cta__content h2 span {
    color: transparent;

    -webkit-text-stroke:
        1px rgba(212,170,42,.86);

    text-stroke:
        1px rgba(212,170,42,.86);
}

.bp-final-cta__lead {
    margin: 48px 0 0;

    color: var(--bp-white);

    font-size: 22px;
    font-weight: 700;
}

.bp-final-cta__copy {
    max-width: 620px;

    margin: 12px 0 0;

    color: var(--bp-silver);

    font-size: 15px;
    line-height: 1.7;
}

.bp-final-cta__topics {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 38px;
}

.bp-final-cta__topics span {
    display: inline-flex;
    align-items: center;

    min-height: 36px;
    padding: 0 13px;

    border: 1px solid rgba(255,255,255,.12);

    color: var(--bp-muted);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .11em;
}


/* RIGHT EVENT PANEL */

.bp-final-cta__panel {
    position: relative;

    padding: 30px;

    border: 1px solid rgba(212,170,42,.42);

    background:
        linear-gradient(
            145deg,
            rgba(212,170,42,.075),
            rgba(255,255,255,.01)
        );

    overflow: hidden;
}

.bp-final-cta__panel::before {
    content: "";
    position: absolute;

    width: 180px;
    height: 180px;

    right: -85px;
    top: -85px;

    border: 1px solid rgba(212,170,42,.17);
    border-radius: 50%;
}

.bp-final-cta__panel-top {
    padding-bottom: 24px;

    border-bottom: 1px solid rgba(255,255,255,.10);

    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .17em;
}

.bp-final-cta__dates {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 27px 0;
}

.bp-final-cta__dates strong {
    color: var(--bp-white);

    font-size: 72px;
    line-height: .8;
    letter-spacing: -.07em;
}

.bp-final-cta__dates div {
    display: flex;
    flex-direction: column;
    gap: 4px;

    color: var(--bp-gold);
}

.bp-final-cta__dates span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
}

.bp-final-cta__dates i {
    font-style: normal;
}

.bp-final-cta__location {
    padding: 22px 0;

    border-top: 1px solid rgba(255,255,255,.10);
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.bp-final-cta__location small {
    display: block;

    margin-bottom: 7px;

    color: var(--bp-muted);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .15em;
}

.bp-final-cta__location strong {
    color: var(--bp-white);

    font-size: 19px;
}

.bp-final-cta__statement {
    padding: 27px 0;

    color: var(--bp-white);

    font-size: 22px;
    font-weight: 900;
    line-height: .95;
    letter-spacing: -.025em;
}

.bp-final-cta__button {
    min-height: 65px;

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

    padding: 0 22px;

    background: var(--bp-gold);

    color: #050505;

    text-decoration: none;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;

    transition:
        transform .25s ease,
        background .25s ease;
}

.bp-final-cta__button:hover {
    transform: translateY(-3px);
    background: var(--bp-gold-strong);
}

.bp-final-cta__button span {
    font-size: 21px;
}

.bp-final-cta__note {
    display: block;

    margin-top: 14px;

    text-align: center;

    color: var(--bp-muted);

    font-size: 7px;
    letter-spacing: .13em;
}


/* =========================================================
   MOBILE TICKET BAR
   ========================================================= */

.bp-mobile-ticket-bar {
    display: none;
}


/* =========================================================
   FINAL CTA TABLET
   ========================================================= */

@media (max-width: 980px) {

    .bp-final-cta {
        padding: 105px 0 120px;
    }

    .bp-final-cta__grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .bp-final-cta__panel {
        max-width: 520px;
    }

}


/* =========================================================
   FINAL CTA PHONE
   ========================================================= */

@media (max-width: 520px) {

    body {
        padding-bottom: 74px;
    }

    .bp-final-cta {
        padding: 80px 0 95px;
    }

    .bp-final-cta::before {
        right: -24%;
        bottom: 2%;

        font-size: 300px;
    }

    .bp-final-cta__label {
        margin-bottom: 38px;
    }

    .bp-final-cta__content h2 {
        font-size: 54px;
        line-height: .82;
    }

    .bp-final-cta__lead {
        margin-top: 32px;

        font-size: 19px;
    }

    .bp-final-cta__copy {
        font-size: 14px;
    }

    .bp-final-cta__topics {
        margin-top: 28px;
    }

    .bp-final-cta__topics span {
        min-height: 32px;
        padding: 0 10px;

        font-size: 7px;
    }

    .bp-final-cta__grid {
        gap: 45px;
    }

    .bp-final-cta__panel {
        padding: 22px;
    }

    .bp-final-cta__dates strong {
        font-size: 58px;
    }

    .bp-final-cta__statement {
        font-size: 20px;
    }


    /* STICKY MOBILE CTA */

    .bp-mobile-ticket-bar {
        position: fixed;

        z-index: 9999;

        left: 0;
        right: 0;
        bottom: 0;

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

        gap: 12px;

        min-height: 70px;

        padding:
            10px
            12px
            calc(10px + env(safe-area-inset-bottom));

        background: rgba(5,5,5,.97);

        border-top:
            1px solid rgba(212,170,42,.42);

        backdrop-filter: blur(14px);

        transform: translateY(0);
opacity: 1;
    }

    .bp-mobile-ticket-bar.is-visible {
        transform: translateY(0);
        opacity: 1;
    }

    .bp-mobile-ticket-bar__info {
        min-width: 0;
    }

    .bp-mobile-ticket-bar__info small {
        display: block;

        margin-bottom: 3px;

        color: var(--bp-gold);

        font-size: 6px;
        font-weight: 800;
        letter-spacing: .10em;
    }

    .bp-mobile-ticket-bar__info strong {
        display: block;

        color: var(--bp-white);

        font-size: 12px;
        line-height: 1;
    }

    .bp-mobile-ticket-bar > a {
        flex: 0 0 auto;

        min-height: 46px;

        display: flex;
        align-items: center;
        gap: 15px;

        padding: 0 15px;

        background: var(--bp-gold);

        color: #050505;

        text-decoration: none;

        font-size: 9px;
        font-weight: 900;
        letter-spacing: .08em;
    }

    .bp-mobile-ticket-bar > a span {
        font-size: 16px;
    }

}

/* =========================================================
   SECTION 04 — EXPERTS
   ========================================================= */

.bp-experts {
    position: relative;
    padding: 140px 0 150px;
    background: #080808;
    border-top: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
}

.bp-experts::before {
    content: "EXPERTS";
    position: absolute;
    right: -2%;
    top: 3%;
    font-size: clamp(140px, 19vw, 320px);
    line-height: .8;
    font-weight: 900;
    letter-spacing: -.07em;
    color: rgba(255,255,255,.018);
    pointer-events: none;
}

.bp-section-index {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 42px;

    color: var(--bp-gold);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;

    text-transform: uppercase;
}

.bp-section-index span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border: 1px solid rgba(212,170,42,.42);

    font-size: 9px;
}

.bp-experts__header {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 470px);

    gap: 90px;

    align-items: end;

    margin-bottom: 75px;
}

.bp-experts__header h2 {
    margin: 0;

    color: var(--bp-white);

    font-size: clamp(65px, 7.4vw, 118px);
    line-height: .79;

    letter-spacing: -.055em;
}

.bp-experts__header h2 span {
    color: transparent;

    -webkit-text-stroke:
        1px rgba(212,170,42,.8);
}

.bp-experts__intro {
    padding-left: 27px;

    border-left:
        1px solid rgba(212,170,42,.45);

    color: var(--bp-silver);

    font-size: 15px;
    line-height: 1.7;
}

.bp-experts__intro p {
    margin: 0;
}

.bp-experts__intro strong {
    display: block;

    margin-top: 24px;

    color: var(--bp-white);
}

.bp-experts__grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 8px;
}

.bp-expert-card {
    position: relative;

    min-width: 0;

    border:
        1px solid rgba(255,255,255,.11);

    background: #0c0c0c;

    overflow: hidden;
}

.bp-expert-card__image {
    position: relative;

    height: 310px;

    background:
        radial-gradient(
            circle at 65% 30%,
            rgba(212,170,42,.13),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #151515,
            #070707
        );

    border-bottom:
        1px solid rgba(255,255,255,.09);

    overflow: hidden;
}

.bp-expert-card__image::before {
    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    right: -65px;
    bottom: -65px;

    border:
        1px solid rgba(212,170,42,.18);

    border-radius: 50%;
}

.bp-expert-card__image span {
    position: absolute;

    left: 22px;
    top: 20px;

    color: var(--bp-gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .15em;
}

.bp-expert-card__body {
    padding: 28px 26px 32px;
}

.bp-expert-card__body small {
    display: block;

    margin-bottom: 15px;

    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .14em;
}

.bp-expert-card__body h3 {
    margin: 0 0 17px;

    color: var(--bp-white);

    font-size: clamp(28px, 2.2vw, 38px);
    line-height: .95;

    letter-spacing: -.035em;
}

.bp-expert-card__body p {
    margin: 0;

    color: var(--bp-silver);

    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   SECTION 05 — COMMUNITY
   ========================================================= */

.bp-community {
    position: relative;

    padding: 150px 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(212,170,42,.10),
            transparent 31%
        ),
        #050505;

    border-top:
        1px solid rgba(255,255,255,.08);

    border-bottom:
        1px solid rgba(255,255,255,.08);

    overflow: hidden;
}

.bp-community::before {
    content: "JOIN";

    position: absolute;

    right: -3%;
    bottom: -10%;

    color: rgba(212,170,42,.035);

    font-size: clamp(220px, 33vw, 540px);
    font-weight: 900;

    line-height: .7;

    letter-spacing: -.08em;

    pointer-events: none;
}

.bp-community__inner {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        110px minmax(0, 850px);

    gap: 65px;

    align-items: start;
}

.bp-community__number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 78px;
    height: 78px;

    border:
        1px solid rgba(212,170,42,.48);

    color: var(--bp-gold);

    font-size: 14px;
    font-weight: 900;
}

.bp-community__content {
    max-width: 850px;
}

.bp-community__content > small:first-child {
    display: block;

    margin-bottom: 25px;

    color: var(--bp-gold);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .18em;
}

.bp-community__content h2 {
    margin: 0;

    color: var(--bp-white);

    font-size: clamp(70px, 8.5vw, 135px);

    line-height: .78;

    letter-spacing: -.06em;
}

.bp-community__content h2 span {
    color: transparent;

    -webkit-text-stroke:
        1px rgba(212,170,42,.85);
}

.bp-community__lead {
    margin:
        45px 0 12px !important;

    color: var(--bp-white) !important;

    font-size: 23px !important;
    font-weight: 700;
}

.bp-community__content p {
    max-width: 680px;

    margin: 0;

    color: var(--bp-silver);

    font-size: 15px;
    line-height: 1.7;
}

.bp-community__features {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 35px;
}

.bp-community__features span {
    padding: 10px 13px;

    border:
        1px solid rgba(255,255,255,.14);

    color: var(--bp-white);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .16em;
}

.bp-community__button {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 55px;

    min-width: 360px;

    margin-top: 38px;

    padding: 19px 22px;

    background: var(--bp-gold);

    color: #050505;

    text-decoration: none;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .11em;

    transition:
        transform .25s ease,
        background .25s ease;
}

.bp-community__button:hover {
    transform: translateY(-3px);

    background: var(--bp-gold-strong);
}

.bp-community__button > span {
    font-size: 18px;
}

.bp-community__free {
    display: block;

    margin-top: 13px;

    color: var(--bp-muted);

    font-size: 8px;

    letter-spacing: .16em;
}


/* TABLET */

@media (max-width: 980px) {

    .bp-experts {
        padding: 100px 0;
    }

    .bp-experts__header {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .bp-experts__intro {
        max-width: 650px;
    }

    .bp-experts__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .bp-community {
        padding: 105px 0;
    }

    .bp-community__inner {
        grid-template-columns: 80px 1fr;

        gap: 35px;
    }

}


/* MOBILE */

@media (max-width: 520px) {

    .bp-experts {
        padding: 78px 0 85px;
    }

    .bp-experts__header {
        gap: 32px;

        margin-bottom: 45px;
    }

    .bp-experts__header h2 {
        font-size: 52px;
    }

    .bp-experts__intro {
        padding-left: 18px;
    }

    .bp-experts__grid {
        grid-template-columns: 1fr;
    }

    .bp-expert-card__image {
        height: 230px;
    }

    .bp-community {
        padding: 80px 0 105px;
    }

    .bp-community__inner {
        display: block;
    }

    .bp-community__number {
        width: 54px;
        height: 54px;

        margin-bottom: 30px;

        font-size: 11px;
    }

    .bp-community__content h2 {
        font-size: 54px;
    }

    .bp-community__lead {
        margin-top: 32px !important;

        font-size: 19px !important;
    }

    .bp-community__content p {
        font-size: 14px;
    }

    .bp-community__button {
        width: 100%;
        min-width: 0;

        gap: 20px;
    }

}
/* =========================================================
   EXPERT PORTRAITS
   ========================================================= */

.bp-expert-card__image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    display: block;

    filter:
        saturate(.88)
        contrast(1.04);

    transition:
        transform .45s ease,
        filter .45s ease;
}

.bp-expert-card__image::after {
    content: "";

    position: absolute;

    z-index: 2;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 48%,
            rgba(5,5,5,.18) 72%,
            rgba(5,5,5,.72) 100%
        );

    pointer-events: none;
}

.bp-expert-card__image > span {
    z-index: 4;
}

.bp-expert-card:hover .bp-expert-card__image img {
    transform: scale(1.035);

    filter:
        saturate(1)
        contrast(1.08);
}
/* =========================================================
   EXPERT PORTRAIT — FACE FOCUS
   ========================================================= */

.bp-expert-card__image img {
    object-fit: cover;
 object-position: center 52%;
    transform: scale(1.12);
}

.bp-expert-card:hover .bp-expert-card__image img {
    transform: scale(1.16);
}

@media (max-width: 520px) {

    .bp-expert-card__image img {
     object-position: center 52%;
        transform: scale(1.15);
    }

    .bp-expert-card:hover .bp-expert-card__image img {
        transform: scale(1.15);
    }

}

/* =========================================================
   SECTION 06 — THE EXPERIENCE
   ========================================================= */

.bp-experience {
    position: relative;
    padding: 145px 0 155px;
    background: #070707;
    border-top: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
}

.bp-experience::before {
    content: "EXPERIENCE";
    position: absolute;
    left: -2%;
    bottom: -1%;
    color: rgba(255,255,255,.018);
    font-size: clamp(120px, 17vw, 280px);
    font-weight: 900;
    line-height: .72;
    letter-spacing: -.07em;
    pointer-events: none;
}

.bp-experience__top {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(330px, 480px);

    gap: 90px;
    align-items: end;

    margin-bottom: 75px;
}

.bp-experience__top h2 {
    margin: 0;

    color: var(--bp-white);

    font-size: clamp(68px, 8vw, 128px);
    line-height: .79;
    letter-spacing: -.06em;
}

.bp-experience__top h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(212,170,42,.9);
}

.bp-experience__intro {
    padding-left: 28px;
    border-left: 1px solid rgba(212,170,42,.5);

    color: var(--bp-silver);

    font-size: 15px;
    line-height: 1.7;
}

.bp-experience__intro p {
    margin: 0 0 20px;
}

.bp-experience__intro .bp-experience__lead {
    color: var(--bp-white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
}

.bp-experience__intro strong {
    display: block;

    margin-top: 27px;

    color: var(--bp-gold);
}

.bp-experience__grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 8px;
}

.bp-experience-card {
    position: relative;

    min-height: 390px;

    padding: 27px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.028),
            rgba(255,255,255,.003)
        );

    border: 1px solid rgba(255,255,255,.12);

    overflow: hidden;
}

.bp-experience-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    top: -80px;

    border: 1px solid rgba(212,170,42,.13);
    border-radius: 50%;
}

.bp-experience-card__number {
    color: var(--bp-gold);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .15em;
}

.bp-experience-card small {
    display: block;

    margin-top: auto;
    margin-bottom: 16px;

    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .15em;
}

.bp-experience-card h3 {
    margin: 0 0 18px;

    color: var(--bp-white);

    font-size: clamp(27px, 2.25vw, 38px);
    line-height: .94;
    letter-spacing: -.04em;
}

.bp-experience-card p {
    margin: 0;

    color: var(--bp-silver);

    font-size: 12px;
    line-height: 1.65;
}

.bp-experience-card--gold {
    background: var(--bp-gold);
    border-color: var(--bp-gold);
}

.bp-experience-card--gold::after {
    border-color: rgba(5,5,5,.2);
}

.bp-experience-card--gold .bp-experience-card__number,
.bp-experience-card--gold small,
.bp-experience-card--gold h3,
.bp-experience-card--gold p {
    color: #050505;
}

.bp-experience-card--gold a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 28px;
    padding-top: 18px;

    border-top: 1px solid rgba(5,5,5,.28);

    color: #050505;

    text-decoration: none;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
}

.bp-experience-card--gold a span {
    font-size: 18px;
}

.bp-experience__statement {
    position: relative;
    z-index: 2;

    margin-top: 75px;

    padding: 34px 0 0;

    border-top: 1px solid rgba(255,255,255,.12);
}

.bp-experience__statement > span {
    display: block;

    margin-bottom: 18px;

    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .18em;
}

.bp-experience__statement strong {
    display: block;

    max-width: 1050px;

    color: var(--bp-white);

    font-size: clamp(32px, 4vw, 64px);
    line-height: .93;

    letter-spacing: -.04em;
}


/* TABLET */

@media (max-width: 980px) {

    .bp-experience {
        padding: 100px 0 110px;
    }

    .bp-experience__top {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .bp-experience__intro {
        max-width: 650px;
    }

    .bp-experience__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* MOBILE */

@media (max-width: 520px) {

    .bp-experience {
        padding: 78px 0 95px;
    }

    .bp-experience__top {
        gap: 32px;
        margin-bottom: 45px;
    }

    .bp-experience__top h2 {
        font-size: 54px;
    }

    .bp-experience__intro {
        padding-left: 18px;
    }

    .bp-experience__intro .bp-experience__lead {
        font-size: 18px;
    }

    .bp-experience__grid {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .bp-experience-card {
        min-height: 285px;
        padding: 23px;
    }

    .bp-experience-card h3 {
        font-size: 32px;
    }

    .bp-experience__statement {
        margin-top: 55px;
    }

    .bp-experience__statement strong {
        font-size: 34px;
    }

}
/* =========================================================
   SECTION 07 — EVENT
   ========================================================= */

.bp-event-section {
    position: relative;
    padding: 145px 0;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
}

.bp-event-section::before {
    content: "2026";
    position: absolute;
    right: -2%;
    top: 8%;
    color: rgba(212,170,42,.035);
    font-size: clamp(220px, 32vw, 520px);
    font-weight: 900;
    line-height: .7;
    letter-spacing: -.08em;
    pointer-events: none;
}

.bp-event-section__header {
    position: relative;
    z-index: 2;
    margin-bottom: 75px;
}

.bp-event-section__header h2 {
    margin: 0;
    max-width: 1050px;
    color: var(--bp-white);
    font-size: clamp(70px, 8.5vw, 135px);
    line-height: .78;
    letter-spacing: -.06em;
}

.bp-event-section__header h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(212,170,42,.88);
}

.bp-event-section__grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        .85fr
        .85fr
        1.3fr;

    gap: 8px;
}

.bp-event-block {
    min-height: 340px;

    padding: 28px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255,255,255,.12);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.025),
            rgba(255,255,255,.003)
        );
}

.bp-event-block small {
    margin-bottom: auto;

    color: var(--bp-gold);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}

.bp-event-block strong {
    display: block;

    color: var(--bp-white);

    font-size: clamp(38px, 4vw, 64px);
    line-height: .88;
    letter-spacing: -.045em;
}

.bp-event-block p {
    margin: 22px 0 0;

    color: var(--bp-silver);

    font-size: 12px;
    line-height: 1.6;
}

.bp-event-topics {
    margin-top: auto;

    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}

.bp-event-topics span {
    padding: 12px 14px;

    border: 1px solid rgba(255,255,255,.14);

    color: var(--bp-white);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}

.bp-event-section__bottom {
    position: relative;
    z-index: 2;

    margin-top: 65px;

    padding-top: 36px;

    border-top: 1px solid rgba(255,255,255,.12);

    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 50px;
}

.bp-event-section__bottom small {
    display: block;

    margin-bottom: 15px;

    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .18em;
}

.bp-event-section__bottom strong {
    color: var(--bp-white);

    font-size: clamp(30px, 3.5vw, 54px);
    line-height: .92;
    letter-spacing: -.04em;
}

.bp-event-section__bottom > a {
    flex: 0 0 auto;

    min-width: 260px;

    padding: 21px 23px;

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

    gap: 40px;

    background: var(--bp-gold);

    color: #050505;

    text-decoration: none;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
}

.bp-event-section__bottom > a span {
    font-size: 19px;
}


/* TABLET */

@media (max-width: 980px) {

    .bp-event-section {
        padding: 100px 0;
    }

    .bp-event-section__grid {
        grid-template-columns: 1fr 1fr;
    }

    .bp-event-block--topics {
        grid-column: 1 / -1;
    }

}


/* MOBILE */

@media (max-width: 520px) {

    .bp-event-section {
        padding: 78px 0 100px;
    }

    .bp-event-section__header {
        margin-bottom: 45px;
    }

    .bp-event-section__header h2 {
        font-size: 53px;
    }

    .bp-event-section__grid {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .bp-event-block {
        min-height: 245px;
        padding: 23px;
    }

    .bp-event-block--topics {
        grid-column: auto;
    }

    .bp-event-section__bottom {
        display: block;
        margin-top: 50px;
    }

    .bp-event-section__bottom strong {
        font-size: 34px;
    }

    .bp-event-section__bottom > a {
        width: 100%;
        min-width: 0;

        margin-top: 32px;
    }

}
/* =========================================================
   SECTION 07 — EVENT
   ========================================================= */

.bp-event-section {
    position: relative;
    padding: 145px 0;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
}

.bp-event-section::before {
    content: "2026";
    position: absolute;
    right: -2%;
    top: 8%;
    color: rgba(212,170,42,.035);
    font-size: clamp(220px, 32vw, 520px);
    font-weight: 900;
    line-height: .7;
    letter-spacing: -.08em;
    pointer-events: none;
}

.bp-event-section__header {
    position: relative;
    z-index: 2;
    margin-bottom: 75px;
}

.bp-event-section__header h2 {
    margin: 0;
    max-width: 1050px;
    color: var(--bp-white);
    font-size: clamp(70px, 8.5vw, 135px);
    line-height: .78;
    letter-spacing: -.06em;
}

.bp-event-section__header h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(212,170,42,.88);
}

.bp-event-section__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .85fr .85fr 1.3fr;
    gap: 8px;
}

.bp-event-block {
    min-height: 340px;
    padding: 28px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255,255,255,.12);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.025),
            rgba(255,255,255,.003)
        );
}

.bp-event-block small {
    margin-bottom: auto;
    color: var(--bp-gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}

.bp-event-block strong {
    display: block;
    color: var(--bp-white);
    font-size: clamp(38px, 4vw, 64px);
    line-height: .88;
    letter-spacing: -.045em;
}

.bp-event-block p {
    margin: 22px 0 0;
    color: var(--bp-silver);
    font-size: 12px;
    line-height: 1.6;
}

.bp-event-topics {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.bp-event-topics span {
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.14);
    color: var(--bp-white);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}

.bp-event-section__bottom {
    position: relative;
    z-index: 2;

    margin-top: 65px;
    padding-top: 36px;

    border-top: 1px solid rgba(255,255,255,.12);

    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.bp-event-section__bottom small {
    display: block;
    margin-bottom: 15px;
    color: var(--bp-gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .18em;
}

.bp-event-section__bottom strong {
    color: var(--bp-white);
    font-size: clamp(30px, 3.5vw, 54px);
    line-height: .92;
    letter-spacing: -.04em;
}

.bp-event-section__bottom > a {
    flex: 0 0 auto;
    min-width: 260px;

    padding: 21px 23px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    background: var(--bp-gold);
    color: #050505;
    text-decoration: none;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
}

.bp-event-section__bottom > a span {
    font-size: 19px;
}


/* TABLET */

@media (max-width: 980px) {

    .bp-event-section {
        padding: 100px 0;
    }

    .bp-event-section__grid {
        grid-template-columns: 1fr 1fr;
    }

    .bp-event-block--topics {
        grid-column: 1 / -1;
    }

}


/* MOBILE */

@media (max-width: 520px) {

    .bp-event-section {
        padding: 78px 0 100px;
    }

    .bp-event-section__header {
        margin-bottom: 45px;
    }

    .bp-event-section__header h2 {
        font-size: 53px;
    }

    .bp-event-section__grid {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .bp-event-block {
        min-height: 245px;
        padding: 23px;
    }

    .bp-event-block--topics {
        grid-column: auto;
    }

    .bp-event-section__bottom {
        display: block;
        margin-top: 50px;
    }

    .bp-event-section__bottom strong {
        font-size: 34px;
    }

    .bp-event-section__bottom > a {
        width: 100%;
        min-width: 0;
        margin-top: 32px;
    }

}
/* =========================================================
   BODYPOWER — DO MORE
   ========================================================= */

.bp-do-more {
    position: relative;
    padding: 135px 0 145px;
    background: #080808;
    border-top: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
}

.bp-do-more__header {
    max-width: 950px;
    margin-bottom: 65px;
}

.bp-do-more__header > small {
    display: block;
    margin-bottom: 24px;
    color: var(--bp-gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}

.bp-do-more__header h2 {
    margin: 0;
    color: var(--bp-white);
    font-size: clamp(68px, 7.8vw, 125px);
    line-height: .79;
    letter-spacing: -.06em;
}

.bp-do-more__header h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(212,170,42,.9);
}

.bp-do-more__header p {
    max-width: 620px;
    margin: 35px 0 0;
    color: var(--bp-silver);
    font-size: 15px;
    line-height: 1.7;
}


.bp-do-more__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 8px;
}


.bp-do-more-card {
    position: relative;
    min-height: 470px;
    padding: 28px;

    display: flex;
    flex-direction: column;

    text-decoration: none;
    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.bp-do-more-card:hover {
    transform: translateY(-5px);
}


.bp-do-more-card__number {
    position: relative;
    z-index: 2;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em;
}


.bp-do-more-card__content {
    position: relative;
    z-index: 2;
    margin-top: auto;
}


.bp-do-more-card__content small {
    display: block;
    margin-bottom: 16px;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: .16em;
}


.bp-do-more-card__content h3 {
    margin: 0 0 22px;

    font-size: clamp(43px, 4.2vw, 69px);
    line-height: .84;
    letter-spacing: -.055em;
}


.bp-do-more-card__content p {
    max-width: 330px;
    margin: 0;

    font-size: 12px;
    line-height: 1.65;
}


.bp-do-more-card > strong {
    position: relative;
    z-index: 2;

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

    gap: 25px;

    margin-top: 32px;
    padding-top: 20px;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
}


.bp-do-more-card > strong span {
    font-size: 20px;
}


/* DARK CARD */

.bp-do-more-card--dark {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,.14);
    color: var(--bp-white);
}

.bp-do-more-card--dark .bp-do-more-card__number,
.bp-do-more-card--dark .bp-do-more-card__content small {
    color: var(--bp-gold);
}

.bp-do-more-card--dark .bp-do-more-card__content p {
    color: var(--bp-silver);
}

.bp-do-more-card--dark > strong {
    border-top: 1px solid rgba(255,255,255,.13);
}


/* WHITE CARD */

.bp-do-more-card--white {
    background: #f1f1ed;
    border: 1px solid #f1f1ed;
    color: #050505;
}

.bp-do-more-card--white .bp-do-more-card__number,
.bp-do-more-card--white .bp-do-more-card__content small {
    color: #766018;
}

.bp-do-more-card--white .bp-do-more-card__content p {
    color: #444;
}

.bp-do-more-card--white > strong {
    border-top: 1px solid rgba(5,5,5,.2);
}


/* GOLD CARD */

.bp-do-more-card--gold {
    background: var(--bp-gold);
    border: 1px solid var(--bp-gold);
    color: #050505;
}

.bp-do-more-card--gold .bp-do-more-card__number,
.bp-do-more-card--gold .bp-do-more-card__content small {
    color: #050505;
}

.bp-do-more-card--gold .bp-do-more-card__content p {
    color: rgba(5,5,5,.72);
}

.bp-do-more-card--gold > strong {
    border-top: 1px solid rgba(5,5,5,.25);
}



/* =========================================================
   FIND A COACH
   ========================================================= */

.bp-find-coach {
    position: relative;
    padding: 145px 0;
    background:
        radial-gradient(
            circle at 78% 38%,
            rgba(212,170,42,.11),
            transparent 30%
        ),
        #050505;

    border-top: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
}


.bp-find-coach::before {
    content: "COACH";
    position: absolute;

    right: -4%;
    bottom: -7%;

    color: rgba(255,255,255,.022);

    font-size: clamp(190px, 28vw, 440px);
    font-weight: 900;
    line-height: .7;
    letter-spacing: -.08em;

    pointer-events: none;
}


.bp-find-coach__grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(350px,520px);

    gap: 100px;
    align-items: center;
}


.bp-find-coach__title > small {
    display: block;

    margin-bottom: 25px;

    color: var(--bp-gold);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}


.bp-find-coach__title h2 {
    margin: 0;

    color: var(--bp-white);

    font-size: clamp(75px, 8vw, 130px);
    line-height: .78;
    letter-spacing: -.06em;
}


.bp-find-coach__title h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(212,170,42,.9);
}


.bp-find-coach__content {
    padding-left: 28px;
    border-left: 1px solid rgba(212,170,42,.45);
}


.bp-find-coach__content p {
    margin: 0 0 19px;

    color: var(--bp-silver);

    font-size: 14px;
    line-height: 1.7;
}


.bp-find-coach__content .bp-find-coach__lead {
    color: var(--bp-white);

    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
}


.bp-find-coach__points {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 32px;
}


.bp-find-coach__points span {
    padding: 10px 12px;

    border: 1px solid rgba(255,255,255,.14);

    color: var(--bp-white);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .14em;
}


.bp-find-coach__button {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    margin-top: 34px;
    padding: 20px 22px;

    background: var(--bp-gold);
    color: #050505;

    text-decoration: none;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
}


.bp-find-coach__button span {
    font-size: 19px;
}


.bp-find-coach__note {
    display: block;

    margin-top: 13px;

    color: var(--bp-muted);

    font-size: 7px;
    letter-spacing: .15em;
}



/* TABLET */

@media (max-width: 980px) {

    .bp-do-more {
        padding: 100px 0;
    }

    .bp-do-more__grid {
        grid-template-columns: 1fr;
    }

    .bp-do-more-card {
        min-height: 370px;
    }

    .bp-find-coach {
        padding: 105px 0;
    }

    .bp-find-coach__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bp-find-coach__content {
        max-width: 650px;
    }

}


/* MOBILE */

@media (max-width: 520px) {

    .bp-do-more {
        padding: 78px 0 85px;
    }

    .bp-do-more__header {
        margin-bottom: 42px;
    }

    .bp-do-more__header h2 {
        font-size: 52px;
    }

    .bp-do-more-card {
        min-height: 330px;
        padding: 23px;
    }

    .bp-do-more-card__content h3 {
        font-size: 45px;
    }


    .bp-find-coach {
        padding: 80px 0 100px;
    }

    .bp-find-coach__grid {
        gap: 38px;
    }

    .bp-find-coach__title h2 {
        font-size: 54px;
    }

    .bp-find-coach__content {
        padding-left: 18px;
    }

    .bp-find-coach__content .bp-find-coach__lead {
        font-size: 19px;
    }

}
/* =========================================================
   BODYPOWER SERVICES — QUICK ACCESS
   ========================================================= */

.bp-services-strip {
    position: relative;
    z-index: 20;

    background: #0a0a0a;

    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.12);
}


.bp-services-strip__inner {
    display: grid;

    grid-template-columns:
        170px
        repeat(3, minmax(0, 1fr));

    align-items: stretch;
}


.bp-services-strip__label {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 82px;

    padding-right: 25px;

    border-right: 1px solid rgba(255,255,255,.12);
}


.bp-services-strip__label small {
    margin-bottom: 4px;

    color: var(--bp-gold);

    font-size: 7px;
    font-weight: 900;
    letter-spacing: .18em;
}


.bp-services-strip__label strong {
    color: var(--bp-white);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
}


.bp-services-strip__item {
    position: relative;

    min-height: 82px;

    display: grid;

    grid-template-columns:
        26px
        minmax(0,1fr)
        22px;

    gap: 14px;

    align-items: center;

    padding: 15px 20px;

    color: var(--bp-white);

    text-decoration: none;

    border-right: 1px solid rgba(255,255,255,.10);

    transition:
        background .25s ease,
        color .25s ease;
}


.bp-services-strip__item:last-child {
    border-right: 0;
}


.bp-services-strip__item > span {
    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 900;
    letter-spacing: .12em;
}


.bp-services-strip__item div {
    display: flex;
    flex-direction: column;
}


.bp-services-strip__item small {
    margin-bottom: 5px;

    color: var(--bp-muted);

    font-size: 7px;
    font-weight: 800;
    letter-spacing: .15em;
}


.bp-services-strip__item strong {
    color: inherit;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .075em;
}


.bp-services-strip__item b {
    color: var(--bp-gold);

    font-size: 17px;
    font-weight: 400;

    transition: transform .25s ease;
}


.bp-services-strip__item:hover {
    background: var(--bp-gold);
    color: #050505;
}


.bp-services-strip__item:hover > span,
.bp-services-strip__item:hover small,
.bp-services-strip__item:hover b {
    color: #050505;
}


.bp-services-strip__item:hover b {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

    .bp-services-strip__inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .bp-services-strip__label {
        display: none;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .bp-services-strip__inner {
        width: 100%;
        display: block;
    }

    .bp-services-strip__label {
        display: none;
    }

    .bp-services-strip__item {
        min-height: 61px;

        grid-template-columns:
            24px
            minmax(0,1fr)
            20px;

        padding: 10px 16px;

        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.09);
    }

    .bp-services-strip__item:last-child {
        border-bottom: 0;
    }

    .bp-services-strip__item small {
        font-size: 6px;
        margin-bottom: 3px;
    }

    .bp-services-strip__item strong {
        font-size: 10px;
    }

}

#blood-testing {
    scroll-margin-top: 120px;
}

#find-a-coach,
#blood-testing,
#explore-peptides {
    scroll-margin-top: 120px;
}

.bp-hero__features span {
    min-height: 58px;
    padding: 0 14px;

    display: flex;
    align-items: center;
    gap: 11px;

    border: 1px solid rgba(255,255,255,.12);

    color: var(--bp-white);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
}

.bp-hero__features span b {
    color: var(--bp-gold);
    font-size: 8px;
    letter-spacing: .12em;
}

/* HERO — EXCEL EVENT LINE */

.bp-hero__arrival {
    margin-top: 30px;

    color: var(--bp-white);

    font-size: clamp(25px, 2.5vw, 40px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.035em;
}

.bp-hero__arrival strong {
    color: var(--bp-gold);
    font-weight: 900;
}


/* MOBILE */

@media (max-width: 520px) {

    .bp-hero__arrival {
        margin-top: 22px;

        font-size: 24px;
        line-height: 1.05;
    }

}
/* =========================================================
   BODYPOWER LIVE EXPERIENCES
   ========================================================= */

.bp-live-experiences {
    display: none;
    position: relative;
    padding: 120px 0 145px;
    background: #050505;
    border-top: 1px solid rgba(212,170,42,.28);
    border-bottom: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
}

.bp-live-experiences.is-open {
    display: block;
}

.bp-live-world {
    display: none;
}

.bp-live-world.is-active {
    display: block;
}


/* HERO TILE LINK */

.bp-hero__experience-link {
    min-height: 58px;
    padding: 0 14px;

    display: flex;
    align-items: center;
    gap: 11px;

    border: 1px solid rgba(255,255,255,.12);

    color: var(--bp-white);
    text-decoration: none;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;

    transition:
        background .25s ease,
        border-color .25s ease;
}

.bp-hero__experience-link b {
    color: var(--bp-gold);
    font-size: 8px;
}

.bp-hero__experience-link:hover {
    background: rgba(212,170,42,.08);
    border-color: rgba(212,170,42,.55);
}


/* EXPERIENCE NAV */

.bp-live-nav {
    display: grid;

    grid-template-columns:
        180px
        repeat(6, minmax(0,1fr));

    margin-bottom: 85px;

    border: 1px solid rgba(255,255,255,.10);
}

.bp-live-nav__label,
.bp-live-nav__item {
    min-height: 72px;
    padding: 14px 16px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right: 1px solid rgba(255,255,255,.10);
}

.bp-live-nav__label small {
    margin-bottom: 5px;
    color: var(--bp-gold);
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .17em;
}

.bp-live-nav__label strong {
    color: var(--bp-white);
    font-size: 9px;
    letter-spacing: .1em;
}

.bp-live-nav__item {
    appearance: none;
    background: transparent;
    border-top: 0;
    border-bottom: 0;
    border-left: 0;

    color: var(--bp-white);

    font-family: inherit;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .08em;
    text-align: left;
}

.bp-live-nav__item span {
    margin-bottom: 7px;
    color: var(--bp-gold);
    font-size: 7px;
}

.bp-live-nav__item.is-active {
    background: var(--bp-gold);
    color: #050505;
}

.bp-live-nav__item.is-active span {
    color: #050505;
}

.bp-live-nav__item.is-disabled {
    opacity: .34;
}


/* WORLD HERO */

.bp-live-world__hero {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(340px,480px);

    gap: 100px;
    align-items: end;

    margin-bottom: 85px;
}

.bp-live-world__title h2 {
    margin: 0;

    color: var(--bp-white);

    font-size: clamp(70px,8vw,130px);
    line-height: .77;
    letter-spacing: -.06em;
}

.bp-live-world__title h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(212,170,42,.9);
}

.bp-live-world__intro {
    padding-left: 28px;
    border-left: 1px solid rgba(212,170,42,.5);
}

.bp-live-world__intro > small {
    display: block;

    margin-bottom: 22px;

    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 900;
    letter-spacing: .16em;
}

.bp-live-world__intro p {
    margin: 0 0 20px;

    color: var(--bp-silver);

    font-size: 14px;
    line-height: 1.7;
}

.bp-live-world__intro .bp-live-world__lead {
    color: var(--bp-white);

    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
}

.bp-live-world__event {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 30px;
}

.bp-live-world__event span {
    padding: 10px 12px;

    border: 1px solid rgba(255,255,255,.14);

    color: var(--bp-white);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
}


/* STATS */

.bp-live-stats {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));

    margin-bottom: 110px;
}

.bp-live-stats > div {
    min-height: 185px;

    padding: 24px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255,255,255,.11);
    border-right: 0;
}

.bp-live-stats > div:last-child {
    border-right: 1px solid rgba(255,255,255,.11);
}

.bp-live-stats small {
    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 900;
    letter-spacing: .15em;
}

.bp-live-stats strong {
    margin-top: auto;

    color: var(--bp-white);

    font-size: clamp(35px,4vw,60px);
    line-height: .9;
    letter-spacing: -.045em;
}

.bp-live-stats span {
    margin-top: 11px;

    color: var(--bp-muted);

    font-size: 10px;
}


/* SUBJECTS */

.bp-live-subjects {
    margin-bottom: 110px;
}

.bp-live-subjects__heading {
    max-width: 900px;
    margin-bottom: 55px;
}

.bp-live-subjects__heading small {
    display: block;

    margin-bottom: 20px;

    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 900;
    letter-spacing: .17em;
}

.bp-live-subjects__heading h3 {
    margin: 0;

    color: var(--bp-white);

    font-size: clamp(50px,6vw,95px);
    line-height: .8;
    letter-spacing: -.055em;
}

.bp-live-subjects__heading h3 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(212,170,42,.85);
}

.bp-live-subjects__grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 8px;
}

.bp-live-subjects__grid article {
    min-height: 240px;
    padding: 25px;

    border: 1px solid rgba(255,255,255,.11);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.022),
            transparent
        );
}

.bp-live-subjects__grid article > span {
    display: block;

    margin-bottom: 65px;

    color: var(--bp-gold);

    font-size: 9px;
    font-weight: 900;
}

.bp-live-subjects__grid h4 {
    margin: 0 0 15px;

    color: var(--bp-white);

    font-size: 25px;
    line-height: .95;
}

.bp-live-subjects__grid p {
    margin: 0;

    color: var(--bp-silver);

    font-size: 11px;
    line-height: 1.65;
}


/* WHAT TO EXPECT */

.bp-live-expect {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));

    gap: 8px;

    margin-bottom: 100px;
}

.bp-live-expect article {
    min-height: 340px;
    padding: 26px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255,255,255,.12);
}

.bp-live-expect article > span {
    color: var(--bp-gold);

    font-size: 9px;
    font-weight: 900;
}

.bp-live-expect small {
    margin-top: auto;
    margin-bottom: 13px;

    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 900;
    letter-spacing: .15em;
}

.bp-live-expect h3 {
    margin: 0 0 18px;

    color: var(--bp-white);

    font-size: 34px;
    line-height: .92;
}

.bp-live-expect p {
    margin: 0;

    color: var(--bp-silver);

    font-size: 12px;
    line-height: 1.65;
}

.bp-live-expect__gold {
    background: var(--bp-gold);
    border-color: var(--bp-gold) !important;
}

.bp-live-expect__gold > span,
.bp-live-expect__gold small,
.bp-live-expect__gold h3,
.bp-live-expect__gold p {
    color: #050505;
}


/* CTA */

.bp-live-world__cta {
    padding-top: 42px;

    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 60px;

    border-top: 1px solid rgba(255,255,255,.12);
}

.bp-live-world__cta small {
    display: block;

    margin-bottom: 15px;

    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 900;
    letter-spacing: .16em;
}

.bp-live-world__cta strong {
    display: block;

    color: var(--bp-white);

    font-size: clamp(32px,4vw,60px);
    line-height: .9;
    letter-spacing: -.04em;
}

.bp-live-world__cta strong span {
    color: var(--bp-gold);
}

.bp-live-world__cta > a {
    min-width: 250px;
    padding: 20px 22px;

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

    background: var(--bp-gold);

    color: #050505;

    text-decoration: none;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
}


/* TABLET */

@media (max-width:980px) {

    .bp-live-nav {
        grid-template-columns: repeat(3,1fr);
    }

    .bp-live-nav__label {
        display: none;
    }

    .bp-live-world__hero {
        grid-template-columns: 1fr;
        gap: 45px;
    }

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

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

}


/* MOBILE */

@media (max-width:520px) {

    .bp-live-experiences {
        padding: 75px 0 95px;
    }

    .bp-live-nav {
        grid-template-columns: repeat(2,1fr);
        margin-bottom: 55px;
    }

    .bp-live-nav__item {
        min-height: 60px;
    }

    .bp-live-world__hero {
        margin-bottom: 55px;
    }

    .bp-live-world__title h2 {
        font-size: 54px;
    }

    .bp-live-world__intro {
        padding-left: 18px;
    }

    .bp-live-world__intro .bp-live-world__lead {
        font-size: 18px;
    }

    .bp-live-stats {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 75px;
    }

    .bp-live-stats > div {
        min-height: 150px;
        padding: 18px;
    }

    .bp-live-subjects {
        margin-bottom: 75px;
    }

    .bp-live-subjects__heading h3 {
        font-size: 45px;
    }

    .bp-live-subjects__grid {
        grid-template-columns: 1fr;
    }

    .bp-live-subjects__grid article {
        min-height: 210px;
    }

    .bp-live-expect {
        grid-template-columns: 1fr;
        margin-bottom: 70px;
    }

    .bp-live-expect article {
        min-height: 280px;
    }

    .bp-live-world__cta {
        display: block;
    }

    .bp-live-world__cta strong {
        font-size: 34px;
    }

    .bp-live-world__cta > a {
        width: 100%;
        min-width: 0;

        margin-top: 30px;
    }

}
/* =========================================================
   EVENT AREAS — HOMEPAGE SELECTOR
   ========================================================= */

.bp-event-areas {
    padding: 110px 0 120px;
    background: #070707;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.bp-event-areas__header {
    max-width: 900px;
    margin-bottom: 55px;
}

.bp-event-areas__header > small {
    display: block;
    margin-bottom: 20px;

    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 900;
    letter-spacing: .17em;
}

.bp-event-areas__header h2 {
    margin: 0;

    color: var(--bp-white);

    font-size: clamp(60px,7vw,110px);
    line-height: .79;
    letter-spacing: -.055em;
}

.bp-event-areas__header h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(212,170,42,.9);
}

.bp-event-areas__header p {
    max-width: 600px;
    margin: 28px 0 0;

    color: var(--bp-silver);

    font-size: 14px;
    line-height: 1.7;
}

.bp-event-areas__grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 8px;
}

.bp-event-area-card {
    min-height: 270px;
    padding: 25px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255,255,255,.12);

    background: #0c0c0c;

    color: var(--bp-white);
    text-decoration: none;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.bp-event-area-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,170,42,.55);
}

.bp-event-area-card > span {
    color: var(--bp-gold);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em;
}

.bp-event-area-card small {
    margin-top: auto;
    margin-bottom: 12px;

    color: var(--bp-muted);

    font-size: 7px;
    font-weight: 900;
    letter-spacing: .14em;
}

.bp-event-area-card h3 {
    margin: 0 0 20px;

    color: inherit;

    font-size: clamp(27px,2.7vw,42px);
    line-height: .9;
    letter-spacing: -.04em;
}

.bp-event-area-card strong {
    padding-top: 16px;

    border-top: 1px solid rgba(255,255,255,.12);

    color: var(--bp-gold);

    font-size: 8px;
    letter-spacing: .12em;
}

.bp-event-area-card--gold {
    background: var(--bp-gold);
    border-color: var(--bp-gold);
    color: #050505;
}

.bp-event-area-card--gold > span,
.bp-event-area-card--gold small,
.bp-event-area-card--gold strong {
    color: #050505;
}

.bp-event-area-card--gold strong {
    border-color: rgba(5,5,5,.22);
}


@media (max-width: 980px) {

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

}


@media (max-width: 520px) {

    .bp-event-areas {
        padding: 75px 0 85px;
    }

    .bp-event-areas__header h2 {
        font-size: 51px;
    }

    .bp-event-areas__grid {
        grid-template-columns: 1fr;
    }

    .bp-event-area-card {
        min-height: 220px;
        padding: 22px;
    }

    .bp-event-area-card h3 {
        font-size: 33px;
    }

}
/* =========================================================
   SUPERTHEATRE — COMPACT SPEAKER WALL
   ========================================================= */

.bp-super-speakers {
    margin: 0 0 85px;
    padding: 55px 0;

    border-top: 1px solid rgba(255,255,255,.11);
    border-bottom: 1px solid rgba(255,255,255,.11);
}


.bp-super-speakers__header {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(300px,450px);

    gap: 70px;
    align-items: end;

    margin-bottom: 40px;
}


.bp-super-speakers__header small {
    display: block;

    margin-bottom: 16px;

    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 900;
    letter-spacing: .17em;
}


.bp-super-speakers__header h3 {
    margin: 0;

    color: var(--bp-white);

    font-size: clamp(44px,5vw,76px);
    line-height: .8;
    letter-spacing: -.055em;
}


.bp-super-speakers__header h3 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(212,170,42,.9);
}


.bp-super-speakers__header p {
    margin: 0;

    padding-left: 24px;

    border-left: 1px solid rgba(212,170,42,.45);

    color: var(--bp-silver);

    font-size: 13px;
    line-height: 1.7;
}


/* SPEAKER GRID */

.bp-super-speakers__grid {
    display: grid;

    grid-template-columns:
        repeat(6,minmax(0,1fr));

    gap: 7px;
}


.bp-super-speaker {
    position: relative;

    min-width: 0;

    background: #0b0b0b;

    border: 1px solid rgba(255,255,255,.11);

    overflow: hidden;
}


.bp-super-speaker img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
    object-position: center 10%;
    filter:
        saturate(.9)
        contrast(1.04);
}


.bp-super-speaker > div {
    min-height: 68px;

    padding: 14px 13px 16px;
}


.bp-super-speaker small {
    display: block;

    margin-bottom: 9px;

    color: var(--bp-gold);

    font-size: 6px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: .11em;
}


.bp-super-speaker strong {
    display: block;

    color: var(--bp-white);

    font-size: 15px;
    line-height: .95;
    letter-spacing: -.025em;
}


/* FOOTER */

.bp-super-speakers__footer {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    margin-top: 25px;
    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.09);
}


.bp-super-speakers__footer strong {
    color: var(--bp-white);

    font-size: 9px;
    letter-spacing: .11em;
}


.bp-super-speakers__footer span {
    color: var(--bp-gold);

    font-size: 8px;
    font-weight: 900;
    letter-spacing: .13em;
}


/* TABLET */

@media (max-width: 980px) {

    .bp-super-speakers__header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bp-super-speakers__header p {
        max-width: 650px;
    }

    .bp-super-speakers__grid {
        grid-template-columns: repeat(3,1fr);
    }

}


/* MOBILE */

@media (max-width: 520px) {

    .bp-super-speakers {
        margin-bottom: 65px;
        padding: 40px 0;
    }

    .bp-super-speakers__header {
        margin-bottom: 30px;
    }

    .bp-super-speakers__header h3 {
        font-size: 44px;
    }

    .bp-super-speakers__header p {
        padding-left: 17px;
    }


    /* horizontal speaker rail instead of huge vertical stack */

    .bp-super-speakers__grid {
        display: flex;

        gap: 8px;

        margin-right: -20px;

        overflow-x: auto;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;
    }

    .bp-super-speakers__grid::-webkit-scrollbar {
        display: none;
    }


    .bp-super-speaker {
        flex: 0 0 68%;

        scroll-snap-align: start;
    }


   .bp-super-speaker img {
    height: 240px;
    object-position: center 10%;
}


    .bp-super-speaker strong {
        font-size: 18px;
    }


    .bp-super-speakers__footer {
        display: block;
    }


    .bp-super-speakers__footer span {
        display: block;
        margin-top: 10px;
    }

}

/* =========================================================
   LINE-UP WOW — CTA BUTTONS
   ========================================================= */

.bp-lineup-wow__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
}

.bp-lineup-wow__button {
    min-height: 62px;
    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    text-decoration: none;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;

    transition:
        transform .25s ease,
        background .25s ease;
}

.bp-lineup-wow__button--outline {
    color: var(--bp-white);
    border: 1px solid rgba(255,255,255,.18);
    background: #090909;
}

.bp-lineup-wow__button--gold {
    color: #050505;
    border: 1px solid var(--bp-gold);
    background: var(--bp-gold);
}

.bp-lineup-wow__button:hover {
    transform: translateY(-3px);
}

.bp-lineup-wow__button--outline:hover {
    border-color: var(--bp-gold);
}

.bp-lineup-wow__button--gold:hover {
    background: var(--bp-gold-strong);
}


/* MOBILE */

@media (max-width: 520px) {

    .bp-lineup-wow__actions {
        grid-template-columns: 1fr;
    }

    .bp-lineup-wow__button {
        min-height: 58px;
    }

}

/* =========================================================
   EVENT AREAS — VISUAL BREAK
   ========================================================= */

.bp-event-areas {
    background: #f1efe8;
    border-top: 0;
    border-bottom: 0;
}

.bp-event-areas__header > small {
    color: #a77d08;
}

.bp-event-areas__header h2 {
    color: #090909;
}

.bp-event-areas__header h2 span {
    color: #d4aa2a;
    -webkit-text-stroke: 0;
}

.bp-event-areas__header p {
    color: #44433f;
}


/* KEEP THE SIX EXPERIENCE CARDS DARK */

.bp-event-area-card {
    background: #090909;
    border-color: rgba(0,0,0,.15);
    color: #f5f5f2;
}

.bp-event-area-card small {
    color: #96958f;
}

.bp-event-area-card > span,
.bp-event-area-card strong {
    color: var(--bp-gold);
}


/* KEEP FINAL GOLD CARD */

.bp-event-area-card--gold {
    background: var(--bp-gold);
    color: #050505;
}

.bp-event-area-card--gold > span,
.bp-event-area-card--gold small,
.bp-event-area-card--gold strong {
    color: #050505;
}

/* =========================================================
   EVENT AREAS — SMOOTHER SECTION TRANSITION
   ========================================================= */

.bp-event-areas {
    position: relative;
    background: #e8e3d9;
    padding-top: 72px;
    border-top: 4px solid var(--bp-gold);
}

/* subtle dark edge so black does not suddenly become cream */
.bp-event-areas::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;

    background: linear-gradient(
        180deg,
        rgba(5,5,5,.18) 0%,
        rgba(5,5,5,0) 100%
    );

    pointer-events: none;
}


/* MOBILE */

@media (max-width: 520px) {

    .bp-event-areas {
        padding-top: 42px;
        padding-bottom: 80px;
    }

    .bp-event-areas::before {
        height: 18px;
    }

    .bp-event-areas__header {
        margin-bottom: 38px;
    }

    .bp-event-areas__header > small {
        margin-bottom: 18px;
    }

}

/* EVENT-ONLY HOMEPAGE — hide detailed workshop topic worlds */
.bp-topic-world {
    display: none !important;
}

/* =========================================================
   EVENT AREAS — BODYPOWER RED
   ========================================================= */

.bp-event-areas {
    position: relative;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(255,255,255,.06),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #7b1113 0%,
            #58090b 55%,
            #300405 100%
        );

    padding-top: 72px;
    padding-bottom: 110px;

    border-top: 4px solid var(--bp-gold);

    color: #fff;
}


/* subtle depth */

.bp-event-areas::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.10),
            transparent 40%,
            rgba(0,0,0,.08)
        );

    pointer-events: none;
}


/* keep content above effect */

.bp-event-areas .bp-container {
    position: relative;
    z-index: 2;
}


/* EYEBROW */

.bp-event-areas__header > small {
    color: var(--bp-gold);
}


/* MAIN HEADLINE */

.bp-event-areas__header h2 {
    color: #fff;
}

.bp-event-areas__header h2 span {
    color: var(--bp-gold);
    -webkit-text-stroke: 0;
}


/* INTRO COPY */

.bp-event-areas__header p {
    color: rgba(255,255,255,.78);
}


/* SIX CARDS */

.bp-event-area-card {
    background: #090909;

    border: 1px solid rgba(255,255,255,.16);

    color: #fff;
}

.bp-event-area-card:hover {
    border-color: var(--bp-gold);
}


/* FINAL GOLD CARD STAYS GOLD */

.bp-event-area-card--gold {
    background: var(--bp-gold);
    color: #050505;
    border-color: var(--bp-gold);
}


/* MOBILE */

@media (max-width: 520px) {

    .bp-event-areas {
        padding-top: 48px;
        padding-bottom: 90px;
    }

}

/* =========================================================
   CLEAN SEPARATOR BETWEEN SPEAKER + EVENT AREAS
   ========================================================= */

.bp-event-areas {
    border-top: 4px solid rgba(255,255,255,.80);
}

/* =========================================================
   SUPERTHEATRE — PREMIUM HEADING
   ========================================================= */

.bp-lineup-wow {
    position: relative;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,.12);
}

.bp-lineup-wow__header {
    position: relative;
    max-width: 1050px;
}

.bp-lineup-wow__header > small {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;

    color: var(--bp-gold);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .18em;
}

.bp-lineup-wow__header > small::before {
    content: "";
    width: 38px;
    height: 2px;
    background: #991b1e;
}

.bp-lineup-wow__header h2 {
    margin: 0;

    color: var(--bp-white);

    font-size: clamp(58px, 6vw, 100px);
    line-height: .82;
    letter-spacing: -.055em;
}

.bp-lineup-wow__header h2 span {
    color: var(--bp-gold);
    -webkit-text-stroke: 0;
}

.bp-lineup-wow__header p {
    max-width: 850px;
    margin-top: 30px;

    color: rgba(255,255,255,.72);

    font-size: 15px;
    line-height: 1.7;
}

.bp-lineup-wow__header > strong {
    display: inline-block;

    margin-top: 24px;
    padding: 11px 15px;

    background: #991b1e;

    color: #fff;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
}


/* MOBILE */

@media (max-width: 520px) {

    .bp-lineup-wow__header h2 {
        font-size: 47px;
        line-height: .86;
    }

    .bp-lineup-wow__header p {
        font-size: 14px;
        line-height: 1.6;
    }

    .bp-lineup-wow__header > strong {
        font-size: 7px;
        line-height: 1.5;
    }

}

/* =========================================================
   ASK THE COACH — FEATURE SECTION
   ========================================================= */

.bp-ask-coach {
    position: relative;

    padding: 120px 0;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(255,255,255,.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #841416 0%,
            #5d090b 55%,
            #320405 100%
        );

    border-top: 1px solid rgba(255,255,255,.65);
    border-bottom: 1px solid rgba(255,255,255,.15);

    overflow: hidden;
}

.bp-ask-coach::before {
    content: "?";

    position: absolute;
    right: 3%;
    bottom: -15%;

    color: rgba(255,255,255,.035);

    font-size: clamp(350px,40vw,650px);
    font-weight: 900;
    line-height: .8;

    pointer-events: none;
}

.bp-ask-coach__grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(350px,.85fr);

    gap: 100px;
    align-items: center;
}

.bp-ask-coach__title small {
    display: block;

    margin-bottom: 24px;

    color: var(--bp-gold);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .18em;
}

.bp-ask-coach__title h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(72px,8vw,130px);
    line-height: .78;
    letter-spacing: -.06em;
}

.bp-ask-coach__title h2 span {
    color: var(--bp-gold);
}

.bp-ask-coach__content {
    padding-left: 30px;

    border-left: 1px solid rgba(255,255,255,.28);
}

.bp-ask-coach__content h3 {
    margin: 0 0 25px;

    color: #fff;

    font-size: 25px;
    line-height: 1.25;
}

.bp-ask-coach__content p {
    margin: 0 0 16px;

    color: rgba(255,255,255,.76);

    font-size: 15px;
    line-height: 1.7;
}

.bp-ask-coach__topics {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 30px;
}

.bp-ask-coach__topics span {
    padding: 9px 11px;

    border: 1px solid rgba(255,255,255,.22);

    color: #fff;

    font-size: 7px;
    font-weight: 900;
    letter-spacing: .13em;
}

.bp-ask-coach__button {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 35px;
    padding: 20px 22px;

    background: var(--bp-gold);

    color: #050505;

    text-decoration: none;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
}


/* MOBILE */

@media (max-width: 520px) {

    .bp-ask-coach {
        padding: 75px 0 90px;
    }

    .bp-ask-coach__grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .bp-ask-coach__title h2 {
        font-size: 62px;
    }

    .bp-ask-coach__content {
        padding-left: 18px;
    }

    .bp-ask-coach__content h3 {
        font-size: 21px;
    }

}

/* =========================================================
   TWO DAYS / SIX WORLDS — RED EVENT FACTS SECTION
   ========================================================= */

.bp-event-section {
    position: relative;
    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(255,255,255,.06),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #841416 0%,
            #5d090b 55%,
            #320405 100%
        );

    border-top: 1px solid rgba(255,255,255,.55);
    border-bottom: 1px solid rgba(255,255,255,.18);

    color: #fff;
}

.bp-event-section .bp-section-index {
    color: var(--bp-gold);
}

.bp-event-section__header h2 {
    color: #fff;
}

.bp-event-section__header h2 span {
    color: var(--bp-gold);
    -webkit-text-stroke: 0;
}

.bp-event-section__grid {
    border-color: rgba(255,255,255,.18);
}

.bp-event-section .bp-event-block {
    background: rgba(5,5,5,.28);
    border-color: rgba(255,255,255,.16);
}

.bp-event-section .bp-event-block small {
    color: var(--bp-gold);
}

.bp-event-section .bp-event-block strong {
    color: #fff;
}

.bp-event-section .bp-event-block span {
    color: rgba(255,255,255,.72);
}


/* MOBILE */

@media (max-width: 520px) {

    .bp-event-section {
        padding-top: 75px;
        padding-bottom: 80px;
    }

}

/* =========================================================
   ASK THE COACH — RETURN TO BLACK / GOLD
   ========================================================= */

.bp-ask-coach {
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(212,170,42,.08),
            transparent 30%
        ),
        #050505;

    border-top: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(255,255,255,.16);
}

/* faint question mark stays visible */

.bp-ask-coach::before {
    color: rgba(212,170,42,.035);
}

/* divider on right-hand content */

.bp-ask-coach__content {
    border-left-color: rgba(212,170,42,.40);
}

/* description */

.bp-ask-coach__content p {
    color: rgba(255,255,255,.72);
}

/* topic buttons */

.bp-ask-coach__topics span {
    border-color: rgba(255,255,255,.18);
}

/* gold CTA remains */

.bp-ask-coach__button {
    background: var(--bp-gold);
    color: #050505;
}