/* =========================================================
   DESIGN TOKENS
   ========================================================= */

:root {
    --navy: #092a4b;
    --blue: #1769e8;
    --muted: #617487;
    --line: #dbe5ee;
    --tint: #f4f8fc;
    --green: #12a878;
}

/* =========================================================
   RESET & DOCUMENT
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Segoe UI, Arial, sans-serif;
    color: #12283d;
    line-height: 1.55;
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */

header {
    height: 70px;
    padding: 0 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    background: #fffffff2;
    backdrop-filter: blur(8px);
    z-index: 3;
}

.logo {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: .06em;
    color: var(--navy);
    text-decoration: none;
}

    .logo span {
        color: var(--blue);
        font-weight: 500;
    }

nav {
    display: flex;
    gap: 25px;
}

    nav a {
        text-decoration: none;
        color: var(--muted);
        font-weight: 700;
        font-size: 14px;
    }

footer {
    text-align: center;
    padding: 28px;
    color: var(--muted);
    font-size: 13px;
}

/* =========================================================
   SHARED LAYOUT, TYPOGRAPHY & COMPONENTS
   ========================================================= */

.hero,
.section,
.cta {
    padding: 90px 7vw;
}

.kicker {
    font-size: 13px !important;
    letter-spacing: .18em;
    font-weight: 900 !important;
    color: var(--blue) !important;
    margin: 0 0 14px;
}

.lead {
    font-size: 22px;
    max-width: 800px;
    color: var(--muted);
    margin: 30px 0 40px;
}

.section h2,
.cta h2 {
    font-size: clamp(36px, 4.6vw, 62px);
    line-height: 1.03;
    letter-spacing: -.04em;
    color: var(--navy);
    margin: 0 0 22px;
}

.section p {
    font-size: 18px;
    color: var(--muted);
}

.section h3 {
    font-size: 24px;
    color: var(--navy);
}

.wide {
    max-width: 950px;
}

.split,
.proof,
.chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

    .chips span {
        padding: 20px;
        border: 1px solid var(--line);
        border-radius: 13px;
        background: var(--tint);
        font-weight: 800;
    }

.dark {
    background: var(--navy);
    color: #fff;
}

    .dark h2,
    .dark .kicker {
        color: #fff !important;
    }

    .dark p {
        color: #c7d5e4;
    }

.tint {
    background: var(--tint);
}

.cards {
    display: grid;
    gap: 17px;
    margin-top: 34px;
}

.five {
    grid-template-columns: repeat(5, 1fr);
}


article {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px #1539580a;
}

    article b {
        font-size: 18px;
        color: var(--navy);
    }

    article p {
        font-size: 15px !important;
        margin-bottom: 0;
    }

.banner {
    margin-top: 28px;
    background: #e9f3ff;
    padding: 19px 23px;
    border-radius: 13px;
    text-align: center;
    font-weight: 900;
    color: var(--navy);
}




.kicker.orange {
    color: #f97316;
}

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

.hero {
    min-height: 690px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 85% 20%, #e7f2ff, transparent 30%), linear-gradient(#fff, #f8fbff);
}

.hero-content {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(520px, .95fr);
    gap: 80px;
    align-items: center;
}

.hero-copy {
    max-width: 780px;
}

.hero h1 {
    font-size: clamp(55px, 6.2vw, 100px);
    line-height: .92;
    letter-spacing: -.055em;
    color: var(--navy);
    margin: 0;
}

.hero .lead {
    font-size: 22px;
    max-width: 720px;
    color: var(--muted);
    margin: 30px 0 0;
}

.hero .proofline {
    font-weight: 900;
    color: var(--navy);
    margin-top: 32px;
}

/* =========================================================
   HERO — INTELLIGENCE ENGINE
   ========================================================= */

.engine-row {
    display: grid;
    grid-template-columns: 1fr 36px 1fr;
    gap: 12px;
    align-items: center;
}

    .engine-row + .engine-row {
        margin-top: 18px;
    }

