/* =========================================================
   FIGHT CLUB
   MAIN STYLESHEET
   PART 1 — RESET / VARIABLES / GLOBAL / TOP BAR / NAVBAR
========================================================= */


/* =========================================================
   GOOGLE FONTS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --red: #ed1025;
    --red-dark: #b90819;

    --black: #080808;
    --black-soft: #101010;
    --black-light: #171717;

    --white: #ffffff;
    --off-white: #f4f2ee;
    --paper: #f1efeb;

    --gray-100: #eeeeee;
    --gray-200: #d8d6d1;
    --gray-300: #aaa9a5;
    --gray-400: #777570;
    --gray-500: #55534f;

    --border-light: #d7d4ce;
    --border-dark: #292929;

    --heading-font: "Barlow Condensed", sans-serif;
    --body-font: "Inter", sans-serif;

}


/* =========================================================
   GLOBAL RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    width: 100%;
    min-height: 100vh;

    background: var(--paper);

    color: #111111;

    font-family: var(--body-font);

    overflow-x: hidden;

}


body::-webkit-scrollbar {

    width: 8px;

}


body::-webkit-scrollbar-track {

    background: var(--black);

}


body::-webkit-scrollbar-thumb {

    background: var(--red);

}


img {

    display: block;

    width: 100%;

    max-width: 100%;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea,
select {

    font: inherit;

}


button {

    cursor: pointer;

}


ul,
ol {

    list-style: none;

}


/* =========================================================
   GLOBAL TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: var(--heading-font);

    text-transform: uppercase;

    font-weight: 400;

}


p {

    line-height: 1.7;

}


.section-light {

    background: var(--paper);

    color: #111111;

}


/* =========================================================
   COMMON SECTION LABEL
========================================================= */

.section-label {

    display: inline-block;

    margin-bottom: 17px;

    font-family: var(--heading-font);

    font-size: 20px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    color: #d9d9d9;

}


.red-label {

    color: var(--red);

}


/* =========================================================
   COMMON BUTTONS
========================================================= */

.primary-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    min-height: 46px;

    padding: 0 21px;

    background: var(--red);

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 22px;

    font-weight: 800;

    letter-spacing: 0.11em;

    text-transform: uppercase;

    transition:
        background 0.25s ease,
        transform 0.25s ease;

}


.primary-button span {

    font-size: 16px;

    line-height: 1;

}


.primary-button:hover {

    background: #c90d1f;

    transform: translateY(-2px);

}


.dark-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 17px;

    min-height: 46px;

    padding: 0 21px;

    background: var(--black);

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.11em;

    text-transform: uppercase;

    transition:
        background 0.25s ease,
        transform 0.25s ease;

}


.dark-button span {

    font-size: 16px;

    line-height: 1;

}


.dark-button:hover {

    background: var(--red);

    transform: translateY(-2px);

}


.outline-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 46px;

    padding: 0 21px;

    border: 1px solid #555;

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.11em;

    text-transform: uppercase;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;

}


.outline-button:hover {

    border-color: var(--red);

    background: var(--red);

}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    position: relative;

    z-index: 100;

    width: 100%;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    border-bottom: 1px solid #dedbd6;

    color: #555;

    font-family: var(--heading-font);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.14em;

    text-transform: uppercase;

}


.top-bar-left,
.top-bar-center,
.top-bar-right {

    height: 100%;

    display: flex;

    align-items: center;

}


.top-bar {

    justify-content: space-between;

    padding: 0 4.5%;

}


.top-bar-left {

    gap: 6px;

}


.top-star {

    color: var(--red);

    font-size: 9px;

}


.top-bar-center {

    gap: 35px;

}


.top-bar-right {

    color: #111;

}


/* =========================================================
   MAIN HEADER / NAVBAR
========================================================= */

.main-header {

    position: absolute;

    z-index: 90;

    top: 25px;

    left: 0;

    width: 100%;

    height: 66px;

    color: var(--white);

    background: rgba(0, 0, 0, 0.36);

    border-bottom: 1px solid rgba(255, 255, 255, 0.14);

    transition:
        background 0.3s ease,
        height 0.3s ease;

}


.main-header.scrolled {

    position: fixed;

    top: 0;

    height: 62px;

    background: rgba(7, 7, 7, 0.96);

    backdrop-filter: blur(12px);

}


.nav-container {

    width: 100%;

    max-width: 1400px;

    height: 100%;

    margin: 0 auto;

    padding: 0 4.5%;

    display: flex;

    align-items: center;

    gap: 28px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    flex-shrink: 0;

    display: flex;

    align-items: center;

    gap: 4px;

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 18px;

    font-weight: 900;

    line-height: 1;

    letter-spacing: 0.02em;

    white-space: nowrap;

}


.logo-symbol {

    color: var(--red);

    font-size: 20px;

    line-height: 1;

}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-nav {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 23px;

    margin-left: auto;

}


.desktop-nav a {

    position: relative;

    padding: 25px 0;

    color: rgba(255, 255, 255, 0.88);

    font-family: var(--heading-font);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    white-space: nowrap;

    transition: color 0.2s ease;

}


.desktop-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 17px;

    width: 0;

    height: 2px;

    background: var(--red);

    transition: width 0.25s ease;

}


.desktop-nav a:hover {

    color: var(--white);

}


.desktop-nav a:hover::after {

    width: 100%;

}


/* =========================================================
   NAV BUTTON
========================================================= */

.nav-button {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 38px;

    padding: 0 18px;

    background: var(--red);

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    transition:
        background 0.25s ease,
        transform 0.25s ease;

}


.nav-button:hover {

    background: #c90d1f;

    transform: translateY(-1px);

}


/* =========================================================
   HAMBURGER
========================================================= */

.hamburger {

    display: none;

    width: 40px;

    height: 40px;

    margin-left: auto;

    padding: 8px;

    border: 0;

    background: transparent;

}


.hamburger span {

    display: block;

    width: 22px;

    height: 2px;

    margin: 5px auto;

    background: var(--white);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;

}


.hamburger.active span:nth-child(1) {

    transform: translateY(7px) rotate(45deg);

}


.hamburger.active span:nth-child(2) {

    opacity: 0;

}


