/*
=========================================================
APOGEE VC FUND — HOMEPAGE
=========================================================

Production:
https://apogeevcfund.com/

SECTION INDEX

01 — GLOBAL
02 — HEADER & NAVIGATION
03 — HERO
04 — THE CONNECTION
05 — INVESTMENT PHILOSOPHY
06 — MULTIPLE FRONTIERS
07 — WHERE WE INVEST
08 — DIVERSIFICATION
09 — WHAT WE LOOK FOR
10 — PORTFOLIO
11 — INNOVATION WITH PURPOSE
12 — FOUNDER
13 — CLOSING CTA
14 — INVESTOR ACCESS
15 — FOOTER
16 — TABLET
17 — MOBILE
18 — REDUCED MOTION

=========================================================
*/


/* =========================================================
   01 — GLOBAL
========================================================= */

:root {
    --black: #020509;
    --soft: #07101a;
    --blue: #3979b8;
    --blue2: #5fa9ed;
    --white: #f4f6f8;
    --gold: #d8b16b;
    --line: rgba(255, 255, 255, 0.14);
    --max: 1440px;
}

html {
    scroll-behavior: smooth;
}

body.apogee-custom-home {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: Inter, Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

body.apogee-custom-home *,
body.apogee-custom-home *::before,
body.apogee-custom-home *::after {
    box-sizing: border-box;
}

body.apogee-custom-home a {
    color: inherit;
    text-decoration: none;
}

.apogee-shell {
    width: min(calc(100% - 96px), var(--max));
    margin-inline: auto;
}

.apogee-section {
    position: relative;
}


/* ---------------------------------------------------------
   Standard Overline
--------------------------------------------------------- */

.apogee-overline {
    margin: 0 0 18px;
    color: var(--blue2);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   Standard Section Label
--------------------------------------------------------- */

.apogee-section-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
}

.apogee-section-number {
    color: var(--blue2);
    font-size: 24px;
}

.apogee-section-divider {
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.42);
}

.apogee-section-name {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   Standard Text Link
--------------------------------------------------------- */

.apogee-text-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 38px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.apogee-text-link span {
    transition: transform 0.25s ease;
}

.apogee-text-link:hover span {
    transform: translateX(5px);
}

.apogee-text-link-light {
    color: #ffffff;
}


/* =========================================================
   02 — HEADER & NAVIGATION
========================================================= */

.apogee-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding: 28px 42px;
    background: transparent;

    transition:
        padding 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        backdrop-filter 0.35s ease;
}

