/* ============================================
   INVESTMENT APPROACH PAGE
   ============================================ */

/* ---------- PAGE BODY ---------- */
.approach-body {
    background: var(--navy-deep);
}

/* ============================================
   SECTION LAYOUT (snap removed — normal scroll)
   ============================================ */

.snap-section {
    min-height: 100vh;
    position: relative;
}

/* ============================================
   DOT NAVIGATION — fixed vertical dots, right edge
   ============================================ */

.snap-dots {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 100;
}

.snap-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.snap-dot:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.25);
}

.snap-dot--active {
    background: #06c4a2;
    border-color: #06c4a2;
    transform: scale(1.15);
}

/* Dots over light backgrounds — dark outlines */
.snap-dot--light {
    border-color: rgba(1, 12, 51, 0.25);
}

.snap-dot--light:hover {
    border-color: rgba(1, 12, 51, 0.6);
}

.snap-dot--light.snap-dot--active {
    background: #06c4a2;
    border-color: #06c4a2;
}

/* Tooltip labels (show on hover) */
.snap-dot-label {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.snap-dot:hover .snap-dot-label {
    opacity: 1;
}

.snap-dot--light .snap-dot-label {
    color: rgba(1, 12, 51, 0.6);
}

/* ============================================
   SCROLL INDICATOR — hero section
   ============================================ */

.snap-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: var(--container-pad);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
    opacity: 0;
    animation: snapScrollFadeIn 0.8s ease 1.2s forwards;
}

.snap-scroll-indicator-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    animation: snapScrollPulse 2s ease-in-out infinite;
}

.snap-scroll-indicator-text {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    writing-mode: vertical-rl;
}

@keyframes snapScrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%      { opacity: 1;   transform: scaleY(1.15); }
}

@keyframes snapScrollFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ============================================
   ENTRANCE ANIMATIONS — triggered by IntersectionObserver
   ============================================ */

.snap-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.snap-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

.snap-reveal--delay-1 { transition-delay: 0.1s; }
.snap-reveal--delay-2 { transition-delay: 0.2s; }
.snap-reveal--delay-3 { transition-delay: 0.3s; }
.snap-reveal--delay-4 { transition-delay: 0.4s; }

/* ============================================
   SECTION OVERRIDES FOR 100vh SNAP LAYOUT
   ============================================ */

/* Hero banner — full viewport */
.approach-main .approach-banner {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-main .approach-banner-text {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    transform: none;
    padding-top: 0;
    margin: 0 auto;
}


/* Hero/tabs — centre the card in viewport */
.approach-main .approach-hero {
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-main .approach-hero-inner {
    padding-top: clamp(20px, 3vh, 40px);
    padding-bottom: clamp(20px, 3vh, 40px);
}

/* G²M cards section — centre content */
.approach-main .g2m-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-main .g2m-content {
    padding-top: clamp(40px, 4vw, 64px);
    padding-bottom: clamp(40px, 4vw, 64px);
}

/* Thesis section — centre the 2-col grid */
.approach-main .g2m-thesis {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 4vw, 64px) 0;
}

/* Mission alt — already flex centred, just ensure 100vh */
.approach-main .g2m-mission-alt {
    min-height: 100vh;
    height: 100vh;
}

/* ── SCALED DISPLAY FIX — Approach page ── */
@media (min-width: 1025px) and (max-width: 1439px) {

    .approach-banner {
        height: 36vh;
        min-height: 240px;
    }

    .approach-banner-headline {
        font-size: clamp(1.1rem, 2vw, 1.7rem);
    }

    .approach-banner-tagline {
        font-size: clamp(0.8rem, 1.2vw, 1rem);
    }

    .approach-inflection-h2 {
        font-size: clamp(1.1rem, 2vw, 1.7rem);
    }

    .approach-inflection-body {
        font-size: clamp(0.88rem, 1.2vw, 1.05rem);
    }

    .approach-inflection {
        padding: clamp(64px, 8vw, 110px) 0 clamp(120px, 16vw, 200px);
    }
}

/* ============================================
   MOBILE — disable snap, natural scroll
   ============================================ */

@media (max-width: 768px) {

    /* --- Prevent horizontal overflow from fixed nav elements --- */
    html {
        overflow-x: hidden;
    }

    /* --- Disable snap-scroll entirely --- */
    .approach-main {
        scroll-snap-type: none;
        height: auto;
        overflow-y: visible;
    }

    .snap-section {
        scroll-snap-align: none;
        scroll-snap-stop: normal;
        height: auto;
        min-height: auto;
        overflow: visible;
    }

    .snap-section--scrollable {
        overflow-y: visible;
    }

    .snap-section--footer {
        min-height: auto;
        scroll-snap-align: none;
    }

    /* --- Hide desktop-only UI --- */
    .snap-dots {
        display: none;
    }

    .approach-main .approach-banner-ctas {
        display: none;
    }

    .snap-scroll-indicator {
        display: none;
    }

    /* --- Override all .approach-main section overrides --- */
    .approach-main .approach-banner {
        height: auto;
        min-height: 60vh;
        display: flex;
        align-items: center;
    }

    .approach-main .approach-banner-text {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        transform: none;
        padding-top: 80px;
        padding-bottom: 48px;
        pointer-events: auto;
    }

    .approach-main .approach-hero {
        display: block;
    }

    .approach-main .g2m-section {
        display: block;
    }

    .approach-main .g2m-thesis {
        display: block;
        padding: clamp(48px, 8vw, 64px) 0;
    }

    .approach-main .g2m-mission-alt {
        height: auto;
        min-height: 60vh;
        overflow: hidden;
    }

    /* Section dividers on mobile */
    .approach-main #g2m-thesis::before,
    .approach-main #g2m-flywheel::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
        height: 1px;
        background: rgba(255, 255, 255, 0.15);
    }

    .approach-main .g2m-mission-alt-bg {
        inset: 0;
        background-size: cover;
        background-position: center top;
        will-change: auto;
    }

    /* Flip veil: reveal peak at top, dark at bottom where text lives */
    .approach-main .g2m-mission-alt-veil {
        background: linear-gradient(
            to bottom,
            rgba(0, 10, 31, 0.05) 0%,
            rgba(0, 10, 31, 0.30) 35%,
            rgba(0, 10, 31, 0.80) 65%,
            rgba(0, 10, 31, 0.97) 100%
        );
    }

    /* --- Hero banner --- */
    .approach-banner {
        min-height: 60vh;
    }

    .approach-main .approach-banner-headline {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .approach-main .approach-banner-headline-wrap {
        gap: 12px;
    }

    .approach-main .approach-banner-text {
        padding-bottom: 48px;
    }

    /* --- Inflection --- */
    .approach-main .approach-inflection {
        padding-bottom: 32px;
    }

    /* --- Flywheel --- */
    .approach-main .approach-flywheel {
        padding-top: clamp(64px, 10vh, 96px);
    }

    .flywheel-card {
        height: auto;
        min-height: 200px;
    }

    /* --- ORION --- */
    .orion-dash {
        max-width: 100%;
    }

    /* --- Expert Network --- */
    .approach-experts .approach-platform-row {
        flex-direction: column;
    }

    .approach-experts .approach-platform-lead {
        min-width: 0;
    }

    .approach-experts .approach-platform-team {
        flex-wrap: wrap;
    }

    .approach-experts .approach-platform-card {
        flex: 1 1 calc(50% - 8px);
        min-width: 140px;
    }

    .approach-experts .approach-experts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .approach-experts .approach-experts-inner {
        padding-top: clamp(48px, 7vh, 72px);
        padding-bottom: clamp(48px, 7vh, 72px);
    }
}

/* --- Expert Network 480px compaction --- */
@media (max-width: 480px) {
    .approach-experts .approach-platform-lead {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .approach-experts .approach-platform-lead-info {
        align-items: center;
    }

    .approach-experts .approach-platform-lead-prev {
        flex-direction: column;
    }

    .approach-experts .approach-platform-team {
        flex-direction: column;
    }

    .approach-experts .approach-platform-card {
        flex: 1 1 100%;
    }

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

    .approach-experts .approach-expert-card {
        padding: 34px 16px 18px;
    }

    .approach-experts .approach-expert-avatar {
        width: 40px;
        height: 40px;
    }

    .approach-experts .approach-expert-name {
        font-size: 0.65rem;
    }

    .approach-experts .approach-expert-title {
        font-size: 0.58rem;
    }
}

/* ---------- BANNER ---------- */
.approach-banner {
    position: relative;
    width: 100%;
    height: 44vh;
    min-height: 280px;
    overflow: hidden;
    flex-shrink: 0;
}

.approach-banner-bg {
    position: absolute;
    inset: -10%;
    background: url('assets/images/hero-main-nobleed.png') center 25% / cover no-repeat;
    animation: heroBgZoom 20s ease-out forwards;
    will-change: transform;
}

@keyframes heroBgZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}

/* Dark gradient overlay — darker left (text side), lighter right to reveal image */
.approach-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(0, 6, 22, 0.72) 0%,
        rgba(0, 6, 22, 0.52) 45%,
        rgba(0, 6, 22, 0.28) 100%
    );
    pointer-events: none;
}