.hamburger.active span:nth-child(3) {

    transform: translateY(-7px) rotate(-45deg);

}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    position: absolute;

    top: 66px;

    left: 0;

    width: 100%;

    padding: 25px;

    display: none;

    flex-direction: column;

    gap: 0;

    background: rgba(8, 8, 8, 0.98);

    border-top: 1px solid #252525;

    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);

}


.mobile-menu.active {

    display: flex;

}


.mobile-menu a {

    padding: 15px 4px;

    border-bottom: 1px solid #252525;

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.12em;

}


.mobile-menu a:hover {

    color: var(--red);

}


.mobile-menu-button {

    margin-top: 15px;

    border: 0 !important;

    background: var(--red);

    text-align: center;

}


.mobile-menu-button:hover {

    color: var(--white) !important;

}

/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {

    position: relative;

    width: 100%;

    min-height: 670px;

    display: flex;

    align-items: stretch;

    overflow: hidden;

    background: var(--black);

    color: var(--white);

}


/* =========================================================
   HERO BACKGROUND
========================================================= */

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    transform: scale(1.015);
}

.hero-background video {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center center;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.88) 25%,
            rgba(0, 0, 0, 0.60) 54%,
            rgba(0, 0, 0, 0.25) 100%
        );

}


.hero-overlay::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 38%;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.72),
            transparent
        );

}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1400px;

    min-height: 670px;

    margin: 0 auto;

    padding:
        155px
        4.5%
        42px;

    display: flex;

    align-items: flex-start;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    width: 100%;

    max-width: 1000px;

}


.hero-content .section-label {

    margin-bottom: 20px;

    color: #dddddd;

}


/* =========================================================
   HERO HEADING
========================================================= */

.hero-content h1 {

    max-width: 950px;

    margin: 0;

    font-family: var(--heading-font);

    font-size: clamp(
        48px,
        7.15vw,
        100px
    );

    font-weight: 800;

    line-height: 0.81;

    letter-spacing: -0.035em;

    text-transform: uppercase;

    color: var(--white);

}


.hero-content h1 span {

    display: block;

    color: var(--red);

}


.hero-content h1 br {

    display: block;

}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {

    max-width: 560px;

    margin-top: 28px;

    margin-bottom: 23px;

    color: #d4d4d4;

    font-family: var(--body-font);

    font-size: 11px;

    font-weight: 500;

    line-height: 1.75;

    letter-spacing: 0.035em;

    text-transform: uppercase;

}


/* =========================================================
   HERO CTA
========================================================= */

.hero-content > .primary-button {

    min-height: 48px;

    padding-left: 22px;

    padding-right: 18px;

}


/* =========================================================
   HERO STATS
========================================================= */

.hero-stats {

    position: relative;

    z-index: 3;

    display: flex;

    align-items: flex-end;

    gap: 70px;

    margin-top: 85px;

}


.hero-stat {

    position: relative;

    min-width: 95px;

}


.hero-stat:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 5px;

    right: -35px;

    width: 1px;

    height: 36px;

    background: rgba(255, 255, 255, 0.22);

}


.hero-stat strong {

    display: block;

    font-family: var(--heading-font);

    font-size: 28px;

    font-weight: 800;

    line-height: 0.9;

    letter-spacing: -0.01em;

    color: var(--white);

}


.hero-stat strong span {

    color: var(--red);

}


.hero-stat small {

    display: block;

    margin-top: 7px;

    color: #aaa;

    font-family: var(--heading-font);

    font-size: 7px;

    font-weight: 600;

    line-height: 1;

    letter-spacing: 0.13em;

    text-transform: uppercase;

}


/* =========================================================
   TICKER SECTION
========================================================= */

.ticker-section {

    position: relative;

    z-index: 5;

    width: 100%;

    height: 38px;

    overflow: hidden;

    background: #ffffff;

    border-bottom: 1px solid #dedbd6;

    border-top: 1px solid #dedbd6;

}


.ticker-content {

    width: max-content;

    min-width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 30px;

    padding: 0 25px;

    color: #55534f;

    font-family: var(--heading-font);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.13em;

    text-transform: uppercase;

}


.ticker-rating {

    color: var(--red);

}


/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {

    width: 100%;

    padding:
        92px
        max(7%, calc((100vw - 1160px) / 2));

    overflow: hidden;

}


.about-container {

    width: 100%;

    max-width: 1160px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 80px;

}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content {

    max-width: 500px;

}


.about-content h2 {

    margin: 0;

    font-family: var(--heading-font);

    font-size: clamp(
        43px,
        4.4vw,
        64px
    );

    font-weight: 900;

    line-height: 0.87;

    letter-spacing: -0.025em;

    text-transform: uppercase;

}


.about-content h2 span {

    color: var(--red);

}


.about-content p {

    max-width: 510px;

    margin-top: 20px;

    color: #777570;

    font-size: 11px;

    font-weight: 400;

    line-height: 1.8;

}


.about-content .dark-button {

    margin-top: 13px;

}


/* =========================================================
   ABOUT VISUAL
========================================================= */

.about-visual {

    position: relative;

    width: 100%;

    min-height: 380px;

    padding-right: 13%;

}


.about-main-image {

    position: relative;

    width: 100%;

    height: 320px;

    overflow: hidden;

}


.about-main-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

}


.about-main-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            120deg,
            rgba(0, 0, 0, 0.08),
            transparent 60%
        );

}


/* =========================================================
   ABOUT SMALL IMAGE
========================================================= */

.about-small-image {

    position: absolute;

    z-index: 3;

    right: 0;

    bottom: -30px;

    width: 47%;

    height: 150px;

    padding: 4px;

    background: var(--paper);

}


.about-small-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/* =========================================================
   EXPERIENCE BOX
========================================================= */

.experience-box {

    position: absolute;

    z-index: 4;

    left: 47%;

    bottom: -63px;

    min-width: 105px;

    min-height: 82px;

    padding: 13px 15px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: var(--red);

    color: var(--white);

}


.experience-box strong {

    display: block;

    font-family: var(--heading-font);

    font-size: 28px;

    font-weight: 900;

    line-height: 0.8;

}