.apogee-header.is-scrolled {
    padding-top: 17px;
    padding-bottom: 17px;
    background: rgba(2, 5, 9, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.apogee-header-inner {
    width: min(100%, var(--max));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;

    gap: 46px;
}


/* =========================================================
   HEADER — LOGO
========================================================= */

.apogee-brand {
    display: flex;
    align-items: center;

    width: 230px !important;
    min-width: 230px;
    max-width: 230px !important;
}

.apogee-brand .custom-logo-link {
    width: 230px !important;
    max-width: 230px !important;
}

.apogee-brand .custom-logo {
    width: 230px !important;
    max-width: 230px !important;

    height: auto !important;
    max-height: 80px !important;

    object-fit: contain !important;
    object-position: left center;
}


/* ---------------------------------------------------------
   Fallback Logo
--------------------------------------------------------- */

.apogee-brand-fallback {
    display: flex;
    flex-direction: column;
}

.apogee-brand-text {
    font-size: 30px;
    letter-spacing: 0.11em;
}

.apogee-brand-subtitle {
    margin-top: 6px;
    color: var(--blue2);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* =========================================================
   HEADER — DESKTOP NAVIGATION
========================================================= */

.apogee-nav {
    display: flex;
    gap: 36px;
}

.apogee-nav a {
    color: rgba(255, 255, 255, 0.84);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.apogee-nav a:hover {
    color: #ffffff;
}

.apogee-investor-button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 0 24px;

    border: 1px solid rgba(109, 167, 220, 0.55);

    color: var(--blue2);

    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.apogee-investor-button:hover {
    color: #ffffff;
    border-color: var(--blue2);
    background: rgba(57, 121, 184, 0.12);
}


/* =========================================================
   HEADER — MOBILE MENU BUTTON
   IMPORTANT: FORCED HIDDEN ON DESKTOP
========================================================= */

.apogee-header .apogee-menu-toggle {
    display: none !important;

    width: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;

    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 0 !important;

    background: rgba(0, 0, 0, 0.18) !important;

    box-shadow: none !important;

    cursor: pointer;
}

.apogee-header .apogee-menu-toggle span {
    display: block;

    width: 18px;
    height: 1px;

    margin: 5px auto;

    background: #ffffff;
}


/* =========================================================
   FULLSCREEN MOBILE MENU
========================================================= */

.apogee-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;

    display: grid;
    place-items: center;

    background: rgba(2, 5, 9, 0.97);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.apogee-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.apogee-mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.apogee-mobile-menu a {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}


/* =========================================================
   03 — HERO
========================================================= */

.apogee-hero {
    min-height: 100vh;
    overflow: hidden;

    background:
        var(--black)
        var(--apogee-hero-image)
        54% center / cover
        no-repeat;
}


/* ---------------------------------------------------------
   Hero Overlay
--------------------------------------------------------- */

.apogee-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(1, 3, 6, 0.97) 0%,
            rgba(1, 3, 6, 0.92) 24%,
            rgba(1, 3, 6, 0.72) 41%,
            rgba(1, 3, 6, 0.26) 57%,
            transparent 75%
        );
}


/* ---------------------------------------------------------
   Hero Layout
--------------------------------------------------------- */

.apogee-hero-inner {
    position: relative;
    z-index: 10;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 110px 0 80px;
}


/*
---------------------------------------------------------
Hero content has been moved slightly lower.
---------------------------------------------------------
*/

.apogee-hero-content {
    position: relative;
    z-index: 3;

    width: 47%;
    max-width: 650px;

    transform: translateY(24px);
}


/* ---------------------------------------------------------
   Hero H1
--------------------------------------------------------- */

.apogee-hero-title {
    margin: 0;

    color: #ffffff;

    font-size: clamp(50px, 4.35vw, 72px);

    font-weight: 300;

    line-height: 0.98;

    letter-spacing: -0.035em;

    text-transform: uppercase;
}

.apogee-hero-title > * {
    display: block;
}

.apogee-hero-title strong {
    color: var(--blue);
    font-weight: 300;
}


/* ---------------------------------------------------------
   Hero Copy
--------------------------------------------------------- */

.apogee-hero-copy {
    max-width: 570px;
    margin-top: 32px;
}

.apogee-hero-lead {
    margin: 0;

    font-size: clamp(17px, 1.05vw, 19px);

    line-height: 1.5;
}

.apogee-hero-description {
    margin: 14px 0 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: clamp(15px, 0.95vw, 17px);

    line-height: 1.7;
}


/* ---------------------------------------------------------
   Hero Buttons
--------------------------------------------------------- */

.apogee-hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 27px;
}

.apogee-button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 0 24px;

    border: 1px solid transparent;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.04em;

    text-transform: uppercase;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.apogee-button:hover {
    transform: translateY(-2px);
}

.apogee-button-primary {
    min-width: 285px;

    color: #ffffff;

    border-color: rgba(83, 162, 232, 0.35);

    background:
        linear-gradient(
            135deg,
            #0862c3,
            #174d88
        );
}

.apogee-button-primary:hover {
    background:
        linear-gradient(
            135deg,
            #0874df,
            #1b5da4
        );
}

.apogee-button-secondary {
    min-width: 225px;

    color: var(--blue2);

    border-color: rgba(70, 151, 224, 0.75);

    background: rgba(3, 10, 18, 0.36);
}

.apogee-button-secondary:hover {
    color: #ffffff;
    border-color: var(--blue2);
    background: rgba(38, 99, 155, 0.18);
}


/* ---------------------------------------------------------
   Scroll Indicator
--------------------------------------------------------- */

.apogee-scroll-indicator {
    position: absolute;

    left: 0;
    bottom: 48px;

    display: grid;

    grid-template-columns: 12px auto;
    grid-template-rows: 42px 20px;

    column-gap: 18px;
}

.apogee-scroll-line {
    grid-column: 1;

    height: 38px;

    margin-left: 5px;

    border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.apogee-scroll-dot {
    grid-column: 1;

    width: 9px;
    height: 9px;

    border: 1px solid #ffffff;
    border-radius: 50%;
}

.apogee-scroll-text {
    grid-column: 2;

    color: rgba(255, 255, 255, 0.68);

    font-size: 10px;

    letter-spacing: 0.28em;

    text-transform: uppercase;
}


/* =========================================================
   04 — THE CONNECTION
========================================================= */

.apogee-connection {
    min-height: 100vh;
    overflow: hidden;

    padding: 100px 0 90px;

    background:
        #02060d
        var(--apogee-section-2-image)
        center bottom / cover
        no-repeat;
}

.apogee-connection-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(2, 6, 13, 0.95),
            rgba(2, 6, 13, 0.82) 28%,
            rgba(2, 6, 13, 0.25) 58%,
            rgba(2, 6, 13, 0.08)
        );
}

.apogee-connection-inner {
    position: relative;
    z-index: 5;
}

.apogee-connection .apogee-section-kicker {
    margin-bottom: 38px;
}


/* ---------------------------------------------------------
   Connection Intro
--------------------------------------------------------- */

.apogee-connection-intro {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 80px;
}

.apogee-connection-heading h2 {
    margin: 0;

    font-size: clamp(44px, 4vw, 68px);

    font-weight: 300;

    line-height: 0.98;

    letter-spacing: -0.04em;

    text-transform: uppercase;
}

.apogee-connection-heading h2 span,
.apogee-connection-heading h2 strong {
    display: block;
}

.apogee-connection-heading h2 strong {
    color: var(--blue);

    font-weight: 300;
}

.apogee-connection-copy {
    padding-left: 42px;

    border-left: 1px solid rgba(95, 169, 237, 0.32);
}

.apogee-connection-copy p {
    margin: 0 0 10px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 16px;

    line-height: 1.65;
}

.apogee-connection-copy strong {
    display: block;

    margin-top: 20px;

    color: var(--blue2);

    font-size: 17px;
}


/* ---------------------------------------------------------
   Four Connection Themes
--------------------------------------------------------- */

.apogee-connection-themes {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 34px;

    margin-top: 70px;
}

.apogee-connection-theme {
    text-align: center;
}

.apogee-theme-icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(95, 169, 237, 0.75);

    border-radius: 50%;

    background: rgba(7, 25, 43, 0.3);
}