/* Bottom fade — blends image into page content below */
.approach-banner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 6, 22, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
}

.approach-banner-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    padding-top: 80px; /* offset for transparent nav */
    width: 100%;
    max-width: var(--container-max);
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
    pointer-events: none;
}

.approach-banner-headline-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1000px;
}

.approach-banner-headline {
    font-size: clamp(1.3rem, 2.2vw, 2.3rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--white);
    margin: 0;
}

.approach-banner-tagline {
    font-size: clamp(1.1rem, 2vw, 1.75rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    line-height: 1.3;
}

.approach-banner-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    pointer-events: auto;
}

.approach-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
}

.approach-banner-btn--primary {
    background: #06c4a2;
    border-color: #06c4a2;
    color: #010c33;
}

.approach-banner-btn--primary:hover {
    background: #05b393;
    border-color: #05b393;
    transform: translateY(-1px);
}

.approach-banner-btn--secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
}

.approach-banner-btn--secondary:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
    transform: translateY(-1px);
}

.approach-main {
    min-height: 100vh;
    /* Scale down spacing & container width to reduce the "zoomed in" feel */
    --section-pad: clamp(56px, 7vw, 112px);
    --container-max: 1260px;
    --container-pad: clamp(20px, 3.5vw, 64px);
    font-size: 0.92em;
}


/* ---------- INFLECTION SECTION ---------- */
.approach-inflection {
    position: relative;
    padding: clamp(80px, 10vw, 140px) 0 clamp(160px, 20vw, 260px);
    background: var(--navy-deep);
    overflow-x: hidden;
}

