
/* ═══════════════════════════════════════════════════════════════
   COMPLEX MINDS — DEEP NAVY PROGRESSIVE PALETTE
═══════════════════════════════════════════════════════════════ */

:root {
    --cm-bg:         #0c141d;
    --cm-bg-mid:     #111e2b;
    --cm-bg-light:   #162538;
    --cm-accent:     #e9d7b4;
    --cm-accent-dim: rgba(233,215,180,0.6);
    --cm-accent-lo:  rgba(233,215,180,0.3);
    --cm-text:       #e0e6ed;
    --cm-text-dim:   rgba(224,230,237,0.55);
    --cm-text-lo:    rgba(224,230,237,0.30);
    --cm-border:     rgba(233,215,180,0.15);
    --cm-border-hi:  rgba(233,215,180,0.45);
}
* { box-sizing: border-box; }

/* ── LOGO & HEADER — Hidden ────────────────────────────────── */
#logo { display: none !important; }
header { display: none !important; height: 0 !important; padding: 0 !important; margin: 0 !important; }
#header-container { display: none !important; }
#tmc-header-fade { display: none !important; height: 0 !important; }

/* ── HERO ──────────────────────────────────────────────────── */
.cm-hero-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.cm-hero-bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
.cm-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(12,20,29,0.03) 0%, rgba(12,20,29,0.03) 50%, rgba(12,20,29,0.03) 100%);
    pointer-events: none;
}

/* ── GOLD METALLIC HERO TITLE ─────────────────────────────── */
/* Gold gradient on hero title — no size overrides, Clapat handles sizing */
#hero-title-word span {
    background: linear-gradient(
        170deg,
        #462502   0%,
        #9b6e2c  14%,
        #d4a94c  26%,
        #f5d98e  36%,
        #fffbe0  42%,
        #f5d98e  48%,
        #c5973e  58%,
        #9b6e2c  68%,
        #d4a94c  76%,
        #fffbe0  82%,
        #f5d98e  88%,
        #7a4b12 100%
    );
    background-size: 200% 200%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cm-gold-idle 6s ease-in-out infinite;
    transition: filter 0.4s ease;
    will-change: background-position;
    transform: translateZ(0);
    -webkit-text-stroke: 0.5px rgba(197,151,62,0.15);
    filter: drop-shadow(0 2px 8px rgba(197,151,62,0.25))
            drop-shadow(0 0 30px rgba(245,217,142,0.08));
}

/* Idle shimmer: gentle gradient oscillation */
@keyframes cm-gold-idle {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 40% 60%; }
    100% { background-position: 0% 50%; }
}

/* TM symbol — absolutely positioned div, NOT a span, so it escapes #hero-title-word span */
#hero-title-word .cm-tm {
    position: absolute;
    top: 0.1em;
    right: -1.2em;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--cm-accent);
    opacity: 0.5;
    background: none;
    -webkit-text-fill-color: var(--cm-accent);
    animation: none;
    filter: none;
    -webkit-text-stroke: 0;
    line-height: 1;
}

/* ── EYEBROW ──────────────────────────────────────────────── */
.cm-eyebrow {
    font-size: 9.5px; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--cm-accent); display: block; margin-bottom: 28px;
    font-family: 'Poppins', sans-serif; font-weight: 500;
}

/* ── TEXT ──────────────────────────────────────────────────── */
.cm-t { color: var(--cm-text-dim); }
.cm-t-h { color: var(--cm-text); }
.cm-t-h em { font-style: italic; color: var(--cm-accent); }

/* ══════════════════════════════════════════════════════════════
   SECTION 2: AI IS RAISING THE BAR
══════════════════════════════════════════════════════════════ */
.cm-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cm-who-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    font-weight: 300; line-height: 1.08; margin-bottom: 40px; color: var(--cm-text);
}
.cm-who-headline em { font-style: italic; color: var(--cm-accent); }
.cm-who-body p { font-size: 16px; line-height: 2; margin-bottom: 24px; color: var(--cm-text-dim); }
.cm-who-body p:last-child { margin-bottom: 0; }
@media (max-width: 900px) { .cm-who-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ★ "myth" — clickable box (centered around word) ────────── */
.cm-not-reveal {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300; line-height: 1.5; color: var(--cm-text); margin-top: 48px;
}
.cm-not-box {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 80px; height: 1.15em; padding: 0 12px;
    vertical-align: baseline; border: 2px dashed var(--cm-accent-lo);
    border-radius: 4px; cursor: pointer; position: relative;
    transition: all 0.4s ease; margin: 0 6px; text-align: center;
    background: rgba(233,215,180,0.03);
}
.cm-not-box:hover { border-color: var(--cm-accent); background: rgba(233,215,180,0.06); }
.cm-not-box:focus-visible { outline: 2px solid var(--cm-accent); outline-offset: 2px; }
.cm-not-box-word {
    opacity: 0; color: var(--cm-accent); font-weight: 600; font-style: italic;
    transition: opacity 0.5s ease; display: inline-block; padding: 0 4px;
    white-space: nowrap;
}
.cm-not-box.revealed { border-color: var(--cm-accent); border-style: solid; background: rgba(233,215,180,0.08); }
.cm-not-box.revealed .cm-not-box-word { opacity: 1; }

/* ★ Myth container: dark inset band with gold left border */
.cm-myth-container {
    margin-top: 32px;
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.cm-myth-container.visible { opacity: 1; transform: translateY(0); }
.cm-myth-container-inner {
    border-left: 3px solid var(--cm-accent);
    background: linear-gradient(135deg, rgba(233,215,180,0.04) 0%, rgba(12,20,29,0.6) 100%);
    padding: 28px 36px;
    max-width: 800px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--cm-text);
}

/* Legacy raised text (keep for backward compat) */
.cm-raised-text {
    font-size: clamp(1rem, 1.8vw, 1.3rem); font-family: 'Cormorant Garamond', serif;
    color: var(--cm-text-dim); line-height: 1.8; margin-top: 20px;
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.cm-raised-text.visible { opacity: 1; transform: translateY(0); }

/* Interactive boxes: dropped / risen */
.cm-box-row { display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.cm-box-word {
    border: 1px solid var(--cm-border-hi); padding: 16px 36px;
    font-family: 'Poppins', sans-serif; font-size: 12px; letter-spacing: 0.3em;
    text-transform: uppercase; font-weight: 500; color: var(--cm-accent);
    cursor: pointer; user-select: none; transition: all 0.4s ease;
}
.cm-box-word:hover { background: rgba(233,215,180,0.12); border-color: var(--cm-accent); }
.cm-box-word.placed { opacity: 0; transform: scale(0.8); pointer-events: none; }
.cm-floor-ceiling {
    margin-top: 32px; font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 300; line-height: 1.5; color: var(--cm-text);
    overflow-wrap: break-word; word-wrap: break-word;
}
.cm-floor-ceiling .cm-slot {
    display: inline-block; min-width: 100px; border-bottom: 2px solid var(--cm-accent-lo);
    color: var(--cm-accent); font-weight: 400; transition: all 0.5s ease; text-align: center;
}
.cm-floor-ceiling .cm-slot.filled { border-bottom-color: var(--cm-accent); }
@media (max-width: 600px) {
    .cm-box-row { gap: 12px; margin-top: 28px; }
    .cm-box-word { padding: 12px 20px; font-size: 10px; letter-spacing: 0.2em; }
    .cm-floor-ceiling { font-size: clamp(1.1rem, 4.5vw, 1.6rem); margin-top: 20px; }
    .cm-floor-ceiling .cm-slot { min-width: 60px; }
    .cm-myth-container-inner { padding: 20px 16px; }
}

/* ══════════════════════════════════════════════════════════════
   CAROUSEL
══════════════════════════════════════════════════════════════ */
.cm-carousel-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 56px; }
@media (max-width: 900px) { .cm-carousel-header { grid-template-columns: 1fr; gap: 24px; } }
.cm-carousel-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-bottom: 1px solid var(--cm-border); margin-bottom: 0; }
.cm-carousel-pill { background: none; border: none; border-right: 1px solid var(--cm-border); padding: 24px 24px 20px; cursor: pointer; text-align: left; position: relative; transition: background 0.3s ease; }
.cm-carousel-pill:last-child { border-right: none; }
.cm-carousel-pill:hover { background: rgba(233,215,180,0.06); }
.cm-carousel-pill.active { background: rgba(233,215,180,0.04); }
.cm-carousel-pill-icon { width: 22px; height: 22px; display: block; margin-bottom: 8px; color: var(--cm-accent); opacity: 0.5; transition: opacity 0.35s ease; }
.cm-carousel-pill.active .cm-carousel-pill-icon { opacity: 1; }
.cm-carousel-pill-label { font-family: 'Cormorant Garamond', serif; font-size: clamp(0.95rem, 1.4vw, 1.2rem); font-weight: 400; color: rgba(224,230,237,0.35); display: block; transition: color 0.35s ease; line-height: 1.3; }
.cm-carousel-pill.active .cm-carousel-pill-label { color: var(--cm-text); }
.cm-carousel-pill-bar { position: absolute; bottom: -1px; left: 0; width: 100%; height: 4px; background: rgba(233,215,180,0.08); overflow: hidden; }
.cm-carousel-pill-fill { display: block; width: 0%; height: 100%; background: var(--cm-accent); opacity: 0.85; transition: width 0.3s ease; }
.cm-carousel-pill.active .cm-carousel-pill-fill { width: 100%; }
.cm-carousel-stage { position: relative; min-height: 340px; border-bottom: 1px solid var(--cm-border); overflow: hidden; }
.cm-carousel-slide { position: absolute; inset: 0; opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity 0.45s ease, transform 0.45s ease; }
.cm-carousel-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.cm-carousel-slide-inner { display: grid; grid-template-columns: 120px 1fr; gap: 40px; padding: 48px 0 36px; }
.cm-carousel-big-icon { width: 80px; color: #7ab0cc; opacity: 0.3; }
.cm-carousel-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 300; line-height: 1.25; margin-bottom: 16px; color: var(--cm-text); }
.cm-carousel-content-col p { font-size: 15px; line-height: 1.9; color: var(--cm-text-dim); }
@media (max-width: 900px) { .cm-carousel-pill { padding: 16px 12px 14px; } .cm-carousel-slide-inner { grid-template-columns: 80px 1fr; gap: 24px; padding: 36px 0 24px; } }
@media (max-width: 600px) { .cm-carousel-pill { padding: 12px 8px 10px; } .cm-carousel-pill-label { font-size: 0.75rem; } .cm-carousel-slide-inner { grid-template-columns: 1fr; gap: 8px; } }

/* ══════════════════════════════════════════════════════════════
   STATEMENT SECTIONS (full-bleed photo backdrop)
══════════════════════════════════════════════════════════════ */
.cm-statement-section { position: relative; overflow: hidden; padding: 140px 80px; display: flex; align-items: center; justify-content: center; min-height: 50vh; background: var(--cm-bg-mid); }
.cm-statement-section .cm-bg-overlay { position: absolute; inset: 0; background: rgba(12,20,29,0.70); z-index: 1; }
.cm-statement-section .cm-bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; opacity: 0.4; }
.cm-statement-text { position: relative; z-index: 2; font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.3; color: var(--cm-text); text-align: center; max-width: 800px; }
.cm-statement-text em { font-style: italic; color: var(--cm-accent); }
@media (max-width: 767px) { .cm-statement-section { padding: 100px 30px; } }