.apogee-theme-icon svg {
    width: 34px;
    height: 34px;

    fill: none;

    stroke: #ffffff;

    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.apogee-connection-theme p {
    max-width: 230px;

    margin: auto;

    font-size: 13px;

    line-height: 1.45;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


/* ---------------------------------------------------------
   Connection Highlight
--------------------------------------------------------- */

.apogee-intersection-message {
    max-width: 640px;

    margin: 120px auto 0;

    text-align: center;
}

.apogee-intersection-message p {
    margin: 0;

    font-size: clamp(24px, 2vw, 34px);

    font-weight: 300;

    line-height: 1.25;

    letter-spacing: 0.04em;

    text-transform: uppercase;
}

.apogee-intersection-message p span,
.apogee-intersection-message strong span {
    color: var(--blue);
}

.apogee-intersection-message strong {
    display: block;

    margin-top: 44px;

    color: rgba(255, 255, 255, 0.74);

    font-size: 18px;

    font-weight: 300;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.apogee-intersection-message strong span {
    display: block;

    font-size: 32px;
}


/* =========================================================
   05 — INVESTMENT PHILOSOPHY
========================================================= */

.apogee-philosophy,
.apogee-criteria,
.apogee-founder {
    padding: 120px 0;

    color: #0b1118;

    background: #f2f3f3;
}

.apogee-philosophy .apogee-section-name,
.apogee-criteria .apogee-section-name,
.apogee-founder .apogee-section-name {
    color: rgba(11, 17, 24, 0.6);
}

.apogee-philosophy .apogee-section-divider,
.apogee-criteria .apogee-section-divider,
.apogee-founder .apogee-section-divider {
    background: rgba(11, 17, 24, 0.28);
}

.apogee-editorial-heading {
    max-width: 860px;

    margin-top: 58px;
}

.apogee-editorial-heading h2,
.apogee-frontiers-copy h2,
.apogee-purpose-copy h2,
.apogee-founder-copy h2 {
    margin: 0;

    font-size: clamp(56px, 6vw, 96px);

    font-weight: 300;

    line-height: 0.94;

    letter-spacing: -0.05em;

    text-transform: uppercase;
}

.apogee-editorial-heading h2 span {
    display: block;

    color: var(--blue);
}


/* ---------------------------------------------------------
   Philosophy Rows
--------------------------------------------------------- */

.apogee-philosophy-list {
    margin-top: 90px;

    border-top: 1px solid rgba(11, 17, 24, 0.18);
}

.apogee-philosophy-item {
    display: grid;

    grid-template-columns:
        70px
        0.85fr
        1fr
        40px;

    gap: 30px;

    align-items: center;

    padding: 34px 0;

    border-bottom: 1px solid rgba(11, 17, 24, 0.18);
}

.apogee-philosophy-index {
    color: var(--blue);

    font-size: 12px;
}

.apogee-philosophy-item h3 {
    margin: 0;

    font-size: clamp(26px, 2.2vw, 38px);

    font-weight: 400;
}

.apogee-philosophy-item p {
    margin: 0;

    color: rgba(11, 17, 24, 0.67);

    font-size: 16px;

    line-height: 1.6;
}

.apogee-row-arrow {
    color: var(--blue);

    font-size: 22px;
}


/* =========================================================
   06 — MULTIPLE FRONTIERS
========================================================= */

.apogee-frontiers {
    position: relative;

    overflow: hidden;

    padding: 135px 0 0;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(51, 114, 174, 0.18),
            transparent 34%
        ),
        #020509;
}


/* ---------------------------------------------------------
   Subtle Background Grid
--------------------------------------------------------- */

.apogee-frontier-grid {
    position: absolute;

    inset: 0;

    opacity: 0.12;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );

    background-size:
        90px
        90px;

    pointer-events: none;
}


/* ---------------------------------------------------------
   Section Inner
--------------------------------------------------------- */

.apogee-frontiers-inner {
    position: relative;

    z-index: 2;
}


/* ---------------------------------------------------------
   Center Kicker
--------------------------------------------------------- */

.apogee-frontiers .apogee-section-kicker {
    justify-content: center;
}


/* ---------------------------------------------------------
   Main Content Block
--------------------------------------------------------- */

.apogee-frontiers-copy {
    max-width: 1120px;

    margin:
        72px
        auto
        0;
}


/* ---------------------------------------------------------
   Main Heading
--------------------------------------------------------- */

.apogee-frontiers-copy h2 {
    margin: 0;

    font-size:
        clamp(
            54px,
            5.2vw,
            82px
        );

    font-weight: 300;

    line-height: 0.98;

    letter-spacing: -0.045em;

    text-transform: uppercase;
}


.apogee-frontiers-copy h2 span {
    display: block;

    color: var(--blue);
}


/* ---------------------------------------------------------
   Intro Paragraph
--------------------------------------------------------- */

.apogee-frontiers-intro {
    max-width: 760px;

    margin: 34px auto 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: 17px;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   Diversification Statement
--------------------------------------------------------- */

.apogee-frontiers-description {
    max-width: 820px;

    margin: 26px auto 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 16px;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   Main Highlight
--------------------------------------------------------- */

.apogee-frontiers-highlight {
    display: block;

    max-width: 900px;

    margin: 32px auto 0;

    color: #ffffff;

    font-size: clamp(
        26px,
        2.5vw,
        38px
    );

    font-weight: 300;

    line-height: 1.2;
}


/* ---------------------------------------------------------
   Moving Sector Banner
   Final element of Section 04
--------------------------------------------------------- */

.apogee-frontier-marquee {
    width: 100vw;

    margin:
        78px
        0
        0
        calc(50% - 50vw);

    overflow: hidden;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.14
        );

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.14
        );

    background:
        rgba(
            2,
            8,
            14,
            0.45
        );
}


/* ---------------------------------------------------------
   Moving Track
--------------------------------------------------------- */

.apogee-frontier-track {
    width: max-content;

    display: flex;

    align-items: center;

    gap: 70px;

    padding:
        28px
        0;

    animation:
        apogeeMarquee
        36s
        linear
        infinite;
}


/* ---------------------------------------------------------
   Frontier Names
--------------------------------------------------------- */

.apogee-frontier-track span {
    color:
        rgba(
            255,
            255,
            255,
            0.92
        );

    font-size:
        clamp(
            28px,
            3.2vw,
            54px
        );

    font-weight: 300;

    white-space: nowrap;

    text-transform: uppercase;
}


.apogee-frontier-track span::after {
    content: "•";

    margin-left: 70px;

    color: var(--blue);
}


/* ---------------------------------------------------------
   Marquee Animation
--------------------------------------------------------- */

@keyframes apogeeMarquee {

    to {
        transform:
            translateX(-50%);
    }

}


/* =========================================================
   07 — WHERE WE INVEST
========================================================= */

.apogee-focus {
    min-height: 100vh;

    overflow: hidden;

    padding: 110px 0;

    background:
        var(--apogee-section-5-image)
        center / cover
        no-repeat;
}

.apogee-focus-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(1, 4, 8, 0.95),
            rgba(1, 4, 8, 0.78) 40%,
            rgba(1, 4, 8, 0.42)
        );
}