.approach-inflection-inner {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.approach-inflection-header {
    max-width: 800px;
    margin-bottom: clamp(16px, 2vw, 28px);
    position: relative;
    z-index: 5;
}

.approach-inflection-h2 {
    font-size: clamp(1.3rem, 2.2vw, 2rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.3;
    color: var(--white);
    margin: 0 0 clamp(20px, 2.5vw, 32px);
}

.approach-inflection-body {
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.approach-inflection-body--gap {
    margin-bottom: 0.75em;
}

.approach-inflection-body strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

.approach-inflection-accent {
    color: #06c4a2 !important;
}

/* The diagram itself re-uses all .diagram-* classes from styles.css.
   Only override what needs to be different in this context. */
#approachDiagramDesktop .diagram-fade-left  { background: linear-gradient(90deg,  var(--navy-deep), transparent); }
#approachDiagramDesktop .diagram-fade-right { background: linear-gradient(270deg, var(--navy-deep), transparent); }




/* ════════════════════════════════════════════════════════
   SECTION 8 — SCIENCE OF GROWTH (ACCORDION)
   ════════════════════════════════════════════════════════ */

/* --- Section container --- */
.approach-accordion {
    background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(6, 196, 162, 0.06) 0%, transparent 70%),
        var(--navy-deep, #0a1628);
    position: relative;
}

.approach-main .approach-accordion {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 4vw, 64px) 0;
}

/* --- Two-column grid --- */
.approach-accordion-inner {
    max-width: var(--container-max, 1280px);
    margin: 0 auto;
    padding: 0 var(--container-pad, 40px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
    width: 100%;
}

/* --- Left column: text --- */
.approach-accordion-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.approach-accordion-heading {
    font-family: var(--font, 'Inter', sans-serif);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 24px 0;
}

.approach-accordion-divider {
    width: 48px;
    height: 3px;
    background: var(--teal, #06c4a2);
    border-radius: 2px;
    margin-bottom: 24px;
}

.approach-accordion-body {
    font-family: var(--font, 'Inter', sans-serif);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* --- Right column: accordion cards --- */
.approach-accordion-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* --- Individual card --- */
.accordion-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.accordion-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.accordion-card--open {
    border-color: rgba(6, 196, 162, 0.2);
}

.accordion-card--open:hover {
    border-color: rgba(6, 196, 162, 0.3);
}

/* --- Card header (button) --- */
.accordion-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.accordion-card-header:focus-visible {
    outline: 2px solid var(--teal, #06c4a2);
    outline-offset: -2px;
    border-radius: 20px;
}

.accordion-card-title {
    font-family: var(--font, 'Inter', sans-serif);
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}

/* --- Chevron icon circle --- */
.accordion-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                background 0.3s ease,
                color 0.3s ease;
}

.accordion-card--open .accordion-card-icon {
    transform: rotate(180deg);
    background: rgba(6, 196, 162, 0.15);
    color: var(--teal, #06c4a2);
}

/* --- Collapsible panel --- */
.accordion-card-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.accordion-card-body {
    padding: 0 24px 24px 24px;
    position: relative;
}

.accordion-card-body::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--teal, #06c4a2);
    border-radius: 1px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.accordion-card-body p {
    font-family: var(--font, 'Inter', sans-serif);
    font-size: clamp(0.88rem, 1vw, 0.95rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* --- Responsive: mobile stack --- */
@media (max-width: 768px) {
    .approach-accordion-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .approach-accordion-heading {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .accordion-card-header {
        padding: 16px 20px;
    }

    .accordion-card-body {
        padding: 0 20px 20px 20px;
    }
}


/* ════════════════════════════════════════════════════════
   SECTION 9 — G²M FLYWHEEL (Stepper + Card)
   ════════════════════════════════════════════════════════ */

/* --- Section container --- */
.approach-flywheel {
    background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(6, 196, 162, 0.05) 0%, transparent 70%),
        var(--navy-deep, #0a1628);
    position: relative;
}

.approach-main .approach-flywheel {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(100px, 13vh, 130px) 0 0;
}
/* Trim body margin so cycle-note stays within the 800px viewport boundary */
.approach-main .approach-flywheel-body {
    margin-bottom: 44px;
}

/* --- Inner wrapper (centered column) --- */
.approach-flywheel-inner {
    max-width: var(--container-max, 1280px);
    margin: 0 auto;
    padding: 0 var(--container-pad, 40px);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* --- Heading --- */
.approach-flywheel-heading {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: clamp(1.4rem, 1.9vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 24px 0;
    max-width: 100%;
    white-space: nowrap;
}

.approach-flywheel-heading sup {
    font-size: 0.55em;
    vertical-align: super;
    line-height: 0;
}

/* --- Teal divider --- */
.approach-flywheel-divider {
    width: 48px;
    height: 3px;
    background: #06c4a2;
    border-radius: 2px;
    margin-bottom: 24px;
}

/* --- Body text --- */
.approach-flywheel-body {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 clamp(32px, 4vw, 56px) 0;
    max-width: 920px;
}

/* ═══ HORIZONTAL STEPPER ═══ */
.flywheel-stepper {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 920px;
    margin-bottom: clamp(28px, 3vw, 48px);
    padding-top: 20px;
}

/* --- Track line (full width, behind pins) --- */
.flywheel-track {
    position: absolute;
    top: 40px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    z-index: 0;
}

/* --- Track fill (teal progress up to active pin) --- */
.flywheel-track-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #06c4a2;
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Pin button --- */
.flywheel-pin {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.flywheel-pin:focus-visible .flywheel-pin-number {
    outline: 2px solid #06c4a2;
    outline-offset: 3px;
}

/* --- Pin circle (number inside) --- */
.flywheel-pin-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background 0.35s ease, color 0.35s ease,
                border-color 0.35s ease, box-shadow 0.35s ease;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.4);
}

.flywheel-pin--active .flywheel-pin-number {
    background: #06c4a2;
    border-color: #06c4a2;
    color: #fff;
    box-shadow: 0 0 20px rgba(6, 196, 162, 0.4),
                0 0 6px rgba(6, 196, 162, 0.25);
}

/* Past (completed) pins — white fill, dark number */
.flywheel-pin--past .flywheel-pin-number {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    color: #010c33;
}

.flywheel-pin--past .flywheel-pin-label {
    color: rgba(255, 255, 255, 0.5);
}

.flywheel-pin--past:hover .flywheel-pin-number {
    background: #fff;
    border-color: #fff;
}

.flywheel-pin:not(.flywheel-pin--active):not(.flywheel-pin--past):hover .flywheel-pin-number {
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
}

/* --- Pin label (below circle) --- */
.flywheel-pin-label {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    color: rgba(255, 255, 255, 0.35);
}

.flywheel-pin--active .flywheel-pin-label {
    color: #06c4a2;
}

.flywheel-pin:not(.flywheel-pin--active):hover .flywheel-pin-label {
    color: rgba(255, 255, 255, 0.6);
}

/* ═══ CONTENT CARD (glassmorphism) ═══ */
.flywheel-card {
    width: 100%;
    max-width: 920px;
    height: 280px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top-color: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: clamp(24px, 3vw, 36px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    text-align: left;
    display: flex;
    flex-direction: column;
}

/* --- Panel (hidden/visible toggle) --- */
.flywheel-panel {
    display: none;
    animation: approachFadeIn 0.3s ease-out;
}

.flywheel-panel--active {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* --- Card navigation (prev / next) --- */
.flywheel-card-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.flywheel-nav-btn {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.45);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 2px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: color 0.25s ease;
}

.flywheel-nav-btn:hover {
    color: #06c4a2;
}

.flywheel-nav-btn:focus-visible {
    outline: 2px solid #06c4a2;
    outline-offset: 3px;
    border-radius: 4px;
}

.flywheel-nav-btn--hidden {
    visibility: hidden;
    pointer-events: none;
}

/* --- Cycle repeat note --- */
.flywheel-cycle-note {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: 0.72rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.28);
    text-align: center;
    margin: 12px 0 0 0;
    letter-spacing: 0.02em;
}

/* --- Panel title --- */
.flywheel-panel-title {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: clamp(1.15rem, 1.6vw, 1.35rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #ffffff;
    margin: 0;
}

/* --- Panel divider (teal) --- */
.flywheel-panel-divider {
    width: 32px;
    height: 2px;
    background: #06c4a2;
    border-radius: 2px;
    margin: 28px 0;
}

/* --- Panel body --- */
.flywheel-panel-body {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: clamp(0.88rem, 1vw, 0.95rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.flywheel-panel-body sup {
    font-size: 0.55em;
    vertical-align: super;
    line-height: 0;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
    .approach-flywheel-inner {
        padding: 0 var(--container-pad, 20px) 64px;
        align-items: flex-start;
        text-align: left;
    }

    .approach-flywheel-heading {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        white-space: normal;
    }

    .flywheel-stepper {
        max-width: 100%;
        padding-top: 16px;
    }

    .flywheel-cycle-note {
        align-self: center;
        text-align: center;
    }

    .flywheel-pin-number {
        width: 36px;
        height: 36px;
        font-size: 0.7rem;
    }

    .flywheel-track {
        top: 34px;
    }

    .flywheel-pin-label {
        font-size: 0.65rem;
    }

    .flywheel-card {
        padding: 20px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .flywheel-pin-number {
        width: 32px;
        height: 32px;
        font-size: 0.65rem;
    }

    .flywheel-track {
        top: 32px;
    }

    .flywheel-pin-label {
        font-size: 0.6rem;
        letter-spacing: 0;
    }
}


/* ╔══════════════════════════════════════════════════════════╗
   ║  ORION PLATFORM SECTION                                  ║
   ╚══════════════════════════════════════════════════════════╝ */

/* ═══ Section wrapper ═══ */
.approach-orion {
    background: #010c33;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-orion::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 65% 50%, rgba(6, 196, 162, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

/* Subtle 60px grid crosshatch — matches the TSX version */
.orion-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ═══ Inner wrapper ═══ */
.approach-orion-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px var(--container-pad, 40px);
}

/* ═══ Flow variant — single-column stacked layout ═══ */
.orion-inner--flow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px var(--container-pad, 40px) 32px;
}

.orion-flow-header {
    max-width: 942px;
    margin-bottom: 32px;
}

/* ═══ Data-flow infographic container ═══ */
.orion-flow-graphic {
    display: grid;
    grid-template-columns: 200px 100px 1fr;
    gap: 0;
    align-items: center;
    width: 100%;
    align-self: stretch;
}

/* ── Left: Data source cards ── */
.orion-sources {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.orion-source-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(6, 196, 162, 0.15);
    background: rgba(6, 196, 162, 0.04);
    position: relative;
    transition: border-color 0.3s, background 0.3s;
}

.orion-source-card:hover {
    border-color: rgba(6, 196, 162, 0.35);
    background: rgba(6, 196, 162, 0.08);
}

.orion-source-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(6, 196, 162, 0.12);
    color: #06c4a2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orion-source-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.orion-source-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.orion-source-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
}

.orion-source-pulse {
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #06c4a2;
    box-shadow: 0 0 8px rgba(6, 196, 162, 0.5);
    animation: orionPulse 2s infinite;
}

/* ── Center: SVG connectors ── */
.orion-connectors {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.orion-connector-svg {
    width: 100%;
    height: 300px;
}

/* Desktop: hide vertical SVG */
.orion-connector-svg--vertical {
    display: none;
}

.orion-beam {
    filter: drop-shadow(0 0 6px rgba(6, 196, 162, 0.8));
}

/* ── Right: Dashboard stack + accordion ── */
.orion-flow-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ── Cascaded dashboard stack ── */
.orion-dash-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    transform: scale(0.8);
    transform-origin: top left;
    margin-bottom: calc(-13.75% + 20px); /* reclaim dead space from scale, plus 20px gap */
}

.orion-dash-stack .orion-dash-glow {
    position: absolute;
    inset: -12px;
    background: rgba(6, 196, 162, 0.15);
    border-radius: 24px;
    filter: blur(36px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.orion-stack-card {
    position: absolute;
    border-radius: 16px;
    border: 1px solid rgba(6, 196, 162, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
}

.orion-stack-card .orion-dash-screen {
    aspect-ratio: 16 / 10;
}

/* Back card — top-left, smallest, most faded */
.orion-stack-card--back {
    width: 80%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.45;
    filter: brightness(0.7);
}

/* Middle card — slightly offset */
.orion-stack-card--mid {
    width: 85%;
    top: 8%;
    left: 5%;
    z-index: 2;
    opacity: 0.65;
    filter: brightness(0.85);
}

/* Front card — most prominent */
.orion-stack-card--front {
    width: 90%;
    top: 16%;
    left: 10%;
    z-index: 3;
    opacity: 1;
    filter: brightness(1);
    border-color: rgba(6, 196, 162, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(6, 196, 162, 0.08);
}

/* ── Tab-strip slicer ── */
.orion-tab-strip {
    display: flex;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.orion-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: color 0.25s, background 0.25s;
    -webkit-appearance: none;
    appearance: none;
}

.orion-tab + .orion-tab {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.orion-tab:hover:not(.orion-tab--active) {
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.03);
}

.orion-tab--active {
    color: #06c4a2;
    background: rgba(6, 196, 162, 0.08);
}

/* Active bottom indicator */
.orion-tab--active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: #06c4a2;
    border-radius: 2px 2px 0 0;
}

.orion-tab svg {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.25s;
}

.orion-tab--active svg {
    opacity: 1;
    color: #06c4a2;
}

/* ═══ Left column — heading, description, features ═══ */
.orion-heading {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0 0 24px 0;
}

.orion-heading-accent {
    color: #06c4a2;
}

.orion-description {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 24px 0;
}

.orion-description--tight {
    margin-bottom: 12px;
}

/* ═══ Feature buttons ═══ */
.orion-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.orion-feature {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 20px;
    border-radius: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.orion-feature:hover:not(.orion-feature--active) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.13);
}

.orion-feature--active {
    background: rgba(6, 196, 162, 0.08);
    border-color: rgba(6, 196, 162, 0.25);
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Icon circle */
.orion-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(6, 196, 162, 0.15);
    color: #06c4a2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.orion-feature--active .orion-feature-icon {
    background: #06c4a2;
    color: #010c33;
}

.orion-feature-text {
    flex: 1;
    min-width: 0;
}

/* Feature title */
.orion-feature-title {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.orion-feature--active .orion-feature-title {
    color: #06c4a2;
    margin-bottom: 6px;
}

/* Feature description — expand/collapse via max-height */
.orion-feature-desc {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease;
}

.orion-feature--active .orion-feature-desc {
    max-height: 120px;
    opacity: 1;
}

/* ═══ Right column — dashboard ═══ */
.orion-dashboard {
    position: relative;
}

/* Teal glow behind frame */
.orion-dash-glow {
    position: absolute;
    inset: -16px;
    background: rgba(6, 196, 162, 0.18);
    border-radius: 28px;
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
}

/* Outer frame */
.orion-dash-frame {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(6, 196, 162, 0.28);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Gradient border overlay */
.orion-dash-gradient-border {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 196, 162, 0.25) 0%, transparent 50%, rgba(6, 196, 162, 0.08) 100%);
    border-radius: 20px;
    pointer-events: none;
    z-index: 2;
}

/* Screen area */
.orion-dash-screen {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #0f172a, #1e293b 50%, #0f172a);
    padding: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* --- Fake browser chrome --- */
.orion-dash-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.orion-dash-dots {
    display: flex;
    gap: 5px;
}

.orion-dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.orion-dash-dot--red    { background: rgba(239, 68,  68,  0.6); }
.orion-dash-dot--yellow { background: rgba(234, 179, 8,   0.6); }
.orion-dash-dot--green  { background: rgba(34,  197, 94,  0.6); }

.orion-dash-urlbar {
    flex: 1;
    height: 22px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

/* --- Panel container --- */
.orion-dash-content {
    flex: 1;
    position: relative;
    min-height: 0;
}

/* Panel swap — reuses existing approachFadeIn keyframes */
.orion-dash-panel {
    display: none;
    height: 100%;
    flex-direction: column;
    gap: 8px;
    animation: approachFadeIn 0.3s ease;
}

.orion-dash-panel--active {
    display: flex;
}

/* ═══ BENCHMARK PANEL ═══ */

.orion-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    flex-shrink: 0;
}

.orion-kpi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 12px;
}

.orion-kpi-label {
    font-size: 0.6rem;
    color: rgba(6, 196, 162, 0.7);
    margin-bottom: 4px;
    font-family: var(--font, 'Manrope', sans-serif);
}

.orion-kpi-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
    font-family: var(--font, 'Manrope', sans-serif);
    line-height: 1.1;
}

.orion-kpi-value--accent { color: #06c4a2; }

.orion-kpi-delta {
    font-size: 0.6rem;
    font-family: var(--font, 'Manrope', sans-serif);
}

.orion-kpi-delta--green  { color: #4ade80; }
.orion-kpi-delta--yellow { color: #facc15; }

.orion-chart-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
    flex: 1;
    min-height: 0;
}

.orion-chart-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
}

.orion-chart-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    font-family: var(--font, 'Manrope', sans-serif);
    flex-shrink: 0;
}

.orion-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    flex: 1;
    min-height: 0;
}

.orion-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, rgba(6, 196, 162, 0.8), #06c4a2);
    min-height: 3px;
}

.orion-bar--pink {
    background: linear-gradient(to top, rgba(236, 72, 153, 0.8), #ec4899);
}

/* ═══ EARLY WARNING PANEL ═══ */

.orion-line-chart-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 12px;
    flex-shrink: 0;
}

.orion-line-svg {
    width: 100%;
    height: 60px;
    display: block;
    overflow: visible;
}

.orion-line-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 4px;
    font-family: var(--font, 'Manrope', sans-serif);
}

.orion-line-label--accent { color: #06c4a2; }

.orion-alert-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex: 1;
    min-height: 0;
}

.orion-alert-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 12px;
}

.orion-alert-card--yellow { border: 1px solid rgba(234, 179, 8,  0.3); }
.orion-alert-card--green  { border: 1px solid rgba(34,  197, 94, 0.3); }

.orion-alert-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.orion-alert-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: orionPulse 2s infinite;
}

.orion-alert-dot--yellow { background: #facc15; }
.orion-alert-dot--green  { background: #4ade80; }

@keyframes orionPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.35; }
}

.orion-alert-badge {
    font-size: 0.6rem;
    font-weight: 600;
    font-family: var(--font, 'Manrope', sans-serif);
}

.orion-alert-badge--yellow { color: #facc15; }
.orion-alert-badge--green  { color: #4ade80; }

.orion-alert-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 3px;
    font-family: var(--font, 'Manrope', sans-serif);
}

.orion-alert-body {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font, 'Manrope', sans-serif);
}

/* ═══ DIAGNOSTICS PANEL ═══ */

.orion-pillar-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    flex-shrink: 0;
}

.orion-pillar-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
}

.orion-pillar-name {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    font-family: var(--font, 'Manrope', sans-serif);
}

.orion-pillar-score {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: var(--font, 'Manrope', sans-serif);
    line-height: 1;
}

.orion-pillar-score--accent { color: #06c4a2; }
.orion-pillar-score--blue   { color: #60a5fa; }
.orion-pillar-score--purple { color: #c084fc; }
.orion-pillar-score--pink   { color: #f472b6; }

.orion-pillar-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.orion-pillar-fill {
    height: 100%;
    border-radius: 2px;
}

.orion-pillar-fill--accent { background: #06c4a2; }
.orion-pillar-fill--blue   { background: #60a5fa; }
.orion-pillar-fill--purple { background: #c084fc; }
.orion-pillar-fill--pink   { background: #f472b6; }

.orion-recs-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 12px;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.orion-rec-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 8px;
}

.orion-rec-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.orion-rec-badge {
    font-size: 0.55rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    flex-shrink: 0;
    font-family: var(--font, 'Manrope', sans-serif);
}

.orion-rec-badge--high { background: rgba(6, 196, 162, 0.2); color: #06c4a2; }
.orion-rec-badge--med  { background: rgba(96, 165, 250, 0.2); color: #60a5fa; }

.orion-rec-text {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font, 'Manrope', sans-serif);
}

/* ═══ Floating label ═══ */
.orion-dash-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    z-index: 3;
    font-family: var(--font, 'Manrope', sans-serif);
    pointer-events: none;
}

/* ═══ Decorative corner blobs ═══ */
.orion-dash-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.orion-dash-decor--tr {
    width: 100px;
    height: 100px;
    top: -24px;
    right: -24px;
    background: rgba(6, 196, 162, 0.1);
}

.orion-dash-decor--bl {
    width: 80px;
    height: 80px;
    bottom: -24px;
    left: -24px;
    background: rgba(6, 196, 162, 0.12);
}

/* ═══ RESPONSIVE — ORION ═══ */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
    .approach-orion-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .orion-content {
        max-width: 600px;
    }

    .orion-flow-graphic {
        grid-template-columns: 160px 80px 1fr;
    }

    .orion-dash-stack {
        transform: scale(0.75);
        margin-bottom: calc(-17% + 16px);
    }

    .orion-tab-strip {
        flex-direction: row;
    }
}

/* ── Mobile (≤768px) — vertical data flow ── */
@media (max-width: 768px) {
    .orion-inner--flow {
        padding: 32px var(--container-pad, 20px) 24px;
    }

    .orion-flow-header {
        max-width: none;
    }

    .orion-heading {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

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

    /* Vertical flow layout */
    .orion-flow-graphic {
        grid-template-columns: 1fr;
        gap: 0;
        justify-items: center;
    }

    /* Source cards — horizontal row */
    .orion-sources {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        gap: 8px;
        width: 100%;
        max-width: none;
    }

    .orion-source-card {
        flex: 1;
        min-width: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 12px 8px;
        gap: 8px;
    }

    .orion-source-icon {
        width: 34px;
        height: 34px;
    }

    .orion-source-label {
        font-size: 0.65rem;
    }

    /* Pulse dots — reposition to bottom-center of each card */
    .orion-source-pulse {
        top: auto;
        right: auto;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Connectors — full width, shorter height, straight lines */
    .orion-connectors {
        display: flex;
        height: 50px;
        width: 100%;
    }

    .orion-connector-svg--horizontal {
        display: none;
    }

    .orion-connector-svg--vertical {
        display: block;
        width: 100%;
        height: 100%;
    }

    /* Dashboard stack — scale down, center */
    .orion-dash-stack {
        transform: scale(0.85);
        transform-origin: top center;
        margin-bottom: calc(-10% + 12px);
    }

    .orion-flow-right {
        width: 100%;
        max-width: 100%;
    }

    /* Tab strip — horizontal, compact */
    .orion-tab-strip {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .orion-tab {
        font-size: 0.7rem;
        padding: 10px 12px;
        white-space: nowrap;
    }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
    .orion-source-card {
        padding: 10px 6px;
    }

    .orion-source-icon {
        width: 28px;
        height: 28px;
    }

    .orion-connectors {
        height: 40px;
    }

    .orion-dash-stack {
        transform: scale(0.75);
        margin-bottom: calc(-17% + 8px);
    }

    /* Tab strip: icon-only */
    .orion-tab span {
        display: none;
    }

    .orion-tab {
        padding: 10px 16px;
        justify-content: center;
    }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .orion-beam,
    .orion-beam-glow {
        display: none;
    }

    .orion-conn-path {
        stroke: rgba(6, 196, 162, 0.35);
        stroke-width: 2;
    }

    .orion-source-pulse {
        animation: none;
    }

    .orion-stack-card {
        transition: none;
    }
}

/* ══════════════════════════════════════════════════════
   SEVEN PILLARS SECTION
   ══════════════════════════════════════════════════════ */

.approach-pillars {
    background: #010c33;
    position: relative;
}

/* ── Grid bleed from ORION into Pillars ── */
.pillars-grid-bleed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, white 0%, transparent 70%);
    mask-image: linear-gradient(to bottom, white 0%, transparent 70%);
    z-index: 0;
}

.approach-pillars-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: 110px var(--container-pad, 40px) 80px;
}

/* ── Header block ── */
.pillars-header-block {
    text-align: center;
    margin-bottom: 48px;
}

#seven-pillars-v2 .pillars-header-block {
    text-align: left;
}

#seven-pillars-v2 .pillars-divider {
    margin-left: 0;
}

.pillars-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px 0;
    font-family: var(--font, 'Manrope', sans-serif);
}

.pillars-heading-break {
    display: none;
}

.pillars-divider {
    width: 32px;
    height: 2px;
    background: #06c4a2;
    border-radius: 2px;
    margin: 0 auto 20px;
}

.pillars-description {
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
    font-family: var(--font, 'Manrope', sans-serif);
}

.pillars-description--gap {
    margin-bottom: 0.75em;
}

/* ── Accordion list ── */
.pillar-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Each pillar row ── */
.pillar-item {
    width: 100%;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.pillar-item:hover:not(.pillar-item--active) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(6, 196, 162, 0.2);
}

.pillar-item--active {
    background: rgba(6, 196, 162, 0.08);
    border-color: rgba(6, 196, 162, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* ── Header row ── */
.pillar-row-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
}

/* ── Number — dim teal → bright teal when active ── */
.pillar-number {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: rgba(6, 196, 162, 0.3);
    transition: color 0.3s ease;
    flex-shrink: 0;
    font-family: var(--font, 'Manrope', sans-serif);
}

.pillar-item--active .pillar-number {
    color: #06c4a2;
}

/* ── Separator pipe ── */
.pillar-sep {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* ── Title ── */
.pillar-title {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: var(--font, 'Manrope', sans-serif);
}

/* ── Sub-label ── */
.pillar-sublabel {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
    font-family: var(--font, 'Manrope', sans-serif);
}

/* ── Chevron — rotates 180° when active ── */
.pillar-chevron {
    margin-left: auto;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.pillar-item--active .pillar-chevron {
    transform: rotate(180deg);
    color: rgba(255, 255, 255, 0.7);
}

/* ── Expandable body ── */
.pillar-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease;
}

.pillar-item--active .pillar-body {
    max-height: 120px;
    opacity: 1;
}

.pillar-body-inner {
    padding: 0 28px 22px;
}

.pillar-playbooks {
    font-size: clamp(0.82rem, 0.9vw, 0.9rem);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0 0 4px 0;
    font-family: var(--font, 'Manrope', sans-serif);
}

.pillar-playbooks-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.pillar-more {
    font-size: 0.82rem;
    color: #06c4a2;
    font-style: italic;
    margin: 0;
    font-family: var(--font, 'Manrope', sans-serif);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .approach-pillars-inner {
        padding: 80px var(--container-pad, 20px) 60px;
    }

    .pillar-row-header {
        padding: 18px 20px;
        gap: 14px;
    }

    .pillar-body-inner {
        padding: 0 20px 18px;
    }

    .pillars-heading-break {
        display: inline;
    }

    .pillar-item--active .pillar-body {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .pillar-sublabel {
        display: none;
    }

    .pillar-row-header {
        gap: 12px;
    }
}

/* ============================================
   SEVEN PILLARS V2 — Vertical Column Grid
   ============================================ */

#seven-pillars-v2 .approach-pillars-inner {
    max-width: 1200px;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.pillar-col {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-col:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(6, 196, 162, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

.pillar-col-cap {
    height: 4px;
    background: rgba(6, 196, 162, 0.3);
    transition: background 0.3s ease;
}

.pillar-col:hover .pillar-col-cap {
    background: #06c4a2;
}

.pillar-col:hover .pillar-col-items li {
    color: rgba(255, 255, 255, 0.92);
}

.pillar-col-number {
    position: absolute;
    top: 8px;
    right: 12px;
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: 2.8rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: rgba(6, 196, 162, 0.12);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.pillar-col-title {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.3;
    margin: 0;
    padding: 16px 14px 0;
    position: relative;
    z-index: 1;
}

.pillar-col-sublabel {
    display: block;
    padding: 4px 14px 0;
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: 0.72rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.3);
}

.pillar-col-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 12px 14px;
    position: relative;
    z-index: 1;
}

.pillar-col-items {
    list-style: none;
    margin: 0;
    padding: 0 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.pillar-col-items li {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: clamp(0.72rem, 0.82vw, 0.82rem);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* ── Pillar Grid Responsive ── */

@media (max-width: 1279px) {
    .pillar-grid {
        grid-template-columns: repeat(8, 1fr);
    }
    .pillar-col {
        grid-column: span 2;
    }
    .pillar-col:nth-child(5) {
        grid-column: 2 / span 2;
    }
}

@media (max-width: 1023px) {
    .pillar-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .pillar-col {
        grid-column: span 1;
    }
    .pillar-col:nth-child(5) {
        grid-column: auto;
    }
    #seven-pillars-v2 .approach-pillars-inner {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pillar-col-sublabel {
        display: none;
    }
}

@media (max-width: 479px) {
    .pillar-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   G²M EXPERT NETWORK SECTION
   ============================================ */

.approach-experts {
    position: relative;
    background: #010c33;
}

.approach-experts-inner {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: clamp(80px, 10vh, 104px) var(--container-pad) clamp(80px, 10vh, 120px);
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* ── Section Header ── */
.approach-experts-header {
    margin-bottom: clamp(28px, 3.5vh, 44px);
}

.approach-experts-h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 clamp(10px, 1.2vh, 16px);
}

.experts-sup {
    font-size: 0.55em;
    font-weight: 500;
    vertical-align: super;
    line-height: 0;
}

.approach-experts-desc {
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    max-width: 960px;
    margin: 0;
}

/* ── Shared section label (Platform Team / Selected Operators) ── */
.approach-section-label {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: clamp(20px, 2.5vh, 32px);
}

.approach-section-label-text {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.approach-section-label-rule {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

/* ── Platform Team section ── */
.approach-platform-section {
    margin-bottom: clamp(48px, 6vh, 72px);
}

/* Platform row — lead + team side by side */
.approach-platform-row {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

/* Nir — teal-accented glass card */
.approach-platform-lead {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(6, 196, 162, 0.06);
    border: 1px solid rgba(6, 196, 162, 0.15);
    border-radius: 16px;
    flex: 0 0 auto;
    min-width: 340px;
    align-items: center;
}

.approach-platform-lead-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid rgba(6, 196, 162, 0.4);
    flex-shrink: 0;
}

.approach-platform-lead-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.approach-platform-lead-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.approach-platform-lead-title {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 6px;
}

/* Prev experience pills — dark variant */
.approach-platform-lead-prev {
    display: flex;
    gap: 6px;
}

.approach-platform-prev-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.approach-platform-prev-pill span {
    font-size: 0.62rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.approach-platform-prev-pill img {
    height: 13px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

/* Team — flex row of 4 glass cards */
.approach-platform-team {
    display: flex;
    gap: 12px;
    flex: 1;
}

.approach-platform-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 20px 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: border-color 0.2s, background 0.2s;
}

.approach-platform-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(6, 196, 162, 0.2);
}

.approach-platform-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid rgba(6, 196, 162, 0.25);
    margin-bottom: 4px;
}

.approach-platform-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

.approach-platform-title {
    font-size: 0.64rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.4;
}

/* ── Operators section ── */
.approach-operators-section {
    flex: 1;
}

.approach-experts-prev-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #06c4a2;
    margin: 0 0 10px;
}

.approach-experts-prev-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}

.approach-experts-prev-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(1, 14, 42, 0.04);
    border: 1px solid rgba(1, 14, 42, 0.08);
    border-radius: 10px;
    padding: 8px 12px;
}

.approach-experts-prev-role {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(1, 14, 42, 0.85);
    flex: 1;
}

.approach-experts-prev-logo {
    height: 15px;
    max-width: 64px;
    object-fit: contain;
    opacity: 0.65;
}

/* ── Right: Expert Grid ── */
.approach-experts-grid-col {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.approach-experts-grid-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(1, 14, 42, 0.35);
    margin: 0 0 16px;
}

.approach-experts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

/* ── Expert Card ── */
.approach-expert-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 14px;
    text-align: left;
    padding: 46px 24px 26px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    cursor: default;
}

.approach-expert-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(6, 196, 162, 0.2);
    transform: translateY(-2px);
}

.approach-expert-pillar {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.62rem;
    font-weight: 600;
    color: #06c4a2;
    background: rgba(6, 196, 162, 0.1);
    padding: 3px 9px;
    border-radius: 14px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.approach-expert-avatar {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.approach-expert-info {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.approach-expert-name {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
    margin: 0;
}

.approach-expert-title {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.3;
    margin: 0;
}

.approach-expert-logo {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    height: 13px;
    max-width: 58px;
    object-fit: contain;
    opacity: 0.35;
    margin-top: 2px;
    filter: brightness(0) invert(1);
}

/* ============================================
   FOUNDER TESTIMONIALS — T2 PREMIUM REDESIGN
   ============================================ */

/* ── Section shell ── */
.approach-testimonials {
    position: relative;
    background: #ffffff;
}

/* ── Two-column grid ── */
.t2-layout {
    display: grid;
    grid-template-columns: 42% 1fr;
    height: 100%;
}

/* ── Photo column: flex column, normal flow — header then photo ── */
.t2-photo-col {
    display: flex;
    flex-direction: column;
    /* padding-top clears the 80px fixed nav + 24px breathing room */
    padding: calc(80px + 24px) 32px clamp(32px, 4vh, 52px) clamp(40px, 6vw, 80px);
    gap: 10px;
}

/* Header in normal flow — always above the photo, never overlaps */
.t2-left-header {
    flex-shrink: 0;
}

/* Photo fills remaining column height; max-height caps it to avoid pixelation.
   min-height: 0 is critical — lets flex shrink the card on short viewports */
.t2-photo-card {
    flex: 0 0 auto;
    height: clamp(200px, 32vh, 340px);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.t2-photo {
    width: auto;
    max-width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    opacity: 1;
    transition: opacity 0.28s ease;
}

.t2-photo--out {
    opacity: 0;
}

/* ── Right shell — takes the grid cell, holds carousel + static CTA ── */
.t2-right {
    display: flex;
    flex-direction: column;
    padding: clamp(44px, 8vh, 76px) clamp(40px, 6vw, 88px) clamp(32px, 4vh, 48px) clamp(24px, 3vw, 52px);
    background: #ffffff;
}

/* ── Carousel group — fades on transition, fills available height ── */
.t2-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.28s ease;
    overflow-y: auto;
    min-height: 0;
}

.t2-content--out {
    opacity: 0;
}

/* ── Eyebrow (inside .t2-left-header) ── */
.t2-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.t2-eyebrow-rule {
    display: block;
    width: 40px;
    height: 1px;
    background: #06c4a2;
    flex-shrink: 0;
}

.t2-eyebrow-text {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #06c4a2;
    font-weight: 500;
}

/* ── Subtitle (right column, above the logo) ── */
.t2-subtitle {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: clamp(0.82rem, 0.95vw, 0.92rem);
    font-weight: 300;
    line-height: 1.68;
    color: rgba(0, 0, 0, 0.5);
    margin: 0 0 28px;
    max-width: 380px;
}

.t2-subtitle-accent {
    color: #06c4a2;
    font-weight: 600;
}

/* ── Portfolio CTA — below carousel in right shell, outside fade group ── */
.t2-portfolio-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    align-self: flex-end;
    flex-shrink: 0;
    padding: 9px 20px;
    border-radius: 9999px;
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    color: rgba(0, 0, 0, 0.6);
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.t2-portfolio-cta:hover {
    border-color: #06c4a2;
    color: #06c4a2;
    background: rgba(6, 196, 162, 0.07);
}

/* ── Company logo ── */
.t2-logo {
    height: 44px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    object-position: left center;
    display: block;
    margin-bottom: 24px;
    opacity: 0.9;
}

/* ── Quote block ── */
.t2-quote-block {
    position: relative;
    margin-bottom: 24px;
}

.t2-quotemark {
    position: absolute;
    top: -20px;
    left: -4px;
    font-size: 7rem;
    line-height: 1;
    color: rgba(6, 196, 162, 0.18);
    font-family: Georgia, 'Times New Roman', serif;
    pointer-events: none;
    user-select: none;
    font-style: normal;
}

.t2-quote {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: clamp(0.85rem, 1.05vw, 0.97rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.72);
    margin: 0;
    font-style: normal;
    padding-top: 8px;
    position: relative;
    z-index: 1;
}

/* ── Attribution ── */
.t2-attribution {
    margin-bottom: 32px;
}

.t2-attr-rule {
    width: 28px;
    height: 2px;
    background: #06c4a2;
    border-radius: 2px;
    margin-bottom: 10px;
}

.t2-attr-name {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: #0a0f1e;
    margin: 0 0 3px;
    letter-spacing: 0.01em;
}

.t2-attr-role {
    font-family: var(--font, 'Manrope', sans-serif);
    font-size: 0.82rem;
    color: rgba(0, 0, 0, 0.42);
    margin: 0;
    letter-spacing: 0.01em;
}

/* ── Navigation row ── */
.t2-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Progress track bars */
.t2-tracks {
    display: flex;
    align-items: center;
    gap: 6px;
}

.t2-track {
    width: 32px;
    height: 2px;
    border-radius: 2px;
    border: none;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    padding: 0;
    transition: width 0.35s ease, background 0.35s ease;
}

.t2-track--active {
    width: 52px;
    background: #06c4a2;
}

/* Prev / next buttons */
.t2-nav-btns {
    display: flex;
    gap: 10px;
}

.t2-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    background: transparent;
    color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
    padding: 0;
}

.t2-btn:hover {
    border-color: #06c4a2;
    color: #06c4a2;
    background: rgba(6, 196, 162, 0.08);
}

/* ── Responsive — tablet ── */
@media (max-width: 900px) {
    .t2-layout {
        grid-template-columns: 38% 1fr;
    }
}

/* ── Responsive — mobile ── */
@media (max-width: 640px) {
    .t2-layout {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .t2-photo-col {
        padding: calc(80px + 20px) 24px 16px;
        gap: 7px;
    }

    .t2-photo-card {
        height: clamp(160px, 28vw, 240px);
        border-radius: 8px;
    }

    .t2-right {
        padding: 16px 24px 32px;
    }

    .t2-content-col {
        justify-content: flex-start;
    }

    .t2-logo { margin-bottom: 16px; }
    .t2-quote-block { margin-bottom: 16px; }

    .t2-quotemark {
        font-size: 4rem;
        top: -12px;
    }

    .t2-attribution { margin-bottom: 20px; }
}


/* ============================================
   NIR GOLDSTEIN BIO OVERLAY
   ============================================ */

body.scroll-locked {
    position: fixed;
    left: 0;
    right: 0;
    overflow: hidden;
}

.nir-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 10, 31, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.nir-overlay--active {
    opacity: 1;
    pointer-events: auto;
}

.nir-overlay-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.nir-overlay-close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.nir-overlay-inner {
    display: flex;
    gap: clamp(32px, 4vw, 64px);
    align-items: flex-start;
    max-width: 900px;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nir-overlay--active .nir-overlay-inner {
    transform: translateY(0);
}

.nir-overlay-photo-wrap {
    flex-shrink: 0;
    width: clamp(180px, 28vw, 300px);
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
}

.nir-overlay-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nir-overlay-content {
    flex: 1;
    min-width: 0;
}

.nir-overlay-name {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin: 0;
}

.nir-overlay-title {
    font-size: 1rem;
    font-weight: 600;
    color: #06c4a2;
    margin: 6px 0 0;
}

.nir-overlay-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
}

.nir-overlay-divider {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

.nir-overlay-bio {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.75;
    color: #ffffff;
    margin: 0;
    white-space: pre-line;
}

.nir-overlay-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.nir-overlay-linkedin:hover {
    color: #ffffff;
    border-color: #06c4a2;
    background: rgba(6, 196, 162, 0.1);
}

.approach-platform-lead {
    cursor: pointer;
}

@media (max-width: 640px) {
    .nir-overlay-inner {
        flex-direction: column;
        align-items: center;
        overflow-y: auto;
        max-height: 90vh;
    }
    .nir-overlay-photo-wrap {
        width: 140px;
    }
}