/* ★ Scroll-swap: work → learn ─────────────────────── */
.cm-swap-wrap { display: inline-block; position: relative; min-width: 80px; text-align: center; vertical-align: baseline; }
.cm-swap-word { display: inline-block; transition: opacity 0.6s ease, transform 0.6s ease; }
.cm-swap-word.cm-swap-active { opacity: 1; transform: translateY(0); }
.cm-swap-word:not(.cm-swap-active) { position: absolute; left: 50%; transform: translateX(-50%) translateY(15px); opacity: 0; }

/* ══════════════════════════════════════════════════════════════
   ★ FINANCIAL REVOLUTION TIMELINE — Left list, right photo+text
══════════════════════════════════════════════════════════════ */
.cm-fin-timeline { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 48px; border: 1px solid var(--cm-border); min-height: 500px; }
.cm-fin-nav { border-right: 1px solid var(--cm-border); overflow-y: auto; max-height: 620px; }
.cm-fin-nav-item {
    display: flex; align-items: baseline; gap: 16px; padding: 18px 28px;
    border-bottom: 1px solid var(--cm-border); cursor: pointer;
    position: relative; transition: all 0.3s ease;
}
.cm-fin-nav-item:last-child { border-bottom: none; }
.cm-fin-nav-item:hover { background: rgba(233,215,180,0.03); }
.cm-fin-nav-item.active { background: rgba(233,215,180,0.06); }
.cm-fin-nav-bar { position: absolute; left: 0; top: 0; width: 3px; height: 100%; background: transparent; transition: background 0.3s ease; }
.cm-fin-nav-item.active .cm-fin-nav-bar { background: var(--cm-accent); }
.cm-fin-nav-date {
    font-family: 'Six Caps', sans-serif; font-size: 1.8rem; line-height: 1;
    color: var(--cm-accent-dim); flex-shrink: 0; min-width: 80px;
    transition: color 0.3s ease;
}
.cm-fin-nav-item.active .cm-fin-nav-date { color: var(--cm-accent); }
.cm-fin-nav-label {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--cm-text-dim); transition: color 0.3s ease; line-height: 1.4;
}
.cm-fin-nav-item.active .cm-fin-nav-label { color: var(--cm-text); }
.cm-fin-detail { position: relative; display: flex; flex-direction: column; }
.cm-fin-panel { display: none; opacity: 0; transition: opacity 0.4s ease; position: absolute; inset: 0; flex-direction: column; }
.cm-fin-panel.active { display: flex; opacity: 1; position: relative; }
.cm-fin-panel-img {
    width: 100%; aspect-ratio: 16/9; background-size: cover;
    background-position: center; position: relative; flex-shrink: 0;
}
.cm-fin-panel-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(12,20,29,0.8) 100%); }
.cm-fin-panel-body { padding: 28px 36px; flex: 1; }
.cm-fin-panel-title {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 400; color: var(--cm-text); margin-bottom: 12px; line-height: 1.3;
}
.cm-fin-panel-text { font-size: 15px; line-height: 1.9; color: var(--cm-text-dim); }
@media (max-width: 900px) {
    .cm-fin-timeline { grid-template-columns: 1fr; }
    .cm-fin-nav { border-right: none; border-bottom: 1px solid var(--cm-border); max-height: 300px; }
    .cm-fin-panel-body { padding: 20px 24px; }
}

/* ══════════════════════════════════════════════════════════════
   ★ MVP CONNECTOR MAP — Hover 2008 → arrows to 2025
══════════════════════════════════════════════════════════════ */
.cm-mvp-map { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; margin-top: 48px; position: relative; align-items: start; }
.cm-mvp-col { position: relative; }
.cm-compare-year { font-family: 'Six Caps', sans-serif; font-size: clamp(3rem, 5vw, 5rem); line-height: 1; color: var(--cm-accent); opacity: 0.35; margin-bottom: 28px; display: block; }
.cm-mvp-item, .cm-mvp-target {
    padding: 16px 20px; border-bottom: 1px solid var(--cm-border);
    font-family: 'Cormorant Garamond', serif; font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--cm-text-dim); cursor: default; transition: all 0.3s ease;
    display: flex; align-items: center; gap: 12px; line-height: 1.4;
}
.cm-mvp-item { cursor: pointer; }
.cm-mvp-item:hover { color: var(--cm-text); background: rgba(233,215,180,0.04); }
.cm-mvp-item.active-source { color: var(--cm-accent); background: rgba(233,215,180,0.06); }
.cm-mvp-target.highlight { color: var(--cm-accent); background: rgba(233,215,180,0.06); }
.cm-mvp-dot { width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid var(--cm-accent-lo); flex-shrink: 0; transition: all 0.3s ease; }
.cm-mvp-item:hover .cm-mvp-dot, .cm-mvp-item.active-source .cm-mvp-dot { background: var(--cm-accent); border-color: var(--cm-accent); }
.cm-mvp-target.highlight .cm-mvp-dot { background: var(--cm-accent); border-color: var(--cm-accent); }
.cm-mvp-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3; }
.cm-mvp-svg line { stroke: var(--cm-accent); stroke-width: 1.5; opacity: 0; transition: opacity 0.3s ease; }
.cm-mvp-svg line.visible { opacity: 0.5; }
@media (max-width: 900px) { .cm-mvp-map { grid-template-columns: 1fr; gap: 24px; } .cm-mvp-svg { display: none; } }

/* ══════════════════════════════════════════════════════════════
   ★ COMPARE STACKS — Progressive status-bar reveal
══════════════════════════════════════════════════════════════ */
.cm-stack-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; }
.cm-stack-item {
    display: flex; align-items: center; gap: 16px; padding: 14px 0;
    border-bottom: 1px solid var(--cm-border); position: relative;
    opacity: 0.25; transition: opacity 0.5s ease;
}
.cm-stack-item.item-active, .cm-stack-item.item-done { opacity: 1; }
.cm-stack-bar {
    position: absolute; left: 0; top: 0; width: 3px; height: 0%;
    background: var(--cm-accent); transition: none;
}
.cm-stack-item.item-active .cm-stack-bar { height: 100%; transition: height 0.8s linear; }
.cm-stack-item.item-done .cm-stack-bar { height: 100%; }
.cm-stack-num { font-family: 'Six Caps', sans-serif; font-size: 1.6rem; line-height: 1; color: var(--cm-accent-dim); flex-shrink: 0; width: 32px; padding-left: 12px; transition: color 0.4s ease; }
.cm-stack-item.item-active .cm-stack-num, .cm-stack-item.item-done .cm-stack-num { color: var(--cm-accent); }
.cm-stack-label { font-family: 'Cormorant Garamond', serif; font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--cm-text-dim); transition: color 0.4s ease; }
.cm-stack-item.item-active .cm-stack-label, .cm-stack-item.item-done .cm-stack-label { color: var(--cm-text); }
@media (max-width: 900px) { .cm-stack-compare { grid-template-columns: 1fr; gap: 40px; } }

/* ══════════════════════════════════════════════════════════════
   ★ ARCHITECTURAL INTELLIGENCE — Selector + Detail Panel
══════════════════════════════════════════════════════════════ */
.cm-arch-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 40px; border: 1px solid var(--cm-border); }
.cm-arch-nav { border-right: 1px solid var(--cm-border); }
.cm-arch-nav-item {
    display: flex; align-items: center; gap: 16px; padding: 24px 28px;
    border-bottom: 1px solid var(--cm-border); cursor: pointer;
    position: relative; transition: all 0.3s ease;
}
.cm-arch-nav-item:last-child { border-bottom: none; }
.cm-arch-nav-item:hover { background: rgba(233,215,180,0.03); }
.cm-arch-nav-item.active { background: rgba(233,215,180,0.06); }
.cm-arch-nav-bar { position: absolute; left: 0; top: 0; width: 3px; height: 100%; background: transparent; transition: background 0.3s ease; }
.cm-arch-nav-item.active .cm-arch-nav-bar { background: var(--cm-accent); }
.cm-arch-nav-num { font-family: 'Six Caps', sans-serif; font-size: 1.6rem; line-height: 1; color: var(--cm-accent-dim); flex-shrink: 0; transition: color 0.3s ease; }
.cm-arch-nav-item.active .cm-arch-nav-num { color: var(--cm-accent); }
.cm-arch-nav-label { font-family: 'Cormorant Garamond', serif; font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--cm-text-dim); transition: color 0.3s ease; line-height: 1.4; }
.cm-arch-nav-item.active .cm-arch-nav-label { color: var(--cm-text); }
.cm-arch-panels { padding: 36px 40px; display: flex; align-items: flex-start; }
.cm-arch-panel { display: none; opacity: 0; transition: opacity 0.4s ease; }
.cm-arch-panel.active { display: block; opacity: 1; }
.cm-arch-panel h4 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 400; color: var(--cm-text); margin-bottom: 16px; line-height: 1.3; }
.cm-arch-panel p { font-size: 15px; line-height: 1.9; color: var(--cm-text-dim); }
@media (max-width: 900px) { .cm-arch-selector { grid-template-columns: 1fr; } .cm-arch-nav { border-right: none; border-bottom: 1px solid var(--cm-border); display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; } .cm-arch-nav::-webkit-scrollbar { display: none; } .cm-arch-nav-item { flex-shrink: 0; border-bottom: none; border-right: 1px solid var(--cm-border); padding: 14px 16px; flex-direction: column; gap: 4px; } .cm-arch-nav-item:last-child { border-right: none; } .cm-arch-nav-bar { left: 0; top: auto; bottom: 0; width: 100%; height: 3px; } .cm-arch-nav-num { font-size: 1.2rem; } .cm-arch-nav-label { font-size: 0.75rem; line-height: 1.25; } .cm-arch-panels { padding: 24px 18px; } .cm-arch-panel p { font-size: 14px; line-height: 1.75; } }
@media (max-width: 600px) { .cm-arch-selector { margin-top: 28px; } .cm-arch-nav-item { padding: 10px 12px; min-width: 100px; } .cm-arch-nav-label { font-size: 0.7rem; } .cm-arch-panels { padding: 20px 14px; } .cm-arch-panel h4 { font-size: 1.2rem; margin-bottom: 10px; } .cm-arch-panel p { font-size: 13px; line-height: 1.7; } }
.cm-arch-moat { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 300; line-height: 1.3; color: var(--cm-text); }
.cm-arch-moat em { color: var(--cm-accent); font-style: italic; }

/* ★ Arch panel background image (crossfade on switch) */

/* ══════════════════════════════════════════════════════════════
   ★ CRUCIBLE SUBTITLE — Professional design below heading
══════════════════════════════════════════════════════════════ */
/* ── COMPOUNDED typed line ─────────────────────────────────── */
.cm-compounded-line {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    margin-top: 16px;
}
.cm-compounded-dots {
    color: var(--cm-text-dim);
    letter-spacing: 0.15em;
}

.cm-crucible-subtitle {
    margin-top: 40px;
    max-width: 640px;
}
.cm-crucible-rule {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, #7ab0cc, transparent);
    margin-bottom: 20px;
}
.cm-crucible-subtitle p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--cm-text-dim);
    margin: 0;
}