.experience-box span {

    display: block;

    margin-top: 7px;

    font-family: var(--heading-font);

    font-size: 7px;

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: 0.1em;

}


/* =========================================================
   STATISTICS SECTION
========================================================= */

.statistics-section {

    width: 100%;

    background: var(--black);

    color: var(--white);

}


.statistics-container {

    width: 100%;

    max-width: 1160px;

    min-height: 145px;

    margin: 0 auto;

    padding: 0 7%;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    align-items: center;

}


.stat-box {

    position: relative;

    min-height: 60px;

    padding-left: 22px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-right: 1px solid #303030;

}


.stat-box:first-child {

    padding-left: 0;

}


.stat-box:last-child {

    border-right: 0;

}


.stat-number {

    font-family: var(--heading-font);

    font-size: 39px;

    font-weight: 800;

    line-height: 0.85;

    letter-spacing: -0.01em;

}


.stat-number span {

    color: var(--red);

}


.stat-title {

    margin-top: 8px;

    color: #777570;

    font-family: var(--heading-font);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.13em;

    text-transform: uppercase;

}


/* =========================================================
   STANDARD SECTION
========================================================= */

.standard-section {

    width: 100%;

    padding:
        92px
        max(7%, calc((100vw - 1160px) / 2));

}


.standard-container {

    width: 100%;

    max-width: 1160px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 80px;

}


/* =========================================================
   STANDARD IMAGE
========================================================= */

.standard-image {

    width: 100%;

    height: 390px;

    overflow: hidden;

}


.standard-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

}


/* =========================================================
   STANDARD CONTENT
========================================================= */

.standard-content {

    max-width: 520px;

}


.standard-content h2 {

    font-family: var(--heading-font);

    font-size: clamp(
        40px,
        4vw,
        59px
    );

    font-weight: 900;

    line-height: 0.87;

    letter-spacing: -0.025em;

}


.standard-content > p {

    max-width: 460px;

    margin-top: 20px;

    color: #777570;

    font-size: 11px;

    line-height: 1.8;

}


/* =========================================================
   STANDARD POINTS
========================================================= */

.standard-points {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

    margin-top: 34px;

}


.standard-point {

    min-height: 72px;

    padding-top: 12px;

    border-top: 1px solid var(--border-light);

}


.standard-point span {

    display: block;

    margin-bottom: 9px;

    color: var(--red);

    font-family: var(--heading-font);

    font-size: 15px;

    font-weight: 800;

    line-height: 1;

}


.standard-point strong {

    display: block;

    color: #171717;

    font-family: var(--heading-font);

    font-size: 9px;

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: 0.08em;

}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;

}


.reveal.show {

    opacity: 1;

    transform: translateY(0);

}

/* =========================================================
   POWERFUL / MISSION SECTION
========================================================= */

.powerful-section {

    position: relative;

    width: 100%;

    overflow: hidden;

    padding:
        95px
        max(7%, calc((100vw - 1160px) / 2));

    background:
        radial-gradient(
            circle at 78% 15%,
            rgba(100, 10, 20, 0.42) 0%,
            rgba(35, 7, 10, 0.22) 25%,
            transparent 52%
        ),
        #0a0a0a;

    color: var(--white);

}


.powerful-section::before {

    content: "";

    position: absolute;

    top: -150px;

    right: -120px;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(237, 16, 37, 0.09),
            transparent 68%
        );

    pointer-events: none;

}


.powerful-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1160px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: end;

    gap: 35px;

}


/* =========================================================
   POWERFUL HEADING
========================================================= */

.powerful-heading {

    max-width: 550px;

}


.powerful-heading h2 {

    margin: 4px 0 0;

    color: #888;

    font-family: var(--heading-font);

    font-size: clamp(
        75px,
        9vw,
        125px
    );

    font-weight: 900;

    line-height: 0.7;

    letter-spacing: -0.045em;

}


.powerful-heading h3 {

    margin-top: 28px;

    color: var(--white);

    font-family: var(--heading-font);

    font-size: clamp(
        27px,
        3vw,
        42px
    );

    font-weight: 900;

    line-height: 0.9;

    letter-spacing: -0.015em;

}


.powerful-heading h3 span {

    color: var(--red);

}


/* =========================================================
   POWERFUL DESCRIPTION
========================================================= */

.powerful-description {

    display: flex;

    justify-content: flex-end;

}


.powerful-description p {

    max-width: 420px;

    color: #858585;

    font-size: 10px;

    line-height: 1.85;

}


/* =========================================================
   POWERFUL POINTS
========================================================= */

.powerful-points {

    grid-column: 1 / -1;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 5px;

    margin-top: 60px;

}


.powerful-point {

    min-height: 155px;

    padding: 23px 20px;

    background: #111111;

    border: 1px solid #222222;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease;

}


.powerful-point:hover {

    border-color: #4a4a4a;

    transform: translateY(-4px);

}


.powerful-point > span {

    display: block;

    color: var(--red);

    font-family: var(--heading-font);

    font-size: 12px;

    font-weight: 800;

}


.powerful-point strong {

    display: block;

    margin-top: 21px;

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 17px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: 0.02em;

}


.powerful-point p {

    margin-top: 10px;

    color: #777;

    font-size: 9px;

    line-height: 1.6;

}


/* =========================================================
   PROGRAMS SECTION
========================================================= */

.programs-section {

    width: 100%;

    padding:
        92px
        max(7%, calc((100vw - 1160px) / 2));

}


.programs-container {

    width: 100%;

    max-width: 1160px;

    margin: 0 auto;

}


/* =========================================================
   PROGRAMS HEADER
========================================================= */

.programs-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 35px;

}


.programs-header h2 {

    font-family: var(--heading-font);

    font-size: clamp(
        45px,
        4.5vw,
        66px
    );

    font-weight: 900;

    line-height: 0.84;

    letter-spacing: -0.03em;

}


.all-programs {

    padding-bottom: 4px;

    color: #333;

    font-family: var(--heading-font);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    transition: color 0.2s ease;

}


.all-programs:hover {

    color: var(--red);

}


/* =========================================================
   PROGRAMS GRID
========================================================= */

