/* ============================================================================
   v2b.css - Styles for index2.php
   Design System: Dark theme with gold accents, Cormorant Garamond + Outfit

   Background rhythm:
   Hero         → --carbon (dark/blueish)
   Opportunity  → --white (lighter)
   SIA Intro    → --mist (light/greyish) + top border
   Shadow AI    → --space (darker/black)
   Audience     → --carbon (dark/blueish) + top border
   Jurisdiction → --space (darker/black) + top border
   Sov Deploy   → --white (lighter) + top border
   Delivery     → --mist (light/greyish) + top border
   Four Paths   → --white (lighter)
   Engagement   → --space (darker/black)
   Eligibility  → --carbon (dark/blueish)
   Close CTA    → --space (darker/black)
   ============================================================================ */

/* ===== CSS VARIABLE OVERRIDES (white theme) ===== */
:root {
    --f: 'Jost', sans-serif;
    --fh: 'Plus Jakarta Sans', sans-serif;
    --black: #0a0a0a;
    --white: #fafaf8;
    --gold: #c9a962;
}

/* ===== SECTION SEPARATORS ===== */
.sia-intro,
.audience2,
.jurisdiction,
.sovereign-deploy,
.delivery2 {
    border-top: 1px solid var(--border-medium);
}

/* For light sections, use a lighter border */
.sovereign-deploy,
.delivery2 {
    border-top-color: var(--border-light-medium);
}


/* 1. HERO2 - Dark centered full viewport */
.hero2 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--carbon);
    padding: 80px 6vw 100px;
}

.hero2 h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-pure);
    max-width: 640px;
}

.hero2 h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero2-divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 24px auto 40px;
}

.hero2-text p {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 1200px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.hero2-text p em {
    color: var(--gold);
}

.hero2-reflection p {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    max-width: 1200px;
    line-height: 1.85;
    margin-top: 32px;
}

.hero2-punchline p {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-weight: 400;
    color: var(--text-pure);
    max-width: 1200px;
    line-height: 1.85;
    margin-top: 16px;
}

/* CTA pills removed per design */
.hero2-ctas {
    display: none;
}


/* 2. OPPORTUNITY - Lighter (white) background, nearly full page */
.opportunity {
    background: var(--white);
    padding: 140px 6vw;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-dark);
}

.opportunity .opportunity-label span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}

.opportunity h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 32px;
    color: var(--text-dark);
    text-align: center;
}

.opportunity h2 em {
    font-style: italic;
    color: var(--gold);
}

.opportunity-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark-secondary);
    margin-bottom: 8px;
}

.opportunity-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 36px;
    border: 1px solid var(--border-light-medium);
}

.opportunity-stat {
    padding: 32px;
    text-align: center;
    border-right: 1px solid var(--border-light-medium);
}

.opportunity-stat:last-child {
    border-right: none;
}

.opportunity-stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    font-variant-ligatures: no-common-ligatures;
    font-feature-settings: "liga" 0, "clig" 0;
}

.opportunity-stat:last-child .opportunity-stat-num {
    color: var(--text-dark-tertiary);
}

.opportunity-stat-label {
    font-size: 0.85rem;
    color: var(--text-dark-secondary);
    margin-top: 10px;
    line-height: 1.5;
}

.opportunity-bottom {
    margin-top: 48px;
    text-align: center;
}

.opportunity-bottom p {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
}

.opportunity-gold {
    font-size: 1rem !important;
    color: var(--gold) !important;
    max-width: 640px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
    font-family: var(--font-body) !important;
    padding-top: 24px;
}

.opportunity-bottom .opportunity-gold::before {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 24px;
}


/* 3. SIA INTRO - Light (mist/greyish) background, centered */
.sia-intro {
    background: var(--mist);
    padding: 140px 6vw;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-dark);
}

.tsi-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-subtle);
    border: 1px solid var(--border-gold);
    padding: 6px 16px;
    margin-bottom: 22px;
    align-self: flex-start;
    width: fit-content;
}

.tsi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.tsi-text {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.sia-intro-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-dark);
    max-width: 800px;
    margin-bottom: 28px;
}

.sia-intro-title em {
    font-style: italic;
    color: var(--gold);
}

.sia-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark-secondary);
    max-width: 860px;
    margin-bottom: 16px;
}

.sia-intro-text p em {
    color: var(--text-dark);
    font-weight: 500;
}

.sia-intro-sub {
    font-size: 0.9rem;
    color: var(--text-dark-tertiary);
    margin-top: 28px;
    max-width: 860px;
}


/* 4. SHADOW AI - Darker (space/black) background, near full page */
.shadow-ai {
    background: var(--space);
    padding: 120px 6vw;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shadow-ai .shadow-label span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}

.shadow-ai h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--text-pure);
}

.shadow-ai h2 em {
    font-style: italic;
    color: var(--gold);
}

/* Pill — no background, just text */
.shadow-pill p {
    display: inline-block;
    padding: 0;
    border-radius: 0;
    background: none;
    border: none;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-style: italic;
}

.shadow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 0;
}

.shadow-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-medium);
    border-top: 3px solid var(--gold);
    padding: 32px;
}

.shadow-card-num {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.shadow-card-stat {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.shadow-card-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.shadow-card-arrow {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--gold);
    line-height: 1.55;
}

.shadow-card-arrow::before {
    content: '→ ';
}

/* Asymmetry callout — clean, no filled background */
.shadow-callout {
    margin-top: 32px;
    padding: 24px 28px;
    border: 1px solid var(--border-gold);
    border-left: 3px solid var(--gold);
    background: none;
}

.shadow-callout h3 {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.shadow-callout p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 10px;
}

.shadow-callout p:first-of-type {
    color: var(--text-pure);
}

.shadow-callout ul {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
}

.shadow-callout ul li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 4px 0 4px 16px;
    position: relative;
}

.shadow-callout ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}


/* 5. AUDIENCE2 - Dark (carbon/blueish) background, centered */
.audience2 {
    background: var(--carbon);
    padding: 120px 6vw;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.audience2 h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 36px;
    color: var(--text-pure);
    text-align: center;
}

.audience2 h2 em {
    font-style: italic;
    color: var(--gold);
}

.audience2-grid {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 0;
    max-width: 1060px;
    width: 100%;
}

.audience2-box {
    padding: 28px 32px;
    border: 1px solid var(--border-medium);
    border-left: 3px solid var(--gold);
    background: none;
}

.audience2-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience2-divider::after {
    content: '';
    width: 1px;
    height: 60%;
    background: var(--border-medium);
}

.audience2-box-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.audience2-box-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-pure);
    margin-bottom: 16px;
}

.audience2-box-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.audience2-box-list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 5px 0 5px 16px;
    position: relative;
    line-height: 1.6;
}

.audience2-box-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.audience2-box-punch {
    font-size: 0.88rem;
    color: var(--text-pure);
    line-height: 1.6;
}

.audience2-bottom {
    margin-top: 40px;
    text-align: center;
}

.audience2-bottom::before {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 20px;
}

.audience2-bottom p {
    font-size: 1rem;
    color: var(--gold);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}


/* 6. JURISDICTION - Darker (space/black) background */
.jurisdiction {
    background: var(--space);
    padding: 120px 6vw;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jurisdiction .jurisdiction-label span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}

.jurisdiction h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 12px;
    color: var(--text-pure);
}

.jurisdiction h2 em {
    font-style: italic;
    color: var(--gold);
}

.jurisdiction-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.jurisdiction-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.jurisdiction-box {
    padding: 36px;
    border: 1px solid var(--border-medium);
    background: none;
}

.jurisdiction-box.threat {
    border-left: 3px solid var(--text-tertiary);
}

.jurisdiction-box.sovereign {
    border-left: 3px solid var(--gold);
}

.jurisdiction-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.jurisdiction-box.threat .jurisdiction-title {
    color: var(--text-secondary);
}

.jurisdiction-box.sovereign .jurisdiction-title {
    color: var(--gold);
}

.jurisdiction-list {
    list-style: none;
    padding: 0;
}

.jurisdiction-list li {
    font-size: 0.88rem;
    padding: 8px 0 8px 24px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    line-height: 1.6;
}

.jurisdiction-list li:last-child {
    border: none;
}

.jurisdiction-box.threat .jurisdiction-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

.jurisdiction-box.sovereign .jurisdiction-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

/* Strategic intent callout — clean, no filled bg */
.jurisdiction-callout {
    margin-top: 24px;
    padding: 20px 28px;
    border: 1px solid var(--border-medium);
    border-left: 3px solid var(--text-tertiary);
    background: none;
}

.jurisdiction-callout p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.jurisdiction-callout strong {
    color: var(--text-pure);
}


/* 7. SOVEREIGN DEPLOY - Lighter (white) background */
.sovereign-deploy {
    background: var(--white);
    padding: 140px 6vw;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-dark);
}

.sovereign-deploy h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.sovereign-deploy h2 em {
    font-style: italic;
    color: var(--gold);
}

.sovereign-deploy-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark-secondary);
    margin-bottom: 8px;
}

.sovereign-deploy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.sovereign-deploy-card {
    background: var(--mist, #f5f5f7);
    border: 1px solid var(--border-light-medium);
    padding: 36px;
}

.deploy-card-num {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.deploy-card-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.deploy-card-text {
    font-size: 0.92rem;
    color: var(--text-dark-secondary);
    line-height: 1.8;
}

.sovereign-deploy-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border-light-medium, rgba(0, 0, 0, 0.08));
}

.deploy-stat {
    text-align: center;
}

.deploy-stat-num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.deploy-stat-label {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 0.85rem;
    color: var(--text-dark-secondary, rgba(0, 0, 0, 0.5));
    margin-top: 8px;
    line-height: 1.4;
}


/* 8. DELIVERY2 - Light (mist/greyish) background */
.delivery2 {
    background: var(--mist);
    padding: 140px 6vw;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-dark);
}

.delivery2 .delivery2-label span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}

.delivery2 h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.delivery2 h2 em {
    font-style: italic;
    color: var(--gold);
}

.delivery2-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark-secondary);
}