/* ── Metallic text on em/span — override inherited colors ── */
em[class*="cm-metal-"],
span[class*="cm-metal-"],
h1 [class*="cm-metal-"],
h2 [class*="cm-metal-"] {
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}
.cm-arch-bg-img {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 0.7s ease;
    pointer-events: none;
}
.cm-arch-bg-img.has-img { opacity: 0.08; }
.cm-arch-selector { position: relative; overflow: hidden; }
.cm-arch-nav, .cm-arch-panels { position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════════════════
   COMPOUND MINDS — INLINE STYLES MOVED TO EXTERNAL CSS
══════════════════════════════════════════════════════════════ */

/* ── Gold boxes for "learn" / "execute" ──────────────────────── */
.cm-gold-box {
    display: inline-block;
    padding: 6px 22px;
    margin: 0 4px;
    border: 1.5px solid rgba(233,215,180,0.7);
    border-radius: 3px;
    background: linear-gradient(135deg, 
        rgba(255,245,210,0.18) 0%, 
        rgba(233,215,180,0.10) 40%, 
        rgba(200,170,110,0.08) 60%,
        rgba(233,215,180,0.14) 100%);
    color: #e9d7b4;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: none;
    text-shadow: 0 0 20px rgba(233,215,180,0.4), 0 0 40px rgba(233,215,180,0.15);
    box-shadow:
        0 0 25px rgba(233,215,180,0.12),
        inset 0 0 15px rgba(233,215,180,0.06),
        0 0 50px rgba(233,215,180,0.06),
        0 1px 0 rgba(255,250,230,0.1);
    position: relative;
    overflow: hidden;
    animation: cm-gold-box-glow 3s ease-in-out infinite;
}
.cm-gold-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(105deg, transparent 30%, rgba(255,250,230,0.15) 45%, rgba(255,255,255,0.08) 50%, transparent 55%);
    transform: rotate(25deg);
    pointer-events: none;
    animation: cm-gold-shine 4s ease-in-out infinite;
}
.cm-gold-box::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(255,245,210,0.2), transparent 40%, transparent 60%, rgba(255,245,210,0.12));
    pointer-events: none;
    z-index: -1;
}
@keyframes cm-gold-box-glow {
    0%, 100% { box-shadow: 0 0 25px rgba(233,215,180,0.1), inset 0 0 15px rgba(233,215,180,0.05), 0 0 50px rgba(233,215,180,0.04); border-color: rgba(233,215,180,0.55); }
    50%      { box-shadow: 0 0 40px rgba(233,215,180,0.2), inset 0 0 22px rgba(233,215,180,0.08), 0 0 70px rgba(233,215,180,0.08); border-color: rgba(233,215,180,0.85); }
}
@keyframes cm-gold-shine {
    0%, 100% { left: -60%; opacity: 0.6; }
    50%      { left: 120%; opacity: 1; }
}
/* Swap animation words */
/* Swap word inner styling */
.cm-swap-word {
    display: inline-block;
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateY(8px);
    white-space: nowrap;
}
.cm-swap-word.cm-swap-active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   ★ TRAINING HEADER — Two-column layout
══════════════════════════════════════════════════════════════ */
.cm-train-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 48px;
}
.cm-train-header-left { text-align: left; }
.cm-train-header-right {
    padding-top: 48px;
}
@media (max-width: 900px) {
    .cm-train-header { grid-template-columns: 1fr; gap: 32px; }
    .cm-train-header-right { padding-top: 0; }
}

/* ── Training strip with progress bar ─────────────────────────── */
.cm-train-strip {
    position: relative;
    width: 100%;
}
.cm-train-strip .cm-train-cards {
    display: flex;
    gap: 0;
    width: 100%;
}
.cm-train-strip .cm-train-card {
    flex: 1;
    position: relative;
    opacity: 0.35;
    cursor: pointer;
    transition: opacity 0.6s ease, filter 0.6s ease;
    filter: brightness(0.5);
    cursor: pointer;
}
.cm-train-strip .cm-train-card.active {
    opacity: 1;
    filter: brightness(1);
}
.cm-train-strip .cm-train-card .cm-train-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.cm-train-strip .cm-train-card .cm-train-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,26,40,0.8) 0%, transparent 60%);
}
.cm-train-strip .cm-train-card .cm-train-img-label {
    position: absolute;
    bottom: 14px;
    left: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(233,215,180,0.5);
    transition: color 0.4s ease;
}
.cm-train-strip .cm-train-card.active .cm-train-img-label {
    color: rgba(233,215,180,0.85);
}
/* Progress bar */
.cm-train-progress {
    height: 3px;
    background: rgba(233,215,180,0.06);
    position: relative;
    width: 100%;
}
.cm-train-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(233,215,180,0.5), rgba(233,215,180,0.8));
    width: 0%;
    transition: width 0.4s ease;
    box-shadow: 0 0 8px rgba(233,215,180,0.15);
}
/* ★ Description panel: left-aligned with gold accent bar */
.cm-train-desc-panel {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    max-width: 700px;
    min-height: 220px;
    align-items: stretch;
}
.cm-train-desc-bar {
    width: 3px;
    flex-shrink: 0;
    background: var(--cm-accent);
    opacity: 0.5;
    border-radius: 2px;
}
.cm-train-desc-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cm-train-desc-label {
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--cm-accent);
    font-weight: 500;
    transition: opacity 0.3s ease;
}
.cm-train-desc-panel p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 300;
    line-height: 1.75;
    color: var(--cm-text-dim);
    text-align: left;
    transition: opacity 0.4s ease;
    margin: 0;
}

/* Legacy centered desc (deprecated) */
.cm-train-desc {
    margin-top: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    min-height: 80px;
}
.cm-train-desc p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--cm-text, rgba(224,230,237,0.75));
    text-align: center;
    transition: opacity 0.4s ease;
}


/* ══════════════════════════════════════════════════════════════
   ★ GREAT DIVERGENCE — Multi-line typewriter
══════════════════════════════════════════════════════════════ */
.cm-divergence-line {
    min-height: 1.2em;
    margin-bottom: 16px;
}
.cm-divergence-line1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 300;
    line-height: 1.4;
    color: var(--cm-text);
}
.cm-divergence-line2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--cm-text-dim);
}
.cm-divergence-line3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--cm-accent);
    margin-bottom: 24px;
}


/* ══════════════════════════════════════════════════════════════
   ★ SCROLL-DRIVEN WORD REVEAL — Applied Learning
══════════════════════════════════════════════════════════════ */
.cm-word-reveal {
    position: relative;
}
.cm-reveal-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--cm-text);
    text-align: left;
}
.cm-reveal-text .cm-word {
    display: inline;
    color: var(--cm-text-lo);
    transition: color 0.35s ease;
}
.cm-reveal-text .cm-word.cm-word-lit {
    color: var(--cm-text);
}
/* Accent certain words */
.cm-reveal-text .cm-word.cm-word-accent.cm-word-lit {
    color: #f5d98e;
}


/* ── Typewriter cursor blink ──────────────────────────────── */
@keyframes cm-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


/* ══════════════════════════════════════════════════════════════
   GAME GRID
══════════════════════════════════════════════════════════════ */
.cm-game-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border: 1px solid var(--cm-border); margin-top: 12px; }
.cm-game-cell { padding: 16px 14px; border-right: 1px solid var(--cm-border); border-bottom: 1px solid var(--cm-border); font-family: 'Cormorant Garamond', serif; font-size: clamp(0.8rem, 1.1vw, 0.95rem); color: var(--cm-text-dim); line-height: 1.4; transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease, border-color 0.3s ease; cursor: default; }
.cm-game-cell:nth-child(6n) { border-right: none; }
.cm-game-cell:nth-last-child(-n+6) { border-bottom: none; }
.cm-game-cell:hover { background: rgba(233,215,180,0.04); color: var(--cm-text); }
@media (max-width: 1100px) { .cm-game-grid { grid-template-columns: repeat(3, 1fr); } .cm-game-cell:nth-child(6n) { border-right: 1px solid var(--cm-border); } .cm-game-cell:nth-child(3n) { border-right: none; } .cm-game-cell:nth-last-child(-n+6) { border-bottom: 1px solid var(--cm-border); } .cm-game-cell:nth-last-child(-n+3) { border-bottom: none; } .cm-game-cell { padding: 14px 12px; } }
@media (max-width: 600px) { .cm-game-grid { grid-template-columns: repeat(2, 1fr); } .cm-game-cell:nth-child(3n) { border-right: 1px solid var(--cm-border); } .cm-game-cell:nth-child(2n) { border-right: none; } .cm-game-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--cm-border); } .cm-game-cell:nth-last-child(-n+2) { border-bottom: none; } }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.cm-btn { display: inline-flex; align-items: center; gap: 14px; border: 1px solid var(--cm-border-hi); padding: 16px 40px; text-decoration: none; transition: all 0.28s ease; background: transparent; }
.cm-btn:hover { background: var(--cm-accent); border-color: var(--cm-accent); }
.cm-btn span { font-size: 10.5px; letter-spacing: 0.35em; text-transform: uppercase; font-family: 'Poppins', sans-serif; font-weight: 500; color: var(--cm-text); transition: color 0.28s ease; }
.cm-btn svg { width: 10px; height: 10px; color: var(--cm-accent); transition: color 0.28s ease; }
.cm-btn:hover span, .cm-btn:hover svg { color: var(--cm-bg) !important; }

/* ── DIVIDER / FOOTER / PRELOADER ─────────────────────────── */
.cm-divider { height: 1px; background: linear-gradient(to right, transparent, rgba(233,215,180,0.3), transparent); }
footer { display: none !important; height: 0 !important; padding: 0 !important; margin: 0 !important; }
footer .copyright, footer .copyright a { color: rgba(224,230,237,0.28) !important; }
footer .copyright small, footer .copyright small font { color: rgba(224,230,237,0.16) !important; }
.preloader-wrap { background: #080e16 !important; }
.trackbar { background: transparent !important; clip-path: none !important; }
.trackbar::before { display: none; }
.loadbar, .preloader-intro, .percentage-wrapper, .percentage-intro { display: none !important; }
.preloader-wrap.tmc-revealing {
    -webkit-mask-image: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
    -webkit-mask-size: 100% 100%, var(--rw, 0%) var(--rh, 0%);
    -webkit-mask-position: center, center; -webkit-mask-repeat: no-repeat;
    -webkit-mask-composite: xor;
    mask-image: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
    mask-size: 100% 100%, var(--rw, 0%) var(--rh, 0%);
    mask-position: center, center; mask-repeat: no-repeat; mask-composite: exclude;
}

/* ── SECTION TITLE ────────────────────────────────────────── */
.cm-section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4.5vw, 4.5rem); font-weight: 300; line-height: 1.1; color: var(--cm-text); }
.cm-section-subtitle { font-size: 15px; line-height: 1.9; color: var(--cm-text-dim); max-width: 520px; margin-top: 20px; }
.cm-section-rule-wrap { margin-top: 24px; max-width: 560px; }
.cm-section-rule { width: 60px; height: 1px; margin-bottom: 16px; }

/* ── TEXTURE ──────────────────────────────────────────────── */
.cm-texture-bg { position: absolute; inset: 0; background-image: url('../images/contor-lines.png'); background-repeat: repeat; background-size: auto; opacity: 0.02; pointer-events: none; z-index: 1; }
.cm-texture-bg ~ * { position: relative; z-index: 2; }