.engine-node {
    min-height: 120px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .engine-node strong {
        display: block;
        margin-top: 7px;
        font-size: 18px;
        color: var(--navy);
    }

    .engine-node small {
        display: block;
        margin-top: 3px;
        color: var(--muted);
        font-size: 13px;
    }

.engine-icon {
    font-size: 25px;
    font-weight: 900;
}

.engine-arrow {
    text-align: center;
    color: #8ca1b4;
    font-size: 24px;
    font-weight: 700;
}

.engine-node.facts .engine-icon {
    color: var(--blue);
}

.engine-node.signals {
    border-top: 4px solid #ef7d22;
}

    .engine-node.signals .engine-icon {
        color: #ef7d22;
    }

.engine-node.intelligence {
    border-top: 4px solid #7146c7;
}

    .engine-node.intelligence .engine-icon {
        color: #7146c7;
    }

.engine-node.actions {
    border-top: 4px solid #12a878;
}

    .engine-node.actions .engine-icon {
        color: #12a878;
    }

.engine-node.outcomes {
    border-top: 4px solid #4393eb;
}

    .engine-node.outcomes .engine-icon {
        color: #4393eb;
    }

.engine-node.learning {
    border-top: 4px solid var(--navy);
}

    .engine-node.learning .engine-icon {
        color: var(--navy);
    }

.engine-loop {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

    .engine-loop span {
        color: var(--blue);
        margin-right: 6px;
        font-size: 18px;
    }

/* =========================================================
   SOLUTION
   ========================================================= */

.solution-section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
}

.solution-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3.5rem;
    max-width: none;
    width: 100%;
}

.solution-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    background: rgba(255,255,255,.06);
}

    .solution-step b {
        display: block;
        color: #fff;
        font-size: 1.05rem;
        margin-bottom: .35rem;
    }

    .solution-step small {
        display: block;
        color: rgba(255,255,255,.72);
        line-height: 1.45;
    }

.solution-icon {
    color: #4f83ff;
    font-size: 1.6rem;
    flex: 0 0 auto;
}

.solution-arrow {
    color: rgba(255,255,255,.65);
    font-size: 1.8rem;
}

/* =========================================================
   TOURNAMENT INTELLIGENCE
   ========================================================= */

.tournament-intelligence {
    background: #f8faff;
}

.section-heading {
    max-width: 900px;
    margin-bottom: 3rem;
}

.intelligence-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.intelligence-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 2rem;
    border: 1px solid #dbe4f0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 39, 76, .06);
}

    .intelligence-card .number {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        margin-bottom: 1.5rem;
        border-radius: 50%;
        color: #fff;
        font-weight: 800;
        background: #2468d8;
    }

    .intelligence-card.scouting .number {
        background: #6848bf;
    }

    .intelligence-card.summary .number {
        background: #249c55;
    }

.card-label {
    margin: 0 0 .45rem;
    color: #66758c;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.intelligence-card h3 {
    margin: 0 0 .8rem;
    color: #10294f;
    font-size: 1.35rem;
}

.intelligence-card-content > p:last-child {
    color: #5e6e84;
    line-height: 1.65;
}

.card-result {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid #e2e8f0;
    color: #2468d8;
    font-weight: 800;
}

.scouting .card-result {
    color: #6848bf;
}

.summary .card-result {
    color: #249c55;
}

.intelligence-transition {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding: 1.4rem 2rem;
    border-radius: 16px;
    background: #edf4ff;
    color: #10294f;
}

.transition-arrow {
    color: #2468d8;
    font-size: 1.5rem;
}

/* =========================================================
   REAL-WORLD PROOF
   ========================================================= */

.proofline {
    font-weight: 900;
    color: var(--navy);
    margin-top: 28px;
}

.proof > div {
    background: var(--tint);
    padding: 30px;
    border-radius: 17px;
}

.proof .accent {
    border-left: 5px solid var(--green);
}

/* =========================================================
   ORGANIZATION-LED GTM
   ========================================================= */

.gtm-section {
    padding-top: 82px;
    padding-bottom: 82px;
}

.gtm-heading {
    max-width: 920px;
}

    .gtm-heading h2 {
        margin-bottom: 18px;
    }

    .gtm-heading > p:last-child {
        max-width: 780px;
        color: #d6e1f3;
        font-size: 18px;
        line-height: 1.65;
    }

.gtm-flow {
    display: grid;
    grid-template-columns: 1.15fr auto 1fr auto 1.15fr auto 1.2fr;
    align-items: stretch;
    gap: 18px;
    margin-top: 52px;
}