.programs-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 5px;

}


/* =========================================================
   PROGRAM CARD
========================================================= */

.program-card {

    position: relative;

    overflow: hidden;

    min-height: 310px;

    background: var(--black);

    color: var(--white);

    transition:
        transform 0.3s ease;

}


.program-card:hover {

    transform: translateY(-4px);

}


/* =========================================================
   PROGRAM IMAGE
========================================================= */

.program-image {

    position: relative;

    width: 100%;

    height: 155px;

    overflow: hidden;

}


.program-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 35%,
            rgba(0, 0, 0, 0.45)
        );

}


.program-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;

}


.program-card:hover
.program-image img {

    transform: scale(1.05);

}


/* =========================================================
   PROGRAM CARD CONTENT
========================================================= */

.program-card-content {

    min-height: 155px;

    padding: 17px 18px 20px;

}


.program-number {

    display: block;

    color: var(--red);

    font-family: var(--heading-font);

    font-size: 10px;

    font-weight: 800;

}


.program-card-content h3 {

    margin-top: 7px;

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 19px;

    font-weight: 800;

    line-height: 0.95;

}


.program-card-content p {

    max-width: 250px;

    margin-top: 10px;

    color: #8a8a8a;

    font-size: 9px;

    line-height: 1.6;

}


.program-card-content a {

    display: inline-block;

    margin-top: 15px;

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.11em;

    transition: color 0.2s ease;

}


.program-card-content a:hover {

    color: var(--red);

}


/* =========================================================
   PRICING SECTION
========================================================= */

.pricing-section {

    width: 100%;

    padding:
        95px
        max(7%, calc((100vw - 1160px) / 2));

}


.pricing-container {

    width: 100%;

    max-width: 1000px;

    margin: 0 auto;

}


/* =========================================================
   PRICING HEADER
========================================================= */

.pricing-header {

    margin-bottom: 38px;

    text-align: center;

}


.pricing-header h2 {

    max-width: 750px;

    margin: 0 auto;

    font-family: var(--heading-font);

    font-size: clamp(
        40px,
        4vw,
        59px
    );

    font-weight: 900;

    line-height: 0.88;

    letter-spacing: -0.025em;

}


/* =========================================================
   PRICING GRID
========================================================= */

.pricing-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 5px;

    max-width: 820px;

    margin: 0 auto;

}


/* =========================================================
   PRICE CARD
========================================================= */

.price-card {

    min-height: 475px;

    padding: 35px 32px;

    display: flex;

    flex-direction: column;

}


.price-card-light {

    background: #ffffff;

    border: 1px solid #dedbd6;

    color: #111;

}


.price-card-dark {

    background: var(--black);

    color: var(--white);

}


/* =========================================================
   PRICE CARD TOP
========================================================= */

.price-card-top {

    padding-bottom: 25px;

    border-bottom: 1px solid #dedbd6;

}


.price-card-dark
.price-card-top {

    border-color: #2c2c2c;

}


.price {

    margin-top: 13px;

    font-family: var(--heading-font);

    font-size: 57px;

    font-weight: 900;

    line-height: 0.85;

    letter-spacing: -0.02em;

}


.price-period {

    margin-top: 8px;

    color: #85827d;

    font-family: var(--heading-font);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.13em;

}


/* =========================================================
   PRICE FEATURES
========================================================= */

.price-features {

    flex: 1;

    margin: 0;

}


.price-features li {

    min-height: 44px;

    display: flex;

    align-items: center;

    gap: 10px;

    border-bottom: 1px solid #dedbd6;

    color: #555;

    font-size: 10px;

}


.price-card-dark
.price-features li {

    border-color: #292929;

    color: #aaa;

}


.price-features li span {

    color: var(--red);

    font-weight: 800;

}


/* =========================================================
   PRICE BUTTON
========================================================= */

.price-button {

    width: 100%;

    margin-top: 25px;

}


.price-card-light
.price-button {

    justify-content: center;

}


.price-card-dark
.price-button {

    justify-content: center;

}


/* =========================================================
   FOUR PILLARS SECTION
========================================================= */

.pillars-section {

    width: 100%;

    padding:
        85px
        max(7%, calc((100vw - 1160px) / 2));

    background: #0a0a0a;

    color: var(--white);

}


.pillars-container {

    width: 100%;

    max-width: 1160px;

    margin: 0 auto;

}


/* =========================================================
   PILLARS HEADER
========================================================= */

.pillars-header {

    margin-bottom: 36px;

}


.pillars-header h2 {

    font-family: var(--heading-font);

    font-size: clamp(
        48px,
        5vw,
        70px
    );

    font-weight: 900;

    line-height: 0.82;

    letter-spacing: -0.03em;

}


/* =========================================================
   PILLARS GRID
========================================================= */

.pillars-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 5px;

}


.pillar-card {

    min-height: 205px;

    padding: 24px 19px;

    background: #111111;

    border: 1px solid #222222;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;

}


.pillar-card:hover {

    transform: translateY(-4px);

    border-color: #484848;

}


.pillar-number {

    display: block;

    color: #777;

    font-family: var(--heading-font);

    font-size: 12px;

    font-weight: 800;

}


.pillar-card h3 {

    margin-top: 32px;

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 17px;

    font-weight: 800;

    line-height: 1;

}


.pillar-card p {

    margin-top: 14px;

    color: #777;

    font-size: 9px;

    line-height: 1.7;

}

/* =========================================================
   VIDEO / INSIDE THE GYM SECTION
========================================================= */

.video-section {

    width: 100%;

    padding:
        90px
        max(7%, calc((100vw - 1160px) / 2));

}


.video-container {

    width: 100%;

    max-width: 1160px;

    margin: 0 auto;

}


/* =========================================================
   VIDEO HEADER
========================================================= */

.video-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 34px;

}


.video-header h2 {

    font-family: var(--heading-font);

    font-size: clamp(
        45px,
        4.7vw,
        67px
    );

    font-weight: 900;

    line-height: 0.84;

    letter-spacing: -0.03em;

}


.video-header p {

    max-width: 400px;

    margin-top: 18px;

    color: #777570;

    font-size: 10px;

    line-height: 1.7;

}