/* ══════════════════════════════════════════════════════════════
   SECTION VIDEO CONTAINERS — Simple, clean video before sections
══════════════════════════════════════════════════════════════ */
.cm-video-container {
    padding: 0;
    margin: 0;
    width: 100%;
    display: block;
    background: #080e16;
    position: relative;
    z-index: 1;
}
.cm-video-act-label {
    font-family: 'Poppins', sans-serif;
    font-variant: small-caps;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: rgba(224,230,237,0.4);
    text-align: center;
    padding: 16px 0;
    position: relative;
    z-index: 2;
}
.cm-video-blue .cm-video-act-label { color: rgba(122,176,204,0.5); }
.cm-video-emerald .cm-video-act-label { color: rgba(88,200,138,0.5); }
.cm-video-gold .cm-video-act-label { color: rgba(233,215,180,0.5); }
/* The video container */
.cm-video-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #080e16;
    box-sizing: border-box;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}
/* Section-colored top/bottom lines */
.cm-video-blue .cm-video-wrap {
    box-shadow: inset 0 3px 0 rgba(122,176,204,0.3), inset 0 -3px 0 rgba(122,176,204,0.3);
}
.cm-video-emerald .cm-video-wrap {
    box-shadow: inset 0 3px 0 rgba(88,200,138,0.3), inset 0 -3px 0 rgba(88,200,138,0.3);
}
.cm-video-gold .cm-video-wrap {
    box-shadow: inset 0 3px 0 rgba(233,215,180,0.3), inset 0 -3px 0 rgba(233,215,180,0.3);
}
.cm-video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
    background: #080e16;
}
/* Historical Pattern video (no ACT label) */
.cm-video-container:not(.cm-video-blue):not(.cm-video-emerald):not(.cm-video-gold) .cm-video-wrap {
    box-shadow: none;
}
/* ── Video play overlay with throbbing button ── */
.cm-video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    pointer-events: auto;
    cursor: pointer;
    color: rgba(233,215,180,0.7);
    transition: opacity 0.5s ease;
}
.cm-video-play-overlay svg {
    width: 64px;
    height: 64px;
    animation: cm-throb 2s ease-in-out infinite;
}
@keyframes cm-throb {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.12); opacity: 1; }
}

/* ── Myth box pulse animation ── */
@keyframes cm-box-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(233,215,180,0); }
    50% { box-shadow: 0 0 12px 2px rgba(233,215,180,0.15); }
}
.cm-not-box {
    animation: cm-box-pulse 2.5s ease-in-out infinite;
}
.cm-not-box.revealed {
    animation: none;
}

/* ── Accel box emerald styling ── */
.cm-accel-box {
    border-color: rgba(88,200,138,0.3) !important;
    animation: cm-box-pulse-emerald 2.5s ease-in-out infinite;
}
.cm-accel-box:hover {
    border-color: #58c88a !important;
    background: rgba(88,200,138,0.06) !important;
}
.cm-accel-box .cm-not-box-word {
    color: #58c88a;
}
.cm-accel-box.revealed {
    animation: none;
    border-color: #58c88a !important;
    border-style: solid !important;
    background: rgba(88,200,138,0.08) !important;
}
@keyframes cm-box-pulse-emerald {
    0%, 100% { box-shadow: 0 0 0 0 rgba(88,200,138,0); }
    50% { box-shadow: 0 0 12px 2px rgba(88,200,138,0.15); }
}

/* ── Compound Divide card headers (text instead of Roman numerals) ── */
#cm-nav-divergence .cm-act-num {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-variant: small-caps;
    font-weight: 400;
    letter-spacing: 0.08em;
}
#cm-nav-divergence .cm-act-title {
    color: rgba(224,230,237,0.4);
}
#cm-nav-divergence .cm-act-reveal {
    margin-bottom: 40px;
}
.cm-act-reveal {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(.25,.46,.45,.94), opacity 0.5s ease, margin 0.5s ease;
    opacity: 0;
    margin-top: 0;
}
.cm-act-reveal.visible {
    max-height: 300px;
    opacity: 1;
    margin-top: 20px;
}
.cm-act-reveal-inner {
    border-left: 2px solid var(--act-color);
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.02), transparent);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    font-style: italic;
    line-height: 1.8;
    color: rgba(224,230,237,0.55);
}
/* ── Resources/Education underline animation ── */
@keyframes cm-underline-draw {
    from { width: 0; }
    to { width: 100%; }
}
.cm-highlight-word {
    position: relative;
    display: inline;
}
.cm-highlight-word::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 1px;
    width: 0;
    background: #7ab0cc;
}
.cm-highlight-word.animating::after {
    animation: cm-underline-draw 0.8s ease forwards;
}
/* ── Carousel slide phrase highlights ── */
.cm-carousel-highlight {
    position: relative;
    display: inline;
    transition: opacity 0.8s ease, color 0.5s ease;
}
.cm-carousel-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 1px;
    width: 0;
    background: #7ab0cc;
}
.cm-carousel-highlight.phase-out {
    opacity: 0;
}
.cm-carousel-highlight.phase-in {
    opacity: 1;
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(90deg, #4a7a9f, #7ab0cc, #e8f4fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cm-carousel-highlight.phase-in::after {
    animation: cm-underline-draw 0.8s ease forwards;
}
/* ── Section phrase highlights (scroll-triggered) ── */
.cm-section-highlight {
    position: relative;
    display: inline;
    transition: opacity 0.8s ease, color 0.5s ease;
}
.cm-section-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 1px;
    width: 0;
}
.cm-section-highlight.phase-out {
    opacity: 0;
}
.cm-hl-blue.phase-in {
    opacity: 1;
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(90deg, #4a7a9f, #7ab0cc, #e8f4fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cm-hl-blue.phase-in::after {
    background: #7ab0cc;
    animation: cm-underline-draw 0.8s ease forwards;
}
.cm-hl-emerald.phase-in {
    opacity: 1;
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(90deg, #2e9a5c, #58c88a, #a0f0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cm-hl-emerald.phase-in::after {
    background: #58c88a;
    animation: cm-underline-draw 0.8s ease forwards;
}
.cm-hl-gold.phase-in {
    opacity: 1;
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(90deg, #c5973e, #e9d7b4, #f5d98e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cm-hl-gold.phase-in::after {
    background: #e9d7b4;
    animation: cm-underline-draw 0.8s ease forwards;
}
/* ── Future interactive boxes ── */
.cm-future-box {
    border-color: rgba(233,215,180,0.3) !important;
    animation: cm-box-pulse 2.5s ease-in-out infinite;
    padding: 6px 14px !important;
}
.cm-future-box:hover {
    border-color: #e9d7b4 !important;
    background: rgba(233,215,180,0.06) !important;
}
.cm-future-box .cm-not-box-word {
    color: #e9d7b4;
    background: linear-gradient(90deg, #c5973e, #e9d7b4, #f5d98e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}
.cm-future-box.revealed {
    animation: none;
    border-color: #e9d7b4 !important;
    border-style: solid !important;
    background: rgba(233,215,180,0.08) !important;
}

/* ══════════════════════════════════════════════════════════════
   CM TRIPLE CHEVRON — Masked background synced to carousel
══════════════════════════════════════════════════════════════ */
.cm-chevron-bg {
    position: absolute;
    right: -5%;
    top: 25%;
    width: 75%;
    max-width: 1100px;
    aspect-ratio: 1500 / 788;
    pointer-events: none;
    user-select: none;
    cursor: default;
    -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDc4OCIgd2lkdGg9IjE1MDAiIGhlaWdodD0iNzg4Ij4KICA8cG9seWdvbiBwb2ludHM9IjMwLDMwIDI4MCwzMCA0ODAsMzk0IDI4MCw3NTggMzAsNzU4IDIzMCwzOTQiIGZpbGw9IndoaXRlIi8+CiAgPHBvbHlnb24gcG9pbnRzPSIzODAsMzAgNjMwLDMwIDgzMCwzOTQgNjMwLDc1OCAzODAsNzU4IDU4MCwzOTQiIGZpbGw9IndoaXRlIi8+CiAgPHBvbHlnb24gcG9pbnRzPSI3MzAsMzAgOTgwLDMwIDExODAsMzk0IDk4MCw3NTggNzMwLDc1OCA5MzAsMzk0IiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
            mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTAwIDc4OCIgd2lkdGg9IjE1MDAiIGhlaWdodD0iNzg4Ij4KICA8cG9seWdvbiBwb2ludHM9IjMwLDMwIDI4MCwzMCA0ODAsMzk0IDI4MCw3NTggMzAsNzU4IDIzMCwzOTQiIGZpbGw9IndoaXRlIi8+CiAgPHBvbHlnb24gcG9pbnRzPSIzODAsMzAgNjMwLDMwIDgzMCwzOTQgNjMwLDc1OCAzODAsNzU4IDU4MCwzOTQiIGZpbGw9IndoaXRlIi8+CiAgPHBvbHlnb24gcG9pbnRzPSI3MzAsMzAgOTgwLDMwIDExODAsMzk0IDk4MCw3NTggNzMwLDc1OCA5MzAsMzk0IiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    opacity: 0.08;
    transition: opacity 0.8s ease;
}
.cm-chevron-bg.has-active { opacity: 0.35; }
.cm-chevron-bg .chev-default {
    position: absolute; inset: 0;
    background: linear-gradient(145deg, var(--cm-accent), rgba(233,215,180,0.15));
    transition: opacity 0.6s ease;
}
.cm-chevron-bg.has-active .chev-default { opacity: 0; }
.cm-chevron-bg .chev-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    opacity: 0; transition: opacity 0.7s ease;
}
.cm-chevron-bg .chev-img.visible { opacity: 1; }
@media (max-width: 900px) {
    .cm-chevron-bg { width: 100%; right: -10%; top: 30%; bottom: auto; opacity: 0.08; }
    .cm-chevron-bg.has-active { opacity: 0.25; }
}

/* ══════════════════════════════════════════════════════════════
   ★ Sector pills — compact row above game grid
══════════════════════════════════════════════════════════════ */
.cm-sector-row { display: flex; gap: 8px; margin: 24px 0 6px; flex-wrap: wrap; }
.cm-sector-pill {
    display: flex; align-items: center; gap: 7px;
    padding: 6px 14px; cursor: pointer;
    border: 1px solid rgba(233,215,180,0.08); border-radius: 2px;
    transition: all 0.3s ease; user-select: none;
}
.cm-sector-pill:hover, .cm-sector-pill.sector-active {
    border-color: var(--sector-color); background: color-mix(in srgb, var(--sector-color) 8%, transparent);
}
.cm-sector-dot {
    width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
    background: var(--sector-color); opacity: 0.35; transition: opacity 0.3s ease;
}
.cm-sector-pill:hover .cm-sector-dot, .cm-sector-pill.sector-active .cm-sector-dot { opacity: 1; }
.cm-sector-label {
    font-family: 'Poppins', sans-serif; font-size: 8px; letter-spacing: 0.2em;
    text-transform: uppercase; font-weight: 500; color: var(--cm-text-dim);
    transition: color 0.3s ease;
}
.cm-sector-pill:hover .cm-sector-label, .cm-sector-pill.sector-active .cm-sector-label { color: var(--sector-color); }

/* Legend for dashed/solid */
.cm-sector-legend { display: flex; gap: 24px; margin: 8px 0 0; }
.cm-legend-item { display: flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; font-size: 7.5px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cm-text-lo); font-weight: 400; }
.cm-legend-line { display: inline-block; width: 24px; height: 0; border-top: 2px solid var(--cm-accent-dim); }
.cm-legend-line.cm-legend-dashed { border-top-style: dashed; }

/* Grid cell highlight states */
.cm-game-grid.has-hover .cm-game-cell { opacity: 0.2; transition: opacity 0.3s ease, color 0.3s ease, background 0.3s ease, outline-color 0.3s ease; }
.cm-game-grid.has-hover .cm-game-cell.cell-lit {
    opacity: 1;
    color: var(--lit-color, var(--cm-text));
    background: color-mix(in srgb, var(--lit-color, var(--cm-accent)) 6%, transparent);
}
.cm-game-grid.has-hover .cm-game-cell.cell-lit.cell-real {
    outline: 2px solid var(--lit-color, var(--cm-accent));
    outline-offset: -2px;
}
.cm-game-grid.has-hover .cm-game-cell.cell-lit.cell-sim {
    outline: 2px dashed var(--lit-color, var(--cm-accent));
    outline-offset: -2px;
    background: color-mix(in srgb, var(--lit-color, var(--cm-accent)) 3%, transparent);
}
.cm-game-cell.cell-self-hover { opacity: 1 !important; }
@supports not (color: color-mix(in srgb, red 50%, blue)) {
    .cm-sector-pill:hover, .cm-sector-pill.sector-active { background: rgba(233,215,180,0.06); }
    .cm-game-grid.has-hover .cm-game-cell.cell-lit { background: rgba(233,215,180,0.06); }
    .cm-game-grid.has-hover .cm-game-cell.cell-lit.cell-sim { background: rgba(233,215,180,0.03); }
}


/* ══════════════════════════════════════════════════════════════
   ★ HERO SUBTITLE & TAGLINE — Enhanced readability
══════════════════════════════════════════════════════════════ */
#hero-sub-block,
#hero-sub-block *,
.hero-subtitle,
#hero-sub-block .cm-hero-subtitle {
    opacity: 1 !important;
    visibility: visible !important;
}
.cm-hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(1.6rem, 3.2vw, 2.8rem);
    color: rgba(233,215,180,1.0) !important;
    opacity: 1 !important;
    line-height: 1.5;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.9), 0 0 80px rgba(0,0,0,0.6);
    -webkit-text-fill-color: rgba(233,215,180,1.0) !important;
}
/* ── TICKER BAR — scrolling text below hero ───────────────── */
.cm-ticker {
    width: 100%;
    overflow: hidden;
    background: rgba(12,20,29,0.95);
    border-top: 1px solid rgba(233,215,180,0.08);
    border-bottom: 1px solid rgba(233,215,180,0.08);
    padding: 12px 0;
    position: relative;
    z-index: 5;
    contain: content;
}
.cm-ticker-track {
    display: flex;
    white-space: nowrap;
    animation: cm-ticker-scroll 22s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.cm-ticker-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(233,215,180,0.85);
    flex-shrink: 0;
}
@keyframes cm-ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes cm-ticker-scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.cm-ticker-reverse {
    animation: cm-ticker-scroll-reverse 26s linear infinite !important;
}
.cm-ticker-double {
    padding: 8px 0;
}
.cm-ticker-double .cm-ticker-track {
    margin: 3px 0;
}