.apogee-focus-inner {
    position: relative;

    z-index: 2;
}

.apogee-focus-heading {
    max-width: 700px;
}

.apogee-focus-heading h2 {
    margin: 32px 0 0;

    font-size: clamp(54px, 5vw, 84px);

    font-weight: 300;

    letter-spacing: -0.045em;

    text-transform: uppercase;
}

.apogee-focus-heading p {
    max-width: 540px;

    margin: 24px 0 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 17px;

    line-height: 1.65;
}


/* ---------------------------------------------------------
   Focus Area Rows
--------------------------------------------------------- */

.apogee-focus-panels {
    margin-top: 68px;

    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.apogee-focus-card {
    display: grid;

    grid-template-columns:
        70px
        1fr;

    gap: 24px;

    padding: 25px 20px 25px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

    transition:
        padding-left 0.3s ease,
        background 0.3s ease;
}

.apogee-focus-card:hover,
.apogee-focus-card.is-active {
    padding-left: 22px;

    background: rgba(6, 31, 53, 0.5);
}

.apogee-focus-index {
    color: var(--blue2);

    font-size: 12px;
}

.apogee-focus-card h3 {
    margin: 0;

    font-size: clamp(26px, 2.5vw, 40px);

    font-weight: 300;
}

.apogee-focus-card p {
    margin: 7px 0 0;

    color: rgba(255, 255, 255, 0.66);

    font-size: 15px;
}


/* =========================================================
   08 — DIVERSIFICATION
========================================================= */

.apogee-diversification {
    min-height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 120px 0;

    background:
        radial-gradient(
            circle at 25% 70%,
            rgba(34, 96, 151, 0.16),
            transparent 28%
        ),
        #020509;
}


/* ---------------------------------------------------------
   Animated SVG Paths
--------------------------------------------------------- */

.apogee-paths {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0.76;
}

.apogee-path {
    fill: none;

    stroke-width: 2.2;

    stroke-linecap: round;
}

.apogee-path-blue-1,
.apogee-path-blue-2 {
    stroke: rgba(59, 133, 201, 0.7);
}

.apogee-path-gold-1,
.apogee-path-gold-2 {
    stroke: rgba(216, 177, 107, 0.58);
}

.apogee-diversification-inner {
    position: relative;

    z-index: 2;
}


/* ---------------------------------------------------------
   Diversification Copy
--------------------------------------------------------- */

.apogee-diversification-copy {
    max-width: 680px;

    padding: 46px;

    margin-top: 54px;

    background: rgba(2, 5, 9, 0.72);

    border: 1px solid rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(10px);
}

.apogee-diversification-copy h2 {
    margin: 0;

    font-size: clamp(48px, 5vw, 82px);

    font-weight: 300;

    line-height: 0.95;

    letter-spacing: -0.05em;

    text-transform: uppercase;
}

.apogee-diversification-copy h2 span {
    display: block;

    color: var(--blue);
}

.apogee-diversification-copy p {
    margin: 20px 0 0;

    color: rgba(255, 255, 255, 0.7);

    font-size: 16px;

    line-height: 1.7;
}

.apogee-diversification-lead {
    color: #ffffff !important;

    font-size: 20px !important;
}

.apogee-diversification-highlight {
    max-width: 820px;

    margin: 70px 0 0 auto;

    font-size: clamp(30px, 3vw, 48px);

    font-weight: 300;

    line-height: 1.14;

    text-align: right;
}

.apogee-diversification-highlight span {
    color: var(--gold);
}


/* =========================================================
   09 — WHAT WE LOOK FOR
========================================================= */

.apogee-criteria-heading {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 40px;

    margin-top: 56px;
}

.apogee-criteria-heading h2 {
    margin: 0;

    font-size: clamp(54px, 5.4vw, 88px);

    font-weight: 300;

    letter-spacing: -0.05em;

    text-transform: uppercase;
}

.apogee-criteria-heading p {
    color: rgba(11, 17, 24, 0.6);
}


/* ---------------------------------------------------------
   Criteria Grid
--------------------------------------------------------- */

.apogee-criteria-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    margin-top: 76px;

    border-top: 1px solid rgba(11, 17, 24, 0.18);
    border-left: 1px solid rgba(11, 17, 24, 0.18);
}