.gtm-step {
    position: relative;
    min-height: 185px;
    padding: 34px 28px 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gtm-number {
    position: absolute;
    top: -18px;
    left: 24px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #2f6ce5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.2);
}

.gtm-label {
    margin-bottom: 12px;
    color: #8eafff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.gtm-step strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 19px;
    line-height: 1.25;
}

.gtm-step small {
    color: #bdcbe0;
    font-size: 13px;
    line-height: 1.5;
}

.gtm-organization {
    border-top: 3px solid #4e82ef;
}

.gtm-intelligence {
    border-top: 3px solid #63bc7c;
}

    .gtm-intelligence .gtm-number {
        background: #43a260;
    }

    .gtm-intelligence .gtm-label {
        color: #80d598;
    }

.gtm-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8fa6c6;
    font-size: 28px;
    font-weight: 300;
}

.gtm-bottom {
    margin-top: 38px;
    padding: 25px 32px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 34px;
}

    .gtm-bottom > div:not(.gtm-bottom-divider) {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .gtm-bottom strong {
        color: #fff;
        font-size: 16px;
    }

    .gtm-bottom span {
        color: #b9c8dd;
        font-size: 13px;
    }

.gtm-bottom-divider {
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.18);
}

/* =========================================================
   BUSINESS MODEL
   ========================================================= */

.business-model {
    background: #fff;
}

.business-heading {
    max-width: 950px;
}

    .business-heading h2 {
        margin-bottom: 18px;
    }

    .business-heading > p:last-child {
        max-width: 780px;
        font-size: 18px;
        line-height: 1.65;
        color: var(--muted);
    }

.business-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 18px;
    margin-top: 52px;
}

.business-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 36px 28px 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 39, 76, .06);
}

.business-number {
    position: absolute;
    top: -18px;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 5px 14px rgba(15, 39, 76, .16);
}

.business-label {
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.business-card h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.25;
}

.business-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.business-result {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
}

.business-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a6b8;
    font-size: 26px;
}


/* Revenue-stage colors */

.business-card.saas {
    border-top: 3px solid var(--blue);
}

.business-card.transactions {
    border-top: 3px solid var(--green);
}

    .business-card.transactions .business-number {
        background: var(--green);
    }

    .business-card.transactions .business-label,
    .business-card.transactions .business-result {
        color: var(--green);
    }

.business-card.intelligence-revenue {
    border-top: 3px solid #7146c7;
}

    .business-card.intelligence-revenue .business-number {
        background: #7146c7;
    }

    .business-card.intelligence-revenue .business-label,
    .business-card.intelligence-revenue .business-result {
        color: #7146c7;
    }

.business-card.ecosystem {
    border-top: 3px solid #ef7d22;
}

    .business-card.ecosystem .business-number {
        background: #ef7d22;
    }

    .business-card.ecosystem .business-label,
    .business-card.ecosystem .business-result {
        color: #ef7d22;
    }


/* Economic progression */

.business-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    margin-top: 38px;
    padding: 26px 30px;
    border-radius: 16px;
    background: #edf4ff;
}

    .business-bottom > div {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .business-bottom strong {
        color: var(--navy);
        font-size: 14px;
    }

    .business-bottom span {
        color: var(--muted);
        font-size: 12px;
    }

.business-bottom-arrow {
    color: var(--blue) !important;
    font-size: 20px !important;
    font-weight: 800;
}

/* =========================================================
   PRODUCT ROADMAP
   ========================================================= */

.roadmap-section {
    padding-top: 84px;
    padding-bottom: 84px;
}

.roadmap-heading {
    max-width: 1050px;
}

    .roadmap-heading h2 {
        margin-bottom: 18px;
    }

    .roadmap-heading > p:last-child {
        max-width: 780px;
        color: var(--muted);
        font-size: 18px;
        line-height: 1.65;
    }


/* Main roadmap */

.roadmap-horizons {
    display: grid;
    grid-template-columns: 1fr auto 3.4fr auto 1.25fr;
    align-items: stretch;
    gap: 22px;
    margin-top: 52px;
}

.roadmap-horizon {
    display: flex;
    flex-direction: column;
}

.roadmap-horizon-label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 32px;
    margin-bottom: 16px;
}

    .roadmap-horizon-label span {
        color: var(--muted);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .14em;
    }

    .roadmap-horizon-label strong {
        color: var(--navy);
        font-size: 12px;
        font-weight: 800;
    }