/* =========================================================
   VIDEO CONTROLS
========================================================= */

.video-controls {

    display: flex;

    gap: 5px;

}


.video-arrow {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #d4d1cc;

    background: transparent;

    color: #111;

    font-family: var(--heading-font);

    font-size: 16px;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;

}


.video-arrow:hover {

    background: var(--red);

    border-color: var(--red);

    color: var(--white);

}


/* =========================================================
   VIDEO PLAYER
========================================================= */

.video-player {

    position: relative;

    width: 100%;

    height: 510px;

    overflow: hidden;

    background:

        linear-gradient(
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.55)
        ),

        url("https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?auto=format&fit=crop&w=1800&q=85");

    background-size: cover;

    background-position: center;

}


.video-message {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: min(340px, 80%);

    padding: 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    background: rgba(0, 0, 0, 0.76);

    color: var(--white);

}


.video-warning {

    width: 32px;

    height: 32px;

    margin-bottom: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--red);

    font-family: var(--heading-font);

    font-size: 19px;

    font-weight: 800;

}


.video-message strong {

    font-family: var(--heading-font);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 0.05em;

}


.video-message span {

    margin-top: 7px;

    color: #aaa;

    font-size: 9px;

    line-height: 1.6;

}


.video-play-button {

    width: 48px;

    height: 48px;

    margin-top: 17px;

    border: 0;

    border-radius: 50%;

    background: var(--red);

    color: var(--white);

    font-size: 14px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;

}


.video-play-button:hover {

    transform: scale(1.08);

    background: #c90d1f;

}


.youtube-mark {

    position: absolute;

    right: 20px;

    bottom: 18px;

    width: 38px;

    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    background: rgba(255, 0, 0, 0.92);

    color: white;

    font-size: 12px;

}


.video-caption {

    padding-top: 10px;

    color: #777570;

    font-family: var(--heading-font);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.13em;

    text-transform: uppercase;

}


/* =========================================================
   STORIES / TESTIMONIAL SECTION
========================================================= */

.stories-section {

    width: 100%;

    padding:
        90px
        max(7%, calc((100vw - 1160px) / 2));

    background: var(--black);

    color: var(--white);

}


.stories-container {

    width: 100%;

    max-width: 1160px;

    margin: 0 auto;

}


/* =========================================================
   STORIES HEADER
========================================================= */

.stories-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 35px;

}


.stories-header h2 {

    font-family: var(--heading-font);

    font-size: clamp(
        48px,
        5vw,
        72px
    );

    font-weight: 900;

    line-height: 0.82;

    letter-spacing: -0.035em;

}


.stories-controls {

    display: flex;

    gap: 5px;

}


.story-arrow {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #393939;

    background: transparent;

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 16px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;

}


.story-arrow:hover {

    background: var(--red);

    border-color: var(--red);

}


/* =========================================================
   STORIES GRID
========================================================= */

.stories-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 5px;

}


/* =========================================================
   STORY CARD
========================================================= */

.story-card {

    min-height: 275px;

    padding: 24px;

    display: flex;

    flex-direction: column;

    background: #111111;

    border: 1px solid #222222;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;

}


.story-card:hover {

    transform: translateY(-4px);

    border-color: #444;

}


/* =========================================================
   STORY TOP
========================================================= */

.story-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.story-label {

    color: #777;

    font-family: var(--heading-font);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.13em;

}


.stars {

    color: var(--red);

    font-size: 9px;

    letter-spacing: 2px;

}


/* =========================================================
   STORY TEXT
========================================================= */

.story-text {

    flex: 1;

    max-width: 290px;

    margin-top: 45px;

    color: #f1f1f1;

    font-family: var(--heading-font);

    font-size: 22px;

    font-weight: 600;

    line-height: 1.02;

    letter-spacing: -0.01em;

}


/* =========================================================
   STORY PERSON
========================================================= */

.story-person {

    display: flex;

    flex-direction: column;

    padding-bottom: 16px;

}


.story-person strong {

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 12px;

    font-weight: 800;

}


.story-person span {

    margin-top: 4px;

    color: #666;

    font-family: var(--heading-font);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.1em;

}


/* =========================================================
   STORY BOTTOM
========================================================= */

.story-bottom {

    padding-top: 12px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top: 1px solid #292929;

    color: #555;

    font-family: var(--heading-font);

    font-size: 8px;

    font-weight: 700;

}


/* =========================================================
   BLOG SECTION
========================================================= */

.blog-section {

    width: 100%;

    padding:
        90px
        max(7%, calc((100vw - 1160px) / 2));

}


.blog-container {

    width: 100%;

    max-width: 1160px;

    margin: 0 auto;

}


/* =========================================================
   BLOG HEADER
========================================================= */

.blog-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 35px;

}


.blog-header h2 {

    font-family: var(--heading-font);

    font-size: clamp(
        48px,
        5vw,
        72px
    );

    font-weight: 900;

    line-height: 0.82;

    letter-spacing: -0.035em;

}


.blog-controls {

    display: flex;

    gap: 5px;

}


.blog-controls button {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #d4d1cc;

    background: transparent;

    color: #111;

    font-family: var(--heading-font);

    font-size: 16px;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;

}


.blog-controls button:hover {

    background: var(--red);

    border-color: var(--red);

    color: var(--white);

}


/* =========================================================
   BLOG GRID
========================================================= */

.blog-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 5px;

}


/* =========================================================
   BLOG CARD
========================================================= */

.blog-card {

    min-height: 280px;

    padding: 24px;

    display: flex;

    flex-direction: column;

    border: 1px solid #d9d6d0;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.blog-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);

}


/* =========================================================
   BLOG CATEGORY
========================================================= */

.blog-category {

    color: var(--red);

    font-family: var(--heading-font);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.13em;

}


/* =========================================================
   BLOG TITLE
========================================================= */

.blog-card h3 {

    margin-top: 38px;

    color: #111;

    font-family: var(--heading-font);

    font-size: 20px;

    font-weight: 800;

    line-height: 0.96;

}


.blog-card p {

    margin-top: 15px;

    color: #777570;

    font-size: 9px;

    line-height: 1.65;

}