.cm-hero-tagline {
    font-size: 14px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(233,215,180,1.0);
    line-height: 2.2;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}

/* ══════════════════════════════════════════════════════════════
   ★ SCROLL CARETS — Gold metallic + sparkle
══════════════════════════════════════════════════════════════ */
.cm-gold-caret {
    width: 1em; height: 1em;
    display: inline-block; vertical-align: -0.125em;
    fill: var(--cm-accent);
    filter: drop-shadow(0 0 6px rgba(233,215,180,0.3));
    transition: filter 0.3s ease, transform 0.3s ease;
}
.scroll-down:hover .cm-gold-caret {
    filter: drop-shadow(0 0 12px rgba(233,215,180,0.6)) drop-shadow(0 0 30px rgba(255,251,224,0.3));
    transform: scale(1.15);
}
/* "scroll" text visibility */
.scroll-down .button-text span {
    color: rgba(233,215,180,0.55) !important;
    font-size: 9px !important;
    letter-spacing: 0.3em !important;
    text-transform: uppercase !important;
}

/* ══════════════════════════════════════════════════════════════
   ★ METALLIC TEXT — Reusable gradient classes
══════════════════════════════════════════════════════════════ */
.cm-metal-gold {
    background: linear-gradient(170deg, #462502 0%, #9b6e2c 14%, #d4a94c 26%, #f5d98e 36%, #fffbe0 42%, #f5d98e 48%, #c5973e 58%, #9b6e2c 68%, #d4a94c 76%, #fffbe0 82%, #f5d98e 88%, #7a4b12 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cm-metal-shimmer 5s ease-in-out infinite;
    position: relative;
}
.cm-metal-emerald {
    background: linear-gradient(170deg, #0a2e1a 0%, #1a6a3c 14%, #2e9a5c 28%, #58c88a 38%, #a0f0c0 44%, #58c88a 50%, #2e9a5c 60%, #1a6a3c 70%, #3aaa6c 80%, #a0f0c0 86%, #145a30 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cm-metal-shimmer 5s ease-in-out infinite;
    position: relative;
}
.cm-metal-red {
    background: linear-gradient(170deg, #4a1010 0%, #8b2e2e 14%, #cc5c5c 28%, #e88080 38%, #f0b0b0 44%, #e88080 50%, #cc5c5c 60%, #8b2e2e 70%, #d06868 80%, #f0b0b0 86%, #6a1a1a 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cm-metal-shimmer 5s ease-in-out infinite;
    position: relative;
}
.cm-metal-blue {
    background: linear-gradient(170deg, #1a3a5c 0%, #4a7a9f 18%, #7ab0cc 32%, #b8dce8 42%, #e8f4fa 48%, #7ab0cc 56%, #4a7a9f 68%, #7ab0cc 78%, #c5e4f0 86%, #3a6a8f 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cm-metal-shimmer 5s ease-in-out infinite;
    position: relative;
}
.cm-metal-platinum {
    background: linear-gradient(170deg, #3a3a40 0%, #7a7a82 14%, #a8a8b0 28%, #d0d0d8 38%, #f0f0f5 44%, #e0e0e8 50%, #a8a8b0 60%, #8a8a92 70%, #c0c0c8 80%, #f0f0f5 86%, #6a6a72 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cm-metal-shimmer 5s ease-in-out infinite;
    position: relative;
}
@keyframes cm-metal-shimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 60% 60%; }
    100% { background-position: 0% 50%; }
}
/* GPU acceleration for all shimmer animations */
[class*="cm-metal-"] {
    will-change: background-position;
    transform: translateZ(0);
}

/* Metallic gold for inline text (non-eyebrow) */
.cm-metal-gold-text {
    background: linear-gradient(170deg, #462502 0%, #9b6e2c 14%, #d4a94c 26%, #f5d98e 36%, #fffbe0 42%, #f5d98e 48%, #c5973e 58%, #9b6e2c 68%, #d4a94c 76%, #fffbe0 82%, #f5d98e 88%, #7a4b12 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cm-metal-shimmer 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(197,151,62,0.3));
}

/* ★ Eyebrow hover: flashlight sweep */
.cm-eyebrow[class*="cm-metal-"] {
    display: inline-block;
    overflow: hidden;
    transition: filter 0.3s ease;
}
.cm-eyebrow[class*="cm-metal-"]::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.2) 45%, rgba(255,255,255,0.3) 50%, transparent 55%);
    pointer-events: none;
    transition: none;
}
.cm-eyebrow[class*="cm-metal-"]:hover::after {
    left: 150%;
    transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.cm-eyebrow[class*="cm-metal-"]:hover {
    filter: drop-shadow(0 0 8px rgba(233,215,180,0.3));
}

/* ══════════════════════════════════════════════════════════════
   ★ "MORE" WORDS — Metallic + staggered fade-in
══════════════════════════════════════════════════════════════ */
.cm-more-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}
.cm-more-word.cm-more-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   ★ "FAST." — Bigger, gold metallic
══════════════════════════════════════════════════════════════ */
.cm-divergence-fast {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.15s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cm-divergence-fast.visible {
    opacity: 1;
    transform: scale(1);
}

/* ══════════════════════════════════════════════════════════════
   ★ ROTATING WORDS — "Baseline / Threshold / Minimum..." 
══════════════════════════════════════════════════════════════ */
.cm-rotate-wrap {
    display: inline-block;
    position: relative;
    vertical-align: baseline;
    min-width: 140px;
}
.cm-rotate-word {
    display: inline-block;
    position: absolute;
    left: 0;
    opacity: 0;
    font-style: italic;
    font-weight: 400;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateY(8px);
    white-space: nowrap;
}
.cm-rotate-word.cm-rotate-active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   ★ FOOTNOTE
══════════════════════════════════════════════════════════════ */
.cm-footnote {
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid var(--cm-border);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--cm-text-lo);
}
.cm-footnote-label {
    text-transform: uppercase;
    margin-right: 12px;
}
.cm-footnote a {
    color: var(--cm-accent-dim);
    text-decoration: none;
    transition: color 0.25s ease;
    text-transform: none;
    letter-spacing: 0.02em;
}
.cm-footnote a:hover { color: var(--cm-accent); }
.cm-footnote-sep { margin: 0 8px; color: var(--cm-text-lo); }

/* ══════════════════════════════════════════════════════════════
   ★ STATEMENT SWAP — Fix formatting
══════════════════════════════════════════════════════════════ */
.cm-statement-text .cm-swap-word {
    font-style: italic;
    color: var(--cm-accent);
}

/* ══════════════════════════════════════════════════════════════
   ★ APPLIED LEARNING — Highlight line
══════════════════════════════════════════════════════════════ */
.cm-reveal-highlight {
    margin-top: 32px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-weight: 300;
    line-height: 1.5;
}
.cm-reveal-highlight em {
    font-style: italic;
    background: linear-gradient(170deg, #462502 0%, #9b6e2c 14%, #d4a94c 28%, #f5d98e 38%, #fffbe0 44%, #f5d98e 50%, #c5973e 58%, #9b6e2c 68%, #d4a94c 78%, #fffbe0 86%, #7a4b12 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cm-metal-shimmer 5s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════════
   ★ PRELOADER — Force hide after timeout
══════════════════════════════════════════════════════════════ */
.preloader-force-hide {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.5s ease, visibility 0.5s ease !important;
}

/* ══════════════════════════════════════════════════════════════
   ★ SECTION-SCOPED ACCENT OVERRIDES
   Each section's UI chrome (borders, bars, glows) matches its eyebrow
══════════════════════════════════════════════════════════════ */

/* ── NEW DIVERGENCE (blue) ──────────────────────────────────── */
#cm-section-divergence .cm-not-box {
    border-color: rgba(122,176,204,0.3);
    background: rgba(122,176,204,0.03);
}
#cm-section-divergence .cm-not-box:hover {
    border-color: #7ab0cc;
    background: rgba(122,176,204,0.06);
}
#cm-section-divergence .cm-not-box.revealed {
    border-color: #7ab0cc;
    background: rgba(122,176,204,0.08);
}
#cm-section-divergence .cm-not-box-word {
    background: linear-gradient(170deg, #1a3a5c 0%, #4a7a9f 18%, #7ab0cc 32%, #b8dce8 42%, #e8f4fa 48%, #7ab0cc 56%, #4a7a9f 68%, #7ab0cc 78%, #c5e4f0 86%, #3a6a8f 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cm-metal-shimmer 5s ease-in-out infinite;
    color: transparent;
    font-weight: 600;
    font-style: italic;
}
#cm-section-divergence .cm-myth-container-inner {
    border-left-color: #7ab0cc;
    background: linear-gradient(135deg, rgba(122,176,204,0.04) 0%, rgba(12,20,29,0.6) 100%);
}
/* Emerald box overrides for AI Accelerates */
.cm-accel-box {
    border-color: rgba(88,200,138,0.3) !important;
    background: rgba(88,200,138,0.03) !important;
}
.cm-accel-box:hover {
    border-color: #58c88a !important;
    background: rgba(88,200,138,0.06) !important;
}
.cm-accel-box.revealed {
    border-color: #58c88a !important;
    background: rgba(88,200,138,0.08) !important;
}
.cm-accel-box .cm-not-box-word {
    background: linear-gradient(170deg, #1a5c3a 0%, #2e9a5c 18%, #58c88a 32%, #8ae8b8 42%, #a0f0c0 48%, #58c88a 56%, #2e9a5c 68%, #58c88a 78%, #8ae8b8 86%, #2e7a4f 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cm-metal-shimmer 5s ease-in-out infinite;
    color: transparent;
    font-weight: 600;
    font-style: italic;
}
#cm-section-divergence .cm-footnote a {
    color: rgba(122,176,204,0.6);
}
#cm-section-divergence .cm-footnote a:hover {
    color: #7ab0cc;
}
#cm-section-divergence #cm-myth-cursor {
    background: #7ab0cc !important;
}