.delivery2-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.delivery2-item {
    padding: 28px 24px;
    border: 1px solid var(--border-light-medium);
    background-color: var(--white, #fff);
}

.delivery2-item.result {
    border-color: var(--gold);
    background-color: var(--white, #fff);
}

.delivery2-num {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 14px;
}

.delivery2-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    font-variant-ligatures: no-common-ligatures;
    font-feature-settings: "liga" 0, "clig" 0;
}

.delivery2-text {
    font-size: 0.88rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
}


/* 9. PATHS2 - Lighter (white) background, full page */
.paths2 {
    background: var(--white);
    padding: 140px 6vw;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-dark);
}

.paths2 .paths2-label span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}

.paths2 h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.paths2 h2 em {
    font-style: italic;
    color: var(--gold);
}

.paths2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.paths2-card {
    padding: 32px;
    border: 1px solid var(--border-light-medium);
    display: flex;
    flex-direction: column;
}

.paths2-card + .paths2-card {
    border-left: none;
}

/* Restore left border where dark meets light */
.paths2-card.mid {
    border-left: 1px solid var(--border-light-medium);
}

/* Dark → Light: Shadow AI (black) → grey → white/gold */
.paths2-card.worst,
.paths2-card.risky {
    background: #000;
    border-color: rgba(255, 255, 255, 0.08);
}

.paths2-card.mid {
    background: var(--mist, #f5f5f7);
    border-color: var(--border-light-medium);
}

.paths2-card.best {
    background: var(--white, #fff);
    border: 2px solid var(--gold);
}

.paths2-card-header {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(10, 10, 15, 0.08);
    margin-bottom: 16px;
    min-height: 100px;
}

.paths2-card-tag {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.paths2-card.worst .paths2-card-tag,
.paths2-card.risky .paths2-card-tag {
    color: rgba(255, 255, 255, 0.35);
}

.paths2-card.worst .paths2-card-tag::after,
.paths2-card.risky .paths2-card-tag::after {
    content: 'Shadow AI';
    display: inline-block;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.1);
    border-radius: 100px;
    padding: 2px 8px;
    margin-left: 8px;
    vertical-align: middle;
    line-height: 1.2;
}

.paths2-card.mid .paths2-card-tag { color: var(--text-dark-tertiary); }

.paths2-card.best .paths2-card-tag {
    color: var(--gold);
}

.paths2-card.best .paths2-card-tag::after {
    content: 'Sovereign AI';
    display: inline-block;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold, #c9a962);
    border: 1px solid rgba(201, 169, 98, 0.4);
    background: rgba(201, 169, 98, 0.08);
    border-radius: 100px;
    padding: 2px 8px;
    margin-left: 8px;
    vertical-align: middle;
    line-height: 1.2;
}

.paths2-card-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.paths2-card-sub {
    font-size: 0.78rem;
    color: var(--text-dark-tertiary);
}

.paths2-card-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(10, 10, 15, 0.08);
    font-size: 0.78rem;
    min-height: 58px;
}

/* Hide border-bottom on the row right before the verdict */
.paths2-card-row:has(+ .paths2-card-verdict) {
    border-bottom: none;
}

.paths2-row-label {
    color: var(--text-dark-tertiary);
    font-size: 0.72rem;
    flex-shrink: 0;
    padding-top: 2px;
}

.paths2-row-value {
    color: var(--text-dark);
    font-weight: 500;
    text-align: right;
    max-width: 65%;
    line-height: 1.45;
    flex: 1;
    margin-left: 8px;
}

.paths2-card.worst .paths2-row-value {
    color: rgba(255, 255, 255, 0.35);
}

/* Dark card text overrides */
.paths2-card.worst .paths2-card-name,
.paths2-card.risky .paths2-card-name {
    color: #fff;
}

.paths2-card.worst .paths2-card-sub,
.paths2-card.risky .paths2-card-sub {
    color: rgba(255, 255, 255, 0.35);
}

.paths2-card.worst .paths2-row-label,
.paths2-card.risky .paths2-row-label {
    color: rgba(255, 255, 255, 0.3);
}

.paths2-card.risky .paths2-row-value {
    color: rgba(255, 255, 255, 0.6);
}

.paths2-card.worst .paths2-card-verdict,
.paths2-card.risky .paths2-card-verdict {
    color: rgba(255, 255, 255, 0.4);
}

.paths2-card.worst .paths2-card-header,
.paths2-card.risky .paths2-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.paths2-card.worst .paths2-card-row,
.paths2-card.risky .paths2-card-row {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.paths2-card.worst .paths2-card-verdict,
.paths2-card.risky .paths2-card-verdict {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.paths2-card.best .paths2-row-value {
    font-weight: 600;
}

.paths2-card-verdict {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(10, 10, 15, 0.08);
    font-size: 0.78rem;
    color: var(--text-dark-secondary);
    line-height: 1.5;
    font-style: italic;
    min-height: 56px;
}

.paths2-card.best .paths2-card-verdict {
    color: var(--text-dark);
    font-weight: 500;
    font-style: normal;
}


/* 10. ENGAGEMENT - Darker (space/black), vertically centered */
.engage2 {
    background: var(--space);
    padding: 120px 6vw;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.engage2 h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-pure);
}

.engage2 h2 em {
    font-style: italic;
    color: var(--gold);
}

.engage2-timeline {
    display: flex;
    gap: 0;
    margin-top: 60px;
    position: relative;
}

.engage2-timeline::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-medium);
}

.engage2-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding-top: 56px;
}

.engage2-dot {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--space);
}

.engage2-step:nth-child(1) .engage2-dot::after { content: '1'; }
.engage2-step:nth-child(2) .engage2-dot::after { content: '2'; }
.engage2-step:nth-child(3) .engage2-dot::after { content: '3'; }

.engage2-step-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-pure);
    margin-bottom: 6px;
}

.engage2-step-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 240px;
    margin: 0 auto;
    line-height: 1.55;
}


/* 11. ELIGIBLE2 - Dark (carbon/blueish) background */
.eligible2 {
    background: var(--carbon);
    padding: 120px 6vw;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eligible2 h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-pure);
    margin-bottom: 12px;
}

.eligible2 h2 em {
    font-style: italic;
    color: var(--gold);
}

.eligible2-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.eligible2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

/* Eligibility boxes — clean borders, no filled backgrounds */
.eligible2-box {
    padding: 32px;
}

.eligible2-box.yes {
    border: 1px solid var(--border-gold);
    background: none;
}

.eligible2-box.no {
    border: 1px solid var(--border-medium);
    background: none;
}

.eligible2-box-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.eligible2-box.yes .eligible2-box-title {
    color: var(--gold);
}

.eligible2-box.no .eligible2-box-title {
    color: var(--text-tertiary);
}

.eligible2-list {
    list-style: none;
    padding: 0;
}

.eligible2-list li {
    font-size: 0.88rem;
    padding: 10px 0 10px 24px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

.eligible2-list li:last-child {
    border: none;
}

.eligible2-box.yes .eligible2-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

.eligible2-box.no .eligible2-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

.eligible2-sectors {
    margin-top: 36px;
}

.eligible2-sector-label {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.eligible2-sector-list {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.eligible2-sector {
    font-size: 0.88rem;
    color: var(--text-secondary);
}


/* 12. CLOSE-CTA - Darker (space/black), centered */
.close-cta {
    background: var(--space);
    padding: 120px 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 60vh;
}

.close-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-pure);
    max-width: 640px;
}

.close-cta-title em {
    font-style: italic;
    color: var(--gold);
}

.close-cta-divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 18px auto 40px;
}

.close-cta-links {
    display: flex;
    gap: 52px;
    justify-content: center;
    flex-wrap: wrap;
}

.close-cta-link-group {
    text-align: center;
}

.close-cta-label {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 5px;
    display: block;
}

.close-cta-link-group a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--border-gold);
    font-size: 0.9rem;
}

.close-cta-link-group a:hover {
    border-color: var(--gold);
}

.close-cta-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}


/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 1100px) {
    .paths2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .paths2-card + .paths2-card {
        border-left: 1px solid var(--border-light-medium);
    }
    .delivery2-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .opportunity-stats,
    .shadow-grid,
    .sovereign-deploy-grid,
    .delivery2-grid,
    .jurisdiction-grid,
    .eligible2-grid,
    .audience2-grid {
        grid-template-columns: 1fr;
    }

    .paths2-grid {
        grid-template-columns: 1fr;
    }

    .sovereign-deploy-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero2-ctas {
        flex-direction: column;
        align-items: center;
    }

    .audience2-divider {
        display: none;
    }

    .engage2-timeline {
        flex-direction: column;
        gap: 24px;
    }

    .engage2-timeline::before {
        display: none;
    }

    .engage2-step {
        padding-top: 0;
        padding-left: 44px;
        text-align: left;
    }

    .engage2-dot {
        left: 0;
        top: 0;
        transform: none;
    }

    .close-cta-links {
        flex-direction: column;
        gap: 24px;
    }

    .opportunity-stat {
        border-right: none;
        border-bottom: 1px solid var(--border-light-medium);
    }

    .opportunity-stat:last-child {
        border-bottom: none;
    }
}


/* ============================================================
   INNER PAGES — New V2 sections
   ============================================================ */

/* --- SOVEREIGNTY: Shadow AI Full (Appendix E) --- */
.shadow-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.shadow-full-card {
    background: var(--graphite);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.shadow-full-stat {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1.1;
}
.shadow-full-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.shadow-full-card-title {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* --- SOVEREIGNTY: Vendor Table (Appendix F) --- */
.vendor-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    font-size: 0.9rem;
}
.vendor-table thead th {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 2px solid var(--gold);
    color: var(--text-pure);
    font-weight: 500;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.vendor-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    vertical-align: top;
}
.vendor-table tbody tr:hover {
    background: var(--graphite);
}
.vendor-table .threat {
    color: var(--warn);
    font-weight: 500;
}

/* --- SOVEREIGNTY: Embedded Software Table --- */
.embedded-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    font-size: 0.9rem;
}
.embedded-table thead th {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 2px solid var(--border-light-medium);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.embedded-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-dark-secondary);
    vertical-align: top;
}
.embedded-table tbody tr:hover {
    background: rgba(0,0,0,0.02);
}