/* Major progression arrows */

.roadmap-major-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    color: #8fa1b5;
    font-size: 30px;
}


/* Individual stages */

.roadmap-stage {
    position: relative;
    height: 100%;
    min-height: 230px;
    padding: 34px 24px 24px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--blue);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 39, 76, .05);
}

.roadmap-number {
    position: absolute;
    top: -18px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 5px 14px rgba(15, 39, 76, .15);
}

.roadmap-stage-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.roadmap-stage-type {
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.roadmap-stage h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.25;
}

.roadmap-stage p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.roadmap-status {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}


/* Built */

.roadmap-built .roadmap-horizon-label strong {
    color: var(--green);
}

.roadmap-stage-built {
    border-top-color: var(--green);
}

    .roadmap-stage-built .roadmap-number {
        background: var(--green);
    }

    .roadmap-stage-built .roadmap-stage-type,
    .roadmap-stage-built .roadmap-status {
        color: var(--green);
    }


/* Expansion stages */

.roadmap-expansion-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    height: 100%;
}


/* Live end state */

.roadmap-live .roadmap-horizon-label strong {
    color: #7146c7;
}

.roadmap-stage-live {
    border-top-color: #7146c7;
    background: linear-gradient( 145deg, #ffffff 0%, #f5f1ff 100% );
}

    .roadmap-stage-live .roadmap-number {
        background: #7146c7;
    }

    .roadmap-stage-live .roadmap-stage-type,
    .roadmap-stage-live .roadmap-status {
        color: #7146c7;
    }


/* Compounding statement */

.roadmap-compounding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 38px;
    padding: 24px 30px;
    border: 1px solid #d8e4f3;
    border-radius: 16px;
    background: #fff;
}

    .roadmap-compounding strong {
        color: var(--navy);
        font-size: 15px;
    }

    .roadmap-compounding span {
        color: var(--muted);
        font-size: 13px;
    }

/* =========================================================
   WHY IT COMPOUNDS
   ========================================================= */

.compounds-section {
    background: #fff;
}

.compounds-heading {
    max-width: 1050px;
}

    .compounds-heading h2 {
        margin-bottom: 18px;
    }

    .compounds-heading > p:last-child {
        max-width: 800px;
        color: var(--muted);
        font-size: 18px;
        line-height: 1.65;
    }


/* Athlete journey */

.compounds-journey {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 16px;
    margin-top: 52px;
}

.compound-node {
    position: relative;
    min-height: 245px;
    padding: 34px 24px 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 39, 76, .05);
}

.compound-node-icon {
    position: absolute;
    top: -18px;
    left: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 5px 14px rgba(15, 39, 76, .14);
}

.compound-node-label {
    display: block;
    margin-bottom: 11px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.compound-node h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.3;
}

.compound-node p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.compound-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #91a4b7;
    font-size: 25px;
}


/* Node colors */

.athlete-node {
    border-top: 3px solid var(--blue);
}

.team-node {
    border-top: 3px solid var(--green);
}

    .team-node .compound-node-icon {
        background: var(--green);
    }

    .team-node .compound-node-label {
        color: var(--green);
    }

.performance-node {
    border-top: 3px solid #ef7d22;
}

    .performance-node .compound-node-icon {
        background: #ef7d22;
    }

    .performance-node .compound-node-label {
        color: #ef7d22;
    }

.team-b {
    border-top-color: #7146c7;
}

    .team-b .compound-node-icon {
        background: #7146c7;
    }

    .team-b .compound-node-label {
        color: #7146c7;
    }

.opportunity-node {
    border-top: 3px solid var(--navy);
}

    .opportunity-node .compound-node-icon {
        background: var(--navy);
    }

    .opportunity-node .compound-node-label {
        color: var(--navy);
    }


/* Compounding value block */

.compound-value {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 34px;
    margin-top: 44px;
    padding: 34px;
    border: 1px solid #dbe5ee;
    border-radius: 20px;
    background: #f7faff;
}

.compound-value-label {
    display: block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}

.compound-value-main h3 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 26px;
    line-height: 1.3;
}

.compound-value-main p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}


/* Persistent / portable / longitudinal / defensible */