/* ── NEW PREMIUM (emerald) ──────────────────────────────────── */
#cm-section-premium .cm-arch-nav-item.active .cm-arch-nav-bar {
    background: #2e9a5c;
}
#cm-section-premium .cm-arch-nav-item.active .cm-arch-nav-num {
    color: #58c88a;
}
#cm-section-premium .cm-arch-nav-item:hover {
    background: rgba(46,154,92,0.03);
}
#cm-section-premium .cm-arch-nav-item.active {
    background: rgba(46,154,92,0.06);
}
#cm-section-premium .cm-box-word {
    border-color: rgba(46,154,92,0.45);
    color: #58c88a;
}
#cm-section-premium .cm-box-word:hover {
    background: rgba(46,154,92,0.12);
    border-color: #58c88a;
}
#cm-section-premium .cm-slot {
    color: #58c88a;
    border-bottom-color: rgba(46,154,92,0.3);
}
#cm-section-premium .cm-slot.filled {
    border-bottom-color: #58c88a;
}
#cm-section-premium .cm-footnote a {
    color: rgba(46,154,92,0.5);
}
#cm-section-premium .cm-footnote a:hover {
    color: #58c88a;
}
#cm-section-premium .cm-arch-nav-num {
    color: rgba(46,154,92,0.5) !important;
}
#cm-section-premium .cm-arch-nav-item .cm-arch-nav-num {
    color: rgba(46,154,92,0.5) !important;
}
#cm-section-premium .cm-arch-nav-item.active .cm-arch-nav-num {
    color: #58c88a !important;
}
#cm-section-premium .cm-arch-nav-item .cm-arch-nav-label {
    color: rgba(46,154,92,0.4);
}
#cm-section-premium .cm-arch-nav-item.active .cm-arch-nav-label {
    color: rgba(224,230,237,0.7);
}

/* ══════════════════════════════════════════════════════════════
   ★ PRINTING PRESS CALLOUTS — Styled quote after each panel
══════════════════════════════════════════════════════════════ */
.cm-press-callout {
    margin-top: 20px;
    padding: 16px 24px;
    border-left: 2px solid rgba(46,154,92,0.3);
    background: linear-gradient(135deg, rgba(46,154,92,0.04) 0%, transparent 100%);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--cm-text-dim);
}
.cm-press-callout em {
    font-style: italic;
    color: rgba(88,200,138,0.8);
}
.cm-press-callout-links {
    display: block;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    letter-spacing: 0.15em;
}
.cm-press-callout-links a {
    color: rgba(46,154,92,0.5);
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}
.cm-press-callout-links a:hover {
    color: #58c88a;
}

/* ══════════════════════════════════════════════════════════════
   ★ PREMIUM CALLOUT — "In the AI era" styled band
══════════════════════════════════════════════════════════════ */
.cm-premium-callout {
    margin: 24px 0 36px;
    max-width: 560px;
}
.cm-premium-callout-inner {
    border-left: 3px solid #2e9a5c;
    background: linear-gradient(135deg, rgba(46,154,92,0.04) 0%, rgba(12,20,29,0.6) 100%);
    padding: 24px 32px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--cm-text-dim);
}

/* ══════════════════════════════════════════════════════════════
   ★ CAROUSEL STAGE — Fixed min-height to prevent jolt
══════════════════════════════════════════════════════════════ */
.cm-carousel-stage {
    position: relative;
    min-height: 340px;
    border-bottom: 1px solid var(--cm-border);
}
@media (max-width: 900px) {
    .cm-carousel-stage { min-height: 400px; }
}
@media (max-width: 600px) {
    .cm-carousel-stage { min-height: 480px; }
}

/* ══════════════════════════════════════════════════════════════
   ★ FOOTER — Professional link row
══════════════════════════════════════════════════════════════ */
.cm-footer-links {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(233,215,180,0.06);
    text-align: center;
    position: relative;
    z-index: 10;
}
.cm-footer-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(233,215,180,0.4) !important;
    text-decoration: none;
    transition: color 0.25s ease;
    cursor: pointer;
    pointer-events: auto;
}
.cm-footer-links a:hover {
    color: var(--cm-accent) !important;
}
.cm-footer-sep {
    margin: 0 12px;
    color: rgba(233,215,180,0.2);
    font-size: 10px;
}

/* ══════════════════════════════════════════════════════════════
   ★ FOOTNOTE COLORS — Match section eyebrows
══════════════════════════════════════════════════════════════ */
/* Gold sections (Essential Compounding, Applied Learning, The Future) */
[data-bgcolor="#141e28"] .cm-footnote a,
[data-bgcolor="#0e151e"] .cm-footnote a,
[data-bgcolor="#070c12"] .cm-footnote a,
[data-bgcolor="#0a1018"] .cm-footnote a {
    color: rgba(197,151,62,0.5);
}
[data-bgcolor="#141e28"] .cm-footnote-label,
[data-bgcolor="#0e151e"] .cm-footnote-label,
[data-bgcolor="#070c12"] .cm-footnote-label,
[data-bgcolor="#0a1018"] .cm-footnote-label {
    color: rgba(233,215,180,0.4);
}
[data-bgcolor="#141e28"] .cm-footnote-sep,
[data-bgcolor="#0e151e"] .cm-footnote-sep,
[data-bgcolor="#070c12"] .cm-footnote-sep,
[data-bgcolor="#0a1018"] .cm-footnote-sep {
    color: rgba(233,215,180,0.2);
}
[data-bgcolor="#141e28"] .cm-footnote,
[data-bgcolor="#0e151e"] .cm-footnote,
[data-bgcolor="#070c12"] .cm-footnote,
[data-bgcolor="#0a1018"] .cm-footnote {
    border-top-color: rgba(233,215,180,0.08);
}
[data-bgcolor="#141e28"] .cm-footnote a:hover,
[data-bgcolor="#0e151e"] .cm-footnote a:hover,
[data-bgcolor="#070c12"] .cm-footnote a:hover,
[data-bgcolor="#0a1018"] .cm-footnote a:hover {
    color: #f5d98e;
}
/* Blue sections (AI Disruption, Historical Pattern, Crucible) */
[data-bgcolor="#0c141d"] .cm-footnote a,
[data-bgcolor="#111e2b"] .cm-footnote a,
[data-bgcolor="#0b1a28"] .cm-footnote a {
    color: rgba(122,176,204,0.5);
}
[data-bgcolor="#0c141d"] .cm-footnote a:hover,
[data-bgcolor="#111e2b"] .cm-footnote a:hover,
[data-bgcolor="#0b1a28"] .cm-footnote a:hover {
    color: #7ab0cc;
}
/* Emerald sections (Compound Divide, New Premium, AI Accelerates) */
[data-bgcolor="#0a1018"] .cm-footnote a,
[data-bgcolor="#0f1520"] .cm-footnote a,
[data-bgcolor="#0a1220"] .cm-footnote a {
    color: rgba(46,154,92,0.5);
}
[data-bgcolor="#0a1018"] .cm-footnote a:hover,
[data-bgcolor="#0f1520"] .cm-footnote a:hover,
[data-bgcolor="#0a1220"] .cm-footnote a:hover {
    color: #58c88a;
}