/* --- SOVEREIGNTY: Asymmetry Full --- */
.asym-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}
.asym-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.asym-column h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-pure);
    margin-bottom: 8px;
}
.asym-can h3 { color: var(--gold); }
.asym-cannot h3 { color: var(--warn); }
.asym-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.asym-list li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}
.asym-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--gold);
}
.asym-cannot .asym-list li::before {
    content: "✗";
    color: var(--warn);
}
.asym-conclusion {
    margin-top: 24px;
    padding: 20px 24px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* --- SOVEREIGNTY: Jurisdictional Detail --- */
.juris-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.juris-detail-card {
    background: var(--graphite);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.juris-detail-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold);
}
.juris-detail-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.juris-detail-conclusion {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.88rem;
    color: var(--text-tertiary);
    font-style: italic;
}

/* --- SOVEREIGNTY: Documented Incidents --- */
.incident-grid2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.incident-card {
    background: var(--graphite);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.incident-company {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,.4);
}
.incident-headline {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-pure);
    line-height: 1.3;
}
.incident-detail {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.incident-source {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: auto;
}

/* --- STACK: Sovereign Deployment Expanded --- */
.deploy-layers {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 48px;
}
.deploy-layer {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: start;
    padding: 28px 24px;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    background: var(--graphite);
}
.deploy-layer-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}
.deploy-layer-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-pure);
    margin-bottom: 6px;
}
.deploy-layer-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.deploy-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.deploy-stat {
    text-align: center;
    padding: 20px 16px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
}
.deploy-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1.2;
}
.deploy-stat-label {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 4px;
}

/* --- STACK: Sovereignty Levels --- */
.sl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.sl-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sl-badge {
    display: inline-block;
    background: var(--gold-subtle);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
}
.sl-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-dark);
}
.sl-tagline {
    font-size: 0.88rem;
    color: var(--text-dark-secondary);
    font-style: italic;
}
.sl-text {
    font-size: 0.88rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
}
.sl-details {
    list-style: none;
    padding: 0;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sl-details li {
    font-size: 0.85rem;
    color: var(--text-dark-tertiary);
    padding-left: 18px;
    position: relative;
}
.sl-details li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* --- SOLUTIONS: Products in Production --- */
.proof-section {
    padding: 0;
}
.proof-grid2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.proof-card2 {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.proof-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}
.proof-card-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
}
.proof-card-category {
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold);
    background: var(--gold-subtle);
    padding: 3px 10px;
    border-radius: 20px;
}
.proof-card-desc {
    font-size: 0.88rem;
    color: var(--text-dark-secondary);
    line-height: 1.6;
}

/* --- SOLUTIONS: Sector Risk Profiles --- */
.risk-section {
    padding: 0;
}
.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}
.risk-card {
    background: var(--graphite);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.risk-card-sector {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold);
}
.risk-card-threat {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-pure);
    line-height: 1.3;
}
.risk-card-detail {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- SOLUTIONS: Sector Blueprints Table --- */
.blueprint-table-wrapper {
    margin-top: 48px;
    overflow-x: auto;
}
.blueprint-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.blueprint-table-section {
    margin-bottom: 40px;
}
.blueprint-table-section h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light-medium);
}
.blueprint-table thead th {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid var(--border-light-medium);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.blueprint-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-dark-secondary);
    vertical-align: top;
}
.blueprint-table tbody tr:hover {
    background: rgba(0,0,0,0.02);
}
.bp-sector {
    font-weight: 500;
    color: var(--text-dark);
}
.bp-timeline {
    font-size: 0.82rem;
    color: var(--text-dark-tertiary);
}
.blueprint-image {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    margin-top: 24px;
}

/* --- ENGAGE: Own vs License Model --- */
.engage-model-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}
.engage-model-card {
    border-radius: 12px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.engage-model-card.yours {
    background: var(--white);
    border: 2px solid var(--gold);
}
.engage-model-card.ours {
    background: var(--white);
    border: 1px solid var(--border-light-medium);
}
.engage-model-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
}
.engage-model-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
}
.engage-model-card ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.engage-model-card li {
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
}
.engage-model-card .check {
    color: var(--gold);
    margin-right: 8px;
}

/* --- ENGAGE: Options Grid (override for v2b) --- */
.engage-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
}
.engage-options-grid .engage-card {
    background: var(--graphite);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--text-secondary);
}
.engage-options-grid .engage-card.featured {
    border-color: var(--gold);
}
.engage-options-grid .engage-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-pure);
}
.engage-options-grid .engage-tagline {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gold);
}
.engage-options-grid .engage-description {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-secondary);
}
.engage-options-grid .engage-includes-title,
.engage-options-grid .engage-ownership-title {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}
.engage-options-grid .engage-includes-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.engage-options-grid .engage-includes-list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.engage-options-grid .engage-includes-list .check {
    color: var(--gold);
    margin-right: 8px;
}
.engage-options-grid .engage-ideal {
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}
.engage-options-grid .engage-ideal-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-tertiary);
    margin-bottom: 6px;
}
.engage-options-grid .engage-ideal-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.engage-options-grid .engage-cta {
    margin-top: auto;
}

/* --- ENGAGE: Comparison Table --- */
.engage-compare-table {
    margin-top: 48px;
    overflow-x: auto;
}
.engage-compare-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.engage-compare-table thead th {
    text-align: center;
    padding: 14px 20px;
    border-bottom: 2px solid var(--gold);
    color: var(--text-pure);
    font-weight: 500;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.engage-compare-table thead th:first-child {
    text-align: left;
}
.engage-compare-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    text-align: center;
}
.engage-compare-table tbody td:first-child {
    text-align: left;
    color: var(--text-primary);
    font-weight: 400;
}
.engage-compare-table tbody td.yes {
    color: var(--gold);
    font-weight: 500;
}
.engage-compare-table tbody tr:hover {
    background: var(--graphite);
}

/* --- ENGAGE: Transparent Pricing (Appendix D) --- */
.tp-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    margin-top: 48px;
}
.tp-card {
    background: var(--graphite);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.tp-card.featured {
    border-color: var(--gold);
}
.tp-header {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-subtle);
}
.tp-type {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 4px;
}
.tp-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-pure);
}
.tp-body {
    padding: 20px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.tp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
}
.tp-row:last-child {
    border-bottom: none;
}
.tp-row-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.tp-row-val {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-pure);
    text-align: right;
}
.tp-footer {
    padding: 16px 28px;
    border-top: 1px solid var(--border-subtle);
}
.tp-note {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}
.tp-fine {
    margin-top: 24px;
    font-size: 0.78rem;
    color: var(--text-tertiary);
    text-align: center;
}

/* --- ENGAGE: section-carbon utility --- */
.section-carbon {
    background: var(--carbon);
}

/* ============================================================
   INNER PAGES — Responsive
   ============================================================ */
@media (max-width: 1100px) {
    .shadow-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .proof-grid2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .incident-grid2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .juris-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .deploy-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .tp-grid {
        grid-template-columns: 1fr;
    }
    .engage-model-grid,
    .engage-options-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .shadow-full-grid,
    .proof-grid2,
    .incident-grid2,
    .juris-detail-grid,
    .sl-grid,
    .risk-grid {
        grid-template-columns: 1fr;
    }
    .asym-grid2 {
        grid-template-columns: 1fr;
    }
    .deploy-stats {
        grid-template-columns: 1fr;
    }
    .deploy-layer {
        grid-template-columns: 1fr;
    }
    .deploy-layer-num {
        font-size: 1.4rem;
    }
    .vendor-table,
    .embedded-table,
    .blueprint-table {
        font-size: 0.82rem;
    }
    .vendor-table thead th,
    .vendor-table tbody td,
    .embedded-table thead th,
    .embedded-table tbody td,
    .blueprint-table thead th,
    .blueprint-table tbody td {
        padding: 10px 12px;
    }
    .engage-compare-table table {
        font-size: 0.82rem;
    }
    .engage-compare-table thead th,
    .engage-compare-table tbody td {
        padding: 10px 14px;
    }
}

/* ============================================================================
   NAV DROPDOWNS
   ============================================================================ */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    padding: 0;
    transition: color 0.3s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
    color: var(--text-pure, #fff);
}

.nav-chevron {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background-color: var(--carbon, #111118);
    border: 1px solid var(--border-medium, rgba(255, 255, 255, 0.1));
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 100;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-item {
    display: block;
    padding: 0.6rem 1.25rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
    color: rgba(0,0,0,.85);
    background-color: rgba(0,0,0,.04);
}

/* Mobile menu groups */
.mobile-menu-group {
    display: flex;
    flex-direction: column;
}

.mobile-menu-group-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold, #c9a962);
    padding: 1rem 0 0.25rem;
}

.mobile-menu-link.sub {
    padding-left: 1rem;
    font-size: 0.9rem;
}

/* ============================================================================
   ENEMY VS HERO SECTION
   Black vs White — high contrast side-by-side
   ============================================================================ */

.evh {
    padding: 0;
}

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

.evh-col {
    padding: 7rem 4.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* ENEMY — pure black */
.evh-enemy {
    background-color: #000;
    color: rgba(255, 255, 255, 0.6);
}

/* HERO — pure white */
.evh-hero {
    background-color: #fff;
    color: rgba(0, 0, 0, 0.6);
}

.evh-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
}

.evh-enemy .evh-title { color: #fff; }
.evh-hero .evh-title { color: #000; }

.evh-sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    margin: 0 0 2rem 0;
    font-style: italic;
}

.evh-enemy .evh-sub { color: rgba(255, 255, 255, 0.4); }
.evh-hero .evh-sub { color: rgba(0, 0, 0, 0.4); }

.evh-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 0;
    margin-top: 0.5rem;
}

.evh-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.92rem;
    line-height: 1.65;
}

.evh-enemy .evh-list li { color: rgba(255, 255, 255, 0.6); }
.evh-hero .evh-list li { color: rgba(0, 0, 0, 0.65); }