.apogee-criterion {
    min-height: 220px;

    padding: 28px;

    border-right: 1px solid rgba(11, 17, 24, 0.18);
    border-bottom: 1px solid rgba(11, 17, 24, 0.18);

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.apogee-criterion:hover {
    color: #ffffff;

    background: #0a3155;
}

.apogee-criterion span {
    color: var(--blue);

    font-size: 12px;
}

.apogee-criterion h3 {
    max-width: 540px;

    margin: 60px 0 0;

    font-size: clamp(24px, 2.1vw, 36px);

    font-weight: 300;
}


/* =========================================================
   10 — PORTFOLIO
========================================================= */

.apogee-portfolio {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(57, 121, 184, 0.10),
            transparent 28%
        ),
        #07101a;
}


/* ---------------------------------------------------------
   Portfolio Intro
--------------------------------------------------------- */

.apogee-portfolio-intro {
    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    gap: 80px;

    margin-top: 56px;
}


.apogee-portfolio-intro h2 {
    margin: 0;

    font-size:
        clamp(
            48px,
            5vw,
            82px
        );

    font-weight: 300;

    line-height: 0.95;

    letter-spacing: -0.05em;

    text-transform: uppercase;
}


.apogee-portfolio-intro h2 span {
    display: block;

    color: var(--blue);
}


.apogee-portfolio-intro p {
    max-width: 560px;

    margin: 0;

    align-self: end;

    color:
        rgba(
            255,
            255,
            255,
            0.68
        );

    font-size: 16px;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   Portfolio Grid
--------------------------------------------------------- */

.apogee-portfolio-grid {
    display: grid;

    grid-template-columns:
        repeat(
            5,
            1fr
        );

    margin-top: 72px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );

    border-left:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );
}


/* ---------------------------------------------------------
   Portfolio Card
--------------------------------------------------------- */

.apogee-portfolio-card {
    position: relative;

    min-height: 330px;

    display: flex;

    flex-direction: column;

    padding: 24px;

    overflow: hidden;

    border-right:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );

    background:
        linear-gradient(
            145deg,
            rgba(
                255,
                255,
                255,
                0.025
            ),
            transparent
        );

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* ---------------------------------------------------------
   Subtle Card Glow
--------------------------------------------------------- */

.apogee-portfolio-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: 50%;
    top: 45%;

    transform:
        translate(
            -50%,
            -50%
        );

    border-radius: 50%;

    background:
        rgba(
            57,
            121,
            184,
            0.14
        );

    filter:
        blur(45px);

    opacity: 0;

    transition:
        opacity 0.3s ease;

    pointer-events: none;
}


.apogee-portfolio-card:hover {
    background:
        rgba(
            57,
            121,
            184,
            0.08
        );

    border-color:
        rgba(
            95,
            169,
            237,
            0.35
        );
}


.apogee-portfolio-card:hover::before {
    opacity: 1;
}


/* ---------------------------------------------------------
   Card Number
--------------------------------------------------------- */

.apogee-portfolio-number {
    position: relative;

    z-index: 2;

    color: var(--blue2);

    font-size: 12px;

    letter-spacing: 0.08em;
}


/* ---------------------------------------------------------
   Card Icon
--------------------------------------------------------- */

.apogee-portfolio-icon {
    position: relative;

    z-index: 2;

    width: 84px;
    height: 84px;

    margin:
        56px
        auto
        42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(
            95,
            169,
            237,
            0.42
        );

    border-radius: 50%;

    background:
        rgba(
            5,
            19,
            33,
            0.38
        );

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}


.apogee-portfolio-icon svg {
    width: 44px;
    height: 44px;

    fill: none;

    stroke:
        rgba(
            255,
            255,
            255,
            0.86
        );

    stroke-width: 1.5;

    stroke-linecap: round;

    stroke-linejoin: round;

    transition:
        stroke 0.3s ease;
}


.apogee-portfolio-card:hover .apogee-portfolio-icon {
    transform:
        translateY(-4px);

    border-color: var(--blue2);

    background:
        rgba(
            57,
            121,
            184,
            0.16
        );
}


.apogee-portfolio-card:hover .apogee-portfolio-icon svg {
    stroke: var(--blue2);
}


/* ---------------------------------------------------------
   Card Copy
--------------------------------------------------------- */

.apogee-portfolio-card-copy {
    position: relative;

    z-index: 2;

    margin-top: auto;
}


.apogee-portfolio-card-copy h3 {
    margin: 0;

    color: #ffffff;

    font-size: 20px;

    font-weight: 400;

    line-height: 1.2;
}


.apogee-portfolio-card-copy p {
    margin:
        12px
        0
        0;

    color:
        rgba(
            255,
            255,
            255,
            0.52
        );

    font-size: 13px;

    line-height: 1.55;
}


/* =========================================================
   11 — INNOVATION WITH PURPOSE
========================================================= */

.apogee-purpose {
    min-height: 90vh;

    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 70% 50%,
            rgba(216, 177, 107, 0.18),
            transparent 22%
        ),
        radial-gradient(
            circle at 52% 50%,
            rgba(38, 118, 187, 0.2),
            transparent 30%
        ),
        #020509;
}

.apogee-purpose-glow {
    position: absolute;

    top: 50%;
    right: 9%;

    width: min(46vw, 700px);

    aspect-ratio: 1;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        conic-gradient(
            from 180deg,
            rgba(47, 131, 205, 0.02),
            rgba(47, 131, 205, 0.38),
            rgba(216, 177, 107, 0.24),
            rgba(47, 131, 205, 0.02)
        );

    filter: blur(34px);
}

.apogee-purpose-inner {
    position: relative;

    z-index: 2;
}

.apogee-purpose-copy {
    max-width: 760px;

    margin-top: 58px;
}

.apogee-purpose-copy h2 span {
    display: block;

    color: var(--gold);
}