/* ══════════════════════════════════════════════════════════════
   ★ SIDEBAR NAVIGATION — Logo stage icons + hover labels
══════════════════════════════════════════════════════════════ */
.cm-sidebar {
    position: fixed;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.cm-sidebar.visible {
    opacity: 1;
    pointer-events: auto;
}
/* Override Clapat's magic cursor in sidebar zone */
.cm-sidebar:hover ~ #magic-cursor,
.cm-sidebar * { cursor: pointer; }
.cm-sidebar-nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80vh;
    align-items: flex-end;
    background: transparent !important;
}
/* Each nav item: label on left, icon on right */
.cm-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer !important;
    padding: 2px 0;
    transition: transform 0.25s ease;
    pointer-events: auto !important;
    position: relative;
    z-index: 1001;
}
.cm-sidebar-item:hover {
    transform: translateX(-4px);
}
/* Icon — always visible, large */
.cm-sidebar-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 50%;
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
    filter: drop-shadow(0 0 0px transparent);
    cursor: pointer !important;
    pointer-events: auto !important;
}
/* Default icon visible, highlight hidden */
.cm-sidebar-item { position: relative; }
.cm-icon-default { opacity: 0.35; }
/* Color default icons by section */
.cm-sidebar-item:nth-child(1) .cm-icon-default,
.cm-sidebar-item:nth-child(2) .cm-icon-default,
.cm-sidebar-item:nth-child(3) .cm-icon-default {
    filter: brightness(1.1) sepia(0.3) hue-rotate(170deg) saturate(2);
}
.cm-sidebar-item:nth-child(4) .cm-icon-default,
.cm-sidebar-item:nth-child(5) .cm-icon-default,
.cm-sidebar-item:nth-child(6) .cm-icon-default {
    filter: brightness(1.1) sepia(0.3) hue-rotate(90deg) saturate(2);
}
.cm-sidebar-item:nth-child(7) .cm-icon-default,
.cm-sidebar-item:nth-child(8) .cm-icon-default,
.cm-sidebar-item:nth-child(9) .cm-icon-default {
    filter: brightness(1.1) sepia(0.4) saturate(1.5);
}
/* Color labels to match eyebrows */
.cm-sidebar-item:nth-child(1)::before,
.cm-sidebar-item:nth-child(2)::before,
.cm-sidebar-item:nth-child(3)::before { color: #7ab0cc !important; }
.cm-sidebar-item:nth-child(4)::before,
.cm-sidebar-item:nth-child(5)::before,
.cm-sidebar-item:nth-child(6)::before { color: #58c88a !important; }
.cm-sidebar-item:nth-child(7)::before,
.cm-sidebar-item:nth-child(8)::before,
.cm-sidebar-item:nth-child(9)::before { color: #e9d7b4 !important; }
.cm-icon-highlight {
    position: absolute;
    right: 0;
    opacity: 0;
}
/* Active: hide default, show highlight */
.cm-sidebar-item.active .cm-icon-default { opacity: 0; }
.cm-sidebar-item.active .cm-icon-highlight {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(233,215,180,0.4));
}
/* Hover: brighten default */
.cm-sidebar-item:hover .cm-icon-default {
    opacity: 0.7;
    filter: drop-shadow(0 0 6px rgba(233,215,180,0.3));
    transform: scale(1.1);
}
/* Label — hidden until hover, right-justified, to the left of icon */
.cm-sidebar-item::before {
    content: attr(data-label);
    font-family: 'Poppins', sans-serif;
    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cm-accent);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    text-align: right;
    background: rgba(12,20,29,0.85);
    padding: 4px 10px;
    border-radius: 3px;
}
.cm-sidebar:hover .cm-sidebar-item::before {
    opacity: 0.7;
    transform: translateX(0);
}
.cm-sidebar-item.active::before {
    opacity: 1 !important;
}
@media (max-width: 900px) {
    .cm-sidebar { display: none; }
}
@media (min-height: 900px) {
    .cm-sidebar-nav { height: 80vh; }
    .cm-sidebar-icon { width: 80px; height: 80px; }
}

/* ══════════════════════════════════════════════════════════════
   ★ TRAINING CAROUSEL CONTAINER — subtle border + spacing
══════════════════════════════════════════════════════════════ */
.cm-train-container {
    margin-top: 48px;
    border: 1px solid var(--cm-border);
    border-radius: 4px;
    padding: 0 0 28px 0;
    background: rgba(233,215,180,0.01);
}
.cm-train-container .cm-train-strip {
    border-radius: 4px 4px 0 0;
    overflow: hidden;
}
.cm-train-container .cm-train-desc-panel {
    margin-left: 28px;
    margin-right: 28px;
}

/* ══════════════════════════════════════════════════════════════
   ★ COMPOUNDING INTERACTIVE — Node visualization
══════════════════════════════════════════════════════════════ */
#cm-compound-interactive {
    display: flex;
    min-height: 100vh;
    background: #080e16;
}
.cm-ci-panel {
    width: 320px;
    flex-shrink: 0;
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-right: 1px solid rgba(233,215,180,0.06);
    overflow-y: auto;
    z-index: 2;
}
#cm-ci-canvas {
    flex: 1;
    display: block;
}
.cm-ci-intro { margin-bottom: 8px; }
.cm-ci-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--cm-text);
    margin-bottom: 8px;
}
.cm-ci-desc {
    font-size: 12px;
    line-height: 1.7;
    color: var(--cm-text-dim);
}
.cm-ci-group { display: flex; flex-direction: column; gap: 4px; }
.cm-ci-group-label {
    font-family: 'Poppins', sans-serif;
    font-size: 8px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 4px;
    padding-left: 4px;
}
.cm-ci-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: transparent;
    border: 1px solid rgba(233,215,180,0.08);
    border-radius: 4px;
    color: var(--cm-text-dim);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    text-align: left;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.cm-ci-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%, rgba(255,255,255,0.04) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.cm-ci-btn:hover::before { opacity: 1; }
.cm-ci-btn:hover {
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(233,215,180,0.06);
}
.cm-ci-btn.active {
    border-color: var(--accent);
    background: rgba(233,215,180,0.04);
    color: var(--cm-text);
}
.cm-ci-btn.active::before { opacity: 0.6; }
.cm-ci-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}
.cm-ci-btn.next-available {
    border-color: rgba(233,215,180,0.2);
    animation: cm-ci-pulse 2s ease-in-out infinite;
}
@keyframes cm-ci-pulse {
    0%, 100% { box-shadow: 0 0 0 rgba(233,215,180,0); }
    50% { box-shadow: 0 0 12px rgba(233,215,180,0.1); }
}
.cm-ci-btn-icon { font-size: 16px; flex-shrink: 0; }
.cm-ci-btn-text { font-size: 12px; letter-spacing: 0.04em; }
.cm-ci-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(233,215,180,0.06);
    margin-top: auto;
}
.cm-ci-counter-label {
    font-family: 'Poppins', sans-serif;
    font-size: 8px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cm-text-dim);
}
.cm-ci-counter-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 300;
    color: var(--cm-accent);
}
@media (max-width: 768px) {
    #cm-compound-interactive { flex-direction: column; }
    .cm-ci-panel { width: 100%; border-right: none; border-bottom: 1px solid rgba(233,215,180,0.06); }
    #cm-ci-canvas { min-height: 400px; }
}

/* ══════════════════════════════════════════════════════════════
   ★ TYPED SECTION QUESTIONS
══════════════════════════════════════════════════════════════ */
.cm-typed-q {
    margin-bottom: 12px;
    min-height: 32px;
}
.cm-typed-q-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--tq-color);
}
.cm-typed-q-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: var(--tq-color);
    vertical-align: text-bottom;
    margin-left: 2px;
    animation: cm-blink 0.7s step-end infinite;
}

/* ══════════════════════════════════════════════════════════════
   ★ COMPOUND DIVIDE — Mobile alignment fix
══════════════════════════════════════════════════════════════ */
#cm-nav-divergence .cm-section-title {
    text-align: left;
}
#cm-nav-divergence .has-animation {
    text-align: left;
}

/* ══════════════════════════════════════════════════════════════
   ★ SPLIT ROW — Title left, quote right (landscape)
══════════════════════════════════════════════════════════════ */
.cm-split-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}
.cm-split-left, .cm-split-right {
    min-width: 0;
}
@media (max-width: 900px) {
    .cm-split-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ══════════════════════════════════════════════════════════════
   ★ ACT CARDS — Three acts on statement page
══════════════════════════════════════════════════════════════ */
.cm-act-card {
    flex: 1;
    text-decoration: none;
    padding: 16px 12px;
    border-top: 2px solid var(--act-color);
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(.25,.46,.45,.94), background 0.4s ease;
    overflow: hidden;
}
.cm-act-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--act-color);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.cm-act-card:hover {
    transform: translateY(-6px);
}
.cm-act-card:hover::before {
    opacity: 0.07;
}
.cm-act-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--act-color);
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(.25,.46,.45,.94), text-shadow 0.4s ease;
}
.cm-act-card:hover .cm-act-num {
    transform: scale(1.15);
    text-shadow: 0 0 18px var(--act-color);
}
.cm-act-title {
    font-size: 11px;
    color: var(--act-color);
    opacity: 0.5;
    margin-top: 6px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    transition: opacity 0.4s ease;
}
.cm-act-card:hover .cm-act-title {
    opacity: 1;
}
.cm-act-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--act-color);
    transition: width 0.5s cubic-bezier(.25,.46,.45,.94);
}
.cm-act-card:hover .cm-act-line {
    width: 100%;
}

/* ══════════════════════════════════════════════════════════════
   ★ QUOTE ATTRIBUTION — Headshot + name
══════════════════════════════════════════════════════════════ */
.cm-quote-attr {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}
.cm-quote-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.85;
    border: 2px solid rgba(224,230,237,0.12);
    box-shadow:
        0 0 0 4px rgba(12,20,29,0.9),
        0 0 0 5px rgba(224,230,237,0.08),
        0 0 20px rgba(224,230,237,0.04);
    transition: opacity 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: smooth;
}
.cm-quote-avatar:hover {
    opacity: 1;
    transform: scale(1.04) translateZ(0);
}
/* Section-colored ring glow on blue quotes */
.cm-section-bar-blue ~ .has-animation .cm-quote-avatar,
.cm-section-bar-blue ~ div .cm-quote-avatar {
    border-color: rgba(122,176,204,0.2);
    box-shadow:
        0 0 0 4px rgba(12,20,29,0.9),
        0 0 0 5px rgba(122,176,204,0.12),
        0 0 24px rgba(122,176,204,0.06);
}
/* Emerald quotes */
.cm-section-bar-emerald ~ .has-animation .cm-quote-avatar,
.cm-section-bar-emerald ~ div .cm-quote-avatar {
    border-color: rgba(88,200,138,0.2);
    box-shadow:
        0 0 0 4px rgba(12,20,29,0.9),
        0 0 0 5px rgba(88,200,138,0.12),
        0 0 24px rgba(88,200,138,0.06);
}
/* Gold quotes */
.cm-section-bar-gold ~ .has-animation .cm-quote-avatar,
.cm-section-bar-gold ~ div .cm-quote-avatar {
    border-color: rgba(233,215,180,0.2);
    box-shadow:
        0 0 0 4px rgba(12,20,29,0.9),
        0 0 0 5px rgba(233,215,180,0.12),
        0 0 24px rgba(233,215,180,0.06);
}
.cm-quote-name {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(224,230,237,0.45);
    font-style: normal;
}

/* ══════════════════════════════════════════════════════════════
   ★ COMPOUND DIVIDE — Click-to-reveal boxes
══════════════════════════════════════════════════════════════ */
.cm-divide-interact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.cm-divide-item {
    position: relative;
    cursor: default;
}
.cm-divide-static {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(224,230,237,0.6);
    margin-bottom: 10px;
}
.cm-divide-answer-box {
    border-left: 2px solid rgba(88,200,138,0.3);
    padding: 12px 20px;
    min-height: 2em;
    background: linear-gradient(135deg, rgba(88,200,138,0.03), transparent);
    transition: border-color 0.3s ease;
}
.cm-divide-item:hover .cm-divide-answer-box {
    border-left-color: rgba(88,200,138,0.5);
}
.cm-divide-typed {
    font-size: 15px;
    line-height: 1.8;
    color: #58c88a;
}

/* ══════════════════════════════════════════════════════════════
   ★ DEFINITIONS SECTION — Own background
══════════════════════════════════════════════════════════════ */
[data-bgcolor="#060a10"] .cm-footnote a {
    color: rgba(122,176,204,0.5);
}
[data-bgcolor="#060a10"] .cm-footnote a:hover {
    color: #7ab0cc;
}

/* Footer element hidden — content lives in CTA section */

/* ══════════════════════════════════════════════════════════════
   ★ BLUE TICKER
══════════════════════════════════════════════════════════════ */
.cm-ticker-blue-accent .cm-ticker-text {
    color: rgba(122,176,204,0.8);
}

/* ══════════════════════════════════════════════════════════════
   ★ DEFINITIONS GRID
══════════════════════════════════════════════════════════════ */
.cm-definitions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0 40px;
    max-width: 800px;
}
@media (max-width: 700px) {
    .cm-definitions-grid { grid-template-columns: 1fr; }
}
.cm-def-item {
    border-left: 2px solid var(--def-color);
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(233,215,180,0.02), transparent);
}
.cm-def-term {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--def-color);
    margin-bottom: 4px;
}
.cm-def-pos {
    font-weight: 300;
    font-style: italic;
    font-size: 14px;
    opacity: 0.6;
}
.cm-def-text {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(224,230,237,0.5);
}