.evh-icon {
    flex-shrink: 0;
    margin-top: 0.2rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.evh-icon.cross::before { content: '✕'; color: #ef4444; }
.evh-icon.check::before { content: '✓'; color: rgba(0,0,0,.5); }

.evh-kicker {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    font-style: italic;
    margin: 2rem 0 0;
    padding-top: 2rem;
    line-height: 1.4;
}

.evh-enemy .evh-kicker {
    color: rgba(255,255,255,.5);
    border-top: 1px solid rgba(255,255,255,.1);
}

.evh-hero .evh-kicker {
    color: rgba(0,0,0,.5);
    border-top: 1px solid rgba(0,0,0,.1);
}

.evh-footer {
    background-color: var(--carbon, #111118);
    padding: 4rem 2rem;
    text-align: center;
}

.evh-didntknow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-pure, #fff);
    margin: 0 0 1.5rem 0;
}

.evh-bottom {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: rgba(0,0,0,.5);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.evh-link {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(0,0,0,.5);
    text-decoration: none;
    border: 1px solid rgba(0,0,0,.15);
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.evh-link:hover {
    background-color: rgba(0,0,0,.5);
    color: #000;
}

@media (max-width: 900px) {
    .evh-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .evh-col { padding: 3.5rem 2rem; }
    .evh-title { font-size: 2.6rem; }
    .evh-didntknow { font-size: 1.6rem; }
}

/* ============================================================================
   CONTEXT UX & VIBE [X] SECTION — white background
   ============================================================================ */

.cux-vibe {
    background-color: var(--white, #fff);
    padding: 8rem 2rem;
    text-align: center;
}

.cux-vibe h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #000;
    margin: 0 0 1.25rem 0;
}

.cux-vibe h2 em {
    color: rgba(0,0,0,.5);
    font-style: normal;
}

.cux-vibe-sub {
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.5);
    margin: 0 0 4rem 0;
}

.cux-vibe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
    text-align: left;
    align-items: stretch;
}

.cux-vibe-card {
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: var(--mist, #f5f5f7);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
}

.cux-vibe-card .cux-vibe-text {
    flex: 1;
}

.cux-vibe-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #000;
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
}

.cux-vibe-headline {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(0,0,0,.5);
    margin: 0 0 1.5rem 0;
}

.cux-vibe-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.92rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

.cux-vibe-kicker {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(0,0,0,.5);
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cux-vibe-bottom {
    max-width: 800px;
    margin: 0 auto;
}

.cux-vibe-bottom p {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.4);
    font-style: italic;
    margin: 0;
}

@media (max-width: 900px) {
    .cux-vibe-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .cux-vibe h2 { font-size: 2.2rem; }
    .cux-vibe-card { padding: 2rem; }
    .cux-vibe-brand { font-size: 2rem; }
}

.cux-vibe-credit {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.3);
    margin-top: 0.75rem;
    font-style: normal;
}

/* ============================================================================
   INDEX3 OVERRIDES — Opportunity 3+2 layout
   ============================================================================ */

.opp-stats-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.opp-stats-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 700px;
    margin: 48px auto 0;
    padding-top: 48px;
    border-top: 1px solid var(--border-light-medium, rgba(0, 0, 0, 0.08));
}

.opp-stat-split {
    text-align: center;
}

.opp-stat-split .opportunity-stat-num {
    font-family: 'Jost', sans-serif;
    font-size: 3.6rem;
    font-weight: 400;
    color: rgba(0,0,0,.5);
    line-height: 1;
    font-variant-ligatures: no-common-ligatures;
    font-feature-settings: "liga" 0, "clig" 0;
}

.opp-stat-split .opportunity-stat-label {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 1rem;
    color: var(--text-dark-secondary, rgba(0, 0, 0, 0.5));
    margin-top: 10px;
    line-height: 1.5;
}

.opp-stat-split.faded .opportunity-stat-num {
    color: rgba(0, 0, 0, 0.2);
}

.opp-stat-split.faded .opportunity-stat-label {
    color: rgba(0, 0, 0, 0.3);
}