.blog-card a {

    margin-top: auto;

    padding-top: 20px;

    color: #111;

    font-family: var(--heading-font);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.12em;

    transition: color 0.2s ease;

}


.blog-card a:hover {

    color: var(--red);

}


/* =========================================================
   FINAL CTA SECTION
========================================================= */

.final-cta-section {

    width: 100%;

    background: var(--red);

    color: var(--white);

}


/* =========================================================
   CTA CONTAINER
========================================================= */

.final-cta-container {

    width: 100%;

    max-width: 1160px;

    min-height: 320px;

    margin: 0 auto;

    padding:
        75px
        7%;

    display: grid;

    grid-template-columns:
        1.3fr
        0.7fr;

    align-items: center;

    gap: 70px;

}


/* =========================================================
   CTA HEADING
========================================================= */

.final-cta-content h2 {

    margin: 0;

    font-family: var(--heading-font);

    font-size: clamp(
        54px,
        6vw,
        86px
    );

    font-weight: 900;

    line-height: 0.78;

    letter-spacing: -0.04em;

}


.final-cta-content h2 span {

    color: var(--black);

}


/* =========================================================
   CTA DESCRIPTION
========================================================= */

.final-cta-actions p {

    max-width: 340px;

    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 10px;

    line-height: 1.75;

}


/* =========================================================
   CTA BUTTONS
========================================================= */

.cta-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

}


.final-cta-section
.primary-button {

    background: var(--black);

}


.final-cta-section
.primary-button:hover {

    background: #202020;

}


.final-cta-section
.outline-button {

    border-color: rgba(255, 255, 255, 0.65);

}


.final-cta-section
.outline-button:hover {

    border-color: var(--black);

    background: var(--black);

}


/* =========================================================
   FOOTER
========================================================= */

.main-footer {

    width: 100%;

    padding:
        65px
        max(7%, calc((100vw - 1160px) / 2))
        25px;

    background: #070707;

    color: var(--white);

}


/* =========================================================
   FOOTER TOP
========================================================= */

.footer-top {

    width: 100%;

    max-width: 1160px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.5fr
        repeat(3, 0.75fr)
        1fr;

    gap: 35px;

    padding-bottom: 50px;

    border-bottom: 1px solid #242424;

}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand-column {

    max-width: 250px;

}


.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 4px;

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 20px;

    font-weight: 900;

}


.footer-brand-column p {

    margin-top: 20px;

    color: #666;

    font-family: var(--heading-font);

    font-size: 8px;

    font-weight: 700;

    line-height: 1.5;

    letter-spacing: 0.1em;

}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-column h4 {

    margin-bottom: 20px;

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.13em;

}


.footer-column a {

    margin-bottom: 11px;

    color: #666;

    font-family: var(--heading-font);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.08em;

    transition: color 0.2s ease;

}


.footer-column a:hover {

    color: var(--white);

}


/* =========================================================
   FOOTER JOIN BUTTON
========================================================= */

.footer-join-button {

    width: 100%;

    min-height: 43px;

    padding: 0 15px;

    display: flex !important;

    align-items: center;

    justify-content: space-between;

    background: var(--red);

    color: var(--white) !important;

    font-family: var(--heading-font) !important;

    font-size: 9px !important;

    font-weight: 800 !important;

    letter-spacing: 0.1em;

}


.footer-join-button:hover {

    background: #c90d1f;

}


/* =========================================================
   FOOTER SOCIALS
========================================================= */

.footer-socials {

    display: flex;

    gap: 6px;

    margin-top: 18px;

}


.footer-socials a {

    width: 28px;

    height: 28px;

    margin: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #292929;

    color: #777;

    font-size: 7px;

    font-weight: 800;

}


.footer-socials a:hover {

    border-color: var(--red);

    color: var(--red);

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    width: 100%;

    max-width: 1160px;

    margin: 0 auto;

    padding-top: 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: #555;

    font-family: var(--heading-font);

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 0.08em;

}


.footer-bottom div {

    display: flex;

    gap: 25px;

}


.footer-bottom a {

    transition: color 0.2s ease;

}


.footer-bottom a:hover {

    color: var(--white);

}

/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