.compound-value-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.compound-stat {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

    .compound-stat strong {
        display: block;
        margin-bottom: 4px;
        color: var(--navy);
        font-size: 14px;
    }

    .compound-stat span {
        color: var(--muted);
        font-size: 12px;
    }


/* Footer */

.compound-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 28px;
    padding: 20px 26px;
    border-radius: 14px;
    background: var(--navy);
}

    .compound-footer strong {
        color: #fff;
        font-size: 15px;
    }

    .compound-footer span {
        color: #bfcde0;
        font-size: 13px;
        text-align: right;
    }

/* =========================================================
   COMPANY + FOUNDER
   ========================================================= */

.company-section {
    background: #fff;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
}


/* Shared */

.company-block,
.founder-block {
    min-width: 0;
}

    .company-block h2,
    .founder-block h2 {
        margin: 10px 0 18px;
        color: var(--navy);
        font-size: 44px;
        line-height: 1.1;
    }

.company-lead,
.founder-intro {
    max-width: 760px;
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.company-block > p:not(.kicker):not(.company-lead) {
    max-width: 760px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}


/* Company platforms */

.company-platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 34px;
}

.company-platform {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f8faff;
}

    .company-platform span {
        display: block;
        margin-bottom: 8px;
        color: var(--blue);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .13em;
    }

    .company-platform strong {
        display: block;
        margin-bottom: 8px;
        color: var(--navy);
        font-size: 16px;
    }

    .company-platform small {
        display: block;
        color: var(--muted);
        font-size: 12px;
        line-height: 1.55;
    }


/* Founder */

.founder-role {
    margin: -5px 0 20px;
    color: var(--blue);
    font-size: 16px;
    font-weight: 800;
}

.founder-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.founder-proof-item {
    min-height: 105px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f8faff;
}

    .founder-proof-item strong {
        display: block;
        margin-bottom: 7px;
        color: var(--navy);
        font-size: 24px;
        line-height: 1;
    }

    .founder-proof-item span {
        color: var(--muted);
        font-size: 12px;
        line-height: 1.45;
    }


/* AI / engineering positioning */

.founder-positioning {
    margin-top: 16px;
    padding: 18px 20px;
    border-left: 3px solid var(--green);
    border-radius: 0 12px 12px 0;
    background: #f5faf7;
}

    .founder-positioning strong {
        display: block;
        margin-bottom: 4px;
        color: var(--navy);
        font-size: 13px;
    }

    .founder-positioning span {
        color: var(--muted);
        font-size: 12px;
        line-height: 1.55;
    }

/* =========================================================
   MARKET OPPORTUNITY
   ========================================================= */

.market-section {
    background: #fff;
}

.market-heading {
    max-width: 1050px;
}

    .market-heading h2 {
        margin: 10px 0 18px;
        color: var(--navy);
        font-size: 48px;
        line-height: 1.12;
    }

.market-lead {
    max-width: 900px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}


/* Market statistics */

.market-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.market-stat {
    padding: 30px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--blue);
    border-radius: 18px;
    background: #f8faff;
}

.market-stat-primary {
    border-top-color: var(--green);
}

.market-stat strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 40px;
    line-height: 1;
}

.market-stat span {
    display: block;
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
}

.market-stat small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}


/* Economic expansion */

.market-expansion {
    display: grid;
    grid-template-columns: .85fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-top: 24px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #f4f8ff;
}

.market-expansion-label {
    display: block;
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}

.market-expansion-copy h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.3;
}

.market-expansion-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}


/* Opportunity layers */