/* ══════════════════════════════════════════════════════════════
   ★ CURRICULUM CALLOUT
══════════════════════════════════════════════════════════════ */
.cm-curriculum-callout {
    max-width: 700px;
    border: 1px solid rgba(122,176,204,0.12);
    border-radius: 4px;
    padding: 24px 28px;
    background: rgba(122,176,204,0.02);
    margin-top: 8px;
}
.cm-curriculum-callout p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(224,230,237,0.5);
}

/* ══════════════════════════════════════════════════════════════
   ★ LEFT SIDEBAR VERTICAL TEXT BARS
══════════════════════════════════════════════════════════════ */
.cm-section-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 36px;
    overflow: hidden;
    z-index: 5;
}
.cm-section-bar-track {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    animation: cm-bar-scroll 20s linear infinite;
    will-change: transform;
}
.cm-section-bar-inner {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: 'Poppins', sans-serif;
    font-size: 8px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(0,0,0,0.7);
    font-weight: 600;
    padding: 20px 0;
}
@keyframes cm-bar-scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
.cm-section-bar-blue {
    background: linear-gradient(180deg, #4a7a9f 0%, #7ab0cc 30%, #9ec8dc 50%, #7ab0cc 70%, #4a7a9f 100%);
    background-size: 100% 300%;
    animation: cm-bar-shimmer 8s ease-in-out infinite;
}
.cm-section-bar-blue .cm-section-bar-inner { color: rgba(0,0,0,0.65); }

.cm-section-bar-gold {
    background: linear-gradient(180deg, #9b6e2c 0%, #d4a94c 30%, #f5d98e 50%, #d4a94c 70%, #9b6e2c 100%);
    background-size: 100% 300%;
    animation: cm-bar-shimmer 8s ease-in-out infinite;
}
.cm-section-bar-gold .cm-section-bar-inner { color: rgba(0,0,0,0.65); }

.cm-section-bar-emerald {
    background: linear-gradient(180deg, #2e9a5c 0%, #58c88a 30%, #7edba6 50%, #58c88a 70%, #2e9a5c 100%);
    background-size: 100% 300%;
    animation: cm-bar-shimmer 8s ease-in-out infinite;
}
.cm-section-bar-emerald .cm-section-bar-inner { color: rgba(0,0,0,0.65); }

.cm-section-bar-red {
    background: linear-gradient(180deg, #8b2e2e 0%, #cc5c5c 30%, #e88080 50%, #cc5c5c 70%, #8b2e2e 100%);
    background-size: 100% 300%;
    animation: cm-bar-shimmer 8s ease-in-out infinite;
}
.cm-section-bar-red .cm-section-bar-inner { color: rgba(0,0,0,0.65); }

@keyframes cm-bar-shimmer {
    0% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}

/* Shift section content right to make room for bar */
.cm-has-bar {
    position: relative;
    padding-left: 52px !important;
}
@media (max-width: 768px) {
    .cm-section-bar { width: 24px; }
    .cm-section-bar-inner { font-size: 6px; letter-spacing: 0.15em; }
    .cm-has-bar { padding-left: 36px !important; }
}

/* ══════════════════════════════════════════════════════════════
   ★ PRINTING PRESS — Remove book title highlights
══════════════════════════════════════════════════════════════ */
.cm-press-callout-links a em,
.cm-footnote a em {
    font-style: italic;
    color: inherit;
    background: none;
    -webkit-text-fill-color: inherit;
}

/* ══════════════════════════════════════════════════════════════
   ★ NEW PREMIUM — Mobile vertical scroll fix
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    #cm-section-premium .cm-arch-nav {
        display: flex !important;
        flex-direction: column !important;
        overflow-x: visible !important;
    }
    #cm-section-premium .cm-arch-nav-item {
        width: 100% !important;
        flex-shrink: 0;
    }
    #cm-section-premium .cm-arch-panel {
        min-height: auto !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   ★ CAROUSEL/TRAINING ICONS — Match eyebrow color
══════════════════════════════════════════════════════════════ */
[data-bgcolor="#0c141d"] .cm-carousel-pill-icon,
[data-bgcolor="#111e2b"] .cm-carousel-pill-icon {
    color: #7ab0cc !important;
}
[data-bgcolor="#0b1a28"] .cm-train-icon {
    color: #7ab0cc !important;
}

/* ══════════════════════════════════════════════════════════════
   ★ COLORED TICKERS
══════════════════════════════════════════════════════════════ */
.cm-ticker-gold .cm-ticker-text {
    color: rgba(197,151,62,0.85);
}
.cm-ticker-emerald .cm-ticker-text {
    color: rgba(46,154,92,0.85);
}

/* ══════════════════════════════════════════════════════════════
   ★ HISTORICAL PATTERN — Blue carousel accents
══════════════════════════════════════════════════════════════ */
[data-bgcolor="#111e2b"] .cm-carousel-pill-icon {
    color: #7ab0cc;
}
[data-bgcolor="#111e2b"] .cm-carousel-pill-fill {
    background: #7ab0cc;
}
[data-bgcolor="#111e2b"] .cm-carousel-pill:hover {
    background: rgba(122,176,204,0.06);
}
[data-bgcolor="#111e2b"] .cm-carousel-pill.active {
    background: rgba(122,176,204,0.04);
}

/* ══════════════════════════════════════════════════════════════
   ★ CRUCIBLE — Blue training accents
══════════════════════════════════════════════════════════════ */
[data-bgcolor="#0b1a28"] .cm-train-progress-fill {
    background: #7ab0cc !important;
}
[data-bgcolor="#0b1a28"] .cm-train-desc-bar {
    background: #7ab0cc !important;
}
[data-bgcolor="#0b1a28"] .cm-train-desc-label {
    color: #7ab0cc !important;
}
[data-bgcolor="#0b1a28"] .cm-train-container {
    border-color: rgba(122,176,204,0.15);
}

/* ══════════════════════════════════════════════════════════════
   ★ PREMIUM — All 01-06 nums gold always
══════════════════════════════════════════════════════════════ */
#cm-section-premium .cm-arch-nav-num {
    color: rgba(197,151,62,0.5);
}

/* ══════════════════════════════════════════════════════════════
   ★ AI ACCELERATES — Gold box/slot treatment
══════════════════════════════════════════════════════════════ */
#cm-section-accelerate .cm-box-word {
    border-color: rgba(46,154,92,0.45);
    color: #58c88a;
}
#cm-section-accelerate .cm-box-word:hover {
    background: rgba(46,154,92,0.12);
    border-color: #58c88a;
}
#cm-section-accelerate .cm-slot {
    color: #58c88a;
    border-bottom-color: rgba(46,154,92,0.3);
}
#cm-section-accelerate .cm-slot.filled {
    border-bottom-color: #58c88a;
}

/* ══════════════════════════════════════════════════════════════
   ★ CTA BUTTONS — Gold for Future section
══════════════════════════════════════════════════════════════ */
[data-bgcolor="#070c12"] .cm-btn {
    border-color: rgba(197,151,62,0.5) !important;
    color: #f5d98e !important;
}
[data-bgcolor="#070c12"] .cm-btn:hover {
    border-color: #f5d98e !important;
    background: rgba(197,151,62,0.08) !important;
}
[data-bgcolor="#070c12"] .cm-btn:hover span {
    color: #f5d98e !important;
}
[data-bgcolor="#070c12"] .cm-btn:hover svg {
    color: #f5d98e !important;
    fill: #f5d98e !important;
}
[data-bgcolor="#070c12"] .cm-btn svg {
    fill: #f5d98e !important;
}

/* ══════════════════════════════════════════════════════════════
   ★ SIDEBAR ICON — Section-colored overlay wash
══════════════════════════════════════════════════════════════ */
.cm-sidebar-item.active .cm-icon-highlight {
    transition: opacity 0.3s ease, filter 0.3s ease;
}
/* Blue sections (1-3: AI Disruption, Historical Pattern, Crucible) */
.cm-sidebar-item:nth-child(1).active .cm-icon-highlight,
.cm-sidebar-item:nth-child(2).active .cm-icon-highlight,
.cm-sidebar-item:nth-child(3).active .cm-icon-highlight {
    filter: drop-shadow(0 0 10px rgba(122,176,204,0.5)) brightness(1.1) sepia(0.3) hue-rotate(170deg) saturate(2);
}
/* Emerald sections (4-6: Compound Divide, New Premium, AI Accelerates) */
.cm-sidebar-item:nth-child(4).active .cm-icon-highlight,
.cm-sidebar-item:nth-child(5).active .cm-icon-highlight,
.cm-sidebar-item:nth-child(6).active .cm-icon-highlight {
    filter: drop-shadow(0 0 10px rgba(46,154,92,0.5)) brightness(1.1) sepia(0.3) hue-rotate(90deg) saturate(2);
}
/* Gold sections (7-9: Compounding Systems, Games, Future) */
.cm-sidebar-item:nth-child(7).active .cm-icon-highlight,
.cm-sidebar-item:nth-child(8).active .cm-icon-highlight,
.cm-sidebar-item:nth-child(9).active .cm-icon-highlight {
    filter: drop-shadow(0 0 10px rgba(197,151,62,0.5));
}

/* ── Force gold for Essential Compounding & Applied Learning footnotes ── */
#cm-nav-skills .cm-footnote a,
#cm-nav-learning .cm-footnote a {
    color: rgba(197,151,62,0.5) !important;
}
#cm-nav-skills .cm-footnote a:hover,
#cm-nav-learning .cm-footnote a:hover {
    color: #f5d98e !important;
}
#cm-nav-skills .cm-footnote-label,
#cm-nav-learning .cm-footnote-label {
    color: rgba(233,215,180,0.4) !important;
}
#cm-nav-skills .cm-footnote-sep,
#cm-nav-learning .cm-footnote-sep {
    color: rgba(233,215,180,0.2) !important;
}
#cm-nav-skills .cm-footnote,
#cm-nav-learning .cm-footnote {
    border-top-color: rgba(233,215,180,0.08) !important;
}

/* ══════════════════════════════════════════════════════════════
   ★ DISCUSSION — Inline numbered items matching footnote style
══════════════════════════════════════════════════════════════ */
.cm-footnote-num {
    opacity: 0.5;
    margin-right: 2px;
}
.cm-discuss-q {
    text-transform: none;
    letter-spacing: 0.02em;
}
/* Blue sections */
[data-bgcolor="#0c141d"] .cm-discuss-q,
[data-bgcolor="#111e2b"] .cm-discuss-q,
[data-bgcolor="#0b1a28"] .cm-discuss-q { color: rgba(122,176,204,0.5); }
/* Emerald sections */
[data-bgcolor="#0a1018"] .cm-discuss-q,
[data-bgcolor="#0f1520"] .cm-discuss-q,
[data-bgcolor="#0a1220"] .cm-discuss-q { color: rgba(46,154,92,0.5); }
/* Gold sections */
[data-bgcolor="#141e28"] .cm-discuss-q,
[data-bgcolor="#0e151e"] .cm-discuss-q,
[data-bgcolor="#070c12"] .cm-discuss-q { color: rgba(197,151,62,0.5); }

/* ── Trademark symbol — very small and subtle ── */
.cm-tm {
    font-size: 0.45em;
    vertical-align: super;
    opacity: 0.5;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0;
}