.apogee-purpose-copy p {
    max-width: 630px;

    margin: 32px 0 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   12 — FOUNDER
========================================================= */

.apogee-founder-grid {
    display: grid;

    grid-template-columns:
        0.92fr
        1.08fr;

    gap: 90px;

    align-items: center;
}

.apogee-founder-image {
    overflow: hidden;

    aspect-ratio: 4 / 5;

    background: #dfe3e7;
}

.apogee-founder-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;
}

.apogee-founder-copy .apogee-overline {
    margin-top: 60px;
}

.apogee-founder-copy p {
    max-width: 640px;

    margin: 30px 0 0;

    color: rgba(11, 17, 24, 0.67);

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   13 — CLOSING CTA
========================================================= */

.apogee-closing {
    min-height: 86vh;

    display: flex;
    align-items: center;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 82%,
            rgba(216, 177, 107, 0.2),
            transparent 21%
        ),
        #020509;
}

.apogee-closing-lines {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 49.95%,
            rgba(216, 177, 107, 0.35) 50%,
            transparent 50.05%
        );
}

.apogee-closing-inner {
    position: relative;

    z-index: 2;

    max-width: 1100px;
}

.apogee-closing-inner h2 {
    margin: 0;

    font-size: clamp(58px, 7vw, 112px);

    font-weight: 300;

    line-height: 0.93;

    letter-spacing: -0.055em;

    text-transform: uppercase;
}

.apogee-closing-inner h2 span {
    display: block;

    color: var(--gold);
}

.apogee-closing-inner > p:not(.apogee-overline) {
    max-width: 580px;

    margin: 34px auto 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 17px;

    line-height: 1.7;
}

.apogee-closing-inner .apogee-button {
    margin-top: 40px;
}


/* =========================================================
   14 — INVESTOR ACCESS
========================================================= */

.apogee-access {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(39, 111, 174, 0.14),
            transparent 26%
        ),
        #07101a;
}

.apogee-access-grid {
    display: grid;

    grid-template-columns:
        0.88fr
        1.12fr;

    gap: 100px;
}

.apogee-access-copy h2 {
    margin: 58px 0 0;

    font-size: clamp(48px, 5vw, 78px);

    font-weight: 300;

    line-height: 0.96;

    letter-spacing: -0.05em;

    text-transform: uppercase;
}

.apogee-access-copy h2 span {
    display: block;

    color: var(--blue);
}

.apogee-access-copy p {
    max-width: 560px;

    margin: 30px 0 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 16px;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   Investor Access Form
--------------------------------------------------------- */

.apogee-access-form {
    padding: 38px;

    border: 1px solid var(--line);

    background: rgba(2, 5, 9, 0.46);
}

.apogee-form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.apogee-access-form > label,
.apogee-form-row label {
    display: block;

    margin-bottom: 20px;
}

.apogee-access-form label > span,
.apogee-access-form legend {
    display: block;

    margin-bottom: 9px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 10px;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.apogee-access-form input[type="text"],
.apogee-access-form input[type="email"],
.apogee-access-form select {
    width: 100%;

    min-height: 50px;

    padding: 0 14px;

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 0;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.035);
}

.apogee-access-form input:focus,
.apogee-access-form select:focus {
    outline: none;

    border-color: var(--blue2);
}

.apogee-access-form select option {
    color: #111111;
}

.apogee-access-form fieldset {
    margin: 8px 0 30px;

    padding: 0;

    border: 0;
}

.apogee-access-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(0, 1.12fr);

    gap: 70px;

    align-items: start;
}


.apogee-access-copy {
    min-width: 0;
}


/* =========================================================
   GHL FORM — INVESTOR ACCESS
========================================================= */

.apogee-ghl-form {
    position: relative;

    width: 100%;
    min-width: 0;

    height: 594px;
    min-height: 594px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    border: 0 !important;

    background: transparent !important;

    box-shadow: none !important;
}


.apogee-ghl-iframe {
    display: block !important;

    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;

    height: 594px !important;
    min-height: 594px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    outline: 0 !important;

    background: transparent !important;

    opacity: 1 !important;
    visibility: visible !important;
}


/* Mobile */

@media (max-width: 767px) {

    .apogee-ghl-form,
    .apogee-ghl-iframe {
        height: 760px !important;
        min-height: 760px !important;
    }

}


/* ---------------------------------------------------------
   Legacy Form Styles
   Kept in case these elements are reused elsewhere
--------------------------------------------------------- */

.apogee-interest-grid label {
    display: flex;

    gap: 8px;

    align-items: center;

    color: rgba(255, 255, 255, 0.76);

    font-size: 13px;
}


.apogee-form-submit {
    width: 100%;

    min-width: 0;
}


.apogee-form-note {
    margin: 14px 0 0;

    color: rgba(255, 255, 255, 0.42);

    font-size: 11px;
}


/* =========================================================
   15 — GLOBAL FOOTER
   Shared by Home, FAQ and all future Apogee pages
========================================================= */

.apogee-footer {
    width: 100%;
    padding: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    background: #020509;
}

.apogee-footer .apogee-footer-inner {
    min-height: 0px;

    display: grid;

    grid-template-columns:
        minmax(220px, 1fr)
        auto
        minmax(260px, 1fr);

    align-items: center;

    gap: 42px;

    padding-top: 36px;
    padding-bottom: 36px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;
}


/* ---------------------------------------------------------
   Footer Brand
--------------------------------------------------------- */