/* =========================================================
   LARGE TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .video-section,
    .stories-section,
    .blog-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .video-container,
    .stories-container,
    .blog-container {
        max-width: 100%;
    }

    .video-player {
        height: 460px;
    }

    .stories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }

    .final-cta-container {
        padding-left: 5%;
        padding-right: 5%;
    }

    .main-footer {
        padding-left: 5%;
        padding-right: 5%;
    }

    .footer-top,
    .footer-bottom {
        max-width: 100%;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    /* -----------------------------------------------------
       VIDEO
    ----------------------------------------------------- */

    .video-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .video-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .video-header h2 {
        font-size: clamp(42px, 7vw, 60px);
    }

    .video-header p {
        max-width: 500px;
        margin-top: 0;
    }

    .video-controls {
        align-self: flex-end;
    }

    .video-player {
        height: 420px;
    }


    /* -----------------------------------------------------
       STORIES
    ----------------------------------------------------- */

    .stories-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .stories-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .stories-header h2 {
        font-size: clamp(45px, 7vw, 65px);
    }

    .stories-controls {
        align-self: flex-end;
    }

    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-card {
        min-height: 260px;
    }


    /* -----------------------------------------------------
       BLOG
    ----------------------------------------------------- */

    .blog-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .blog-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .blog-header h2 {
        font-size: clamp(45px, 7vw, 65px);
    }

    .blog-controls {
        align-self: flex-end;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* -----------------------------------------------------
       FINAL CTA
    ----------------------------------------------------- */

    .final-cta-container {
        min-height: auto;
        padding-top: 65px;
        padding-bottom: 65px;

        grid-template-columns: 1fr;
        gap: 35px;
    }

    .final-cta-content h2 {
        max-width: 700px;
        font-size: clamp(52px, 9vw, 78px);
    }

    .final-cta-actions p {
        max-width: 500px;
    }


    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .main-footer {
        padding-top: 55px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 30px;
    }

    .footer-brand-column {
        max-width: 320px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* -----------------------------------------------------
       GLOBAL SECTION SPACING
    ----------------------------------------------------- */

    .video-section,
    .stories-section,
    .blog-section {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* -----------------------------------------------------
       VIDEO SECTION
    ----------------------------------------------------- */

    .video-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .video-header {
        margin-bottom: 25px;
        gap: 20px;
    }

    .video-header h2 {
        font-size: clamp(40px, 13vw, 54px);
        line-height: 0.86;
    }

    .video-header p {
        max-width: 100%;
        font-size: 9px;
        line-height: 1.65;
    }

    .video-controls {
        align-self: flex-start;
    }

    .video-arrow {
        width: 39px;
        height: 39px;
        font-size: 14px;
    }

    .video-player {
        height: 360px;
    }

    .video-message {
        width: calc(100% - 40px);
        padding: 22px 18px;
    }

    .video-warning {
        width: 29px;
        height: 29px;
        font-size: 16px;
    }

    .video-message strong {
        font-size: 12px;
    }

    .video-message span {
        max-width: 240px;
        font-size: 8px;
    }

    .video-play-button {
        width: 44px;
        height: 44px;
        margin-top: 14px;
    }

    .youtube-mark {
        right: 12px;
        bottom: 12px;
        width: 34px;
        height: 24px;
        font-size: 10px;
    }

    .video-caption {
        font-size: 6px;
    }


    /* -----------------------------------------------------
       STORIES SECTION
    ----------------------------------------------------- */

    .stories-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .stories-header {
        margin-bottom: 25px;
        gap: 20px;
    }

    .stories-header h2 {
        font-size: clamp(42px, 13vw, 56px);
        line-height: 0.85;
    }

    .stories-controls {
        align-self: flex-start;
    }

    .story-arrow {
        width: 39px;
        height: 39px;
        font-size: 14px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .story-card {
        min-height: 255px;
        padding: 21px;
    }

    .story-text {
        max-width: 100%;
        margin-top: 38px;
        font-size: 20px;
    }

    .story-person {
        padding-bottom: 14px;
    }

    .story-person strong {
        font-size: 11px;
    }

    .story-person span {
        font-size: 6px;
    }


    /* -----------------------------------------------------
       BLOG SECTION
    ----------------------------------------------------- */

    .blog-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .blog-header {
        margin-bottom: 25px;
        gap: 20px;
    }

    .blog-header h2 {
        font-size: clamp(42px, 13vw, 56px);
        line-height: 0.85;
    }

    .blog-controls {
        align-self: flex-start;
    }

    .blog-controls button {
        width: 39px;
        height: 39px;
        font-size: 14px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .blog-card {
        min-height: 250px;
        padding: 21px;
    }

    .blog-card h3 {
        margin-top: 30px;
        font-size: 19px;
    }

    .blog-card p {
        margin-top: 13px;
        font-size: 9px;
    }

    .blog-card a {
        padding-top: 18px;
    }


    /* -----------------------------------------------------
       FINAL CTA
    ----------------------------------------------------- */

    .final-cta-container {
        padding:
            55px
            20px;

        gap: 30px;
    }

    .final-cta-content h2 {
        font-size: clamp(47px, 14vw, 68px);
        line-height: 0.82;
    }

    .final-cta-actions p {
        margin-bottom: 20px;
        font-size: 9px;
        line-height: 1.7;
    }

    .cta-buttons {
        width: 100%;
        gap: 6px;
    }

    .cta-buttons .primary-button,
    .cta-buttons .outline-button {
        min-height: 42px;
    }


    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .main-footer {
        padding:
            50px
            20px
            20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 35px;
    }

    .footer-brand-column {
        max-width: 100%;
    }

    .footer-brand-column p {
        max-width: 300px;
    }

    .footer-column h4 {
        margin-bottom: 16px;
    }

    .footer-column a {
        margin-bottom: 9px;
    }

    .footer-join-button {
        max-width: 100%;
    }

    .footer-socials {
        margin-top: 15px;
    }

    .footer-bottom {
        padding-top: 18px;
        gap: 14px;
        font-size: 6px;
    }

    .footer-bottom div {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .video-section,
    .stories-section,
    .blog-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .video-player {
        height: 320px;
    }

    .video-message {
        width: calc(100% - 30px);
        padding: 20px 14px;
    }

    .story-card {
        min-height: 240px;
        padding: 18px;
    }

    .story-text {
        margin-top: 32px;
        font-size: 18px;
    }

    .blog-card {
        min-height: 235px;
        padding: 18px;
    }

    .final-cta-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .final-cta-content h2 {
        font-size: 45px;
    }

    .main-footer {
        padding-left: 15px;
        padding-right: 15px;
    }

}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) and (pointer: coarse) {

    .video-arrow:hover,
    .story-arrow:hover,
    .blog-controls button:hover,
    .story-card:hover,
    .blog-card:hover,
    .video-play-button:hover {
        transform: none;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .video-arrow,
    .story-arrow,
    .story-card,
    .blog-card,
    .blog-controls button,
    .video-play-button,
    .footer-column a,
    .footer-socials a,
    .footer-bottom a {
        transition: none !important;
    }

}


/* =========================================================
   END OF INDEX.CSS PART 5
========================================================= */


/* =========================================================
   EXTRA LARGE TEXT BOOST — 2X VERSION
   HERO MAIN H1 UNCHANGED
========================================================= */

/* =========================================================
   GLOBAL
========================================================= */

body {
    font-size: 20px;
}

p {
    font-size: 20px;
    line-height: 1.7;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    font-size: 15px;
}

.top-star {
    font-size: 17px;
}


/* =========================================================
   NAVBAR
========================================================= */

.desktop-nav {
    gap: 22px;
}

.desktop-nav a {
    font-size: 16px;
}

.nav-button {
    font-size: 13px;
}

.logo {
    font-size: 32px;
}

.logo-symbol {
    font-size: 35px;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.section-label {
    font-size: 16px;
}


/* =========================================================
   BUTTONS
========================================================= */

.primary-button {
    font-size: 18px;
    min-height: 45px;
}

.primary-button span {
    font-size: 18px;
}

.dark-button {
    font-size: 22px;
    min-height: 45px;
}

.dark-button span {
    font-size: 22px;
}

.outline-button {
    font-size: 22px;
    min-height: 45px;
}


/* =========================================================
   HERO DESCRIPTION
   MAIN HERO HEADING UNCHANGED
========================================================= */

.hero-description {
    font-size: 16px;
    line-height: 1.4;
}

.hero-stat strong {
    font-size: 48px;
}

.hero-stat small {
    font-size: 14px;
}


/* =========================================================
   TICKER
========================================================= */

.ticker-content {
    font-size: 14px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-content p {
    font-size: 18px;
    line-height: 1.25;
}

.about-content .dark-button {
    font-size: 22px;
}

.experience-box strong {
    font-size: 38px;
}

.experience-box span {
    font-size: 22px;
}


/* =========================================================
   STATISTICS
========================================================= */

.stat-number {
    font-size: 38px;
}

.stat-title {
    font-size: 13px;
}


/* =========================================================
   STANDARD SECTION
========================================================= */

.standard-content > p {
    font-size: 18px;
    line-height: 1.35;
}

.standard-point span {
    font-size: 20px;
}

.standard-point strong {
    font-size: 18px;
}


/* =========================================================
   POWERFUL / MISSION
========================================================= */

.powerful-description p {
    font-size: 20px;
    line-height: 1.65;
}

.powerful-point > span {
    font-size: 20px;
}

.powerful-point strong {
    font-size: 28px;
}

.powerful-point p {
    font-size: 18px;
    line-height: 1.5;
}


/* =========================================================
   PROGRAMS
========================================================= */

.all-programs {
    font-size: 18px;
}

.program-number {
    font-size: 22px;
}

.program-card-content h3 {
    font-size: 30px;
}

.program-card-content p {
    font-size: 18px;
    line-height: 1.3;
}

.program-card-content a {
    font-size: 17px;
}


/* =========================================================
   PRICING
========================================================= */

.price {
    font-size: 58px;
}

.price-period {
    font-size: 10px;
}

.price-features li {
    font-size: 15px;
    min-height: 35px;
}


/* =========================================================
   FOUR PILLARS
========================================================= */

.pillar-number {
    font-size: 20px;
}

.pillar-card h3 {
    font-size: 28px;
}

.pillar-card p {
    font-size: 18px;
    line-height: 1.4;
}


/* =========================================================
   VIDEO
========================================================= */

.video-header p {
    font-size: 20px;
    line-height: 1.45;
}

.video-message strong {
    font-size: 26px;
}

.video-message span {
    font-size: 16px;
}

.video-caption {
    font-size: 13px;
}


/* =========================================================
   STORIES
========================================================= */

.story-label {
    font-size: 10px;
}

.stars {
    font-size: 22px;
}

.story-text {
    font-size: 30px;
    line-height: 1;
}

.story-person strong {
    font-size: 15px;
}

.story-person span {
    font-size: 10px;
}

.story-bottom {
    font-size: 13px;
}


/* =========================================================
   BLOG
========================================================= */

.blog-category {
    font-size: 12px;
}

.blog-card h3 {
    font-size: 32px;
    line-height: 0.8;
}

.blog-card p {
    font-size: 16px;
    line-height: 1.3;
}

.blog-card a {
    font-size: 13px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta-actions p {
    font-size: 18px;
    line-height: 1.35;
}


/* =========================================================
   FOOTER
========================================================= */

.footer-logo {
    font-size: 36px;
}

.footer-brand-column p {
    font-size: 13px;
    line-height: 1.4;
}

.footer-column h4 {
    font-size: 18px;
}

.footer-column a {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-join-button {
    font-size: 18px !important;
}

.footer-socials a {
    font-size: 13px;
}

.footer-bottom {
    font-size: 13px;
}


/* =========================================================
   MOBILE — LARGE TEXT
========================================================= */

@media (max-width: 600px) {

    body {
        font-size: 26px;
    }

    p {
        font-size: 26px;
    }

    .top-bar {
        font-size: 16px;
    }

    .desktop-nav a {
        font-size: 20px;
    }

    .mobile-menu a {
        font-size: 30px;
    }

    .mobile-menu-button {
        font-size: 26px;
    }

    .section-label {
        font-size: 26px;
    }

    .hero-description {
        font-size: 24px;
    }

    .hero-stat strong {
        font-size: 58px;
    }

    .hero-stat small {
        font-size: 18px;
    }

    .ticker-content {
        font-size: 16px;
    }

    .about-content p,
    .standard-content > p {
        font-size: 25px;
    }

    .standard-point strong {
        font-size: 22px;
    }

    .powerful-description p {
        font-size: 23px;
    }

    .powerful-point strong {
        font-size: 36px;
    }

    .powerful-point p {
        font-size: 22px;
    }

    .program-card-content h3 {
        font-size: 42px;
    }

    .program-card-content p {
        font-size: 22px;
    }

    .price-features li {
        font-size: 24px;
    }

    .pillar-card h3 {
        font-size: 38px;
    }

    .pillar-card p {
        font-size: 22px;
    }

    .video-header p {
        font-size: 23px;
    }

    .video-message strong {
        font-size: 30px;
    }

    .video-message span {
        font-size: 20px;
    }

    .story-text {
        font-size: 44px;
    }

    .story-person strong {
        font-size: 26px;
    }

    .story-person span {
        font-size: 16px;
    }

    .blog-card h3 {
        font-size: 42px;
    }

    .blog-card p {
        font-size: 22px;
    }

    .final-cta-actions p {
        font-size: 23px;
    }

    .footer-brand-column p {
        font-size: 19px;
    }

    .footer-column h4 {
        font-size: 22px;
    }

    .footer-column a {
        font-size: 20px;
    }

    .footer-bottom {
        font-size: 16px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .about-content p,
    .standard-content > p,
    .powerful-description p,
    .final-cta-actions p {
        font-size: 23px;
    }

    .story-text {
        font-size: 40px;
    }

    .blog-card h3 {
        font-size: 38px;
    }

    .blog-card p {
        font-size: 21px;
    }

    .program-card-content p,
    .pillar-card p {
        font-size: 21px;
    }

}