.opp-question {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark, #111);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .opp-stats-top { grid-template-columns: 1fr; gap: 24px; }
    .opp-stats-bottom { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================================
   EVH BADGES, INTRO TEXT, OPPOSITION TEXT
   ============================================================================ */

.evh-badge {
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0;
    margin-bottom: 1.2rem;
    border-radius: 100px;
    line-height: 22px !important;
    height: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;
    width: 120px;
    text-align: center;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    flex-basis: 22px !important;
    display: block;
    overflow: hidden;
}

.evh-badge.enemy {
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.04);
}

.evh-badge.hero {
    color: rgba(0,0,0,.5);
    border: 1px solid rgba(0,0,0,.15);
    background: rgba(0,0,0,.04);
}

.evh-intro {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.evh-enemy .evh-intro {
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.evh-hero .evh-intro {
    color: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.evh-intro em { font-style: italic; }
.evh-enemy .evh-intro em { color: rgba(255,255,255,.7); }
.evh-hero .evh-intro em { color: rgba(0,0,0,.7); }

.evh-opposition {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 2rem;
    padding: 1.25rem;
}

.evh-enemy .evh-opposition {
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid rgba(255, 255, 255, 0.12);
}

.evh-hero .evh-opposition {
    color: rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.03);
    border-left: 3px solid rgba(0, 0, 0, 0.15);
}

/* White EVH footer — mist bg with breathing room */
.evh-footer-white {
    background-color: var(--mist, #f5f5f7);
    padding: 8rem 2rem;
    text-align: center;
    margin-top: 0;
}

.evh-footer-white .evh-didntknow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin: 0 0 1.5rem 0;
}

.evh-footer-white .evh-bottom {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: rgba(0,0,0,.5);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.evh-footer-white .evh-link {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.evh-footer-white .evh-link:hover {
    background-color: #000;
    color: #fff;
}

/* ============================================================================
   SOVEREIGN DEPLOY STATS — force readable on white bg
   ============================================================================ */

.sovereign-deploy-stats .deploy-stat {
    text-align: center;
    padding: 24px 0;
}

.sovereign-deploy-stats .deploy-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: rgba(0,0,0,.5);
    line-height: 1;
}

.sovereign-deploy-stats .deploy-stat-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 8px;
    line-height: 1.4;
}

/* ============================================================================
   SHADOW AI PAGE — shadow-ai.php
   ============================================================================ */

/* Section base overrides for inner pages */
.section {
    padding: 140px 6vw;
}

.section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 64px;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-header h2 em {
    font-style: italic;
    color: var(--gold);
}

.section-dark .section-header h2 { color: #fff; }
.section-light .section-header h2 { color: var(--text-dark); }
.section-carbon .section-header h2 { color: #fff; }

.section-sub {
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 700px;
}

.section-header.centered .section-sub {
    margin: 0 auto;
}

.section-dark .section-sub { color: rgba(255, 255, 255, 0.5); }
.section-light .section-sub { color: var(--text-dark-secondary); }
.section-carbon .section-sub { color: rgba(255, 255, 255, 0.5); }

.section-fine-print {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 48px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.section-dark .section-fine-print { color: rgba(255, 255, 255, 0.4); }
.section-carbon .section-fine-print { color: rgba(255, 255, 255, 0.4); }
.section-light .section-fine-print { color: var(--text-dark-tertiary); }

/* ── Shadow AI: Black bg, no gold ── */
.shai-black { background: #000 !important; border-top: 1px solid rgba(255,255,255,.06); }
.shai-black .section-label { color: rgba(255,255,255,.4); }
.shai-black .section-header h2 { color: #fff; }
.shai-black .section-header h2 em { color: rgba(255,255,255,.6); font-style: italic; }
.shai-black .section-sub { color: rgba(255,255,255,.5); }
.shai-black .section-fine-print { color: rgba(255,255,255,.35); }
.shai-black .shadow-stat-card { background: #111 !important; border: 1px solid #222 !important; box-shadow: none !important; }
.shai-black .shadow-stat-num { color: rgba(255,255,255,.7); }
.shai-black .vector-card { background: #111 !important; border: 1px solid #222 !important; box-shadow: none !important; }
.shai-black .vector-num { color: rgba(255,255,255,.4); }
.shai-black .vector-stat { color: #fff; }
.shai-black .vector-title { color: #fff; }
.shai-black .vector-text { color: rgba(255,255,255,.55); }
.shai-black .vendors-table-header { color: rgba(255,255,255,.5); }
.shai-black .vendors-table-row { border-bottom-color: #1a1a1a; }
.shai-black .embedded-card { background: #111 !important; border: 1px solid #222 !important; box-shadow: none !important; }
.shai-black .embedded-exposed { color: rgba(255,255,255,.7); }
.shai-black .asym-column { padding: 36px; }
.shai-black .asym-can { background: #111 !important; border: 1px solid #222 !important; box-shadow: none !important; }
.shai-black .asym-cannot { background: #111 !important; border: 1px solid #222 !important; box-shadow: none !important; }
.shai-black .asym-column h3 { color: #fff; }
.shai-black .asym-column li { color: rgba(255,255,255,.6); }
.shai-black .asym-icon.check { color: rgba(255,255,255,.5); }
.shai-black .asym-icon.cross { color: #888; }
.shai-black .asym-note { color: rgba(255,255,255,.35); border-color: #222; }
.shai-black .asym-conclusion p { color: #fff; }
.shai-black .asym-conclusion strong { color: rgba(255,255,255,.7); }
.shai-black .asym-question { color: rgba(255,255,255,.5) !important; }
.shai-black .juris-detail-card { background: #111 !important; border: 1px solid #222 !important; box-shadow: none !important; }
.shai-black .juris-sov h3 { color: rgba(255,255,255,.7); }
.shai-black .juris-callout p { color: rgba(255,255,255,.6); }
.shai-black .incident-card { background: #111 !important; border: 1px solid #222 !important; box-shadow: none !important; }
.shai-black .audience-card { background: #111 !important; border: 1px solid #222 !important; box-shadow: none !important; }
.shai-black .audience-label { color: rgba(255,255,255,.4); }
.shai-black .audience-card h3 { color: #fff; }
.shai-black .audience-card li { color: rgba(255,255,255,.55); }
.shai-black .audience-punch { color: rgba(255,255,255,.7); }
.shai-black .audience-bottom { color: rgba(255,255,255,.5); }

/* Shadow AI Stats Grid — 2x4 */
.shadow-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.shadow-stat-card {
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.shadow-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.shadow-stat-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.4;
}

.shadow-stat-detail {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 12px;
}

.shadow-stat-impact {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 12px;
}

.shadow-stat-source {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    font-style: italic;
}

/* Vectors Grid — 3 columns */
.vectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.vector-card {
    padding: 36px;
    border: 1px solid var(--border-light-medium);
    background: var(--mist, #f5f5f7);
}

.vector-num {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.vector-stat {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 12px;
}

.vector-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.vector-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
}

/* Vendors Table */
.vendors-table {
    max-width: 1000px;
    margin: 0 auto;
}

.vendors-table-header {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.vendors-table-row {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    transition: background 0.2s;
}

.vendors-table-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.vendor-name {
    color: #fff;
    font-weight: 500;
}

.vendor-paste {
    color: rgba(255, 255, 255, 0.6);
}

.vendor-excuse {
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
}

/* Embedded Software Grid — 3x2 */
.embedded-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.embedded-card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.embedded-cat {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.embedded-examples {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
    font-style: italic;
}

.embedded-exposed {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    color: var(--gold);
    font-weight: 500;
}

/* Asymmetry Grid — 2 columns (Can vs Cannot) */
.asym-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.asym-column {
    padding: 36px;
}

.asym-can {
    background: var(--mist, #f5f5f7);
    border: 1px solid var(--border-light-medium);
}

.asym-cannot {
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.asym-column h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.asym-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.asym-column li {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
    line-height: 1.6;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.asym-icon.check { color: var(--gold); flex-shrink: 0; }
.asym-icon.cross { color: #ef4444; flex-shrink: 0; }

.asym-note {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    color: var(--text-dark-tertiary);
    font-style: italic;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light-medium);
}

.asym-conclusion {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.asym-conclusion p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 16px;
}

.asym-conclusion strong {
    color: var(--gold);
}

.asym-question {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem !important;
    color: var(--text-dark-secondary) !important;
    font-style: italic;
}

/* Jurisdictional Grid — 2 columns (US vs Sovereign) */
.juris-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.juris-col {
    padding: 36px;
}

.juris-us {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.juris-sov {
    background: rgba(201, 169, 98, 0.06);
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.juris-col h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.juris-us h3 { color: #ef4444; }
.juris-sov h3 { color: var(--gold); }

.juris-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.juris-col li {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.juris-callout {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.juris-callout p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    color: var(--gold);
    line-height: 1.5;
    font-style: italic;
}

/* Incidents Grid — 3x2 */
.incidents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.incident-card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.incident-company {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 10px;
}

.incident-headline {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.incident-detail {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 16px;
}

.incident-source {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    font-style: italic;
}

/* Audience Grid — 2 columns */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.audience-card {
    padding: 36px;
    border: 1px solid var(--border-light-medium);
    background: var(--mist, #f5f5f7);
}

.audience-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.audience-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.audience-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.audience-card li {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
}

.audience-card li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.audience-punch {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    padding-top: 16px;
    border-top: 1px solid var(--border-light-medium);
}

.audience-bottom {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    color: var(--gold);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== ARCHITECTURE PAGE ========== */

/* Layers Grid — 3 columns */
.layers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.layer-card {
    padding: 36px;
    border: 1px solid var(--border-light-medium);
    background: var(--mist, #f5f5f7);
}

.layer-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.layer-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.layer-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.layer-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
}

/* Architecture Stats Grid — 4 columns */
.architecture-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.architecture-stat-card {
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.architecture-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.architecture-stat-label {
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

/* Sovereignty Levels Grid — 3 columns */
.sl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.sl-card {
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.sl-badge {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-bottom: 16px;
}

.sl-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.sl-tagline {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    font-style: italic;
}

.sl-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sl-details {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sl-details li {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.sl-details li:before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Non-Negotiables Grid — 3 columns */
.nonneg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.nonneg-card {
    padding: 32px;
    border: 1px solid var(--border-light-medium);
    background: var(--mist, #f5f5f7);
}

.nonneg-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.nonneg-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
}

/* Stack Categories Grid — 4 columns (2x4 for 8 items) */
.stack-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stack-cat-card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.stack-cat-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.stack-cat-count {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.stack-cat-desc {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ============================================================================
   INDUSTRIES PAGE
   ============================================================================ */

/* Risk Profiles Grid — 3x2 */
.risk-profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.risk-profile-card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.risk-sector {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.risk-threat {
    margin-bottom: 16px;
}

.risk-threat-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ef4444;
    display: block;
    margin-bottom: 6px;
}

.risk-threat p {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 500;
    line-height: 1.5;
}

.risk-detail {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* Setups Grid — 3x2 (section-light) */
.setups-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.setup-card {
    padding: 32px;
    border: 1px solid var(--border-light-medium);
    background: var(--mist, #f5f5f7);
}

.setup-sector {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.setup-compliance {
    margin-bottom: 16px;
}

.setup-compliance-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.setup-compliance p {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.setup-detail {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
}

/* ============================================================================
   USE CASES PAGE
   ============================================================================ */

/* Products Grid — 3x2 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.prod-card {
    padding: 36px;
    border: 1px solid var(--border-light-medium);
    background: var(--mist, #f5f5f7);
}

.prod-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.2;
}

.prod-category {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.prod-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
}

/* ============================================================================
   CONTEXT UX PAGE
   ============================================================================ */

/* Problem Grid — 3 columns */
.cux-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cux-problem-card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.cux-problem-card h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.cux-problem-card p {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* Principles Grid — 2x2 */
.cux-principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.cux-principle-card {
    padding: 36px;
    border: 1px solid var(--border-light-medium);
    background: var(--mist, #f5f5f7);
}

.cux-principle-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cux-principle-card > p {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cux-principle-detail {
    padding-top: 16px;
    border-top: 1px solid var(--border-light-medium);
}

.cux-principle-detail strong {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}

.cux-principle-detail p {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    color: var(--text-dark-tertiary);
    line-height: 1.6;
}

/* Practice Grid — 2x2 */
.cux-practice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.cux-practice-card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.cux-practice-card h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.cux-practice-card > p {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cux-practice-detail {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cux-practice-detail p {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
}

.cux-practice-detail strong {
    color: var(--gold);
    font-weight: 600;
}

/* ============================================================================
   VIBEFLOW PAGE
   ============================================================================ */

/* Philosophy content block */
.vibe-philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vibe-philosophy-content p {
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    color: var(--text-dark-secondary);
    line-height: 1.8;
}

/* Vibe Domains Grid — flexible */
.vibe-domains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vibe-domain-card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

/* Last two cards span to center */
.vibe-domain-card:nth-child(4),
.vibe-domain-card:nth-child(5) {
    /* auto-center the 2nd row */
}

.vibe-domain-card h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
}

.vibe-domain-card p {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* Comparison Grid */
.vibe-comparison-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vibe-comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vibe-compare-old {
    padding: 28px;
    border: 1px solid var(--border-light-medium);
    background: #fff;
    opacity: 0.6;
}

.vibe-compare-new {
    padding: 28px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    background: rgba(201, 169, 98, 0.04);
}

.vibe-compare-old h4,
.vibe-compare-new h4 {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vibe-compare-old h4 { color: var(--text-dark-tertiary); }
.vibe-compare-new h4 { color: var(--gold); }

.vibe-compare-old p,
.vibe-compare-new p {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
}

.vibe-compare-old p { color: var(--text-dark-tertiary); }
.vibe-compare-new p { color: var(--text-dark); }

/* Karpathy Credit */
.vibe-credit {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.vibe-credit .section-label {
    display: block;
    margin-bottom: 20px;
}

.vibe-credit h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.vibe-credit h2 em {
    color: var(--gold);
    font-style: normal;
}

.vibe-credit p {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

/* ============================================================================
   ARTICLES PAGE (placeholder)
   ============================================================================ */

.articles-placeholder {
    text-align: center;
    padding: 80px 0;
    max-width: 600px;
    margin: 0 auto;
}

.articles-placeholder h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.articles-placeholder p {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
}


/* ============================================================================
   RESPONSIVE — All Inner Pages
   ============================================================================ */

/* Architecture */
@media (max-width: 900px) {
    .layers-grid { grid-template-columns: 1fr; }
    .architecture-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sl-grid { grid-template-columns: 1fr; }
    .nonneg-grid { grid-template-columns: 1fr; }
    .stack-categories-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Shadow AI */
@media (max-width: 900px) {
    .shadow-stats-grid { grid-template-columns: 1fr; }
    .vectors-grid { grid-template-columns: 1fr; }
    .vendors-table-header,
    .vendors-table-row { grid-template-columns: 1fr; gap: 4px; }
    .embedded-grid { grid-template-columns: 1fr; }
    .asym-grid { grid-template-columns: 1fr; }
    .juris-grid { grid-template-columns: 1fr; }
    .incidents-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
}

/* Industries, Use Cases, Context UX, VibeFlow */
@media (max-width: 900px) {
    .risk-profiles-grid { grid-template-columns: 1fr; }
    .setups-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .cux-problem-grid { grid-template-columns: 1fr; }
    .cux-principles-grid { grid-template-columns: 1fr; }
    .cux-practice-grid { grid-template-columns: 1fr; }
    .vibe-domains-grid { grid-template-columns: 1fr; }
    .vibe-comparison-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   WHITE THEME — Nav, Hero, Footer for inner pages
   Matches the homepage (v4) white aesthetic
   ══════════════════════════════════════════════ */

/* ── Nav: white background theme ── */
.nav { background: #fff !important; backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(0,0,0,.06); border-bottom-color: rgba(0,0,0,.06) !important; }
.nav-wordmark { color: rgba(0,0,0,.85) !important; }
.nav-tagline { color: rgba(0,0,0,.55) !important; }
.nav-link,
.nav-dropdown-toggle { color: rgba(0,0,0,.55) !important; }
.nav-link:hover,
.nav-dropdown-toggle:hover { color: rgba(0,0,0,.85) !important; }
.nav-link.active { color: rgba(0,0,0,.85) !important; }
.nav-cta { border: 1px solid #0a0a0a !important; color: #0a0a0a !important; background: transparent !important; }
.nav-cta:hover { background: #0a0a0a !important; color: #fafaf8 !important; }
.nav-chevron path { stroke: rgba(0,0,0,.35) !important; }
/* Dropdown menus */
.nav-dropdown-menu { background: #fff !important; border: 1px solid rgba(0,0,0,.08) !important; box-shadow: 0 8px 32px rgba(0,0,0,.08) !important; border-radius: 8px !important; }
.nav-dropdown-item { color: rgba(0,0,0,.55) !important; }
.nav-dropdown-item:hover,
.nav-dropdown-item.active { color: rgba(0,0,0,.85) !important; background: rgba(0,0,0,.04) !important; }
/* Lang selector */
.nav-lang-toggle { border-color: rgba(0,0,0,.2) !important; color: rgba(0,0,0,.55) !important; }
.nav-lang-toggle:hover { border-color: rgba(0,0,0,.6) !important; color: rgba(0,0,0,.85) !important; }
.nav-lang-toggle svg path { stroke: rgba(0,0,0,.35) !important; }
.nav-lang-dropdown { background: #fff !important; border: 1px solid rgba(0,0,0,.08) !important; box-shadow: 0 8px 32px rgba(0,0,0,.08) !important; border-radius: 8px !important; }
.nav-lang-option { color: rgba(0,0,0,.55) !important; }
.nav-lang-option:hover { background: rgba(0,0,0,.03) !important; color: rgba(0,0,0,.85) !important; }
.nav-lang-option.active { color: rgba(0,0,0,.85) !important; font-weight: 600; }

/* ── Hero: solid white, same fonts as homepage hero ── */
.page-hero {
    background: #fff !important;
    padding: 160px 56px 180px !important;
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.page-hero::before {
    background: none !important;
}
.page-hero-label {
    font-family: 'Jost', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 8px !important;
    text-transform: uppercase !important;
    color: rgba(0,0,0,.45) !important;
}
.page-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(2.4rem, 4.5vw, 3.2rem) !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: rgba(0,0,0,.85) !important;
}
.page-hero-title em {
    color: rgba(0,0,0,.35) !important;
    font-style: italic !important;
}
.page-hero-text {
    font-family: 'Jost', sans-serif !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    color: rgba(0,0,0,.45) !important;
    line-height: 1.7 !important;
}

/* ── Footer: white background, dark text ── */
.footer { background: #fff !important; border-top: 1px solid rgba(0,0,0,.12) !important; }
.footer-logo { color: rgba(0,0,0,.85) !important; }
.footer-tagline { color: rgba(0,0,0,.55) !important; }
.footer-links a,
.footer h5 { color: rgba(0,0,0,.55) !important; }
.footer-links a:hover { color: rgba(0,0,0,.85) !important; }
.footer-copy,
.footer-legal a { color: rgba(0,0,0,.35) !important; }
.footer-legal a:hover { color: rgba(0,0,0,.85) !important; }
.footer-badge { color: rgba(0,0,0,.55) !important; border-color: rgba(0,0,0,.12) !important; }

@media (max-width: 900px) {
    .page-hero {
        padding: 120px 28px 100px !important;
        min-height: 50vh;
    }
    .page-hero-icon {
        top: -90%;
        left: -60%;
        width: 240%;
        height: 240%;
    }
}

/* ══════════════════════════════════════════════
   FRAMEWORK PAGE — Category grid & How steps
   ══════════════════════════════════════════════ */
.fw-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-light, rgba(0,0,0,.06));
    border: 1px solid var(--border-light, rgba(0,0,0,.06));
    border-radius: 16px;
    overflow: hidden;
}
.fw-cat-card {
    background: #fff;
    padding: 32px;
    transition: all 0.3s ease;
}
.fw-cat-card:hover {
    background: #fafaf8;
}
.fw-cat-num {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(0,0,0,.35);
    margin-bottom: 12px;
}
.fw-cat-name {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary, rgba(0,0,0,.85));
    margin-bottom: 4px;
    line-height: 1.3;
}
.fw-cat-count {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 12px;
    font-weight: 500;
    color: rgba(0,0,0,.35);
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.fw-cat-desc {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary, rgba(0,0,0,.55));
    line-height: 1.6;
}

.fw-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.fw-how-step {
    text-align: center;
}
.fw-how-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 18px;
    font-weight: 600;
    color: rgba(0,0,0,.35);
    margin-bottom: 20px;
}
.fw-how-step h3 {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-pure, #fff);
    margin-bottom: 12px;
}
.fw-how-step p {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary, rgba(255,255,255,.5));
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .fw-cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .fw-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .fw-how-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .fw-cat-grid { grid-template-columns: 1fr; }
    .fw-how-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   NATIVEAI PAGE — White aesthetic matching homepage
   ══════════════════════════════════════════════ */

/* Hero SVG animation */
@keyframes lpPulse { 0%,100%{opacity:.25;transform:scale(1)} 50%{opacity:.5;transform:scale(1.05)} }
@keyframes lpSpin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.page-hero { position: relative; overflow: hidden; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-icon {
    position: absolute;
    top: -150%;
    left: -200%;
    width: 300%;
    height: 300%;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    pointer-events: none;
    overflow: visible;
}
.page-hero-icon svg {
    width: 100%;
    height: 100%;
    color: rgba(0,0,0,.06);
    opacity: .5;
}
.page-hero-icon .lp-anim-ring { animation: lpPulse 4s ease-in-out infinite; transform-origin: center; }
.page-hero-icon .lp-anim-ring-slow { animation: lpPulse 6s ease-in-out infinite; transform-origin: center; }
.page-hero-icon .lp-anim-pulse { animation: lpPulse 4s ease-in-out infinite; transform-origin: center; }
.page-hero-icon .lp-anim-spin { animation: lpSpin 30s linear infinite; transform-origin: center; }

/* Base section */
.nai-section {
    background: #fff;
    padding: 140px 56px 100px;
}
.nai-container {
    max-width: 1100px;
    margin: 0 auto;
}
.nai-header {
    text-align: center;
    margin-bottom: 72px;
}
.nai-kicker {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(0,0,0,.35);
    margin-bottom: 20px;
}
.nai-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: rgba(0,0,0,.85);
}
.nai-title em {
    font-style: italic;
    color: rgba(0,0,0,.35);
}
.nai-sub {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(0,0,0,.55);
    max-width: 660px;
    margin: 20px auto 0;
}

/* ── Problem section — "the other side" feel ── */
.nai-problem {
    background: #f3f2ef;
    padding: 140px 56px 120px;
    border-top: 1px solid rgba(0,0,0,.06);
}
.nai-problem-header {
    text-align: center;
    margin-bottom: 72px;
}
.nai-problem-kicker {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(0,0,0,.35);
    margin-bottom: 20px;
}
.nai-problem-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: rgba(0,0,0,.75);
}
.nai-problem-title em {
    font-style: italic;
    color: rgba(0,0,0,.35);
}
.nai-problem-sub {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(0,0,0,.35);
    max-width: 640px;
    margin: 24px auto 0;
}
.nai-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.nai-problem-card {
    background: rgba(255,255,255,.5);
    padding: 40px 32px;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 0;
    transition: background 0.3s ease;
}
.nai-problem-card:hover {
    background: rgba(255,255,255,.8);
}
.nai-problem-num {
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    font-weight: 700;
    color: rgba(0,0,0,.35);
    margin-bottom: 16px;
}
.nai-problem-card h3 {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: rgba(0,0,0,.75);
    margin-bottom: 12px;
    line-height: 1.3;
}
.nai-problem-card p {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(0,0,0,.55);
    line-height: 1.7;
}
.nai-problem-verdict {
    text-align: center;
    margin-top: 48px;
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(0,0,0,.35);
}

/* ── How NativeAI Works — vertical stack with gold line ── */
.nai-how-stack {
    position: relative;
    padding-left: 80px;
}
.nai-how-stack::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.04));
}
.nai-how-row {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    padding: 36px 0;
    position: relative;
}
.nai-how-row + .nai-how-row {
    border-top: 1px solid rgba(0,0,0,.04);
}
.nai-how-num {
    position: absolute;
    left: -80px;
    top: 36px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: rgba(0,0,0,.35);
    letter-spacing: 2px;
    background: #fff;
    border: 1px solid rgba(201,169,98,.25);
    border-radius: 50%;
    z-index: 1;
}
.nai-how-content h3 {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: rgba(0,0,0,.85);
    margin-bottom: 8px;
    line-height: 1.3;
}
.nai-how-content p {
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: rgba(0,0,0,.6);
    line-height: 1.7;
    max-width: 700px;
}

/* ── Generic vs NativeAI — side by side ── */
.nai-diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.nai-diff-box {
    border-radius: 16px;
    padding: 48px 40px;
}
.nai-diff-before {
    background: #f7f7f7;
    border: 1px solid rgba(0,0,0,.04);
}
.nai-diff-after {
    background: #0a0a0a;
}
.nai-diff-label {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.nai-diff-before .nai-diff-label {
    color: rgba(0,0,0,.35);
}
.nai-diff-after .nai-diff-label {
    color: rgba(0,0,0,.35);
}
.nai-diff-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nai-diff-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
.nai-diff-list li + li {
    border-top: 1px solid rgba(0,0,0,.04);
}
.nai-diff-before .nai-diff-list li {
    color: rgba(0,0,0,.55);
}
.nai-diff-after .nai-diff-list li {
    color: rgba(255,255,255,.75);
    border-top-color: rgba(255,255,255,.06);
}
.nai-diff-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}
.nai-cross {
    background: rgba(192,57,43,.08);
    color: rgba(0,0,0,.35);
}
.nai-check {
    background: rgba(201,169,98,.15);
    color: rgba(0,0,0,.35);
}

/* ── The Trilogy — visual equation ── */
.nai-trilogy {
    background: #fff;
    padding: 160px 56px 120px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,.06);
}
.nai-eq {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto 72px;
}
.nai-eq-pillar {
    flex: 1;
    max-width: 260px;
    padding: 48px 32px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    background: #fff;
    transition: all 0.3s ease;
}
.nai-eq-pillar:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,.04);
}
.nai-eq-result {
    background: #0a0a0a;
    border-color: #0a0a0a;
}
.nai-eq-result:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,.15);
}
.nai-eq-icon {
    margin-bottom: 24px;
    color: rgba(0,0,0,.25);
}
.nai-eq-result .nai-eq-icon {
    color: rgba(0,0,0,.35);
}
.nai-eq-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: rgba(0,0,0,.85);
    margin-bottom: 12px;
}
.nai-eq-result .nai-eq-name {
    color: #fff;
}
.nai-eq-desc {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(0,0,0,.55);
}
.nai-eq-result .nai-eq-desc {
    color: rgba(255,255,255,.55);
}
.nai-eq-op {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    color: rgba(0,0,0,.5);
    padding: 0 28px;
    min-height: 200px;
}
.nai-trilogy-punch {
    max-width: 720px;
    margin: 0 auto;
}
.nai-trilogy-punch p {
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(0,0,0,.55);
}

/* ── CTA ── */
.nai-cta {
    background: #fff;
    padding: 120px 56px 160px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,.06);
}
.nai-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}
.nai-cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: rgba(0,0,0,.85);
    margin-bottom: 16px;
}
.nai-cta-title em {
    font-style: italic;
    color: rgba(0,0,0,.35);
}
.nai-cta-text {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(0,0,0,.55);
    line-height: 1.7;
    margin-bottom: 40px;
}
.nai-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.nai-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 44px;
    background: #0a0a0a;
    color: #fafaf8;
    border: 1px solid #0a0a0a;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.4s ease;
}
.nai-btn-primary:hover {
    background: #c9a962;
    color: #fff;
    border: 1px solid #c9a962;
    transform: translateY(-2px);
}
.nai-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 44px;
    background: transparent;
    color: #0a0a0a;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.4s ease;
}
.nai-btn-outline:hover {
    border-color: #0a0a0a;
    transform: translateY(-2px);
}

/* ── NativeAI responsive ── */
@media (max-width: 900px) {
    .nai-section { padding: 80px 28px 60px; }
    .nai-problem { padding: 80px 28px 60px; }
    .nai-problem-grid { grid-template-columns: 1fr; }
    .nai-how-stack { padding-left: 56px; }
    .nai-how-stack::before { left: 20px; }
    .nai-how-num { left: -56px; width: 36px; height: 36px; font-size: 12px; }
    .nai-diff-grid { grid-template-columns: 1fr; }
    .nai-eq { flex-direction: column; align-items: center; gap: 0; }
    .nai-eq-pillar { max-width: 100%; width: 100%; }
    .nai-eq-op { min-height: auto; padding: 16px 0; font-size: 24px; }
    .nai-trilogy { padding: 100px 28px 80px; }
    .nai-cta { padding: 80px 28px 100px; }
    .nai-cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 500px) {
    .nai-how-stack { padding-left: 0; }
    .nai-how-stack::before { display: none; }
    .nai-how-num { position: static; margin-bottom: 12px; }
    .nai-how-row { flex-direction: column; gap: 0; }
    .nai-diff-box { padding: 32px 24px; }
}

/* ══════════════════════════════════════════════
   SHARED LEELOO PAGE STYLES (lp-*)
   Context UX + VibeFlow + Framework + Architecture
   ══════════════════════════════════════════════ */

/* ── Base section ── */
.lp-section {
    background: #fff;
    padding: 140px 56px 100px;
}
.lp-section-grey {
    background: #f3f2ef;
}
.lp-container {
    max-width: 1100px;
    margin: 0 auto;
}
.lp-header {
    text-align: center;
    margin-bottom: 72px;
}
.lp-kicker {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(0,0,0,.35);
    margin-bottom: 20px;
}
.lp-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: rgba(0,0,0,.85);
}
.lp-title em {
    font-style: italic;
    color: rgba(0,0,0,.35);
}
.lp-sub {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(0,0,0,.55);
    max-width: 660px;
    margin: 20px auto 0;
}

/* ── Problem section — grey "other side" ── */
.lp-problem {
    background: #f3f2ef;
    padding: 140px 56px 120px;
    border-top: 1px solid rgba(0,0,0,.06);
}
.lp-problem-header {
    text-align: center;
    margin-bottom: 72px;
}
.lp-problem-kicker {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(0,0,0,.35);
    margin-bottom: 20px;
}
.lp-problem-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: rgba(0,0,0,.75);
}
.lp-problem-title em {
    font-style: italic;
    color: rgba(0,0,0,.35);
}
.lp-problem-sub {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(0,0,0,.55);
    max-width: 640px;
    margin: 20px auto 0;
}
.lp-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}
.lp-problem-card {
    background: rgba(255,255,255,.5);
    padding: 40px 32px;
    border: 1px solid rgba(0,0,0,.06);
    transition: background 0.3s ease;
}
.lp-problem-card:hover {
    background: rgba(255,255,255,.8);
}
.lp-problem-num {
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    font-weight: 700;
    color: rgba(0,0,0,.35);
    margin-bottom: 16px;
}
.lp-problem-card h3 {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: rgba(0,0,0,.75);
    margin-bottom: 12px;
    line-height: 1.3;
}
.lp-problem-card p {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(0,0,0,.55);
    line-height: 1.7;
}

/* ── Vertical stack with gold line ── */
.lp-stack {
    position: relative;
    padding-left: 80px;
}
.lp-stack::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.04));
}
.lp-stack-row {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    padding: 36px 0;
    position: relative;
}
.lp-stack-row + .lp-stack-row {
    border-top: 1px solid rgba(0,0,0,.04);
}
.lp-stack-num {
    position: absolute;
    left: -80px;
    top: 36px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: rgba(0,0,0,.35);
    letter-spacing: 2px;
    background: #fff;
    border: 1px solid rgba(201,169,98,.25);
    border-radius: 50%;
    z-index: 1;
}
.lp-stack-content h3 {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: rgba(0,0,0,.85);
    margin-bottom: 8px;
    line-height: 1.3;
}
.lp-stack-content p {
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: rgba(0,0,0,.6);
    line-height: 1.7;
    max-width: 700px;
}
.lp-stack-benefit {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(201,169,98,.15);
}
.lp-stack-benefit strong {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(0,0,0,.35);
    display: block;
    margin-bottom: 4px;
}
.lp-stack-benefit span {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(0,0,0,.5);
}

/* ── Practice cards — 2x2 grid ── */
.lp-practice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    overflow: hidden;
}
.lp-practice-card {
    background: #fff;
    padding: 40px 36px;
    transition: background 0.3s ease;
}
.lp-practice-card:hover {
    background: #fafaf8;
}
.lp-practice-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: rgba(0,0,0,.85);
    margin-bottom: 8px;
}
.lp-practice-text {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(0,0,0,.6);
    line-height: 1.6;
    margin-bottom: 20px;
}
.lp-practice-details {
    border-top: 1px solid rgba(0,0,0,.06);
    padding-top: 16px;
}
.lp-practice-detail {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(0,0,0,.55);
    line-height: 1.5;
    padding: 5px 0;
}
.lp-detail-label {
    font-weight: 600;
    color: rgba(0,0,0,.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 10px;
    margin-right: 8px;
}

/* ── Statement section (philosophy) ── */
.lp-statement {
    background: #fff;
    padding: 160px 56px;
    border-top: 1px solid rgba(0,0,0,.06);
}
.lp-statement-body {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.lp-statement-body p {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(0,0,0,.6);
}
.lp-statement-body p.lp-statement-lead {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.4;
    color: rgba(0,0,0,.8);
    margin-bottom: 24px;
}
.lp-statement-body p em {
    font-style: italic;
    color: rgba(0,0,0,.35);
}
.lp-statement-detail {
    max-width: 660px;
    margin: 32px auto 0;
    text-align: center;
}
.lp-statement-detail p {
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(0,0,0,.55);
}

/* ── Domain cards — grid ── */
.lp-domains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    overflow: hidden;
}
.lp-domain-card {
    background: #fff;
    padding: 40px 32px;
    transition: background 0.3s ease;
}
.lp-domain-card:hover {
    background: #fafaf8;
}
.lp-domain-num {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(0,0,0,.3);
    margin-bottom: 16px;
}
.lp-domain-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: rgba(0,0,0,.85);
    margin-bottom: 12px;
    line-height: 1.3;
}
.lp-domain-card p {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(0,0,0,.6);
    line-height: 1.7;
}

/* ── Comparison rows (old → new) ── */
.lp-compare-rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lp-compare-row {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 0;
    align-items: stretch;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
}
.lp-compare-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.lp-compare-arrow svg {
    opacity: .6;
}
.lp-compare-old {
    background: #f7f7f7;
    padding: 36px 32px;
}
.lp-compare-new {
    background: #0a0a0a;
    padding: 36px 32px;
}
.lp-compare-label {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.lp-compare-old .lp-compare-label {
    color: rgba(0,0,0,.35);
}
.lp-compare-new .lp-compare-label {
    color: rgba(0,0,0,.35);
}
.lp-compare-old p {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(0,0,0,.55);
    line-height: 1.7;
}
.lp-compare-new p {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
}

/* ── Credit section (Karpathy) ── */
.lp-credit {
    background: #fff;
    padding: 160px 56px;
    border-top: 1px solid rgba(0,0,0,.06);
}
.lp-credit-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.lp-credit-text {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(0,0,0,.6);
    margin-top: 24px;
}

/* ── CTA (shared) ── */
.lp-cta {
    background: #fff;
    padding: 120px 56px 160px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,.06);
}
.lp-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}
.lp-cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: rgba(0,0,0,.85);
    margin-bottom: 16px;
}
.lp-cta-title em {
    font-style: italic;
    color: rgba(0,0,0,.35);
}
.lp-cta-text {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(0,0,0,.55);
    line-height: 1.7;
    margin-bottom: 40px;
}
.lp-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ── Stats bar (Framework / Architecture) ── */
.lp-stats {
    background: #fff;
    padding: 80px 56px;
    border-top: 1px solid rgba(0,0,0,.06);
}
.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}
.lp-stat-card {
    background: #fff;
    padding: 40px 24px;
    text-align: center;
}
.lp-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: rgba(0,0,0,.8);
    margin-bottom: 8px;
}
.lp-stat-label {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(0,0,0,.55);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Layers / SL cards (Architecture) ── */
.lp-layers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lp-layer-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}
.lp-layer-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,.04);
}
.lp-layer-num {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(0,0,0,.35);
    margin-bottom: 16px;
}
.lp-layer-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: rgba(0,0,0,.85);
    margin-bottom: 6px;
}
.lp-layer-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(0,0,0,.4);
    margin-bottom: 16px;
}
.lp-layer-text {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(0,0,0,.6);
    line-height: 1.7;
}

/* SL cards — dark variant for sovereignty levels */
.lp-sl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lp-sl-card {
    background: #0a0a0a;
    color: rgba(255,255,255,.7) !important;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}
.lp-sl-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,.15);
}
.lp-sl-badge {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 20px;
}
.lp-sl-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}
.lp-sl-tagline {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}
.lp-sl-text {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin-bottom: 20px;
}
.lp-sl-details {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 16px;
}
.lp-sl-details li {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,.5);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}
.lp-sl-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(255,255,255,.3);
    font-size: 12px;
}

/* Non-negotiables grid */
.lp-nn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    overflow: hidden;
}
.lp-nn-card {
    background: #fff;
    padding: 36px 28px;
    transition: background 0.3s ease;
}
.lp-nn-card:hover {
    background: #fafaf8;
}
.lp-nn-grid::after {
    content: '';
    background: #fff;
}
.lp-nn-num {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    font-weight: 700;
    color: rgba(0,0,0,.3);
    margin-bottom: 14px;
    letter-spacing: 2px;
}
.lp-nn-card h3 {
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: rgba(0,0,0,.85);
    margin-bottom: 10px;
    line-height: 1.3;
}
.lp-nn-card p {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(0,0,0,.55);
    line-height: 1.7;
}

/* Stack category cards */
.lp-stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    overflow: hidden;
}
.lp-stack-card {
    background: #fff;
    padding: 32px;
    transition: background 0.3s ease;
}
.lp-stack-card:hover {
    background: #fafaf8;
}
.lp-stack-card-num {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(0,0,0,.3);
    margin-bottom: 12px;
}
.lp-stack-card-name {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(0,0,0,.85);
    margin-bottom: 4px;
    line-height: 1.3;
}
.lp-stack-card-count {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(0,0,0,.4);
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.lp-stack-card-desc {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(0,0,0,.55);
    line-height: 1.6;
}
.lp-stack-card-body h3 {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(0,0,0,.85);
    margin-bottom: 4px;
    line-height: 1.3;
}
.lp-stack-card-body p {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(0,0,0,.55);
    line-height: 1.6;
}

/* ── Use Cases / Industries extras ── */
.lp-uc-category {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(0,0,0,.35);
    margin-bottom: 12px;
}
.lp-fine-print {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(0,0,0,.4);
    text-align: center;
    margin-top: 48px;
    line-height: 1.6;
}

/* ── Sovereignty comparison table ── */
.lp-sov-table-wrap {
    overflow-x: auto;
}
.lp-sov-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    overflow: hidden;
}
.lp-sov-table table {
    width: 100%;
    border-collapse: collapse;
}
.lp-sov-table th {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0,0,0,.5);
    background: #f7f7f7;
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.lp-sov-table td {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(0,0,0,.65);
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0,0,0,.04);
    line-height: 1.5;
}
.lp-sov-table tr:last-child td {
    border-bottom: none;
}
.lp-sov-table td:first-child {
    font-weight: 500;
    color: rgba(0,0,0,.8);
}

/* ── LP responsive ── */
@media (max-width: 900px) {
    .lp-section { padding: 80px 28px 60px; }
    .lp-problem { padding: 80px 28px 60px; }
    .lp-problem-grid { grid-template-columns: 1fr; }
    .lp-stack { padding-left: 56px; }
    .lp-stack::before { left: 20px; }
    .lp-stack-num { left: -56px; width: 36px; height: 36px; font-size: 12px; }
    .lp-practice-grid { grid-template-columns: 1fr; }
    .lp-statement { padding: 100px 28px; }
    .lp-domains-grid { grid-template-columns: 1fr; }
    .lp-compare-row { grid-template-columns: 1fr; }
    .lp-compare-arrow { display: none; }
    .lp-nn-card[style*="grid-column:span 4"] { grid-column: span 2 !important; }
    .lp-credit { padding: 100px 28px; }
    .lp-cta { padding: 80px 28px 100px; }
    .lp-cta-buttons { flex-direction: column; align-items: center; }
    .lp-stats { padding: 60px 28px; }
    .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-layers-grid { grid-template-columns: 1fr; }
    .lp-sl-grid { grid-template-columns: 1fr; }
    .lp-nn-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-stack-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .lp-stack { padding-left: 0; }
    .lp-stack::before { display: none; }
    .lp-stack-num { position: static; margin-bottom: 12px; }
    .lp-stack-row { flex-direction: column; gap: 0; }
    .lp-nn-grid { grid-template-columns: 1fr; }
    .lp-nn-card[style*="grid-column:span"] { grid-column: span 1 !important; }
    .lp-stack-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   SHAI-BLACK NUCLEAR OVERRIDES — placed at EOF to win cascade
   Kills ALL rgba tint, gold hover, colored borders on cards
   ══════════════════════════════════════════════════════════ */
.shai-black .shadow-stat-card,
.shai-black .vector-card,
.shai-black .embedded-card,
.shai-black .asym-can,
.shai-black .asym-cannot,
.shai-black .juris-detail-card,
.shai-black .incident-card,
.shai-black .audience-card {
    background: #000 !important;
    background-color: #000 !important;
    border: 1px solid #1a1a1a !important;
    border-color: #1a1a1a !important;
    box-shadow: none !important;
    transition: none !important;
}
.shai-black .shadow-stat-card:hover,
.shai-black .vector-card:hover,
.shai-black .embedded-card:hover,
.shai-black .asym-can:hover,
.shai-black .asym-cannot:hover,
.shai-black .juris-detail-card:hover,
.shai-black .incident-card:hover,
.shai-black .audience-card:hover {
    background: #000 !important;
    background-color: #000 !important;
    border: 1px solid #1a1a1a !important;
    border-color: #1a1a1a !important;
    box-shadow: none !important;
    transition: none !important;
}

/* ==========================================================================
   PRODUCTION FIX — White Theme Text Color Overrides
   style.css sets body { color: rgba(255,255,255,.92) } (dark theme).
   All lp-* sections need explicit dark text color to override inheritance.
   ========================================================================== */

/* ── Language selector: hover to open ── */
.nav-lang { position: relative; }
.nav-lang:hover .nav-lang-dropdown { opacity: 1 !important; visibility: visible !important; transform: translateY(0) !important; }

/* ── Global text color reset for white sections ── */
.lp-section,
.lp-section-grey,
.lp-cta,
.page-hero {
    color: rgba(0,0,0,.85) !important;
}

/* ── Missing structural classes ── */
.lp-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.lp-section-header {
    margin-bottom: 72px;
}
.lp-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: rgba(0,0,0,.85);
}
.lp-section-title em {
    font-style: italic;
    color: rgba(0,0,0,.35);
}
.lp-section-sub {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(0,0,0,.55);
    max-width: 660px;
    margin: 20px auto 0;
}

/* ── Engage process stack (missing classes) ── */
.lp-stack-item {
    position: relative;
    padding: 32px 0;
}
.lp-stack-item + .lp-stack-item {
    border-top: 1px solid rgba(0,0,0,.06);
}
.lp-stack-dot {
    position: absolute;
    left: -80px;
    top: 36px;
    width: 10px;
    height: 10px;
    background: rgba(0,0,0,.15);
    border-radius: 50%;
    z-index: 1;
}
.lp-stack-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lp-stack-title {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: rgba(0,0,0,.85);
    line-height: 1.3;
    margin-bottom: 6px;
}
.lp-stack-text {
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: rgba(0,0,0,.6);
    line-height: 1.7;
    max-width: 700px;
}

/* ── De-gold remaining lp-stack borders ── */
.lp-stack-num {
    border-color: rgba(0,0,0,.12) !important;
}
.lp-stack-benefit {
    border-top-color: rgba(0,0,0,.06) !important;
}

/* ── Footer font fix ── */
.footer,
.footer-grid,
.footer-section h5,
.footer-links a,
.footer-copy,
.footer-legal a,
.footer-badge {
    font-family: 'Jost', sans-serif !important;
}
.footer-logo {
    font-family: 'Jost', sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 6px !important;
    text-transform: uppercase !important;
}

/* ── Nav font overrides ── */
.nav,
.nav-link,
.nav-cta,
.nav-brand,
.nav-wordmark,
.nav-tagline,
.nav-dropdown-item {
    font-family: 'Jost', sans-serif !important;
}
.nav-wordmark {
    font-weight: 400 !important;
    letter-spacing: 6px !important;
    text-transform: uppercase !important;
}

/* ── Mobile responsive for stack ── */
@media (max-width: 900px) {
    .lp-stack-dot { display: none; }
    .lp-section-inner { padding: 0 20px; }
    .lp-section-header { margin-bottom: 48px; }
}
@media (max-width: 600px) {
    .lp-section-title {
        font-size: 1.8rem;
    }
}

/* ── Contact form: spacious fields ── */
.lp-contact-grid input,
.lp-contact-grid select {
    padding: 16px 18px !important;
    font-size: 1rem !important;
}
.lp-contact-grid textarea {
    padding: 16px 18px !important;
    font-size: 1rem !important;
    min-height: 220px !important;
}
.lp-contact-grid label {
    margin-bottom: 12px !important;
}
.lp-contact-grid form > div {
    margin-bottom: 32px !important;
}