.market-layers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.market-layer {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

    .market-layer > span {
        color: var(--blue);
        font-size: 11px;
        font-weight: 900;
    }

    .market-layer strong {
        display: block;
        margin-bottom: 4px;
        color: var(--navy);
        font-size: 14px;
    }

    .market-layer small {
        display: block;
        color: var(--muted);
        font-size: 11px;
        line-height: 1.45;
    }


/* Market footer */

.market-footer {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 22px;
    padding: 20px 24px;
    border-radius: 14px;
    background: var(--navy);
}

    .market-footer strong {
        color: #fff;
        font-size: 14px;
    }

    .market-footer span {
        max-width: 720px;
        color: #c7d5e4;
        font-size: 12px;
        line-height: 1.5;
        text-align: right;
    }

.market-source {
    margin: 12px 4px 0;
    color: var(--muted);
    font-size: 10px;
}


/* =========================================================
   COMPANY & CTA
   ========================================================= */


.cta {
    text-align: center;
    background: linear-gradient(135deg, #082540, #12416f);
    color: #fff;
}

    .cta h2 {
        color: #fff;
    }

    .cta .kicker {
        color: #8dc1ff !important;
    }

    .cta p {
        font-size: 18px;
        color: #c7d5e4;
        max-width: 760px;
        margin: 0 auto 32px;
    }

    .cta a {
        display: inline-block;
        padding: 14px 22px;
        border-radius: 9px;
        background: #fff;
        color: var(--navy);
        text-decoration: none;
        font-weight: 900;
    }

/* =========================================================
   OTHER / EXISTING SUPPORT RULES
   ========================================================= */

/* Intelligence Engine */

.hero-engine {
    position: relative;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 24px 70px rgba(18, 56, 91, .10);
    backdrop-filter: blur(10px);
}

/* Concept colors */

.engine-node.facts {
    border-top: 4px solid var(--blue);
}


/* =========================================================
   RESPONSIVE
   Desktop → tablet → mobile
   ========================================================= */

@media (max-width: 1250px) {
    .compounds-journey {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 18px;
    }

    .compound-arrow {
        display: none;
    }
}

@media (max-width: 1200px) {
    .business-flow {
        grid-template-columns: 1fr 1fr;
        gap: 30px 18px;
    }

    .business-arrow {
        display: none;
    }

    .business-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .business-bottom-arrow {
        display: none;
    }
}

@media (max-width: 1100px) {
    .gtm-flow {
        grid-template-columns: 1fr 1fr;
        gap: 28px 18px;
    }

    .gtm-arrow {
        display: none;
    }
}

@media (max-width: 1050px) {
    .company-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

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

    .hero-copy {
        max-width: 850px;
    }

    .hero-engine {
        max-width: 760px;
    }
}

@media (max-width: 1000px) {
    .five {
        grid-template-columns: repeat(2, 1fr);
    }

    .market-stats {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 900px) {
    .compounds-journey {
        grid-template-columns: repeat(2, 1fr);
    }

    .compound-value {
        grid-template-columns: 1fr;
    }

    .compound-footer {
        flex-direction: column;
        align-items: flex-start;
    }

        .compound-footer span {
            text-align: left;
        }
}

@media (max-width: 850px) {
    .solution-flow {
        grid-template-columns: 1fr;
    }

    .solution-arrow {
        text-align: center;
        transform: rotate(90deg);
    }

    .intelligence-cards {
        grid-template-columns: 1fr;
    }

    .intelligence-transition {
        flex-direction: column;
        text-align: center;
    }

    .transition-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 720px) {
    .hero {
        min-height: auto;
    }

    .hero-content {
        gap: 40px;
    }

    .hero-engine {
        padding: 22px;
    }

    .engine-row {
        grid-template-columns: 1fr;
    }

    .engine-arrow {
        transform: rotate(90deg);
    }

    .engine-node {
        min-height: 100px;
    }

    nav {
        display: none;
    }

    .hero,
    .section,
    .cta {
        padding: 65px 24px;
    }

    .split,
    .proof,
    .five {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

        .hero h1 {
            font-size: 54px;
        }
}

@media (max-width: 700px) {
    .gtm-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .gtm-flow {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gtm-step {
        min-height: auto;
    }

    .gtm-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gtm-bottom-divider {
        width: 100%;
        height: 1px;
    }

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

    .business-card {
        min-height: auto;
    }

    .business-bottom {
        grid-template-columns: 1fr;
    }

    .market-heading h2 {
        font-size: 38px;
    }

    .market-stats,
    .market-layers {
        grid-template-columns: 1fr;
    }

    .market-expansion {
        padding: 24px;
    }

    .market-footer {
        flex-direction: column;
        gap: 8px;
    }

        .market-footer span {
            text-align: left;
        }
}

@media (max-width: 650px) {
    .company-block h2,
    .founder-block h2 {
        font-size: 36px;
    }

    .company-platforms,
    .founder-proof {
        grid-template-columns: 1fr;
    }

    .founder-proof-item {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .compounds-journey {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .compound-node {
        min-height: auto;
    }

    .compound-value-side {
        grid-template-columns: 1fr;
    }
}