.apogee-footer .apogee-footer-brand,
.apogee-footer .apogee-footer-inner > div:first-child {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.apogee-footer .apogee-footer-brand strong,
.apogee-footer .apogee-footer-inner > div:first-child strong {
    color: #ffffff !important;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 0.09em;
}

.apogee-footer .apogee-footer-brand span,
.apogee-footer .apogee-footer-inner > div:first-child span {
    margin-top: 4px;

    color: var(--blue2) !important;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


/* ---------------------------------------------------------
   Footer Links
   IMPORTANT:
   These selectors intentionally override Elementor / Hello
   global link colors so the footer is consistent everywhere.
--------------------------------------------------------- */

.apogee-footer .apogee-footer-links {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 26px;
}

body .apogee-footer .apogee-footer-links a,
body .apogee-footer .apogee-footer-links a:link,
body .apogee-footer .apogee-footer-links a:visited,
body .apogee-footer .apogee-footer-links a:active,
body .apogee-footer .apogee-footer-links a:focus {
    color: rgba(255, 255, 255, 0.68) !important;

    font-size: 11px;

    font-weight: 400;

    text-decoration: none !important;

    border: 0;

    background: transparent;

    box-shadow: none;
}

body .apogee-footer .apogee-footer-links a:hover {
    color: var(--blue2) !important;

    text-decoration: none !important;
}


/* ---------------------------------------------------------
   Footer Copyright
--------------------------------------------------------- */

.apogee-footer .apogee-footer-copyright,
.apogee-footer .apogee-footer-inner > span:last-child {
    justify-self: end;

    color: rgba(255, 255, 255, 0.45) !important;

    font-size: 10px;

    white-space: nowrap;
}


/* ---------------------------------------------------------
   Footer — Tablet
--------------------------------------------------------- */

@media (max-width: 1024px) {

    .apogee-footer .apogee-footer-inner {
        grid-template-columns:
            1fr
            auto;

        gap: 28px;
    }

    .apogee-footer .apogee-footer-copyright,
    .apogee-footer .apogee-footer-inner > span:last-child {
        grid-column: 1 / -1;

        justify-self: center;
    }

}


/* ---------------------------------------------------------
   Footer — Mobile
--------------------------------------------------------- */

@media (max-width: 767px) {

    .apogee-footer .apogee-footer-inner {
        min-height: 0;

        grid-template-columns: 1fr;

        gap: 24px;

        padding-top: 36px;
        padding-bottom: 36px;

        text-align: center;
    }

    .apogee-footer .apogee-footer-brand,
    .apogee-footer .apogee-footer-inner > div:first-child {
        align-items: center;
    }

    .apogee-footer .apogee-footer-links {
        flex-wrap: wrap;

        justify-content: center;

        gap: 18px 24px;
    }

    .apogee-footer .apogee-footer-copyright,
    .apogee-footer .apogee-footer-inner > span:last-child {
        grid-column: auto;

        justify-self: center;

        white-space: normal;
    }

}


/* =========================================================
   16 — TABLET
========================================================= */

@media (max-width: 1024px) {

    /*
    ---------------------------------------------------------
    Desktop navigation disappears at tablet width.

    The hamburger is ONLY enabled inside this media query.
    ---------------------------------------------------------
    */

    .apogee-nav,
    .apogee-investor-button {
        display: none !important;
    }

    .apogee-header-inner {
        grid-template-columns: 1fr auto;

        align-items: center;

        gap: 20px;
    }

    .apogee-header .apogee-menu-toggle {
        display: flex !important;

        align-items: center;
        justify-content: center;
        flex-direction: column;

        gap: 6px;

        width: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;

        height: 46px !important;
        min-height: 46px !important;
        max-height: 46px !important;

        padding: 0 !important;
        margin: 0 !important;

        justify-self: end;

        border: 1px solid rgba(255, 255, 255, 0.24) !important;
        border-radius: 0 !important;

        background: rgba(2, 5, 9, 0.35) !important;

        box-shadow: none !important;
    }

    .apogee-header .apogee-menu-toggle span {
        display: block !important;

        width: 18px !important;
        height: 1px !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #ffffff !important;

        border: 0 !important;
    }


    /* -----------------------------------------------------
       Tablet Hero
    ----------------------------------------------------- */

    .apogee-hero {
        background-position: 59% center;
    }

    .apogee-hero-content {
        width: 56%;
    }


    /* -----------------------------------------------------
       Tablet Layout Adjustments
    ----------------------------------------------------- */

    .apogee-connection-intro,
    .apogee-portfolio-intro,
    .apogee-founder-grid,
    .apogee-access-grid {
        gap: 44px;
    }

    .apogee-philosophy-item {
        grid-template-columns: 50px 1fr;
    }

    .apogee-philosophy-item p {
        grid-column: 2;
    }

    .apogee-row-arrow {
        display: none;
    }

    .apogee-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   17 — MOBILE
========================================================= */

@media (max-width: 767px) {
    
        .apogee-access-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .apogee-ghl-form,
    .apogee-ghl-iframe {
        width: 100% !important;
        min-height: 760px;
        height: 760px;
    }

    /* -----------------------------------------------------
       Global Mobile Width
    ----------------------------------------------------- */

    .apogee-shell {
        width: calc(100% - 40px);
    }


    /* -----------------------------------------------------
       Mobile Header
    ----------------------------------------------------- */

    .apogee-header {
        padding: 18px 20px;
    }

    .apogee-header.is-scrolled {
        padding: 13px 20px;
    }

    .apogee-header-inner {
        grid-template-columns: 1fr auto;
    }

    .apogee-brand,
    .apogee-brand .custom-logo-link,
    .apogee-brand .custom-logo {
        width: 175px !important;
        max-width: 175px !important;
        min-width: 0;
    }


    /* -----------------------------------------------------
       Mobile Hero
    ----------------------------------------------------- */

    .apogee-hero {
        min-height: 100svh;

        background-size: auto 61%;

        background-position: 68% 70px;
    }

    .apogee-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(1, 3, 6, 0.05),
                rgba(1, 3, 6, 0.2) 27%,
                rgba(1, 3, 6, 0.88) 48%,
                #010306 65%
            );
    }

    .apogee-hero-inner {
        min-height: 100svh;

        align-items: flex-end;

        padding: 330px 0 90px;
    }

    .apogee-hero-content {
        width: 100%;

        max-width: none;

        transform: none;
    }

    .apogee-hero-title {
        font-size: clamp(46px, 13vw, 64px);
    }

    .apogee-hero-copy {
        margin-top: 24px;
    }

    .apogee-hero-lead {
        font-size: 16px;
    }

    .apogee-hero-description {
        font-size: 13px;

        line-height: 1.65;
    }

    .apogee-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .apogee-button,
    .apogee-button-primary,
    .apogee-button-secondary {
        width: 100%;

        min-width: 0;
    }

    .apogee-scroll-indicator {
        display: none;
    }


    /* -----------------------------------------------------
       Mobile Section Padding
    ----------------------------------------------------- */

    .apogee-connection,
    .apogee-philosophy,
    .apogee-frontiers,
    .apogee-focus,
    .apogee-diversification,
    .apogee-criteria,
    .apogee-portfolio,
    .apogee-founder,
    .apogee-access {
        padding: 80px 0;
    }


    /* -----------------------------------------------------
       Connection
    ----------------------------------------------------- */

    .apogee-connection {
        background-size: auto 58%;
        background-position: center bottom;
    }

    .apogee-connection-intro,
    .apogee-portfolio-intro,
    .apogee-founder-grid,
    .apogee-access-grid {
        grid-template-columns: 1fr;
    }

    .apogee-connection-intro {
        gap: 28px;
    }

    .apogee-connection-copy {
        padding-left: 20px;
    }

    .apogee-connection-copy p {
        font-size: 14px;
    }

    .apogee-connection-themes {
        grid-template-columns: repeat(2, 1fr);

        gap: 30px 18px;
    }

    .apogee-theme-icon {
        width: 54px;
        height: 54px;
    }

    .apogee-theme-icon svg {
        width: 29px;
        height: 29px;
    }

    .apogee-connection-theme p {
        font-size: 10px;
    }

    .apogee-intersection-message {
        margin-top: 72px;
    }


    /* -----------------------------------------------------
       Main Mobile Headings
    ----------------------------------------------------- */

    .apogee-editorial-heading h2,
    .apogee-frontiers-copy h2,
    .apogee-focus-heading h2,
    .apogee-diversification-copy h2,
    .apogee-criteria-heading h2,
    .apogee-portfolio-intro h2,
    .apogee-purpose-copy h2,
    .apogee-founder-copy h2,
    .apogee-access-copy h2 {
        font-size: clamp(42px, 11vw, 60px);
    }


    /* -----------------------------------------------------
       Philosophy
    ----------------------------------------------------- */

    .apogee-philosophy-list {
        margin-top: 54px;
    }

    .apogee-philosophy-item {
        grid-template-columns: 38px 1fr;

        gap: 18px;

        padding: 24px 0;
    }

    .apogee-philosophy-item p {
        font-size: 14px;
    }


    /* -----------------------------------------------------
       Frontiers
    ----------------------------------------------------- */

    .apogee-frontier-track {
        gap: 36px;
    }

    .apogee-frontier-track span {
        font-size: 28px;
    }

    .apogee-frontier-track span::after {
        margin-left: 36px;
    }


    /* -----------------------------------------------------
       Focus Areas
    ----------------------------------------------------- */

    .apogee-focus {
        background-position: 65% center;
    }

    .apogee-focus-card {
        grid-template-columns: 40px 1fr;
    }


    /* -----------------------------------------------------
       Diversification
    ----------------------------------------------------- */

    .apogee-diversification {
        min-height: auto;
    }

    .apogee-diversification-copy {
        padding: 28px;

        margin-top: 38px;
    }

    .apogee-diversification-highlight {
        margin-top: 54px;

        font-size: 30px;

        text-align: left;
    }


    /* -----------------------------------------------------
       Criteria
    ----------------------------------------------------- */

    .apogee-criteria-heading {
        display: block;
    }

    .apogee-criteria-heading p {
        margin-top: 20px;
    }

    .apogee-criteria-grid,
    .apogee-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .apogee-criteria-grid {
        margin-top: 44px;
    }

    .apogee-criterion {
        min-height: 170px;
    }

    .apogee-criterion h3 {
        margin-top: 40px;
    }


    /* -----------------------------------------------------
       Portfolio
    ----------------------------------------------------- */

    .apogee-portfolio-grid {
    grid-template-columns: 1fr;
    }

.apogee-portfolio-card {
    min-height: 280px;
}

.apogee-portfolio-icon {
    margin:
        42px
        auto
        34px;
}


    /* -----------------------------------------------------
       Purpose
    ----------------------------------------------------- */

    .apogee-purpose {
        min-height: 78vh;

        padding: 80px 0;
    }

    .apogee-purpose-glow {
        right: -40%;

        width: 120vw;
    }


    /* -----------------------------------------------------
       Founder
    ----------------------------------------------------- */

    .apogee-founder-image {
        max-width: 520px;
    }

    .apogee-founder-copy .apogee-overline {
        margin-top: 0;
    }


    /* -----------------------------------------------------
       Closing CTA
    ----------------------------------------------------- */

    .apogee-closing {
        min-height: 72vh;

        padding: 80px 0;
    }

    .apogee-closing-inner h2 {
        font-size: clamp(48px, 13vw, 72px);
    }
}


/* =========================================================
   18 — REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .apogee-frontier-track {
        animation: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}